ETH Price: $2,944.39 (-4.01%)
Gas: 2 Gwei

Token

This Is Not A Rug (NOTARUG)
 

Overview

Max Total Supply

3,693 NOTARUG

Holders

260

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 NOTARUG
0x7ebff22f9412ff18d1ce9c26133071760d289865
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:
ThisIsNotARug

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-07
*/

// SPDX-License-Identifier: MIT

/**

 ________  __        __                  ______                  __    __              __             ______         _______                      
/        |/  |      /  |                /      |                /  \  /  |            /  |           /      \       /       \                     
$$$$$$$$/ $$ |____  $$/   _______       $$$$$$/   _______       $$  \ $$ |  ______   _$$ |_         /$$$$$$  |      $$$$$$$  | __    __   ______  
   $$ |   $$      \ /  | /       |        $$ |   /       |      $$$  \$$ | /      \ / $$   |        $$ |__$$ |      $$ |__$$ |/  |  /  | /      \ 
   $$ |   $$$$$$$  |$$ |/$$$$$$$/         $$ |  /$$$$$$$/       $$$$  $$ |/$$$$$$  |$$$$$$/         $$    $$ |      $$    $$< $$ |  $$ |/$$$$$$  |
   $$ |   $$ |  $$ |$$ |$$      \         $$ |  $$      \       $$ $$ $$ |$$ |  $$ |  $$ | __       $$$$$$$$ |      $$$$$$$  |$$ |  $$ |$$ |  $$ |
   $$ |   $$ |  $$ |$$ | $$$$$$  |       _$$ |_  $$$$$$  |      $$ |$$$$ |$$ \__$$ |  $$ |/  |      $$ |  $$ |      $$ |  $$ |$$ \__$$ |$$ \__$$ |
   $$ |   $$ |  $$ |$$ |/     $$/       / $$   |/     $$/       $$ | $$$ |$$    $$/   $$  $$/       $$ |  $$ |      $$ |  $$ |$$    $$/ $$    $$ |
   $$/    $$/   $$/ $$/ $$$$$$$/        $$$$$$/ $$$$$$$/        $$/   $$/  $$$$$$/     $$$$/        $$/   $$/       $$/   $$/  $$$$$$/   $$$$$$$ |
                                                                                                                                        /  \__$$ |
                                                                                                                                        $$    $$/ 
                                                                                                                                         $$$$$$/  


*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
Where am i?.......                                   
                                                                           
*/

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}


    pragma solidity ^0.8.13;
    
    contract ThisIsNotARug  is ERC721A, Ownable, ReentrancyGuard, OperatorFilterer {
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeigu7sjhi4jw4j3ukbtwmbmapjcurgkyu5ndod52sjpc2ai2h5d3ye/";
  string private uriSuffix = ".json";
  string private hiddenURL;

  
  

  uint256 public cost = 0.001 ether;
 
  

  uint16 public maxSupply = 10000;
  uint8 public maxMintAmountPerTx = 20;
   uint8 public maxMintAmountPerWallet = 20;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 10000;
     bool public operatorFilteringEnabled;
                                                             
 
  bool public paused = true;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function mint(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

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

     delete _amountPerAddress;
     delete totalSupply;
  }

 

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



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

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


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


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

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

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

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

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

  }

 

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002acb60a039600a90620000239082620002a6565b50604080518082019091526005815264173539b7b760d91b6020820152600b906200004f9082620002a6565b5066038d7ea4c68000600d55600e805464ffffffffff19166401141427101790556000600f556127106010556011805462ffff001916620101001790553480156200009957600080fd5b5060405162002b0e38038062002b0e833981016040819052620000bc9162000421565b81816002620000cc8382620002a6565b506003620000db8282620002a6565b5050600160005550620000ee3362000112565b6001600955620000fd62000164565b50506011805460ff191660011790556200048b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000185733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000187565b565b6001600160a01b0390911690637d3e3dbe81620001b75782620001b05750634420e486620001b7565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001f7578060005160e01c03620001f757600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022c57607f821691505b6020821081036200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a157600081815260208120601f850160051c810160208610156200027c5750805b601f850160051c820191505b818110156200029d5782815560010162000288565b5050505b505050565b81516001600160401b03811115620002c257620002c262000201565b620002da81620002d3845462000217565b8462000253565b602080601f831160018114620003125760008415620002f95750858301515b600019600386901b1c1916600185901b1785556200029d565b600085815260208120601f198616915b82811015620003435788860151825594840194600190910190840162000322565b5085821015620003625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200038457600080fd5b81516001600160401b0380821115620003a157620003a162000201565b604051601f8301601f19908116603f01168101908282118183101715620003cc57620003cc62000201565b81604052838152602092508683858801011115620003e957600080fd5b600091505b838210156200040d5785820183015181830184015290820190620003ee565b600093810190920192909252949350505050565b600080604083850312156200043557600080fd5b82516001600160401b03808211156200044d57600080fd5b6200045b8683870162000372565b935060208501519150808211156200047257600080fd5b50620004818582860162000372565b9150509250929050565b612630806200049b6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e20146106c1578063d5abeb01146106e1578063e985e9c51461070f578063f2fde38b1461072f578063f8bf51721461074f578063fb796e6c1461077157600080fd5b8063aa06229014610620578063b7c0b8e814610640578063b88d4fde14610660578063bc951b9114610680578063c87b56dd146106a157600080fd5b806395d89b41116100fd57806395d89b41146105a2578063982d669e146105b7578063a0712d68146105cd578063a22cb465146105e0578063a475b5dd1461060057600080fd5b806370a08231146104fd578063715018a61461051d5780637ec4a659146105325780638da5cb5b1461055257806394354fd01461057057600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104dd57600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611e5d565b61078b565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611e91565b6107dd565b005b3480156102b957600080fd5b506102c2610828565b6040516102829190611efc565b3480156102db57600080fd5b506102ef6102ea366004611f0f565b6108ba565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611f3f565b6108fe565b34801561033357600080fd5b506102ab610342366004611f0f565b61098b565b34801561035357600080fd5b506102ab610362366004611ff5565b6109ba565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600f5481565b3480156103cb57600080fd5b506102ab6103da36600461203e565b6109f4565b3480156103eb57600080fd5b506102ab6103fa36600461207a565b610a2a565b34801561040b57600080fd5b506102ab61041a366004611ff5565b610ad1565b34801561042b57600080fd5b506102ab610b07565b34801561044057600080fd5b506102ab610b4e565b34801561045557600080fd5b506102ab610b97565b34801561046a57600080fd5b506102ab61047936600461203e565b610c91565b34801561048a57600080fd5b506102ab610499366004611f0f565b610cc1565b3480156104aa57600080fd5b506102ab6104b93660046120be565b610cf0565b3480156104ca57600080fd5b5060115461027690610100900460ff1681565b3480156104e957600080fd5b506102ef6104f8366004611f0f565b610d3c565b34801561050957600080fd5b5061037d6105183660046120d9565b610d4e565b34801561052957600080fd5b506102ab610d9d565b34801561053e57600080fd5b506102ab61054d366004611ff5565b610dd3565b34801561055e57600080fd5b506008546001600160a01b03166102ef565b34801561057c57600080fd5b50600e546105909062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105ae57600080fd5b506102c2610e09565b3480156105c357600080fd5b5061037d60105481565b6102ab6105db366004611f0f565b610e18565b3480156105ec57600080fd5b506102ab6105fb366004612104565b611108565b34801561060c57600080fd5b506011546102769062010000900460ff1681565b34801561062c57600080fd5b506102ab61063b3660046120be565b61119d565b34801561064c57600080fd5b506102ab61065b36600461212e565b6111e5565b34801561066c57600080fd5b506102ab61067b366004612149565b611222565b34801561068c57600080fd5b50600e54610590906301000000900460ff1681565b3480156106ad57600080fd5b506102c26106bc366004611f0f565b61125a565b3480156106cd57600080fd5b506102ab6106dc3660046121c5565b6113cf565b3480156106ed57600080fd5b50600e546106fc9061ffff1681565b60405161ffff9091168152602001610282565b34801561071b57600080fd5b5061027661072a36600461224b565b6114d3565b34801561073b57600080fd5b506102ab61074a3660046120d9565b611501565b34801561075b57600080fd5b50600e5461059090640100000000900460ff1681565b34801561077d57600080fd5b506011546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107bc57506001600160e01b03198216635b5e139f60e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108105760405162461bcd60e51b815260040161080790612267565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b6060600280546108379061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546108639061229c565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b60006108c582611599565b6108e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090982610d3c565b9050806001600160a01b0316836001600160a01b03160361093d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061095d575061095b81336114d3565b155b1561097b576040516367d9dca160e11b815260040160405180910390fd5b6109868383836115d2565b505050565b6008546001600160a01b031633146109b55760405162461bcd60e51b815260040161080790612267565b601055565b6008546001600160a01b031633146109e45760405162461bcd60e51b815260040161080790612267565b600c6109f0828261231c565b5050565b826001600160a01b0381163314610a195760115460ff1615610a1957610a193361162e565b610a24848484611672565b50505050565b6008546001600160a01b03163314610a545760405162461bcd60e51b815260040161080790612267565b6000610a67600154600054036000190190565b600e5490915061ffff16610a7b84836123f2565b61ffff161115610ac35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b610986828461ffff1661167d565b6008546001600160a01b03163314610afb5760405162461bcd60e51b815260040161080790612267565b600b6109f0828261231c565b6008546001600160a01b03163314610b315760405162461bcd60e51b815260040161080790612267565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161080790612267565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610bc15760405162461bcd60e51b815260040161080790612267565b600260095403610c135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610807565b60026009556000610c2c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c76576040519150601f19603f3d011682016040523d82523d6000602084013e610c7b565b606091505b5050905080610c8957600080fd5b506001600955565b826001600160a01b0381163314610cb65760115460ff1615610cb657610cb63361162e565b610a24848484611697565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161080790612267565b600d55565b6008546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161080790612267565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610d47826116b2565b5192915050565b60006001600160a01b038216610d77576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dc75760405162461bcd60e51b815260040161080790612267565b610dd160006117db565b565b6008546001600160a01b03163314610dfd5760405162461bcd60e51b815260040161080790612267565b600a6109f0828261231c565b6060600380546108379061229c565b323314610e675760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610807565b601154610100900460ff1615610ebf5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610807565b600e54610ed19061ffff1660016123f2565b61ffff1681610ee7600154600054036000190190565b610ef19190612414565b10610f285760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610807565b600e546301000000900460ff1681610f3f33610d4e565b610f499190612414565b1115610f975760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610807565b60105481600f54610fa89190612414565b111561100b573481600d54610fbd9190612427565b11156110065760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b6110fb565b600e54640100000000900460ff168161102333610d4e565b61102d9190612414565b11156110b6573481600d546110429190612427565b111561108b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b600e5462010000900460ff168111156110065760405162461bcd60e51b81526004016108079061243e565b600e54640100000000900460ff168111156110e35760405162461bcd60e51b81526004016108079061243e565b80600f60008282546110f59190612414565b90915550505b611105338261167d565b50565b336001600160a01b038316036111315760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111c75760405162461bcd60e51b815260040161080790612267565b600e805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b0316331461120f5760405162461bcd60e51b815260040161080790612267565b6011805460ff1916911515919091179055565b836001600160a01b03811633146112475760115460ff1615611247576112473361162e565b6112538585858561182d565b5050505050565b606061126582611599565b6112c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610807565b60115462010000900460ff16151560000361137057600c80546112eb9061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546113179061229c565b80156113645780601f1061133957610100808354040283529160200191611364565b820191906000526020600020905b81548152906001019060200180831161134757829003601f168201915b50505050509050919050565b600061137a611878565b9050600081511161139a57604051806020016040528060008152506113c8565b806113a484611887565b600b6040516020016113b893929190612480565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113f95760405162461bcd60e51b815260040161080790612267565b600061140c600154600054036000190190565b9050600061141d8360ff8716612427565b600e5490915061ffff908116906114379083908516612414565b111561147b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b60005b838110156114cb576114b985858381811061149b5761149b612520565b90506020020160208101906114b091906120d9565b8760ff1661167d565b806114c381612536565b91505061147e565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461152b5760405162461bcd60e51b815260040161080790612267565b6001600160a01b0381166115905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b611105816117db565b6000816001111580156115ad575060005482105b80156107d7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61166a573d6000803e3d6000fd5b6000603a5250565b610986838383611990565b6109f0828260405180602001604052806000815250611b7d565b61098683838360405180602001604052806000815250611222565b604080516060810182526000808252602082018190529181019190915281806001111580156116e2575060005481105b156117c257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117c05780516001600160a01b031615611756579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156117bb579392505050565b611756565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611838848484611990565b6001600160a01b0383163b1515801561185a575061185884848484611b8a565b155b15610a24576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546108379061229c565b6060816000036118ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d857806118c281612536565b91506118d19050600a83612565565b91506118b2565b60008167ffffffffffffffff8111156118f3576118f3611f69565b6040519080825280601f01601f19166020018201604052801561191d576020820181803683370190505b5090505b841561198857611932600183612579565b915061193f600a8661258c565b61194a906030612414565b60f81b81838151811061195f5761195f612520565b60200101906001600160f81b031916908160001a905350611981600a86612565565b9450611921565b949350505050565b600061199b826116b2565b9050836001600160a01b031681600001516001600160a01b0316146119d25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119f057506119f085336114d3565b80611a0b575033611a00846108ba565b6001600160a01b0316145b905080611a2b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5257604051633a954ecd60e21b815260040160405180910390fd5b611a5e600084876115d2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b34576000548214611b34578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611253565b6109868383836001611c75565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bbf9033908990889088906004016125a0565b6020604051808303816000875af1925050508015611bfa575060408051601f3d908101601f19168201909252611bf7918101906125dd565b60015b611c58573d808015611c28576040519150601f19603f3d011682016040523d82523d6000602084013e611c2d565b606091505b508051600003611c50576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611c9e57604051622e076360e81b815260040160405180910390fd5b83600003611cbf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d7157506001600160a01b0387163b15155b15611df9575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dc26000888480600101955088611b8a565b611ddf576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d77578260005414611df457600080fd5b611e3e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611dfa575b50600055611253565b6001600160e01b03198116811461110557600080fd5b600060208284031215611e6f57600080fd5b81356113c881611e47565b803561ffff81168114611e8c57600080fd5b919050565b600060208284031215611ea357600080fd5b6113c882611e7a565b60005b83811015611ec7578181015183820152602001611eaf565b50506000910152565b60008151808452611ee8816020860160208601611eac565b601f01601f19169290920160200192915050565b6020815260006113c86020830184611ed0565b600060208284031215611f2157600080fd5b5035919050565b80356001600160a01b0381168114611e8c57600080fd5b60008060408385031215611f5257600080fd5b611f5b83611f28565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f9a57611f9a611f69565b604051601f8501601f19908116603f01168101908282118183101715611fc257611fc2611f69565b81604052809350858152868686011115611fdb57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561200757600080fd5b813567ffffffffffffffff81111561201e57600080fd5b8201601f8101841361202f57600080fd5b61198884823560208401611f7f565b60008060006060848603121561205357600080fd5b61205c84611f28565b925061206a60208501611f28565b9150604084013590509250925092565b6000806040838503121561208d57600080fd5b61209683611e7a565b91506120a460208401611f28565b90509250929050565b803560ff81168114611e8c57600080fd5b6000602082840312156120d057600080fd5b6113c8826120ad565b6000602082840312156120eb57600080fd5b6113c882611f28565b80358015158114611e8c57600080fd5b6000806040838503121561211757600080fd5b61212083611f28565b91506120a4602084016120f4565b60006020828403121561214057600080fd5b6113c8826120f4565b6000806000806080858703121561215f57600080fd5b61216885611f28565b935061217660208601611f28565b925060408501359150606085013567ffffffffffffffff81111561219957600080fd5b8501601f810187136121aa57600080fd5b6121b987823560208401611f7f565b91505092959194509250565b6000806000604084860312156121da57600080fd5b6121e3846120ad565b9250602084013567ffffffffffffffff8082111561220057600080fd5b818601915086601f83011261221457600080fd5b81358181111561222357600080fd5b8760208260051b850101111561223857600080fd5b6020830194508093505050509250925092565b6000806040838503121561225e57600080fd5b61209683611f28565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122b057607f821691505b6020821081036122d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561098657600081815260208120601f850160051c810160208610156122fd5750805b601f850160051c820191505b818110156114cb57828155600101612309565b815167ffffffffffffffff81111561233657612336611f69565b61234a81612344845461229c565b846122d6565b602080601f83116001811461237f57600084156123675750858301515b600019600386901b1c1916600185901b1785556114cb565b600085815260208120601f198616915b828110156123ae5788860151825594840194600190910190840161238f565b50858210156123cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561240d5761240d6123dc565b5092915050565b808201808211156107d7576107d76123dc565b80820281158282048414176107d7576107d76123dc565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206124938285838a01611eac565b8551918401916124a68184848a01611eac565b85549201916000906124b78161229c565b600182811680156124cf57600181146124e457612510565b60ff1984168752821515830287019450612510565b896000528560002060005b84811015612508578154898201529083019087016124ef565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612548576125486123dc565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125745761257461254f565b500490565b818103818111156107d7576107d76123dc565b60008261259b5761259b61254f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d390830184611ed0565b9695505050505050565b6000602082840312156125ef57600080fd5b81516113c881611e4756fea26469706673582212205786ad57868b8a081b6e697c74e05cc9e1d3572e759c542ebed2dce3f78910fd64736f6c63430008120033697066733a2f2f62616679626569677537736a6869346a77346a33756b6274776d626d61706a637572676b7975356e646f643532736a7063326169326835643379652f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001154686973204973204e6f7420412052756700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f544152554700000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e20146106c1578063d5abeb01146106e1578063e985e9c51461070f578063f2fde38b1461072f578063f8bf51721461074f578063fb796e6c1461077157600080fd5b8063aa06229014610620578063b7c0b8e814610640578063b88d4fde14610660578063bc951b9114610680578063c87b56dd146106a157600080fd5b806395d89b41116100fd57806395d89b41146105a2578063982d669e146105b7578063a0712d68146105cd578063a22cb465146105e0578063a475b5dd1461060057600080fd5b806370a08231146104fd578063715018a61461051d5780637ec4a659146105325780638da5cb5b1461055257806394354fd01461057057600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104dd57600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611e5d565b61078b565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611e91565b6107dd565b005b3480156102b957600080fd5b506102c2610828565b6040516102829190611efc565b3480156102db57600080fd5b506102ef6102ea366004611f0f565b6108ba565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611f3f565b6108fe565b34801561033357600080fd5b506102ab610342366004611f0f565b61098b565b34801561035357600080fd5b506102ab610362366004611ff5565b6109ba565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600f5481565b3480156103cb57600080fd5b506102ab6103da36600461203e565b6109f4565b3480156103eb57600080fd5b506102ab6103fa36600461207a565b610a2a565b34801561040b57600080fd5b506102ab61041a366004611ff5565b610ad1565b34801561042b57600080fd5b506102ab610b07565b34801561044057600080fd5b506102ab610b4e565b34801561045557600080fd5b506102ab610b97565b34801561046a57600080fd5b506102ab61047936600461203e565b610c91565b34801561048a57600080fd5b506102ab610499366004611f0f565b610cc1565b3480156104aa57600080fd5b506102ab6104b93660046120be565b610cf0565b3480156104ca57600080fd5b5060115461027690610100900460ff1681565b3480156104e957600080fd5b506102ef6104f8366004611f0f565b610d3c565b34801561050957600080fd5b5061037d6105183660046120d9565b610d4e565b34801561052957600080fd5b506102ab610d9d565b34801561053e57600080fd5b506102ab61054d366004611ff5565b610dd3565b34801561055e57600080fd5b506008546001600160a01b03166102ef565b34801561057c57600080fd5b50600e546105909062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105ae57600080fd5b506102c2610e09565b3480156105c357600080fd5b5061037d60105481565b6102ab6105db366004611f0f565b610e18565b3480156105ec57600080fd5b506102ab6105fb366004612104565b611108565b34801561060c57600080fd5b506011546102769062010000900460ff1681565b34801561062c57600080fd5b506102ab61063b3660046120be565b61119d565b34801561064c57600080fd5b506102ab61065b36600461212e565b6111e5565b34801561066c57600080fd5b506102ab61067b366004612149565b611222565b34801561068c57600080fd5b50600e54610590906301000000900460ff1681565b3480156106ad57600080fd5b506102c26106bc366004611f0f565b61125a565b3480156106cd57600080fd5b506102ab6106dc3660046121c5565b6113cf565b3480156106ed57600080fd5b50600e546106fc9061ffff1681565b60405161ffff9091168152602001610282565b34801561071b57600080fd5b5061027661072a36600461224b565b6114d3565b34801561073b57600080fd5b506102ab61074a3660046120d9565b611501565b34801561075b57600080fd5b50600e5461059090640100000000900460ff1681565b34801561077d57600080fd5b506011546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107bc57506001600160e01b03198216635b5e139f60e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108105760405162461bcd60e51b815260040161080790612267565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b6060600280546108379061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546108639061229c565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b60006108c582611599565b6108e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090982610d3c565b9050806001600160a01b0316836001600160a01b03160361093d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061095d575061095b81336114d3565b155b1561097b576040516367d9dca160e11b815260040160405180910390fd5b6109868383836115d2565b505050565b6008546001600160a01b031633146109b55760405162461bcd60e51b815260040161080790612267565b601055565b6008546001600160a01b031633146109e45760405162461bcd60e51b815260040161080790612267565b600c6109f0828261231c565b5050565b826001600160a01b0381163314610a195760115460ff1615610a1957610a193361162e565b610a24848484611672565b50505050565b6008546001600160a01b03163314610a545760405162461bcd60e51b815260040161080790612267565b6000610a67600154600054036000190190565b600e5490915061ffff16610a7b84836123f2565b61ffff161115610ac35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b610986828461ffff1661167d565b6008546001600160a01b03163314610afb5760405162461bcd60e51b815260040161080790612267565b600b6109f0828261231c565b6008546001600160a01b03163314610b315760405162461bcd60e51b815260040161080790612267565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161080790612267565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610bc15760405162461bcd60e51b815260040161080790612267565b600260095403610c135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610807565b60026009556000610c2c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c76576040519150601f19603f3d011682016040523d82523d6000602084013e610c7b565b606091505b5050905080610c8957600080fd5b506001600955565b826001600160a01b0381163314610cb65760115460ff1615610cb657610cb63361162e565b610a24848484611697565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161080790612267565b600d55565b6008546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161080790612267565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610d47826116b2565b5192915050565b60006001600160a01b038216610d77576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dc75760405162461bcd60e51b815260040161080790612267565b610dd160006117db565b565b6008546001600160a01b03163314610dfd5760405162461bcd60e51b815260040161080790612267565b600a6109f0828261231c565b6060600380546108379061229c565b323314610e675760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610807565b601154610100900460ff1615610ebf5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610807565b600e54610ed19061ffff1660016123f2565b61ffff1681610ee7600154600054036000190190565b610ef19190612414565b10610f285760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610807565b600e546301000000900460ff1681610f3f33610d4e565b610f499190612414565b1115610f975760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610807565b60105481600f54610fa89190612414565b111561100b573481600d54610fbd9190612427565b11156110065760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b6110fb565b600e54640100000000900460ff168161102333610d4e565b61102d9190612414565b11156110b6573481600d546110429190612427565b111561108b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610807565b600e5462010000900460ff168111156110065760405162461bcd60e51b81526004016108079061243e565b600e54640100000000900460ff168111156110e35760405162461bcd60e51b81526004016108079061243e565b80600f60008282546110f59190612414565b90915550505b611105338261167d565b50565b336001600160a01b038316036111315760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111c75760405162461bcd60e51b815260040161080790612267565b600e805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b0316331461120f5760405162461bcd60e51b815260040161080790612267565b6011805460ff1916911515919091179055565b836001600160a01b03811633146112475760115460ff1615611247576112473361162e565b6112538585858561182d565b5050505050565b606061126582611599565b6112c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610807565b60115462010000900460ff16151560000361137057600c80546112eb9061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546113179061229c565b80156113645780601f1061133957610100808354040283529160200191611364565b820191906000526020600020905b81548152906001019060200180831161134757829003601f168201915b50505050509050919050565b600061137a611878565b9050600081511161139a57604051806020016040528060008152506113c8565b806113a484611887565b600b6040516020016113b893929190612480565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113f95760405162461bcd60e51b815260040161080790612267565b600061140c600154600054036000190190565b9050600061141d8360ff8716612427565b600e5490915061ffff908116906114379083908516612414565b111561147b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610807565b60005b838110156114cb576114b985858381811061149b5761149b612520565b90506020020160208101906114b091906120d9565b8760ff1661167d565b806114c381612536565b91505061147e565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461152b5760405162461bcd60e51b815260040161080790612267565b6001600160a01b0381166115905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b611105816117db565b6000816001111580156115ad575060005482105b80156107d7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61166a573d6000803e3d6000fd5b6000603a5250565b610986838383611990565b6109f0828260405180602001604052806000815250611b7d565b61098683838360405180602001604052806000815250611222565b604080516060810182526000808252602082018190529181019190915281806001111580156116e2575060005481105b156117c257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117c05780516001600160a01b031615611756579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156117bb579392505050565b611756565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611838848484611990565b6001600160a01b0383163b1515801561185a575061185884848484611b8a565b155b15610a24576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546108379061229c565b6060816000036118ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d857806118c281612536565b91506118d19050600a83612565565b91506118b2565b60008167ffffffffffffffff8111156118f3576118f3611f69565b6040519080825280601f01601f19166020018201604052801561191d576020820181803683370190505b5090505b841561198857611932600183612579565b915061193f600a8661258c565b61194a906030612414565b60f81b81838151811061195f5761195f612520565b60200101906001600160f81b031916908160001a905350611981600a86612565565b9450611921565b949350505050565b600061199b826116b2565b9050836001600160a01b031681600001516001600160a01b0316146119d25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119f057506119f085336114d3565b80611a0b575033611a00846108ba565b6001600160a01b0316145b905080611a2b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5257604051633a954ecd60e21b815260040160405180910390fd5b611a5e600084876115d2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b34576000548214611b34578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611253565b6109868383836001611c75565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bbf9033908990889088906004016125a0565b6020604051808303816000875af1925050508015611bfa575060408051601f3d908101601f19168201909252611bf7918101906125dd565b60015b611c58573d808015611c28576040519150601f19603f3d011682016040523d82523d6000602084013e611c2d565b606091505b508051600003611c50576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611c9e57604051622e076360e81b815260040160405180910390fd5b83600003611cbf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d7157506001600160a01b0387163b15155b15611df9575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dc26000888480600101955088611b8a565b611ddf576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d77578260005414611df457600080fd5b611e3e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611dfa575b50600055611253565b6001600160e01b03198116811461110557600080fd5b600060208284031215611e6f57600080fd5b81356113c881611e47565b803561ffff81168114611e8c57600080fd5b919050565b600060208284031215611ea357600080fd5b6113c882611e7a565b60005b83811015611ec7578181015183820152602001611eaf565b50506000910152565b60008151808452611ee8816020860160208601611eac565b601f01601f19169290920160200192915050565b6020815260006113c86020830184611ed0565b600060208284031215611f2157600080fd5b5035919050565b80356001600160a01b0381168114611e8c57600080fd5b60008060408385031215611f5257600080fd5b611f5b83611f28565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f9a57611f9a611f69565b604051601f8501601f19908116603f01168101908282118183101715611fc257611fc2611f69565b81604052809350858152868686011115611fdb57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561200757600080fd5b813567ffffffffffffffff81111561201e57600080fd5b8201601f8101841361202f57600080fd5b61198884823560208401611f7f565b60008060006060848603121561205357600080fd5b61205c84611f28565b925061206a60208501611f28565b9150604084013590509250925092565b6000806040838503121561208d57600080fd5b61209683611e7a565b91506120a460208401611f28565b90509250929050565b803560ff81168114611e8c57600080fd5b6000602082840312156120d057600080fd5b6113c8826120ad565b6000602082840312156120eb57600080fd5b6113c882611f28565b80358015158114611e8c57600080fd5b6000806040838503121561211757600080fd5b61212083611f28565b91506120a4602084016120f4565b60006020828403121561214057600080fd5b6113c8826120f4565b6000806000806080858703121561215f57600080fd5b61216885611f28565b935061217660208601611f28565b925060408501359150606085013567ffffffffffffffff81111561219957600080fd5b8501601f810187136121aa57600080fd5b6121b987823560208401611f7f565b91505092959194509250565b6000806000604084860312156121da57600080fd5b6121e3846120ad565b9250602084013567ffffffffffffffff8082111561220057600080fd5b818601915086601f83011261221457600080fd5b81358181111561222357600080fd5b8760208260051b850101111561223857600080fd5b6020830194508093505050509250925092565b6000806040838503121561225e57600080fd5b61209683611f28565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122b057607f821691505b6020821081036122d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561098657600081815260208120601f850160051c810160208610156122fd5750805b601f850160051c820191505b818110156114cb57828155600101612309565b815167ffffffffffffffff81111561233657612336611f69565b61234a81612344845461229c565b846122d6565b602080601f83116001811461237f57600084156123675750858301515b600019600386901b1c1916600185901b1785556114cb565b600085815260208120601f198616915b828110156123ae5788860151825594840194600190910190840161238f565b50858210156123cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561240d5761240d6123dc565b5092915050565b808201808211156107d7576107d76123dc565b80820281158282048414176107d7576107d76123dc565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206124938285838a01611eac565b8551918401916124a68184848a01611eac565b85549201916000906124b78161229c565b600182811680156124cf57600181146124e457612510565b60ff1984168752821515830287019450612510565b896000528560002060005b84811015612508578154898201529083019087016124ef565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612548576125486123dc565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125745761257461254f565b500490565b818103818111156107d7576107d76123dc565b60008261259b5761259b61254f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d390830184611ed0565b9695505050505050565b6000602082840312156125ef57600080fd5b81516113c881611e4756fea26469706673582212205786ad57868b8a081b6e697c74e05cc9e1d3572e759c542ebed2dce3f78910fd64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001154686973204973204e6f7420412052756700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f544152554700000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): This Is Not A Rug
Arg [1] : _tokenSymbol (string): NOTARUG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 54686973204973204e6f74204120527567000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4e4f544152554700000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54569:6067:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29132:305;;;;;;;;;;-1:-1:-1;29132:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29132:305:0;;;;;;;;57678:97;;;;;;;;;;-1:-1:-1;57678:97:0;;;;;:::i;:::-;;:::i;:::-;;32245:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33748:204::-;;;;;;;;;;-1:-1:-1;33748:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;33748:204:0;1886:203:1;33311:371:0;;;;;;;;;;-1:-1:-1;33311:371:0;;;;;:::i;:::-;;:::i;58755:129::-;;;;;;;;;;-1:-1:-1;58755:129:0;;;;;:::i;:::-;;:::i;58651:102::-;;;;;;;;;;-1:-1:-1;58651:102:0;;;;;:::i;:::-;;:::i;54870:33::-;;;;;;;;;;;;;;;;;;;3902:25:1;;;3890:2;3875:18;54870:33:0;3756:177:1;28381:303:0;;;;;;;;;;;;28238:1;28635:12;28425:7;28619:13;:28;-1:-1:-1;;28619:46:0;;28381:303;55092:39;;;;;;;;;;;;;;;;59828:159;;;;;;;;;;-1:-1:-1;59828:159:0;;;;;:::i;:::-;;:::i;56863:326::-;;;;;;;;;;-1:-1:-1;56863:326:0;;;;;:::i;:::-;;:::i;58434:102::-;;;;;;;;;;-1:-1:-1;58434:102:0;;;;;:::i;:::-;;:::i;58890:71::-;;;;;;;;;;;;;:::i;59048:70::-;;;;;;;;;;;;;:::i;59242:475::-;;;;;;;;;;;;;:::i;59993:167::-;;;;;;;;;;-1:-1:-1;59993:167:0;;;;;:::i;:::-;;:::i;58967:76::-;;;;;;;;;;-1:-1:-1;58967:76:0;;;;;:::i;:::-;;:::i;58287:134::-;;;;;;;;;;-1:-1:-1;58287:134:0;;;;;:::i;:::-;;:::i;55292:25::-;;;;;;;;;;-1:-1:-1;55292:25:0;;;;;;;;;;;32053:125;;;;;;;;;;-1:-1:-1;32053:125:0;;;;;:::i;:::-;;:::i;29501:206::-;;;;;;;;;;-1:-1:-1;29501:206:0;;;;;:::i;:::-;;:::i;47954:103::-;;;;;;;;;;;;;:::i;58544:102::-;;;;;;;;;;-1:-1:-1;58544:102:0;;;;;:::i;:::-;;:::i;47302:87::-;;;;;;;;;;-1:-1:-1;47375:6:0;;-1:-1:-1;;;;;47375:6:0;47302:87;;54953:36;;;;;;;;;;-1:-1:-1;54953:36:0;;;;;;;;;;;;;;5245:4:1;5233:17;;;5215:36;;5203:2;5188:18;54953:36:0;5073:184:1;32414:104:0;;;;;;;;;;;;;:::i;55139:38::-;;;;;;;;;;;;;;;;55717:1140;;;;;;:::i;:::-;;:::i;34024:287::-;;;;;;;;;;-1:-1:-1;34024:287:0;;;;;:::i;:::-;;:::i;55322:25::-;;;;;;;;;;-1:-1:-1;55322:25:0;;;;;;;;;;;59124:107;;;;;;;;;;-1:-1:-1;59124:107:0;;;;;:::i;:::-;;:::i;60383:117::-;;;;;;;;;;-1:-1:-1;60383:117:0;;;;;:::i;:::-;;:::i;60166:210::-;;;;;;;;;;-1:-1:-1;60166:210:0;;;;;:::i;:::-;;:::i;54995:40::-;;;;;;;;;;-1:-1:-1;54995:40:0;;;;;;;;;;;57790:490;;;;;;;;;;-1:-1:-1;57790:490:0;;;;;:::i;:::-;;:::i;57195:472::-;;;;;;;;;;-1:-1:-1;57195:472:0;;;;;:::i;:::-;;:::i;54917:31::-;;;;;;;;;;-1:-1:-1;54917:31:0;;;;;;;;;;;7407:6:1;7395:19;;;7377:38;;7365:2;7350:18;54917:31:0;7233:188:1;34382:164:0;;;;;;;;;;-1:-1:-1;34382:164:0;;;;;:::i;:::-;;:::i;48212:201::-;;;;;;;;;;-1:-1:-1;48212:201:0;;;;;:::i;:::-;;:::i;55042:43::-;;;;;;;;;;-1:-1:-1;55042:43:0;;;;;;;;;;;55185:36;;;;;;;;;;-1:-1:-1;55185:36:0;;;;;;;;29132:305;29234:4;-1:-1:-1;;;;;;29271:40:0;;-1:-1:-1;;;29271:40:0;;:105;;-1:-1:-1;;;;;;;29328:48:0;;-1:-1:-1;;;29328:48:0;29271:105;:158;;;-1:-1:-1;;;;;;;;;;19166:40:0;;;29393:36;29251:178;29132:305;-1:-1:-1;;29132:305:0:o;57678:97::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;;;;;;;;;57747:9:::1;:22:::0;;-1:-1:-1;;57747:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;57678:97::o;32245:100::-;32299:13;32332:5;32325:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32245:100;:::o;33748:204::-;33816:7;33841:16;33849:7;33841;:16::i;:::-;33836:64;;33866:34;;-1:-1:-1;;;33866:34:0;;;;;;;;;;;33836:64;-1:-1:-1;33920:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33920:24:0;;33748:204::o;33311:371::-;33384:13;33400:24;33416:7;33400:15;:24::i;:::-;33384:40;;33445:5;-1:-1:-1;;;;;33439:11:0;:2;-1:-1:-1;;;;;33439:11:0;;33435:48;;33459:24;;-1:-1:-1;;;33459:24:0;;;;;;;;;;;33435:48;7607:10;-1:-1:-1;;;;;33500:21:0;;;;;;:63;;-1:-1:-1;33526:37:0;33543:5;7607:10;34382:164;:::i;33526:37::-;33525:38;33500:63;33496:138;;;33587:35;;-1:-1:-1;;;33587:35:0;;;;;;;;;;;33496:138;33646:28;33655:2;33659:7;33668:5;33646:8;:28::i;:::-;33373:309;33311:371;;:::o;58755:129::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;58848:14:::1;:30:::0;58755:129::o;58651:102::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;58725:9:::1;:22;58737:10:::0;58725:9;:22:::1;:::i;:::-;;58651:102:::0;:::o;59828:159::-;59929:4;-1:-1:-1;;;;;52000:18:0;;52008:10;52000:18;51996:184;;60601:24;;;;52092:61;;;52125:28;52142:10;52125:16;:28::i;:::-;59942:39:::1;59963:4;59969:2;59973:7;59942:20;:39::i;:::-;59828:159:::0;;;;:::o;56863:326::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;56946:18:::1;56974:13;28238:1:::0;28635:12;28425:7;28619:13;:28;-1:-1:-1;;28619:46:0;;28381:303;56974:13:::1;57032:9;::::0;56946:42;;-1:-1:-1;57032:9:0::1;;57003:25;57017:11:::0;56946:42;57003:25:::1;:::i;:::-;:38;;;;56995:70;;;::::0;-1:-1:-1;;;56995:70:0;;11148:2:1;56995:70:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:49;11265:18;;56995:70:0::1;10946:343:1::0;56995:70:0::1;57073:34;57083:9;57095:11;57073:34;;:9;:34::i;58434:102::-:0;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;58508:9:::1;:22;58520:10:::0;58508:9;:22:::1;:::i;58890:71::-:0;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;58947:6:::1;::::0;;-1:-1:-1;;58937:16:0;::::1;58947:6;::::0;;;::::1;;;58946:7;58937:16:::0;;::::1;;::::0;;58890:71::o;59048:70::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;59107:6:::1;::::0;;-1:-1:-1;;59097:16:0;::::1;59107:6:::0;;;;::::1;;;59106:7;59097:16:::0;;::::1;;::::0;;59048:70::o;59242:475::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;3779:1:::1;4377:7;;:19:::0;4369:63:::1;;;::::0;-1:-1:-1;;;4369:63:0;;11496:2:1;4369:63:0::1;::::0;::::1;11478:21:1::0;11535:2;11515:18;;;11508:30;11574:33;11554:18;;;11547:61;11625:18;;4369:63:0::1;11294:355:1::0;4369:63:0::1;3779:1;4510:7;:18:::0;59539:7:::2;59560;47375:6:::0;;-1:-1:-1;;;;;47375:6:0;;47302:87;59560:7:::2;-1:-1:-1::0;;;;;59552:21:0::2;59581;59552:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59538:69;;;59622:2;59614:11;;;::::0;::::2;;-1:-1:-1::0;3735:1:0::1;4689:7;:22:::0;59242:475::o;59993:167::-;60098:4;-1:-1:-1;;;;;52000:18:0;;52008:10;52000:18;51996:184;;60601:24;;;;52092:61;;;52125:28;52142:10;52125:16;:28::i;:::-;60111:43:::1;60136:4;60142:2;60146:7;60111:24;:43::i;58967:76::-:0;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;59023:4:::1;:12:::0;58967:76::o;58287:134::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;58361:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;58361:35:0;;::::1;::::0;;;::::1;::::0;;58287:134::o;32053:125::-;32117:7;32144:21;32157:7;32144:12;:21::i;:::-;:26;;32053:125;-1:-1:-1;;32053:125:0:o;29501:206::-;29565:7;-1:-1:-1;;;;;29589:19:0;;29585:60;;29617:28;;-1:-1:-1;;;29617:28:0;;;;;;;;;;;29585:60;-1:-1:-1;;;;;;29671:19:0;;;;;:12;:19;;;;;:27;;;;29501:206::o;47954:103::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;48019:30:::1;48046:1;48019:18;:30::i;:::-;47954:103::o:0;58544:102::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;58618:9:::1;:22;58630:10:::0;58618:9;:22:::1;:::i;32414:104::-:0;32470:13;32503:7;32496:14;;;;;:::i;55717:1140::-;55631:9;55644:10;55631:23;55623:66;;;;-1:-1:-1;;;55623:66:0;;12066:2:1;55623:66:0;;;12048:21:1;12105:2;12085:18;;;12078:30;12144:32;12124:18;;;12117:60;12194:18;;55623:66:0;11864:354:1;55623:66:0;55822:6:::1;::::0;::::1;::::0;::::1;;;55821:7;55813:43;;;::::0;-1:-1:-1;;;55813:43:0;;12425:2:1;55813:43:0::1;::::0;::::1;12407:21:1::0;12464:2;12444:18;;;12437:30;12503:25;12483:18;;;12476:53;12546:18;;55813:43:0::1;12223:347:1::0;55813:43:0::1;55901:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;55871:43;;55887:11;55871:13;28238:1:::0;28635:12;28425:7;28619:13;:28;-1:-1:-1;;28619:46:0;;28381:303;55871:13:::1;:27;;;;:::i;:::-;:43;55863:63;;;::::0;-1:-1:-1;;;55863:63:0;;12907:2:1;55863:63:0::1;::::0;::::1;12889:21:1::0;12946:1;12926:18;;;12919:29;-1:-1:-1;;;12964:18:1;;;12957:37;13011:18;;55863:63:0::1;12705:330:1::0;55863:63:0::1;55982:22;::::0;;;::::1;;;55967:11:::0;55943:21:::1;55953:10;55943:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;55934:103;;;::::0;-1:-1:-1;;;55934:103:0;;13242:2:1;55934:103:0::1;::::0;::::1;13224:21:1::0;13281:2;13261:18;;;13254:30;13320;13300:18;;;13293:58;13368:18;;55934:103:0::1;13040:352:1::0;55934:103:0::1;56092:14;;56078:11;56055:20;;:34;;;;:::i;:::-;:51;56052:759;;;56164:9;56148:11;56141:4;;:18;;;;:::i;:::-;56140:33;;56118:107;;;::::0;-1:-1:-1;;;56118:107:0;;13772:2:1;56118:107:0::1;::::0;::::1;13754:21:1::0;13811:2;13791:18;;;13784:30;-1:-1:-1;;;13830:18:1;;;13823:54;13894:18;;56118:107:0::1;13570:348:1::0;56118:107:0::1;56052:759;;;56298:26;::::0;;;::::1;;;56284:11:::0;56260:21:::1;56270:10;56260:9;:21::i;:::-;:35;;;;:::i;:::-;:64;56256:548;;;56383:9;56367:11;56360:4;;:18;;;;:::i;:::-;56359:33;;56337:107;;;::::0;-1:-1:-1;;;56337:107:0;;13772:2:1;56337:107:0::1;::::0;::::1;13754:21:1::0;13811:2;13791:18;;;13784:30;-1:-1:-1;;;13830:18:1;;;13823:54;13894:18;;56337:107:0::1;13570:348:1::0;56337:107:0::1;56492:18;::::0;;;::::1;;;56477:33:::0;::::1;;56455:117;;;;-1:-1:-1::0;;;56455:117:0::1;;;;;;;:::i;56256:548::-;56646:26;::::0;;;::::1;;;56631:41:::0;::::1;;56605:137;;;;-1:-1:-1::0;;;56605:137:0::1;;;;;;;:::i;:::-;56781:11;56757:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;56256:548:0::1;56817:34;56827:10;56839:11;56817:9;:34::i;:::-;55717:1140:::0;:::o;34024:287::-;7607:10;-1:-1:-1;;;;;34123:24:0;;;34119:54;;34156:17;;-1:-1:-1;;;34156:17:0;;;;;;;;;;;34119:54;7607:10;34186:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34186:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34186:53:0;;;;;;;;;;34255:48;;540:41:1;;;34186:42:0;;7607:10;34255:48;;513:18:1;34255:48:0;;;;;;;34024:287;;:::o;59124:107::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;59196:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;59196:27:0;;::::1;::::0;;;::::1;::::0;;59124:107::o;60383:117::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;60460:24:::1;:32:::0;;-1:-1:-1;;60460:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60383:117::o;60166:210::-;60305:4;-1:-1:-1;;;;;52000:18:0;;52008:10;52000:18;51996:184;;60601:24;;;;52092:61;;;52125:28;52142:10;52125:16;:28::i;:::-;60321:49:::1;60346:4;60352:2;60356:7;60365:4;60321:24;:49::i;:::-;60166:210:::0;;;;;:::o;57790:490::-;57889:13;57930:17;57938:8;57930:7;:17::i;:::-;57914:98;;;;-1:-1:-1;;;57914:98:0;;14528:2:1;57914:98:0;;;14510:21:1;14567:2;14547:18;;;14540:30;14606:34;14586:18;;;14579:62;-1:-1:-1;;;14657:18:1;;;14650:45;14712:19;;57914:98:0;14326:411:1;57914:98:0;58030:6;;;;;;;:15;;58040:5;58030:15;58025:50;;58062:9;58055:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57790:490;;;:::o;58025:50::-;58089:28;58120:10;:8;:10::i;:::-;58089:41;;58175:1;58150:14;58144:28;:32;:130;;;;;;;;;;;;;;;;;58212:14;58228:19;:8;:17;:19::i;:::-;58249:9;58195:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58144:130;58137:137;57790:490;-1:-1:-1;;;57790:490:0:o;57195:472::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;57294:18:::1;57322:13;28238:1:::0;28635:12;28425:7;28619:13;:28;-1:-1:-1;;28619:46:0;;28381:303;57322:13:::1;57294:42:::0;-1:-1:-1;57344:16:0::1;57365:36;57385:9:::0;57365:36:::1;::::0;::::1;;:::i;:::-;57445:9;::::0;57344:57;;-1:-1:-1;57445:9:0::1;::::0;;::::1;::::0;57416:25:::1;::::0;57344:57;;57416:25;::::1;;:::i;:::-;:38;;57408:70;;;::::0;-1:-1:-1;;;57408:70:0;;11148:2:1;57408:70:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:49;11265:18;;57408:70:0::1;10946:343:1::0;57408:70:0::1;57491:9;57486:116;57506:20:::0;;::::1;57486:116;;;57548:42;57558:9;;57568:1;57558:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57572:17;57548:42;;:9;:42::i;:::-;57528:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57486:116;;;-1:-1:-1::0;;;;;;57195:472:0:o;34382:164::-;-1:-1:-1;;;;;34503:25:0;;;34479:4;34503:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34382:164::o;48212:201::-;47375:6;;-1:-1:-1;;;;;47375:6:0;7607:10;47522:23;47514:69;;;;-1:-1:-1;;;47514:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48301:22:0;::::1;48293:73;;;::::0;-1:-1:-1;;;48293:73:0;;16477:2:1;48293:73:0::1;::::0;::::1;16459:21:1::0;16516:2;16496:18;;;16489:30;16555:34;16535:18;;;16528:62;-1:-1:-1;;;16606:18:1;;;16599:36;16652:19;;48293:73:0::1;16275:402:1::0;48293:73:0::1;48377:28;48396:8;48377:18;:28::i;35734:187::-:0;35791:4;35834:7;28238:1;35815:26;;:53;;;;;35855:13;;35845:7;:23;35815:53;:98;;;;-1:-1:-1;;35886:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35886:27:0;;;;35885:28;;35734:187::o;43904:196::-;44019:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44019:29:0;-1:-1:-1;;;;;44019:29:0;;;;;;;;;44064:28;;44019:24;;44064:28;;;;;;;43904:196;;;:::o;52598:1359::-;52991:22;52985:4;52978:36;53084:9;53078:4;53071:23;53159:8;53153:4;53146:22;53336:4;53330;53324;53318;53291:25;53284:5;53273:68;53263:274;;53457:16;53451:4;53445;53430:44;53505:16;53499:4;53492:30;53263:274;53937:1;53931:4;53924:15;52598:1359;:::o;34613:170::-;34747:28;34757:4;34763:2;34767:7;34747:9;:28::i;35929:104::-;35998:27;36008:2;36012:8;35998:27;;;;;;;;;;;;:9;:27::i;34854:185::-;34992:39;35009:4;35015:2;35019:7;34992:39;;;;;;;;;;;;:16;:39::i;30882:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30993:7:0;;28238:1;31042:23;;:47;;;;;31076:13;;31069:4;:20;31042:47;31038:886;;;31110:31;31144:17;;;:11;:17;;;;;;;;;31110:51;;;;;;;;;-1:-1:-1;;;;;31110:51:0;;;;-1:-1:-1;;;31110:51:0;;;;;;;;;;;-1:-1:-1;;;31110:51:0;;;;;;;;;;;;;;31180:729;;31230:14;;-1:-1:-1;;;;;31230:28:0;;31226:101;;31294:9;30882:1109;-1:-1:-1;;;30882:1109:0:o;31226:101::-;-1:-1:-1;;;31669:6:0;31714:17;;;;:11;:17;;;;;;;;;31702:29;;;;;;;;;-1:-1:-1;;;;;31702:29:0;;;;;-1:-1:-1;;;31702:29:0;;;;;;;;;;;-1:-1:-1;;;31702:29:0;;;;;;;;;;;;;31762:28;31758:109;;31830:9;30882:1109;-1:-1:-1;;;30882:1109:0:o;31758:109::-;31629:261;;;31091:833;31038:886;31952:31;;-1:-1:-1;;;31952:31:0;;;;;;;;;;;48573:191;48666:6;;;-1:-1:-1;;;;;48683:17:0;;;-1:-1:-1;;;;;;48683:17:0;;;;;;;48716:40;;48666:6;;;48683:17;48666:6;;48716:40;;48647:16;;48716:40;48636:128;48573:191;:::o;35110:369::-;35277:28;35287:4;35293:2;35297:7;35277:9;:28::i;:::-;-1:-1:-1;;;;;35320:13:0;;9269:19;:23;;35320:76;;;;;35340:56;35371:4;35377:2;35381:7;35390:5;35340:30;:56::i;:::-;35339:57;35320:76;35316:156;;;35420:40;;-1:-1:-1;;;35420:40:0;;;;;;;;;;;59725:97;59778:13;59807:9;59800:16;;;;;:::i;5089:723::-;5145:13;5366:5;5375:1;5366:10;5362:53;;-1:-1:-1;;5393:10:0;;;;;;;;;;;;-1:-1:-1;;;5393:10:0;;;;;5089:723::o;5362:53::-;5440:5;5425:12;5481:78;5488:9;;5481:78;;5514:8;;;;:::i;:::-;;-1:-1:-1;5537:10:0;;-1:-1:-1;5545:2:0;5537:10;;:::i;:::-;;;5481:78;;;5569:19;5601:6;5591:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5591:17:0;;5569:39;;5619:154;5626:10;;5619:154;;5653:11;5663:1;5653:11;;:::i;:::-;;-1:-1:-1;5722:10:0;5730:2;5722:5;:10;:::i;:::-;5709:24;;:2;:24;:::i;:::-;5696:39;;5679:6;5686;5679:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5679:56:0;;;;;;;;-1:-1:-1;5750:11:0;5759:2;5750:11;;:::i;:::-;;;5619:154;;;5797:6;5089:723;-1:-1:-1;;;;5089:723:0:o;38847:2130::-;38962:35;39000:21;39013:7;39000:12;:21::i;:::-;38962:59;;39060:4;-1:-1:-1;;;;;39038:26:0;:13;:18;;;-1:-1:-1;;;;;39038:26:0;;39034:67;;39073:28;;-1:-1:-1;;;39073:28:0;;;;;;;;;;;39034:67;39114:22;7607:10;-1:-1:-1;;;;;39140:20:0;;;;:73;;-1:-1:-1;39177:36:0;39194:4;7607:10;34382:164;:::i;39177:36::-;39140:126;;;-1:-1:-1;7607:10:0;39230:20;39242:7;39230:11;:20::i;:::-;-1:-1:-1;;;;;39230:36:0;;39140:126;39114:153;;39285:17;39280:66;;39311:35;;-1:-1:-1;;;39311:35:0;;;;;;;;;;;39280:66;-1:-1:-1;;;;;39361:16:0;;39357:52;;39386:23;;-1:-1:-1;;;39386:23:0;;;;;;;;;;;39357:52;39530:35;39547:1;39551:7;39560:4;39530:8;:35::i;:::-;-1:-1:-1;;;;;39861:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39861:31:0;;;;;;;-1:-1:-1;;39861:31:0;;;;;;;39907:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39907:29:0;;;;;;;;;;;39987:20;;;:11;:20;;;;;;40022:18;;-1:-1:-1;;;;;;40055:49:0;;;;-1:-1:-1;;;40088:15:0;40055:49;;;;;;;;;;40378:11;;40438:24;;;;;40481:13;;39987:20;;40438:24;;40481:13;40477:384;;40691:13;;40676:11;:28;40672:174;;40729:20;;40798:28;;;;40772:54;;-1:-1:-1;;;40772:54:0;-1:-1:-1;;;;;;40772:54:0;;;-1:-1:-1;;;;;40729:20:0;;40772:54;;;;40672:174;39836:1036;;;40908:7;40904:2;-1:-1:-1;;;;;40889:27:0;40898:4;-1:-1:-1;;;;;40889:27:0;;;;;;;;;;;40927:42;59828:159;36396:163;36519:32;36525:2;36529:8;36539:5;36546:4;36519:5;:32::i;44592:667::-;44776:72;;-1:-1:-1;;;44776:72:0;;44755:4;;-1:-1:-1;;;;;44776:36:0;;;;;:72;;7607:10;;44827:4;;44833:7;;44842:5;;44776:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44776:72:0;;;;;;;;-1:-1:-1;;44776:72:0;;;;;;;;;;;;:::i;:::-;;;44772:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45010:6;:13;45027:1;45010:18;45006:235;;45056:40;;-1:-1:-1;;;45056:40:0;;;;;;;;;;;45006:235;45199:6;45193:13;45184:6;45180:2;45176:15;45169:38;44772:480;-1:-1:-1;;;;;;44895:55:0;-1:-1:-1;;;44895:55:0;;-1:-1:-1;44592:667:0;;;;;;:::o;36818:1775::-;36957:20;36980:13;-1:-1:-1;;;;;37008:16:0;;37004:48;;37033:19;;-1:-1:-1;;;37033:19:0;;;;;;;;;;;37004:48;37067:8;37079:1;37067:13;37063:44;;37089:18;;-1:-1:-1;;;37089:18:0;;;;;;;;;;;37063:44;-1:-1:-1;;;;;37458:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37517:49:0;;37458:44;;;;;;;;37517:49;;;;-1:-1:-1;;37458:44:0;;;;;;37517:49;;;;;;;;;;;;;;;;37583:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37633:66:0;;;;-1:-1:-1;;;37683:15:0;37633:66;;;;;;;;;;37583:25;37780:23;;;37824:4;:23;;;;-1:-1:-1;;;;;;37832:13:0;;9269:19;:23;;37832:15;37820:641;;;37868:314;37899:38;;37924:12;;-1:-1:-1;;;;;37899:38:0;;;37916:1;;37899:38;;37916:1;;37899:38;37965:69;38004:1;38008:2;38012:14;;;;;;38028:5;37965:30;:69::i;:::-;37960:174;;38070:40;;-1:-1:-1;;;38070:40:0;;;;;;;;;;;37960:174;38177:3;38161:12;:19;37868:314;;38263:12;38246:13;;:29;38242:43;;38277:8;;;38242:43;37820:641;;;38326:120;38357:40;;38382:14;;;;;-1:-1:-1;;;;;38357:40:0;;;38374:1;;38357:40;;38374:1;;38357:40;38441:3;38425:12;:19;38326:120;;37820:641;-1:-1:-1;38475:13:0;:28;38525:60;59828:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2272:254;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2531:127::-;2592:10;2587:3;2583:20;2580:1;2573:31;2623:4;2620:1;2613:15;2647:4;2644:1;2637:15;2663:632;2728:5;2758:18;2799:2;2791:6;2788:14;2785:40;;;2805:18;;:::i;:::-;2880:2;2874:9;2848:2;2934:15;;-1:-1:-1;;2930:24:1;;;2956:2;2926:33;2922:42;2910:55;;;2980:18;;;3000:22;;;2977:46;2974:72;;;3026:18;;:::i;:::-;3066:10;3062:2;3055:22;3095:6;3086:15;;3125:6;3117;3110:22;3165:3;3156:6;3151:3;3147:16;3144:25;3141:45;;;3182:1;3179;3172:12;3141:45;3232:6;3227:3;3220:4;3212:6;3208:17;3195:44;3287:1;3280:4;3271:6;3263;3259:19;3255:30;3248:41;;;;2663:632;;;;;:::o;3300:451::-;3369:6;3422:2;3410:9;3401:7;3397:23;3393:32;3390:52;;;3438:1;3435;3428:12;3390:52;3478:9;3465:23;3511:18;3503:6;3500:30;3497:50;;;3543:1;3540;3533:12;3497:50;3566:22;;3619:4;3611:13;;3607:27;-1:-1:-1;3597:55:1;;3648:1;3645;3638:12;3597:55;3671:74;3737:7;3732:2;3719:16;3714:2;3710;3706:11;3671:74;:::i;3938:328::-;4015:6;4023;4031;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4123:29;4142:9;4123:29;:::i;:::-;4113:39;;4171:38;4205:2;4194:9;4190:18;4171:38;:::i;:::-;4161:48;;4256:2;4245:9;4241:18;4228:32;4218:42;;3938:328;;;;;:::o;4271:258::-;4338:6;4346;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;4438:28;4456:9;4438:28;:::i;:::-;4428:38;;4485;4519:2;4508:9;4504:18;4485:38;:::i;:::-;4475:48;;4271:258;;;;;:::o;4534:156::-;4600:20;;4660:4;4649:16;;4639:27;;4629:55;;4680:1;4677;4670:12;4695:182;4752:6;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4844:27;4861:9;4844:27;:::i;4882:186::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5033:29;5052:9;5033:29;:::i;5262:160::-;5327:20;;5383:13;;5376:21;5366:32;;5356:60;;5412:1;5409;5402:12;5427:254;5492:6;5500;5553:2;5541:9;5532:7;5528:23;5524:32;5521:52;;;5569:1;5566;5559:12;5521:52;5592:29;5611:9;5592:29;:::i;:::-;5582:39;;5640:35;5671:2;5660:9;5656:18;5640:35;:::i;5686:180::-;5742:6;5795:2;5783:9;5774:7;5770:23;5766:32;5763:52;;;5811:1;5808;5801:12;5763:52;5834:26;5850:9;5834:26;:::i;5871:667::-;5966:6;5974;5982;5990;6043:3;6031:9;6022:7;6018:23;6014:33;6011:53;;;6060:1;6057;6050:12;6011:53;6083:29;6102:9;6083:29;:::i;:::-;6073:39;;6131:38;6165:2;6154:9;6150:18;6131:38;:::i;:::-;6121:48;;6216:2;6205:9;6201:18;6188:32;6178:42;;6271:2;6260:9;6256:18;6243:32;6298:18;6290:6;6287:30;6284:50;;;6330:1;6327;6320:12;6284:50;6353:22;;6406:4;6398:13;;6394:27;-1:-1:-1;6384:55:1;;6435:1;6432;6425:12;6384:55;6458:74;6524:7;6519:2;6506:16;6501:2;6497;6493:11;6458:74;:::i;:::-;6448:84;;;5871:667;;;;;;;:::o;6543:685::-;6636:6;6644;6652;6705:2;6693:9;6684:7;6680:23;6676:32;6673:52;;;6721:1;6718;6711:12;6673:52;6744:27;6761:9;6744:27;:::i;:::-;6734:37;;6822:2;6811:9;6807:18;6794:32;6845:18;6886:2;6878:6;6875:14;6872:34;;;6902:1;6899;6892:12;6872:34;6940:6;6929:9;6925:22;6915:32;;6985:7;6978:4;6974:2;6970:13;6966:27;6956:55;;7007:1;7004;6997:12;6956:55;7047:2;7034:16;7073:2;7065:6;7062:14;7059:34;;;7089:1;7086;7079:12;7059:34;7142:7;7137:2;7127:6;7124:1;7120:14;7116:2;7112:23;7108:32;7105:45;7102:65;;;7163:1;7160;7153:12;7102:65;7194:2;7190;7186:11;7176:21;;7216:6;7206:16;;;;;6543:685;;;;;:::o;7426:260::-;7494:6;7502;7555:2;7543:9;7534:7;7530:23;7526:32;7523:52;;;7571:1;7568;7561:12;7523:52;7594:29;7613:9;7594:29;:::i;7691:356::-;7893:2;7875:21;;;7912:18;;;7905:30;7971:34;7966:2;7951:18;;7944:62;8038:2;8023:18;;7691:356::o;8052:380::-;8131:1;8127:12;;;;8174;;;8195:61;;8249:4;8241:6;8237:17;8227:27;;8195:61;8302:2;8294:6;8291:14;8271:18;8268:38;8265:161;;8348:10;8343:3;8339:20;8336:1;8329:31;8383:4;8380:1;8373:15;8411:4;8408:1;8401:15;8265:161;;8052:380;;;:::o;8563:545::-;8665:2;8660:3;8657:11;8654:448;;;8701:1;8726:5;8722:2;8715:17;8771:4;8767:2;8757:19;8841:2;8829:10;8825:19;8822:1;8818:27;8812:4;8808:38;8877:4;8865:10;8862:20;8859:47;;;-1:-1:-1;8900:4:1;8859:47;8955:2;8950:3;8946:12;8943:1;8939:20;8933:4;8929:31;8919:41;;9010:82;9028:2;9021:5;9018:13;9010:82;;;9073:17;;;9054:1;9043:13;9010:82;;9284:1352;9410:3;9404:10;9437:18;9429:6;9426:30;9423:56;;;9459:18;;:::i;:::-;9488:97;9578:6;9538:38;9570:4;9564:11;9538:38;:::i;:::-;9532:4;9488:97;:::i;:::-;9640:4;;9704:2;9693:14;;9721:1;9716:663;;;;10423:1;10440:6;10437:89;;;-1:-1:-1;10492:19:1;;;10486:26;10437:89;-1:-1:-1;;9241:1:1;9237:11;;;9233:24;9229:29;9219:40;9265:1;9261:11;;;9216:57;10539:81;;9686:944;;9716:663;8510:1;8503:14;;;8547:4;8534:18;;-1:-1:-1;;9752:20:1;;;9870:236;9884:7;9881:1;9878:14;9870:236;;;9973:19;;;9967:26;9952:42;;10065:27;;;;10033:1;10021:14;;;;9900:19;;9870:236;;;9874:3;10134:6;10125:7;10122:19;10119:201;;;10195:19;;;10189:26;-1:-1:-1;;10278:1:1;10274:14;;;10290:3;10270:24;10266:37;10262:42;10247:58;10232:74;;10119:201;-1:-1:-1;;;;;10366:1:1;10350:14;;;10346:22;10333:36;;-1:-1:-1;9284:1352:1:o;10641:127::-;10702:10;10697:3;10693:20;10690:1;10683:31;10733:4;10730:1;10723:15;10757:4;10754:1;10747:15;10773:168;10840:6;10866:10;;;10878;;;10862:27;;10901:11;;;10898:37;;;10915:18;;:::i;:::-;10898:37;10773:168;;;;:::o;12575:125::-;12640:9;;;12661:10;;;12658:36;;;12674:18;;:::i;13397:168::-;13470:9;;;13501;;13518:15;;;13512:22;;13498:37;13488:71;;13539:18;;:::i;13923:398::-;14125:2;14107:21;;;14164:2;14144:18;;;14137:30;14203:34;14198:2;14183:18;;14176:62;-1:-1:-1;;;14269:2:1;14254:18;;14247:32;14311:3;14296:19;;13923:398::o;14742:1256::-;14966:3;15004:6;14998:13;15030:4;15043:64;15100:6;15095:3;15090:2;15082:6;15078:15;15043:64;:::i;:::-;15170:13;;15129:16;;;;15192:68;15170:13;15129:16;15227:15;;;15192:68;:::i;:::-;15349:13;;15282:20;;;15322:1;;15387:36;15349:13;15387:36;:::i;:::-;15442:1;15459:18;;;15486:141;;;;15641:1;15636:337;;;;15452:521;;15486:141;-1:-1:-1;;15521:24:1;;15507:39;;15598:16;;15591:24;15577:39;;15566:51;;;-1:-1:-1;15486:141:1;;15636:337;15667:6;15664:1;15657:17;15715:2;15712:1;15702:16;15740:1;15754:169;15768:8;15765:1;15762:15;15754:169;;;15850:14;;15835:13;;;15828:37;15893:16;;;;15785:10;;15754:169;;;15758:3;;15954:8;15947:5;15943:20;15936:27;;15452:521;-1:-1:-1;15989:3:1;;14742:1256;-1:-1:-1;;;;;;;;;;14742:1256:1:o;16003:127::-;16064:10;16059:3;16055:20;16052:1;16045:31;16095:4;16092:1;16085:15;16119:4;16116:1;16109:15;16135:135;16174:3;16195:17;;;16192:43;;16215:18;;:::i;:::-;-1:-1:-1;16262:1:1;16251:13;;16135:135::o;16682:127::-;16743:10;16738:3;16734:20;16731:1;16724:31;16774:4;16771:1;16764:15;16798:4;16795:1;16788:15;16814:120;16854:1;16880;16870:35;;16885:18;;:::i;:::-;-1:-1:-1;16919:9:1;;16814:120::o;16939:128::-;17006:9;;;17027:11;;;17024:37;;;17041:18;;:::i;17072:112::-;17104:1;17130;17120:35;;17135:18;;:::i;:::-;-1:-1:-1;17169:9:1;;17072:112::o;17189:489::-;-1:-1:-1;;;;;17458:15:1;;;17440:34;;17510:15;;17505:2;17490:18;;17483:43;17557:2;17542:18;;17535:34;;;17605:3;17600:2;17585:18;;17578:31;;;17383:4;;17626:46;;17652:19;;17644:6;17626:46;:::i;:::-;17618:54;17189:489;-1:-1:-1;;;;;;17189:489:1:o;17683:249::-;17752:6;17805:2;17793:9;17784:7;17780:23;17776:32;17773:52;;;17821:1;17818;17811:12;17773:52;17853:9;17847:16;17872:30;17896:5;17872:30;:::i

Swarm Source

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