ETH Price: $2,980.78 (+2.08%)
Gas: 1 Gwei

Token

$8ncients (8NCIENTS)
 

Overview

Max Total Supply

610 8NCIENTS

Holders

553

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 8NCIENTS
0x4ca1840968d4d493ad3fb47e5f34d73a7bcd31a6
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:
$8ncients

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-02
*/

/**
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⠤⠤⠤⠄⠀⠒⠢⣄⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⡠⠐⢈⠄⠀⠀⠀⠀⠀⠀⠀⠀⢸⠓⠄⠀⠀⠀
⠀⠀⠀⠀⠐⠈⠠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠈⢂⠀⠀
⠀⠀⢀⠊⠀⡐⠁⠀⠀⠀⠀⠀⠀⠀⠀⢠⢊⠔⠈⠀⠀⠀⠆⠀
⠀⣠⡃⠀⢰⠀⠀⠀⠀⢀⡠⠄⠐⠒⠀⢸⢜⠄⠀⠀⠀⠀⠀⠀
⡐⣁⡑⠀⠘⠀⠀⢀⠔⢁⣀⣤⣤⣤⣒⣤⠀⠈⠀⠀⠀⠀⡄⠀
⢫⣿⢧⠀⢸⠀⠀⣡⣶⣯⠭⢄⣀⣼⡏⠁⢀⡤⠀⠀⠀⢐⠁⠀
⢠⢿⣾⣧⠈⠀⢠⣿⣿⣗⢢⣤⣿⡿⢋⠀⡏⠀⠀⠀⠀⡌⠀⠀
⠘⠳⠙⠻⠀⠀⠰⠿⠟⠛⠻⢍⠫⠒⠁⡰⠀⠀⠀⢀⠜⠀⠀⠀
⠘⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠠⢊⠀⡇⢠⠒⠁⠀⠀⠀⠀
⠀⠀⠈⢦⠂⠀⠀⠀⠀⢠⠊⠁⠀⢀⠄⠀⡇⢸⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠘⢄⡄⢤⢄⠀⠘⡄⠀⠀⡀⠄⢊⡅⡆⢆⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢊⠀⠀⠀⠈⢁⠴⠅⣀⣀⠘⢣⠠⠈⠢⢀⠀⠀⠀
⠀⠀⠀⠀⠀⠈⠢⢄⣀⡠⠊⠀⠀⠈⢣⠀⠈⠃⠡⠀⠀⠉⠐⠄
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠰⠇⠀⠀⠐⡑⠤⢀⠀⠀
 */

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    pragma solidity ^0.8.7;
    
    contract $8ncients is ERC721A, Ownable {
    using Strings for uint256;


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

  
  

  uint256 public cost = 0.003 ether;
  uint256 public whiteListCost = 0 ;
  

  uint16 public maxSupply = 4888;
  uint8 public maxMintAmountPerTx = 8;
    uint8 public maxFreeMintAmountPerWallet = 1;
                                                             
  bool public WLpaused = true;
  bool public paused = true;
  bool public reveal =false;
  mapping (address => uint8) public NFTPerWLAddress;
   mapping (address => uint8) public NFTPerPublicAddress;
  mapping (address => bool) public isWhitelisted;
 
  
  
 
  

  constructor() ERC721A("$8ncients", "8NCIENTS") {
  }

 function SACRIFICE(uint[] calldata token) external onlyOwner{
     for(uint i ; i <token.length ; i ++)
   _burn(token[i]);
 }
  

  
 
  function CRE8TE(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
       
         
    }
    


    _safeMint(msg.sender , _mintAmount);

    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Invasion(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 UFOLanding(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 setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }



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

}

    
  function addToPresaleWhitelist(address[] calldata entries) external onlyOwner {
        for(uint8 i = 0; i < entries.length; i++) {
            isWhitelisted[entries[i]] = true;
        }   
    }

    function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner {
        for(uint8 i = 0; i < entries.length; i++) {
             isWhitelisted[entries[i]] = false;
        }
    }

function whitelistMint(uint8 _mintAmount) external payable {
        
    
        uint8 nft = NFTPerWLAddress[msg.sender];
       require(isWhitelisted[msg.sender],  "You are not whitelisted");

       require (nft + _mintAmount <= maxMintAmountPerTx, "Exceeds max  limit  per address");
      


    require(!WLpaused, "Whitelist minting is over!");
         if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= whiteListCost * costAmount, "Insufficient funds!");
       }
       
         
    }
    
    

     _safeMint(msg.sender , _mintAmount);
      NFTPerWLAddress[msg.sender] =nft + _mintAmount;
     
      delete _mintAmount;
       delete nft;
    
    }

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


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

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

  }

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

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

  }

 

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


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"CRE8TE","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Invasion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"token","type":"uint256[]"}],"name":"SACRIFICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"UFOLanding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","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":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","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":[],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000130565b50660aa87bee538000600c556000600d55600e805466ffffffffffffff1916650101010813181790553480156200005e57600080fd5b50604080518082018252600981526824386e6369656e747360b81b602080830191825283518085019094526008845267384e4349454e545360c01b908401528151919291620000b09160029162000130565b508051620000c690600390602084019062000130565b50506000805550620000d833620000de565b62000213565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013e90620001d6565b90600052602060002090601f016020900481019282620001625760008555620001ad565b82601f106200017d57805160ff1916838001178555620001ad565b82800160010185558215620001ad579182015b82811115620001ad57825182559160200191906001019062000190565b50620001bb929150620001bf565b5090565b5b80821115620001bb5760008155600101620001c0565b600181811c90821680620001eb57607f821691505b602082108114156200020d57634e487b7160e01b600052602260045260246000fd5b50919050565b612b4580620002236000396000f3fe6080604052600436106102885760003560e01c80637ec4a6591161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb01146107ab578063e94053c7146107d9578063e985e9c514610809578063eef440af14610852578063f2fde38b14610867578063f8bf51721461088757600080fd5b8063a475b5dd146106f7578063aa06229014610718578063b88d4fde14610738578063bfc4eae214610758578063c87b56dd1461076b578063d1d192131461078b57600080fd5b806394354fd01161011357806394354fd01461064257806395d89b41146106625780639d080d15146106775780639ef0efd314610697578063a22cb465146106b7578063a45a1b12146106d757600080fd5b80637ec4a6591461058c5780637f6e9093146105ac5780638da5cb5b146105ce5780638e07484c146105ec5780638f65fe0a1461060c5780639257e0441461062c57600080fd5b80633af32abf116101fe57806359bf5dbb116101b757806359bf5dbb146104bf5780635c975abb1461050157806360e85cde146105245780636352211e1461053757806370a0823114610557578063715018a61461057757600080fd5b80633af32abf146104055780633bd64968146104355780633ccfd60b1461044a57806342842e0e1461045f57806344a0d68a1461047f5780634d9c18481461049f57600080fd5b8063095ea7b311610250578063095ea7b3146103535780631067fcc71461037357806313faede61461039357806318160ddd146103b757806323b872dd146103d057806337a66d85146103f057600080fd5b806301ffc9a71461028d57806306421c2f146102c257806306fdde03146102e4578063081812fc14610306578063093cfa631461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461261a565b6108a8565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461269c565b6108fa565b005b3480156102f057600080fd5b506102f9610945565b6040516102b99190612886565b34801561031257600080fd5b506103266103213660046126d3565b6109d7565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e2610a1b565b34801561035f57600080fd5b506102e261036e3660046125af565b610a68565b34801561037f57600080fd5b506102e261038e366004612654565b610af6565b34801561039f57600080fd5b506103a9600c5481565b6040519081526020016102b9565b3480156103c357600080fd5b50600154600054036103a9565b3480156103dc57600080fd5b506102e26103eb3660046124bc565b610b37565b3480156103fc57600080fd5b506102e2610b42565b34801561041157600080fd5b506102ad61042036600461246e565b60116020526000908152604090205460ff1681565b34801561044157600080fd5b506102e2610ba1565b34801561045657600080fd5b506102e2610bef565b34801561046b57600080fd5b506102e261047a3660046124bc565b610c48565b34801561048b57600080fd5b506102e261049a3660046126d3565b610c63565b3480156104ab57600080fd5b506102e26104ba3660046126ec565b610c92565b3480156104cb57600080fd5b506104ef6104da36600461246e565b600f6020526000908152604090205460ff1681565b60405160ff90911681526020016102b9565b34801561050d57600080fd5b50600e546102ad9065010000000000900460ff1681565b6102e26105323660046126ec565b610cdc565b34801561054357600080fd5b506103266105523660046126d3565b610f07565b34801561056357600080fd5b506103a961057236600461246e565b610f19565b34801561058357600080fd5b506102e2610f67565b34801561059857600080fd5b506102e26105a7366004612654565b610f9d565b3480156105b857600080fd5b50600e546102ad90640100000000900460ff1681565b3480156105da57600080fd5b506008546001600160a01b0316610326565b3480156105f857600080fd5b506102e26106073660046125d9565b610fda565b34801561061857600080fd5b506102e26106273660046125d9565b61107c565b34801561063857600080fd5b506103a9600d5481565b34801561064e57600080fd5b50600e546104ef9062010000900460ff1681565b34801561066e57600080fd5b506102f961111e565b34801561068357600080fd5b506102e26106923660046126b7565b61112d565b3480156106a357600080fd5b506102e26106b2366004612707565b6111d0565b3480156106c357600080fd5b506102e26106d2366004612573565b6112d0565b3480156106e357600080fd5b506102e26106f23660046125d9565b611366565b34801561070357600080fd5b50600e546102ad90600160301b900460ff1681565b34801561072457600080fd5b506102e26107333660046126ec565b6113ce565b34801561074457600080fd5b506102e26107533660046124f8565b611416565b6102e26107663660046126ec565b611467565b34801561077757600080fd5b506102f96107863660046126d3565b6116a9565b34801561079757600080fd5b506102e26107a63660046126d3565b61181a565b3480156107b757600080fd5b50600e546107c69061ffff1681565b60405161ffff90911681526020016102b9565b3480156107e557600080fd5b506104ef6107f436600461246e565b60106020526000908152604090205460ff1681565b34801561081557600080fd5b506102ad610824366004612489565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085e57600080fd5b506102f9611849565b34801561087357600080fd5b506102e261088236600461246e565b6118d7565b34801561089357600080fd5b50600e546104ef906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108d957506001600160e01b03198216635b5e139f60e01b145b806108f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461092d5760405162461bcd60e51b815260040161092490612899565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b606060028054610954906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610980906129f7565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b60006109e282611972565b6109ff576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a455760405162461bcd60e51b815260040161092490612899565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b6000610a7382610f07565b9050806001600160a01b0316836001600160a01b03161415610aa85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ac85750610ac68133610824565b155b15610ae6576040516367d9dca160e11b815260040160405180910390fd5b610af183838361199d565b505050565b6008546001600160a01b03163314610b205760405162461bcd60e51b815260040161092490612899565b8051610b3390600b9060208401906122d6565b5050565b610af18383836119f9565b6008546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161092490612899565b600e805464ff000000001960ff650100000000008084049190911615021665ffff000000001990911617640100000000179055565b6008546001600160a01b03163314610bcb5760405162461bcd60e51b815260040161092490612899565b600e805466ff000000000000198116600160301b9182900460ff1615909102179055565b6008546001600160a01b03163314610c195760405162461bcd60e51b815260040161092490612899565b6040514790339082156108fc029083906000818181858888f19350505050158015610b33573d6000803e3d6000fd5b610af183838360405180602001604052806000815250611416565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161092490612899565b600c55565b6008546001600160a01b03163314610cbc5760405162461bcd60e51b815260040161092490612899565b600e805460ff90921663010000000263ff00000019909216919091179055565b336000908152600f602090815260408083205460119092529091205460ff9182169116610d4b5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610924565b600e5462010000900460ff16610d618383612939565b60ff161115610db25760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820206c696d697420207065722061646472657373006044820152606401610924565b600e54640100000000900460ff1615610e0d5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610924565b600e5460ff6301000000909104811690821610610e59578160ff16600d54610e359190612972565b341015610e545760405162461bcd60e51b8152600401610924906128ce565b610ecb565b6000610e658284612939565b600e5490915060ff630100000090910481169082161115610ec957600e54610e97906301000000900460ff16826129a8565b90508060ff16600d54610eaa9190612972565b341015610ec95760405162461bcd60e51b8152600401610924906128ce565b505b610ed8338360ff16611bd5565b610ee28282612939565b336000908152600f60205260409020805460ff191660ff929092169190911790555050565b6000610f1282611bef565b5192915050565b60006001600160a01b038216610f42576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f915760405162461bcd60e51b815260040161092490612899565b610f9b6000611d09565b565b6008546001600160a01b03163314610fc75760405162461bcd60e51b815260040161092490612899565b8051610b339060099060208401906122d6565b6008546001600160a01b031633146110045760405162461bcd60e51b815260040161092490612899565b60005b60ff8116821115610af15760016011600085858560ff1681811061102d5761102d612aad565b9050602002016020810190611042919061246e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061107481612a4d565b915050611007565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260040161092490612899565b60005b60ff8116821115610af15760006011600085858560ff168181106110cf576110cf612aad565b90506020020160208101906110e4919061246e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061111681612a4d565b9150506110a9565b606060038054610954906129f7565b6008546001600160a01b031633146111575760405162461bcd60e51b815260040161092490612899565b60006111666001546000540390565b600e5490915061ffff1661117a84836128fb565b61ffff1611156111c25760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610924565b610af1828461ffff16611bd5565b6008546001600160a01b031633146111fa5760405162461bcd60e51b815260040161092490612899565b60006112096001546000540390565b9050600061121a8360ff8716612972565b600e5490915061ffff908116906112349083908516612921565b11156112785760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610924565b60005b838110156112c8576112b685858381811061129857611298612aad565b90506020020160208101906112ad919061246e565b8760ff16611bd5565b806112c081612a32565b91505061127b565b505050505050565b6001600160a01b0382163314156112fa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113905760405162461bcd60e51b815260040161092490612899565b60005b81811015610af1576113bc8383838181106113b0576113b0612aad565b90506020020135611d5b565b806113c681612a32565b915050611393565b6008546001600160a01b031633146113f85760405162461bcd60e51b815260040161092490612899565b600e805460ff909216620100000262ff000019909216919091179055565b6114218484846119f9565b6001600160a01b0383163b15158015611443575061144184848484611d66565b155b15611461576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006114766001546000540390565b33600090815260106020526040902054600e5491925060ff9081169161ffff16906114a3908516846128fb565b61ffff1611156114eb5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610924565b600e5462010000900460ff166115018285612939565b60ff1611156115525760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610924565b600e5465010000000000900460ff16156115ae5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610924565b600e5460ff63010000009091048116908216106115fa578260ff16600c546115d69190612972565b3410156115f55760405162461bcd60e51b8152600401610924906128ce565b61166c565b60006116068285612939565b600e5490915060ff63010000009091048116908216111561166a57600e54611638906301000000900460ff16826129a8565b90508060ff16600c5461164b9190612972565b34101561166a5760405162461bcd60e51b8152600401610924906128ce565b505b611679338460ff16611bd5565b6116838184612939565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60606116b482611972565b6117185760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610924565b600e54600160301b900460ff166117bb57600b8054611736906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611762906129f7565b80156117af5780601f10611784576101008083540402835291602001916117af565b820191906000526020600020905b81548152906001019060200180831161179257829003601f168201915b50505050509050919050565b60006117c5611e5e565b905060008151116117e55760405180602001604052806000815250611813565b806117ef84611e6d565b600a60405160200161180393929190612785565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118445760405162461bcd60e51b815260040161092490612899565b600d55565b600b8054611856906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611882906129f7565b80156118cf5780601f106118a4576101008083540402835291602001916118cf565b820191906000526020600020905b8154815290600101906020018083116118b257829003601f168201915b505050505081565b6008546001600160a01b031633146119015760405162461bcd60e51b815260040161092490612899565b6001600160a01b0381166119665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610924565b61196f81611d09565b50565b60008054821080156108f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a0482611bef565b9050836001600160a01b031681600001516001600160a01b031614611a3b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a595750611a598533610824565b80611a74575033611a69846109d7565b6001600160a01b0316145b905080611a9457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611abb57604051633a954ecd60e21b815260040160405180910390fd5b611ac76000848761199d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b9b576000548214611b9b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612af083398151915260405160405180910390a45b5050505050565b610b33828260405180602001604052806000815250611f6a565b604080516060810182526000808252602082018190529181019190915281600054811015611cf057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611cee5780516001600160a01b031615611c85579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ce9579392505050565b611c85565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61196f816000611f77565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d9b903390899088908890600401612849565b602060405180830381600087803b158015611db557600080fd5b505af1925050508015611de5575060408051601f3d908101601f19168201909252611de291810190612637565b60015b611e40573d808015611e13576040519150601f19603f3d011682016040523d82523d6000602084013e611e18565b606091505b508051611e38576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610954906129f7565b606081611e915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ebb5780611ea581612a32565b9150611eb49050600a8361295e565b9150611e95565b6000816001600160401b03811115611ed557611ed5612ac3565b6040519080825280601f01601f191660200182016040528015611eff576020820181803683370190505b5090505b8415611e5657611f14600183612991565b9150611f21600a86612a6d565b611f2c906030612921565b60f81b818381518110611f4157611f41612aad565b60200101906001600160f81b031916908160001a905350611f63600a8661295e565b9450611f03565b610af1838383600161212a565b6000611f8283611bef565b80519091508215611fe8576000336001600160a01b0383161480611fab5750611fab8233610824565b80611fc6575033611fbb866109d7565b6001600160a01b0316145b905080611fe657604051632ce44b5f60e11b815260040160405180910390fd5b505b611ff46000858361199d565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166120f25760005482146120f257805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612af0833981519152908390a4505060018054810190555050565b6000546001600160a01b03851661215357604051622e076360e81b815260040160405180910390fd5b836121715760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561222257506001600160a01b0387163b15155b15612299575b60405182906001600160a01b03891690600090600080516020612af0833981519152908290a46122616000888480600101955088611d66565b61227e576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561222857826000541461229457600080fd5b6122cd565b5b6040516001830192906001600160a01b03891690600090600080516020612af0833981519152908290a48082141561229a575b50600055611bce565b8280546122e2906129f7565b90600052602060002090601f016020900481019282612304576000855561234a565b82601f1061231d57805160ff191683800117855561234a565b8280016001018555821561234a579182015b8281111561234a57825182559160200191906001019061232f565b5061235692915061235a565b5090565b5b80821115612356576000815560010161235b565b60006001600160401b038084111561238957612389612ac3565b604051601f8501601f19908116603f011681019082821181831017156123b1576123b1612ac3565b816040528093508581528686860111156123ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123fb57600080fd5b919050565b60008083601f84011261241257600080fd5b5081356001600160401b0381111561242957600080fd5b6020830191508360208260051b850101111561244457600080fd5b9250929050565b803561ffff811681146123fb57600080fd5b803560ff811681146123fb57600080fd5b60006020828403121561248057600080fd5b611813826123e4565b6000806040838503121561249c57600080fd5b6124a5836123e4565b91506124b3602084016123e4565b90509250929050565b6000806000606084860312156124d157600080fd5b6124da846123e4565b92506124e8602085016123e4565b9150604084013590509250925092565b6000806000806080858703121561250e57600080fd5b612517856123e4565b9350612525602086016123e4565b92506040850135915060608501356001600160401b0381111561254757600080fd5b8501601f8101871361255857600080fd5b6125678782356020840161236f565b91505092959194509250565b6000806040838503121561258657600080fd5b61258f836123e4565b9150602083013580151581146125a457600080fd5b809150509250929050565b600080604083850312156125c257600080fd5b6125cb836123e4565b946020939093013593505050565b600080602083850312156125ec57600080fd5b82356001600160401b0381111561260257600080fd5b61260e85828601612400565b90969095509350505050565b60006020828403121561262c57600080fd5b813561181381612ad9565b60006020828403121561264957600080fd5b815161181381612ad9565b60006020828403121561266657600080fd5b81356001600160401b0381111561267c57600080fd5b8201601f8101841361268d57600080fd5b611e568482356020840161236f565b6000602082840312156126ae57600080fd5b6118138261244b565b600080604083850312156126ca57600080fd5b6124a58361244b565b6000602082840312156126e557600080fd5b5035919050565b6000602082840312156126fe57600080fd5b6118138261245d565b60008060006040848603121561271c57600080fd5b6127258461245d565b925060208401356001600160401b0381111561274057600080fd5b61274c86828701612400565b9497909650939450505050565b600081518084526127718160208601602086016129cb565b601f01601f19169290920160200192915050565b6000845160206127988285838a016129cb565b8551918401916127ab8184848a016129cb565b8554920191600090600181811c90808316806127c857607f831692505b8583108114156127e657634e487b7160e01b85526022600452602485fd5b8080156127fa576001811461280b57612838565b60ff19851688528388019550612838565b60008b81526020902060005b858110156128305781548a820152908401908801612817565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287c90830184612759565b9695505050505050565b6020815260006118136020830184612759565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff80831681851680830382111561291857612918612a81565b01949350505050565b6000821982111561293457612934612a81565b500190565b600060ff821660ff84168060ff0382111561295657612956612a81565b019392505050565b60008261296d5761296d612a97565b500490565b600081600019048311821515161561298c5761298c612a81565b500290565b6000828210156129a3576129a3612a81565b500390565b600060ff821660ff8416808210156129c2576129c2612a81565b90039392505050565b60005b838110156129e65781810151838201526020016129ce565b838111156114615750506000910152565b600181811c90821680612a0b57607f821691505b60208210811415612a2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4657612a46612a81565b5060010190565b600060ff821660ff811415612a6457612a64612a81565b60010192915050565b600082612a7c57612a7c612a97565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461196f57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f70e00a30a30ac2ba49456571896b543cf0f1a17c8562c43156d952919e63a8664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102885760003560e01c80637ec4a6591161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb01146107ab578063e94053c7146107d9578063e985e9c514610809578063eef440af14610852578063f2fde38b14610867578063f8bf51721461088757600080fd5b8063a475b5dd146106f7578063aa06229014610718578063b88d4fde14610738578063bfc4eae214610758578063c87b56dd1461076b578063d1d192131461078b57600080fd5b806394354fd01161011357806394354fd01461064257806395d89b41146106625780639d080d15146106775780639ef0efd314610697578063a22cb465146106b7578063a45a1b12146106d757600080fd5b80637ec4a6591461058c5780637f6e9093146105ac5780638da5cb5b146105ce5780638e07484c146105ec5780638f65fe0a1461060c5780639257e0441461062c57600080fd5b80633af32abf116101fe57806359bf5dbb116101b757806359bf5dbb146104bf5780635c975abb1461050157806360e85cde146105245780636352211e1461053757806370a0823114610557578063715018a61461057757600080fd5b80633af32abf146104055780633bd64968146104355780633ccfd60b1461044a57806342842e0e1461045f57806344a0d68a1461047f5780634d9c18481461049f57600080fd5b8063095ea7b311610250578063095ea7b3146103535780631067fcc71461037357806313faede61461039357806318160ddd146103b757806323b872dd146103d057806337a66d85146103f057600080fd5b806301ffc9a71461028d57806306421c2f146102c257806306fdde03146102e4578063081812fc14610306578063093cfa631461033e575b600080fd5b34801561029957600080fd5b506102ad6102a836600461261a565b6108a8565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461269c565b6108fa565b005b3480156102f057600080fd5b506102f9610945565b6040516102b99190612886565b34801561031257600080fd5b506103266103213660046126d3565b6109d7565b6040516001600160a01b0390911681526020016102b9565b34801561034a57600080fd5b506102e2610a1b565b34801561035f57600080fd5b506102e261036e3660046125af565b610a68565b34801561037f57600080fd5b506102e261038e366004612654565b610af6565b34801561039f57600080fd5b506103a9600c5481565b6040519081526020016102b9565b3480156103c357600080fd5b50600154600054036103a9565b3480156103dc57600080fd5b506102e26103eb3660046124bc565b610b37565b3480156103fc57600080fd5b506102e2610b42565b34801561041157600080fd5b506102ad61042036600461246e565b60116020526000908152604090205460ff1681565b34801561044157600080fd5b506102e2610ba1565b34801561045657600080fd5b506102e2610bef565b34801561046b57600080fd5b506102e261047a3660046124bc565b610c48565b34801561048b57600080fd5b506102e261049a3660046126d3565b610c63565b3480156104ab57600080fd5b506102e26104ba3660046126ec565b610c92565b3480156104cb57600080fd5b506104ef6104da36600461246e565b600f6020526000908152604090205460ff1681565b60405160ff90911681526020016102b9565b34801561050d57600080fd5b50600e546102ad9065010000000000900460ff1681565b6102e26105323660046126ec565b610cdc565b34801561054357600080fd5b506103266105523660046126d3565b610f07565b34801561056357600080fd5b506103a961057236600461246e565b610f19565b34801561058357600080fd5b506102e2610f67565b34801561059857600080fd5b506102e26105a7366004612654565b610f9d565b3480156105b857600080fd5b50600e546102ad90640100000000900460ff1681565b3480156105da57600080fd5b506008546001600160a01b0316610326565b3480156105f857600080fd5b506102e26106073660046125d9565b610fda565b34801561061857600080fd5b506102e26106273660046125d9565b61107c565b34801561063857600080fd5b506103a9600d5481565b34801561064e57600080fd5b50600e546104ef9062010000900460ff1681565b34801561066e57600080fd5b506102f961111e565b34801561068357600080fd5b506102e26106923660046126b7565b61112d565b3480156106a357600080fd5b506102e26106b2366004612707565b6111d0565b3480156106c357600080fd5b506102e26106d2366004612573565b6112d0565b3480156106e357600080fd5b506102e26106f23660046125d9565b611366565b34801561070357600080fd5b50600e546102ad90600160301b900460ff1681565b34801561072457600080fd5b506102e26107333660046126ec565b6113ce565b34801561074457600080fd5b506102e26107533660046124f8565b611416565b6102e26107663660046126ec565b611467565b34801561077757600080fd5b506102f96107863660046126d3565b6116a9565b34801561079757600080fd5b506102e26107a63660046126d3565b61181a565b3480156107b757600080fd5b50600e546107c69061ffff1681565b60405161ffff90911681526020016102b9565b3480156107e557600080fd5b506104ef6107f436600461246e565b60106020526000908152604090205460ff1681565b34801561081557600080fd5b506102ad610824366004612489565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085e57600080fd5b506102f9611849565b34801561087357600080fd5b506102e261088236600461246e565b6118d7565b34801561089357600080fd5b50600e546104ef906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108d957506001600160e01b03198216635b5e139f60e01b145b806108f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461092d5760405162461bcd60e51b815260040161092490612899565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b606060028054610954906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610980906129f7565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b60006109e282611972565b6109ff576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a455760405162461bcd60e51b815260040161092490612899565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b6000610a7382610f07565b9050806001600160a01b0316836001600160a01b03161415610aa85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ac85750610ac68133610824565b155b15610ae6576040516367d9dca160e11b815260040160405180910390fd5b610af183838361199d565b505050565b6008546001600160a01b03163314610b205760405162461bcd60e51b815260040161092490612899565b8051610b3390600b9060208401906122d6565b5050565b610af18383836119f9565b6008546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161092490612899565b600e805464ff000000001960ff650100000000008084049190911615021665ffff000000001990911617640100000000179055565b6008546001600160a01b03163314610bcb5760405162461bcd60e51b815260040161092490612899565b600e805466ff000000000000198116600160301b9182900460ff1615909102179055565b6008546001600160a01b03163314610c195760405162461bcd60e51b815260040161092490612899565b6040514790339082156108fc029083906000818181858888f19350505050158015610b33573d6000803e3d6000fd5b610af183838360405180602001604052806000815250611416565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161092490612899565b600c55565b6008546001600160a01b03163314610cbc5760405162461bcd60e51b815260040161092490612899565b600e805460ff90921663010000000263ff00000019909216919091179055565b336000908152600f602090815260408083205460119092529091205460ff9182169116610d4b5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610924565b600e5462010000900460ff16610d618383612939565b60ff161115610db25760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820206c696d697420207065722061646472657373006044820152606401610924565b600e54640100000000900460ff1615610e0d5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610924565b600e5460ff6301000000909104811690821610610e59578160ff16600d54610e359190612972565b341015610e545760405162461bcd60e51b8152600401610924906128ce565b610ecb565b6000610e658284612939565b600e5490915060ff630100000090910481169082161115610ec957600e54610e97906301000000900460ff16826129a8565b90508060ff16600d54610eaa9190612972565b341015610ec95760405162461bcd60e51b8152600401610924906128ce565b505b610ed8338360ff16611bd5565b610ee28282612939565b336000908152600f60205260409020805460ff191660ff929092169190911790555050565b6000610f1282611bef565b5192915050565b60006001600160a01b038216610f42576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f915760405162461bcd60e51b815260040161092490612899565b610f9b6000611d09565b565b6008546001600160a01b03163314610fc75760405162461bcd60e51b815260040161092490612899565b8051610b339060099060208401906122d6565b6008546001600160a01b031633146110045760405162461bcd60e51b815260040161092490612899565b60005b60ff8116821115610af15760016011600085858560ff1681811061102d5761102d612aad565b9050602002016020810190611042919061246e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061107481612a4d565b915050611007565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260040161092490612899565b60005b60ff8116821115610af15760006011600085858560ff168181106110cf576110cf612aad565b90506020020160208101906110e4919061246e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061111681612a4d565b9150506110a9565b606060038054610954906129f7565b6008546001600160a01b031633146111575760405162461bcd60e51b815260040161092490612899565b60006111666001546000540390565b600e5490915061ffff1661117a84836128fb565b61ffff1611156111c25760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610924565b610af1828461ffff16611bd5565b6008546001600160a01b031633146111fa5760405162461bcd60e51b815260040161092490612899565b60006112096001546000540390565b9050600061121a8360ff8716612972565b600e5490915061ffff908116906112349083908516612921565b11156112785760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610924565b60005b838110156112c8576112b685858381811061129857611298612aad565b90506020020160208101906112ad919061246e565b8760ff16611bd5565b806112c081612a32565b91505061127b565b505050505050565b6001600160a01b0382163314156112fa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113905760405162461bcd60e51b815260040161092490612899565b60005b81811015610af1576113bc8383838181106113b0576113b0612aad565b90506020020135611d5b565b806113c681612a32565b915050611393565b6008546001600160a01b031633146113f85760405162461bcd60e51b815260040161092490612899565b600e805460ff909216620100000262ff000019909216919091179055565b6114218484846119f9565b6001600160a01b0383163b15158015611443575061144184848484611d66565b155b15611461576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006114766001546000540390565b33600090815260106020526040902054600e5491925060ff9081169161ffff16906114a3908516846128fb565b61ffff1611156114eb5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610924565b600e5462010000900460ff166115018285612939565b60ff1611156115525760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610924565b600e5465010000000000900460ff16156115ae5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610924565b600e5460ff63010000009091048116908216106115fa578260ff16600c546115d69190612972565b3410156115f55760405162461bcd60e51b8152600401610924906128ce565b61166c565b60006116068285612939565b600e5490915060ff63010000009091048116908216111561166a57600e54611638906301000000900460ff16826129a8565b90508060ff16600c5461164b9190612972565b34101561166a5760405162461bcd60e51b8152600401610924906128ce565b505b611679338460ff16611bd5565b6116838184612939565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60606116b482611972565b6117185760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610924565b600e54600160301b900460ff166117bb57600b8054611736906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611762906129f7565b80156117af5780601f10611784576101008083540402835291602001916117af565b820191906000526020600020905b81548152906001019060200180831161179257829003601f168201915b50505050509050919050565b60006117c5611e5e565b905060008151116117e55760405180602001604052806000815250611813565b806117ef84611e6d565b600a60405160200161180393929190612785565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118445760405162461bcd60e51b815260040161092490612899565b600d55565b600b8054611856906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611882906129f7565b80156118cf5780601f106118a4576101008083540402835291602001916118cf565b820191906000526020600020905b8154815290600101906020018083116118b257829003601f168201915b505050505081565b6008546001600160a01b031633146119015760405162461bcd60e51b815260040161092490612899565b6001600160a01b0381166119665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610924565b61196f81611d09565b50565b60008054821080156108f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a0482611bef565b9050836001600160a01b031681600001516001600160a01b031614611a3b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a595750611a598533610824565b80611a74575033611a69846109d7565b6001600160a01b0316145b905080611a9457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611abb57604051633a954ecd60e21b815260040160405180910390fd5b611ac76000848761199d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b9b576000548214611b9b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020612af083398151915260405160405180910390a45b5050505050565b610b33828260405180602001604052806000815250611f6a565b604080516060810182526000808252602082018190529181019190915281600054811015611cf057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611cee5780516001600160a01b031615611c85579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ce9579392505050565b611c85565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61196f816000611f77565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d9b903390899088908890600401612849565b602060405180830381600087803b158015611db557600080fd5b505af1925050508015611de5575060408051601f3d908101601f19168201909252611de291810190612637565b60015b611e40573d808015611e13576040519150601f19603f3d011682016040523d82523d6000602084013e611e18565b606091505b508051611e38576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610954906129f7565b606081611e915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ebb5780611ea581612a32565b9150611eb49050600a8361295e565b9150611e95565b6000816001600160401b03811115611ed557611ed5612ac3565b6040519080825280601f01601f191660200182016040528015611eff576020820181803683370190505b5090505b8415611e5657611f14600183612991565b9150611f21600a86612a6d565b611f2c906030612921565b60f81b818381518110611f4157611f41612aad565b60200101906001600160f81b031916908160001a905350611f63600a8661295e565b9450611f03565b610af1838383600161212a565b6000611f8283611bef565b80519091508215611fe8576000336001600160a01b0383161480611fab5750611fab8233610824565b80611fc6575033611fbb866109d7565b6001600160a01b0316145b905080611fe657604051632ce44b5f60e11b815260040160405180910390fd5b505b611ff46000858361199d565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166120f25760005482146120f257805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612af0833981519152908390a4505060018054810190555050565b6000546001600160a01b03851661215357604051622e076360e81b815260040160405180910390fd5b836121715760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561222257506001600160a01b0387163b15155b15612299575b60405182906001600160a01b03891690600090600080516020612af0833981519152908290a46122616000888480600101955088611d66565b61227e576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561222857826000541461229457600080fd5b6122cd565b5b6040516001830192906001600160a01b03891690600090600080516020612af0833981519152908290a48082141561229a575b50600055611bce565b8280546122e2906129f7565b90600052602060002090601f016020900481019282612304576000855561234a565b82601f1061231d57805160ff191683800117855561234a565b8280016001018555821561234a579182015b8281111561234a57825182559160200191906001019061232f565b5061235692915061235a565b5090565b5b80821115612356576000815560010161235b565b60006001600160401b038084111561238957612389612ac3565b604051601f8501601f19908116603f011681019082821181831017156123b1576123b1612ac3565b816040528093508581528686860111156123ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123fb57600080fd5b919050565b60008083601f84011261241257600080fd5b5081356001600160401b0381111561242957600080fd5b6020830191508360208260051b850101111561244457600080fd5b9250929050565b803561ffff811681146123fb57600080fd5b803560ff811681146123fb57600080fd5b60006020828403121561248057600080fd5b611813826123e4565b6000806040838503121561249c57600080fd5b6124a5836123e4565b91506124b3602084016123e4565b90509250929050565b6000806000606084860312156124d157600080fd5b6124da846123e4565b92506124e8602085016123e4565b9150604084013590509250925092565b6000806000806080858703121561250e57600080fd5b612517856123e4565b9350612525602086016123e4565b92506040850135915060608501356001600160401b0381111561254757600080fd5b8501601f8101871361255857600080fd5b6125678782356020840161236f565b91505092959194509250565b6000806040838503121561258657600080fd5b61258f836123e4565b9150602083013580151581146125a457600080fd5b809150509250929050565b600080604083850312156125c257600080fd5b6125cb836123e4565b946020939093013593505050565b600080602083850312156125ec57600080fd5b82356001600160401b0381111561260257600080fd5b61260e85828601612400565b90969095509350505050565b60006020828403121561262c57600080fd5b813561181381612ad9565b60006020828403121561264957600080fd5b815161181381612ad9565b60006020828403121561266657600080fd5b81356001600160401b0381111561267c57600080fd5b8201601f8101841361268d57600080fd5b611e568482356020840161236f565b6000602082840312156126ae57600080fd5b6118138261244b565b600080604083850312156126ca57600080fd5b6124a58361244b565b6000602082840312156126e557600080fd5b5035919050565b6000602082840312156126fe57600080fd5b6118138261245d565b60008060006040848603121561271c57600080fd5b6127258461245d565b925060208401356001600160401b0381111561274057600080fd5b61274c86828701612400565b9497909650939450505050565b600081518084526127718160208601602086016129cb565b601f01601f19169290920160200192915050565b6000845160206127988285838a016129cb565b8551918401916127ab8184848a016129cb565b8554920191600090600181811c90808316806127c857607f831692505b8583108114156127e657634e487b7160e01b85526022600452602485fd5b8080156127fa576001811461280b57612838565b60ff19851688528388019550612838565b60008b81526020902060005b858110156128305781548a820152908401908801612817565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287c90830184612759565b9695505050505050565b6020815260006118136020830184612759565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff80831681851680830382111561291857612918612a81565b01949350505050565b6000821982111561293457612934612a81565b500190565b600060ff821660ff84168060ff0382111561295657612956612a81565b019392505050565b60008261296d5761296d612a97565b500490565b600081600019048311821515161561298c5761298c612a81565b500290565b6000828210156129a3576129a3612a81565b500390565b600060ff821660ff8416808210156129c2576129c2612a81565b90039392505050565b60005b838110156129e65781810151838201526020016129ce565b838111156114615750506000910152565b600181811c90821680612a0b57607f821691505b60208210811415612a2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4657612a46612a81565b5060010190565b600060ff821660ff811415612a6457612a64612a81565b60010192915050565b600082612a7c57612a7c612a97565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461196f57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f70e00a30a30ac2ba49456571896b543cf0f1a17c8562c43156d952919e63a8664736f6c63430008070033

Deployed Bytecode Sourcemap

45239:5943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25563:305;;;;;;;;;;-1:-1:-1;25563:305:0;;;;;:::i;:::-;;:::i;:::-;;;9435:14:1;;9428:22;9410:41;;9398:2;9383:18;25563:305:0;;;;;;;;47983:97;;;;;;;;;;-1:-1:-1;47983:97:0;;;;;:::i;:::-;;:::i;:::-;;28676:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30179:204::-;;;;;;;;;;-1:-1:-1;30179:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8733:32:1;;;8715:51;;8703:2;8688:18;30179:204:0;8569:203:1;48593:75:0;;;;;;;;;;;;;:::i;29742:371::-;;;;;;;;;;-1:-1:-1;29742:371:0;;;;;:::i;:::-;;:::i;50448:102::-;;;;;;;;;;-1:-1:-1;50448:102:0;;;;;:::i;:::-;;:::i;45428:33::-;;;;;;;;;;;;;;;;;;;14029:25:1;;;14017:2;14002:18;45428:33:0;13883:177:1;24812:303:0;;;;;;;;;;-1:-1:-1;25066:12:0;;24856:7;25050:13;:28;24812:303;;31044:170;;;;;;;;;;-1:-1:-1;31044:170:0;;;;;:::i;:::-;;:::i;50558:91::-;;;;;;;;;;;;;:::i;45903:46::-;;;;;;;;;;-1:-1:-1;45903:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50736:70;;;;;;;;;;;;;:::i;50930:144::-;;;;;;;;;;;;;:::i;31285:185::-;;;;;;;;;;-1:-1:-1;31285:185:0;;;;;:::i;:::-;;:::i;50655:76::-;;;;;;;;;;-1:-1:-1;50655:76:0;;;;;:::i;:::-;;:::i;48787:134::-;;;;;;;;;;-1:-1:-1;48787:134:0;;;;;:::i;:::-;;:::i;45790:49::-;;;;;;;;;;-1:-1:-1;45790:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14237:4:1;14225:17;;;14207:36;;14195:2;14180:18;45790:49:0;14065:184:1;45730:25:0;;;;;;;;;;-1:-1:-1;45730:25:0;;;;;;;;;;;49349:986;;;;;;:::i;:::-;;:::i;28484:125::-;;;;;;;;;;-1:-1:-1;28484:125:0;;;;;:::i;:::-;;:::i;25932:206::-;;;;;;;;;;-1:-1:-1;25932:206:0;;;;;:::i;:::-;;:::i;44385:103::-;;;;;;;;;;;;;:::i;50341:102::-;;;;;;;;;;-1:-1:-1;50341:102:0;;;;;:::i;:::-;;:::i;45698:27::-;;;;;;;;;;-1:-1:-1;45698:27:0;;;;;;;;;;;43733:87;;;;;;;;;;-1:-1:-1;43806:6:0;;-1:-1:-1;;;;;43806:6:0;43733:87;;48933:200;;;;;;;;;;-1:-1:-1;48933:200:0;;;;;:::i;:::-;;:::i;49141:204::-;;;;;;;;;;-1:-1:-1;49141:204:0;;;;;:::i;:::-;;:::i;45466:32::-;;;;;;;;;;;;;;;;45545:35;;;;;;;;;;-1:-1:-1;45545:35:0;;;;;;;;;;;28845:104;;;;;;;;;;;;;:::i;47164:327::-;;;;;;;;;;-1:-1:-1;47164:327:0;;;;;:::i;:::-;;:::i;47497:475::-;;;;;;;;;;-1:-1:-1;47497:475:0;;;;;:::i;:::-;;:::i;30455:287::-;;;;;;;;;;-1:-1:-1;30455:287:0;;;;;:::i;:::-;;:::i;46032:129::-;;;;;;;;;;-1:-1:-1;46032:129:0;;;;;:::i;:::-;;:::i;45760:25::-;;;;;;;;;;-1:-1:-1;45760:25:0;;;;-1:-1:-1;;;45760:25:0;;;;;;50812:107;;;;;;;;;;-1:-1:-1;50812:107:0;;;;;:::i;:::-;;:::i;31541:369::-;;;;;;;;;;-1:-1:-1;31541:369:0;;;;;:::i;:::-;;:::i;46178:978::-;;;;;;:::i;:::-;;:::i;48095:490::-;;;;;;;;;;-1:-1:-1;48095:490:0;;;;;:::i;:::-;;:::i;48672:106::-;;;;;;;;;;-1:-1:-1;48672:106:0;;;;;:::i;:::-;;:::i;45510:30::-;;;;;;;;;;-1:-1:-1;45510:30:0;;;;;;;;;;;13864:6:1;13852:19;;;13834:38;;13822:2;13807:18;45510:30:0;13690:188:1;45845:53:0;;;;;;;;;;-1:-1:-1;45845:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30813:164;;;;;;;;;;-1:-1:-1;30813:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30934:25:0;;;30910:4;30934:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30813:164;45388:23;;;;;;;;;;;;;:::i;44643:201::-;;;;;;;;;;-1:-1:-1;44643:201:0;;;;;:::i;:::-;;:::i;45587:43::-;;;;;;;;;;-1:-1:-1;45587:43:0;;;;;;;;;;;25563:305;25665:4;-1:-1:-1;;;;;;25702:40:0;;-1:-1:-1;;;25702:40:0;;:105;;-1:-1:-1;;;;;;;25759:48:0;;-1:-1:-1;;;25759:48:0;25702:105;:158;;;-1:-1:-1;;;;;;;;;;15597:40:0;;;25824:36;25682:178;25563:305;-1:-1:-1;;25563:305:0:o;47983:97::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;;;;;;;;;48052:9:::1;:22:::0;;-1:-1:-1;;48052:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47983:97::o;28676:100::-;28730:13;28763:5;28756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28676:100;:::o;30179:204::-;30247:7;30272:16;30280:7;30272;:16::i;:::-;30267:64;;30297:34;;-1:-1:-1;;;30297:34:0;;;;;;;;;;;30267:64;-1:-1:-1;30351:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30351:24:0;;30179:204::o;48593:75::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;48654:8:::1;::::0;;-1:-1:-1;;48642:20:0;::::1;48654:8:::0;;;;::::1;;;48653:9;48642:20:::0;;::::1;;::::0;;48593:75::o;29742:371::-;29815:13;29831:24;29847:7;29831:15;:24::i;:::-;29815:40;;29876:5;-1:-1:-1;;;;;29870:11:0;:2;-1:-1:-1;;;;;29870:11:0;;29866:48;;;29890:24;;-1:-1:-1;;;29890:24:0;;;;;;;;;;;29866:48;4038:10;-1:-1:-1;;;;;29931:21:0;;;;;;:63;;-1:-1:-1;29957:37:0;29974:5;4038:10;30813:164;:::i;29957:37::-;29956:38;29931:63;29927:138;;;30018:35;;-1:-1:-1;;;30018:35:0;;;;;;;;;;;29927:138;30077:28;30086:2;30090:7;30099:5;30077:8;:28::i;:::-;29804:309;29742:371;;:::o;50448:102::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;50522:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50448:102:::0;:::o;31044:170::-;31178:28;31188:4;31194:2;31198:7;31178:9;:28::i;50558:91::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;50615:6:::1;::::0;;-1:-1:-1;;50615:6:0::1;::::0;;;::::1;::::0;;;::::1;50614:7;50605:16;50628:15:::0;-1:-1:-1;;50628:15:0;;;;;::::1;::::0;;50558:91::o;50736:70::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;50795:6:::1;::::0;;-1:-1:-1;;50785:16:0;::::1;-1:-1:-1::0;;;50795:6:0;;;::::1;;;50794:7;50785:16:::0;;::::1;;::::0;;50736:70::o;50930:144::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;51019:39:::1;::::0;50990:21:::1;::::0;51027:10:::1;::::0;51019:39;::::1;;;::::0;50990:21;;50974:13:::1;51019:39:::0;50974:13;51019:39;50990:21;51027:10;51019:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;31285:185:::0;31423:39;31440:4;31446:2;31450:7;31423:39;;;;;;;;;;;;:16;:39::i;50655:76::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;50711:4:::1;:12:::0;50655:76::o;48787:134::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;48861:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48861:35:0;;::::1;::::0;;;::::1;::::0;;48787:134::o;49349:986::-;49463:10;49435:9;49447:27;;;:15;:27;;;;;;;;;49492:13;:25;;;;;;;49447:27;;;;;49492:25;49484:62;;;;-1:-1:-1;;;49484:62:0;;10998:2:1;49484:62:0;;;10980:21:1;11037:2;11017:18;;;11010:30;11076:25;11056:18;;;11049:53;11119:18;;49484:62:0;10796:347:1;49484:62:0;49588:18;;;;;;;49567:17;49573:11;49567:3;:17;:::i;:::-;:39;;;;49558:84;;;;-1:-1:-1;;;49558:84:0;;13184:2:1;49558:84:0;;;13166:21:1;13223:2;13203:18;;;13196:30;13262:33;13242:18;;;13235:61;13313:18;;49558:84:0;12982:355:1;49558:84:0;49670:8;;;;;;;49669:9;49661:48;;;;-1:-1:-1;;;49661:48:0;;10643:2:1;49661:48:0;;;10625:21:1;10682:2;10662:18;;;10655:30;10721:28;10701:18;;;10694:56;10767:18;;49661:48:0;10441:350:1;49661:48:0;49731:26;;;;;;;;;49724:33;;;;49721:435;;49808:11;49792:27;;:13;;:27;;;;:::i;:::-;49779:9;:40;;49771:72;;;;-1:-1:-1;;;49771:72:0;;;;;;;:::i;:::-;49721:435;;;49874:16;49893:17;49907:3;49893:11;:17;:::i;:::-;49937:26;;49874:36;;-1:-1:-1;49937:26:0;;;;;;;49924:39;;;;49921:208;;;50010:26;;49997:39;;50010:26;;;;;49997:10;:39;:::i;:::-;49984:52;;50084:10;50068:26;;:13;;:26;;;;:::i;:::-;50055:9;:39;;50047:71;;;;-1:-1:-1;;;50047:71:0;;;;;;;:::i;:::-;49862:294;49721:435;50177:35;50187:10;50200:11;50177:35;;:9;:35::i;:::-;50250:17;50256:11;50250:3;:17;:::i;:::-;50237:10;50221:27;;;;:15;:27;;;;;:46;;-1:-1:-1;;50221:46:0;;;;;;;;;;;;-1:-1:-1;;49349:986:0:o;28484:125::-;28548:7;28575:21;28588:7;28575:12;:21::i;:::-;:26;;28484:125;-1:-1:-1;;28484:125:0:o;25932:206::-;25996:7;-1:-1:-1;;;;;26020:19:0;;26016:60;;26048:28;;-1:-1:-1;;;26048:28:0;;;;;;;;;;;26016:60;-1:-1:-1;;;;;;26102:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26102:27:0;;25932:206::o;44385:103::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;44450:30:::1;44477:1;44450:18;:30::i;:::-;44385:103::o:0;50341:102::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;50415:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48933:200::-:0;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;49026:7:::1;49022:101;49039:18;::::0;::::1;::::0;-1:-1:-1;49022:101:0::1;;;49107:4;49079:13;:25;49093:7;;49101:1;49093:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49079:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49079:25:0;:32;;-1:-1:-1;;49079:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49059:3;::::1;::::0;::::1;:::i;:::-;;;;49022:101;;49141:204:::0;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;49239:7:::1;49235:103;49252:18;::::0;::::1;::::0;-1:-1:-1;49235:103:0::1;;;49321:5;49293:13;:25;49307:7;;49315:1;49307:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49293:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49293:25:0;:33;;-1:-1:-1;;49293:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49272:3;::::1;::::0;::::1;:::i;:::-;;;;49235:103;;28845:104:::0;28901:13;28934:7;28927:14;;;;;:::i;47164:327::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;47248:18:::1;47276:13;25066:12:::0;;24856:7;25050:13;:28;;24812:303;47276:13:::1;47334:9;::::0;47248:42;;-1:-1:-1;47334:9:0::1;;47305:25;47319:11:::0;47248:42;47305:25:::1;:::i;:::-;:38;;;;47297:70;;;::::0;-1:-1:-1;;;47297:70:0;;9888:2:1;47297:70:0::1;::::0;::::1;9870:21:1::0;9927:2;9907:18;;;9900:30;-1:-1:-1;;;9946:18:1;;;9939:49;10005:18;;47297:70:0::1;9686:343:1::0;47297:70:0::1;47375:34;47385:9;47397:11;47375:34;;:9;:34::i;47497:475::-:0;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;47599:18:::1;47627:13;25066:12:::0;;24856:7;25050:13;:28;;24812:303;47627:13:::1;47599:42:::0;-1:-1:-1;47649:16:0::1;47670:36;47690:9:::0;47670:36:::1;::::0;::::1;;:::i;:::-;47750:9;::::0;47649:57;;-1:-1:-1;47750:9:0::1;::::0;;::::1;::::0;47721:25:::1;::::0;47649:57;;47721:25;::::1;;:::i;:::-;:38;;47713:70;;;::::0;-1:-1:-1;;;47713:70:0;;9888:2:1;47713:70:0::1;::::0;::::1;9870:21:1::0;9927:2;9907:18;;;9900:30;-1:-1:-1;;;9946:18:1;;;9939:49;10005:18;;47713:70:0::1;9686:343:1::0;47713:70:0::1;47796:9;47791:116;47811:20:::0;;::::1;47791:116;;;47853:42;47863:9;;47873:1;47863:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47877:17;47853:42;;:9;:42::i;:::-;47833:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47791:116;;;-1:-1:-1::0;;;;;;47497:475:0:o;30455:287::-;-1:-1:-1;;;;;30554:24:0;;4038:10;30554:24;30550:54;;;30587:17;;-1:-1:-1;;;30587:17:0;;;;;;;;;;;30550:54;4038:10;30617:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30617:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30617:53:0;;;;;;;;;;30686:48;;9410:41:1;;;30617:42:0;;4038:10;30686:48;;9383:18:1;30686:48:0;;;;;;;30455:287;;:::o;46032:129::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;46104:6:::1;46100:56;46113:15:::0;;::::1;46100:56;;;46141:15;46147:5;;46153:1;46147:8;;;;;;;:::i;:::-;;;;;;;46141:5;:15::i;:::-;46131:4:::0;::::1;::::0;::::1;:::i;:::-;;;;46100:56;;50812:107:::0;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;50884:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50884:27:0;;::::1;::::0;;;::::1;::::0;;50812:107::o;31541:369::-;31708:28;31718:4;31724:2;31728:7;31708:9;:28::i;:::-;-1:-1:-1;;;;;31751:13:0;;5700:19;:23;;31751:76;;;;;31771:56;31802:4;31808:2;31812:7;31821:5;31771:30;:56::i;:::-;31770:57;31751:76;31747:156;;;31851:40;;-1:-1:-1;;;31851:40:0;;;;;;;;;;;31747:156;31541:369;;;;:::o;46178:978::-;46239:18;46267:13;25066:12;;24856:7;25050:13;:28;;24812:303;46267:13;46321:10;46289:9;46301:31;;;:19;:31;;;;;;46376:9;;46239:42;;-1:-1:-1;46301:31:0;;;;;46376:9;;;46347:25;;;;46239:42;46347:25;:::i;:::-;:38;;;;46339:70;;;;-1:-1:-1;;;46339:70:0;;12479:2:1;46339:70:0;;;12461:21:1;12518:2;12498:18;;;12491:30;-1:-1:-1;;;12537:18:1;;;12530:49;12596:18;;46339:70:0;12277:343:1;46339:70:0;46445:18;;;;;;;46424:17;46438:3;46424:11;:17;:::i;:::-;:39;;;;46416:80;;;;-1:-1:-1;;;46416:80:0;;12827:2:1;46416:80:0;;;12809:21:1;12866:2;12846:18;;;12839:30;12905;12885:18;;;12878:58;12953:18;;46416:80:0;12625:352:1;46416:80:0;46514:6;;;;;;;46513:7;46505:43;;;;-1:-1:-1;;;46505:43:0;;11711:2:1;46505:43:0;;;11693:21:1;11750:2;11730:18;;;11723:30;11789:25;11769:18;;;11762:53;11832:18;;46505:43:0;11509:347:1;46505:43:0;46573:26;;;;;;;;;46566:33;;;;46563:417;;46641:11;46634:18;;:4;;:18;;;;:::i;:::-;46621:9;:31;;46613:63;;;;-1:-1:-1;;;46613:63:0;;;;;;;:::i;:::-;46563:417;;;46707:16;46726:17;46740:3;46726:11;:17;:::i;:::-;46770:26;;46707:36;;-1:-1:-1;46770:26:0;;;;;;;46757:39;;;;46754:199;;;46843:26;;46830:39;;46843:26;;;;;46830:10;:39;:::i;:::-;46817:52;;46908:10;46901:17;;:4;;:17;;;;:::i;:::-;46888:9;:30;;46880:62;;;;-1:-1:-1;;;46880:62:0;;;;;;;:::i;:::-;46695:285;46563:417;46996:35;47006:10;47019:11;46996:35;;:9;:35::i;:::-;47074:17;47088:3;47074:11;:17;:::i;:::-;47060:10;47040:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;47040:51:0;;;;;;;;;;;;-1:-1:-1;;;46178:978:0:o;48095:490::-;48194:13;48235:17;48243:8;48235:7;:17::i;:::-;48219:98;;;;-1:-1:-1;;;48219:98:0;;12063:2:1;48219:98:0;;;12045:21:1;12102:2;12082:18;;;12075:30;12141:34;12121:18;;;12114:62;-1:-1:-1;;;12192:18:1;;;12185:45;12247:19;;48219:98:0;11861:411:1;48219:98:0;48335:6;;-1:-1:-1;;;48335:6:0;;;;48330:50;;48367:9;48360:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48095:490;;;:::o;48330:50::-;48394:28;48425:10;:8;:10::i;:::-;48394:41;;48480:1;48455:14;48449:28;:32;:130;;;;;;;;;;;;;;;;;48517:14;48533:19;:8;:17;:19::i;:::-;48554:9;48500:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48449:130;48442:137;48095:490;-1:-1:-1;;;48095:490:0:o;48672:106::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;48732:13:::1;:21:::0;48672:106::o;45388:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44643:201::-;43806:6;;-1:-1:-1;;;;;43806:6:0;4038:10;43953:23;43945:69;;;;-1:-1:-1;;;43945:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44732:22:0;::::1;44724:73;;;::::0;-1:-1:-1;;;44724:73:0;;10236:2:1;44724:73:0::1;::::0;::::1;10218:21:1::0;10275:2;10255:18;;;10248:30;10314:34;10294:18;;;10287:62;-1:-1:-1;;;10365:18:1;;;10358:36;10411:19;;44724:73:0::1;10034:402:1::0;44724:73:0::1;44808:28;44827:8;44808:18;:28::i;:::-;44643:201:::0;:::o;32165:187::-;32222:4;32286:13;;32276:7;:23;32246:98;;;;-1:-1:-1;;32317:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32317:27:0;;;;32316:28;;32165:187::o;40335:196::-;40450:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40450:29:0;-1:-1:-1;;;;;40450:29:0;;;;;;;;;40495:28;;40450:24;;40495:28;;;;;;;40335:196;;;:::o;35278:2130::-;35393:35;35431:21;35444:7;35431:12;:21::i;:::-;35393:59;;35491:4;-1:-1:-1;;;;;35469:26:0;:13;:18;;;-1:-1:-1;;;;;35469:26:0;;35465:67;;35504:28;;-1:-1:-1;;;35504:28:0;;;;;;;;;;;35465:67;35545:22;4038:10;-1:-1:-1;;;;;35571:20:0;;;;:73;;-1:-1:-1;35608:36:0;35625:4;4038:10;30813:164;:::i;35608:36::-;35571:126;;;-1:-1:-1;4038:10:0;35661:20;35673:7;35661:11;:20::i;:::-;-1:-1:-1;;;;;35661:36:0;;35571:126;35545:153;;35716:17;35711:66;;35742:35;;-1:-1:-1;;;35742:35:0;;;;;;;;;;;35711:66;-1:-1:-1;;;;;35792:16:0;;35788:52;;35817:23;;-1:-1:-1;;;35817:23:0;;;;;;;;;;;35788:52;35961:35;35978:1;35982:7;35991:4;35961:8;:35::i;:::-;-1:-1:-1;;;;;36292:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36292:31:0;;;-1:-1:-1;;;;;36292:31:0;;;-1:-1:-1;;36292:31:0;;;;;;;36338:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36338:29:0;;;;;;;;;;;36418:20;;;:11;:20;;;;;;36453:18;;-1:-1:-1;;;;;;36486:49:0;;;;-1:-1:-1;;;36519:15:0;36486:49;;;;;;;;;;36809:11;;36869:24;;;;;36912:13;;36418:20;;36869:24;;36912:13;36908:384;;37122:13;;37107:11;:28;37103:174;;37160:20;;37229:28;;;;-1:-1:-1;;;;;37203:54:0;-1:-1:-1;;;37203:54:0;-1:-1:-1;;;;;;37203:54:0;;;-1:-1:-1;;;;;37160:20:0;;37203:54;;;;37103:174;36267:1036;;;37339:7;37335:2;-1:-1:-1;;;;;37320:27:0;37329:4;-1:-1:-1;;;;;37320:27:0;-1:-1:-1;;;;;;;;;;;37320:27:0;;;;;;;;;37358:42;35382:2026;;35278:2130;;;:::o;32360:104::-;32429:27;32439:2;32443:8;32429:27;;;;;;;;;;;;:9;:27::i;27313:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27424:7:0;27507:13;;27500:4;:20;27469:886;;;27541:31;27575:17;;;:11;:17;;;;;;;;;27541:51;;;;;;;;;-1:-1:-1;;;;;27541:51:0;;;;-1:-1:-1;;;27541:51:0;;-1:-1:-1;;;;;27541:51:0;;;;;;;;-1:-1:-1;;;27541:51:0;;;;;;;;;;;;;;27611:729;;27661:14;;-1:-1:-1;;;;;27661:28:0;;27657:101;;27725:9;27313:1109;-1:-1:-1;;;27313:1109:0:o;27657:101::-;-1:-1:-1;;;28100:6:0;28145:17;;;;:11;:17;;;;;;;;;28133:29;;;;;;;;;-1:-1:-1;;;;;28133:29:0;;;;;-1:-1:-1;;;28133:29:0;;-1:-1:-1;;;;;28133:29:0;;;;;;;;-1:-1:-1;;;28133:29:0;;;;;;;;;;;;;28193:28;28189:109;;28261:9;27313:1109;-1:-1:-1;;;27313:1109:0:o;28189:109::-;28060:261;;;27522:833;27469:886;28383:31;;-1:-1:-1;;;28383:31:0;;;;;;;;;;;45004:191;45097:6;;;-1:-1:-1;;;;;45114:17:0;;;-1:-1:-1;;;;;;45114:17:0;;;;;;;45147:40;;45097:6;;;45114:17;45097:6;;45147:40;;45078:16;;45147:40;45067:128;45004:191;:::o;37491:89::-;37551:21;37557:7;37566:5;37551;:21::i;41023:667::-;41207:72;;-1:-1:-1;;;41207:72:0;;41186:4;;-1:-1:-1;;;;;41207:36:0;;;;;:72;;4038:10;;41258:4;;41264:7;;41273:5;;41207:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41207:72:0;;;;;;;;-1:-1:-1;;41207:72:0;;;;;;;;;;;;:::i;:::-;;;41203:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41441:13:0;;41437:235;;41487:40;;-1:-1:-1;;;41487:40:0;;;;;;;;;;;41437:235;41630:6;41624:13;41615:6;41611:2;41607:15;41600:38;41203:480;-1:-1:-1;;;;;;41326:55:0;-1:-1:-1;;;41326:55:0;;-1:-1:-1;41203:480:0;41023:667;;;;;;:::o;51082:97::-;51135:13;51164:9;51157:16;;;;;:::i;1520:723::-;1576:13;1797:10;1793:53;;-1:-1:-1;;1824:10:0;;;;;;;;;;;;-1:-1:-1;;;1824:10:0;;;;;1520:723::o;1793:53::-;1871:5;1856:12;1912:78;1919:9;;1912:78;;1945:8;;;;:::i;:::-;;-1:-1:-1;1968:10:0;;-1:-1:-1;1976:2:0;1968:10;;:::i;:::-;;;1912:78;;;2000:19;2032:6;-1:-1:-1;;;;;2022:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2022:17:0;;2000:39;;2050:154;2057:10;;2050:154;;2084:11;2094:1;2084:11;;:::i;:::-;;-1:-1:-1;2153:10:0;2161:2;2153:5;:10;:::i;:::-;2140:24;;:2;:24;:::i;:::-;2127:39;;2110:6;2117;2110:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2110:56:0;;;;;;;;-1:-1:-1;2181:11:0;2190:2;2181:11;;:::i;:::-;;;2050:154;;32827:163;32950:32;32956:2;32960:8;32970:5;32977:4;32950:5;:32::i;37809:2408::-;37889:35;37927:21;37940:7;37927:12;:21::i;:::-;37976:18;;37889:59;;-1:-1:-1;38007:290:0;;;;38041:22;4038:10;-1:-1:-1;;;;;38067:20:0;;;;:77;;-1:-1:-1;38108:36:0;38125:4;4038:10;30813:164;:::i;38108:36::-;38067:134;;;-1:-1:-1;4038:10:0;38165:20;38177:7;38165:11;:20::i;:::-;-1:-1:-1;;;;;38165:36:0;;38067:134;38041:161;;38224:17;38219:66;;38250:35;;-1:-1:-1;;;38250:35:0;;;;;;;;;;;38219:66;38026:271;38007:290;38425:35;38442:1;38446:7;38455:4;38425:8;:35::i;:::-;-1:-1:-1;;;;;38790:18:0;;;38756:31;38790:18;;;:12;:18;;;;;;;;38823:24;;-1:-1:-1;;;;;;;;;;38823:24:0;;;;;;;;;-1:-1:-1;;38823:24:0;;;;38862:29;;;;;38846:1;38862:29;;;;;;;;-1:-1:-1;;38862:29:0;;;;;;;;;;39024:20;;;:11;:20;;;;;;39059;;-1:-1:-1;;;;39127:15:0;39094:49;;;-1:-1:-1;;;39094:49:0;-1:-1:-1;;;;;;39094:49:0;;;;;;;;;;39158:22;-1:-1:-1;;;39158:22:0;;;39450:11;;;39510:24;;;;;39553:13;;38790:18;;39510:24;;39553:13;39549:384;;39763:13;;39748:11;:28;39744:174;;39801:20;;39870:28;;;;-1:-1:-1;;;;;39844:54:0;-1:-1:-1;;;39844:54:0;-1:-1:-1;;;;;;39844:54:0;;;-1:-1:-1;;;;;39801:20:0;;39844:54;;;;39744:174;-1:-1:-1;;39961:35:0;;39988:7;;-1:-1:-1;39984:1:0;;-1:-1:-1;;;;;;39961:35:0;;;-1:-1:-1;;;;;;;;;;;39961:35:0;39984:1;;39961:35;-1:-1:-1;;40184:12:0;:14;;;;;;-1:-1:-1;;37809:2408:0:o;33249:1775::-;33388:20;33411:13;-1:-1:-1;;;;;33439:16:0;;33435:48;;33464:19;;-1:-1:-1;;;33464:19:0;;;;;;;;;;;33435:48;33498:13;33494:44;;33520:18;;-1:-1:-1;;;33520:18:0;;;;;;;;;;;33494:44;-1:-1:-1;;;;;33889:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33948:49:0;;-1:-1:-1;;;;;33889:44:0;;;;;;;33948:49;;;;-1:-1:-1;;33889:44:0;;;;;;33948:49;;;;;;;;;;;;;;;;34014:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34064:66:0;;;;-1:-1:-1;;;34114:15:0;34064:66;;;;;;;;;;34014:25;34211:23;;;34255:4;:23;;;;-1:-1:-1;;;;;;34263:13:0;;5700:19;:23;;34263:15;34251:641;;;34299:314;34330:38;;34355:12;;-1:-1:-1;;;;;34330:38:0;;;34347:1;;-1:-1:-1;;;;;;;;;;;34330:38:0;34347:1;;34330:38;34396:69;34435:1;34439:2;34443:14;;;;;;34459:5;34396:30;:69::i;:::-;34391:174;;34501:40;;-1:-1:-1;;;34501:40:0;;;;;;;;;;;34391:174;34608:3;34592:12;:19;;34299:314;;34694:12;34677:13;;:29;34673:43;;34708:8;;;34673:43;34251:641;;;34757:120;34788:40;;34813:14;;;;;-1:-1:-1;;;;;34788:40:0;;;34805:1;;-1:-1:-1;;;;;;;;;;;34788:40:0;34805:1;;34788:40;34872:3;34856:12;:19;;34757:120;;34251:641;-1:-1:-1;34906:13:0;:28;34956:60;31541:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:159::-;1267:20;;1327:6;1316:18;;1306:29;;1296:57;;1349:1;1346;1339:12;1364:156;1430:20;;1490:4;1479:16;;1469:27;;1459:55;;1510:1;1507;1500:12;1525:186;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1676:29;1695:9;1676:29;:::i;1716:260::-;1784:6;1792;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1884:29;1903:9;1884:29;:::i;:::-;1874:39;;1932:38;1966:2;1955:9;1951:18;1932:38;:::i;:::-;1922:48;;1716:260;;;;;:::o;1981:328::-;2058:6;2066;2074;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;2166:29;2185:9;2166:29;:::i;:::-;2156:39;;2214:38;2248:2;2237:9;2233:18;2214:38;:::i;:::-;2204:48;;2299:2;2288:9;2284:18;2271:32;2261:42;;1981:328;;;;;:::o;2314:666::-;2409:6;2417;2425;2433;2486:3;2474:9;2465:7;2461:23;2457:33;2454:53;;;2503:1;2500;2493:12;2454:53;2526:29;2545:9;2526:29;:::i;:::-;2516:39;;2574:38;2608:2;2597:9;2593:18;2574:38;:::i;:::-;2564:48;;2659:2;2648:9;2644:18;2631:32;2621:42;;2714:2;2703:9;2699:18;2686:32;-1:-1:-1;;;;;2733:6:1;2730:30;2727:50;;;2773:1;2770;2763:12;2727:50;2796:22;;2849:4;2841:13;;2837:27;-1:-1:-1;2827:55:1;;2878:1;2875;2868:12;2827:55;2901:73;2966:7;2961:2;2948:16;2943:2;2939;2935:11;2901:73;:::i;:::-;2891:83;;;2314:666;;;;;;;:::o;2985:347::-;3050:6;3058;3111:2;3099:9;3090:7;3086:23;3082:32;3079:52;;;3127:1;3124;3117:12;3079:52;3150:29;3169:9;3150:29;:::i;:::-;3140:39;;3229:2;3218:9;3214:18;3201:32;3276:5;3269:13;3262:21;3255:5;3252:32;3242:60;;3298:1;3295;3288:12;3242:60;3321:5;3311:15;;;2985:347;;;;;:::o;3337:254::-;3405:6;3413;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3505:29;3524:9;3505:29;:::i;:::-;3495:39;3581:2;3566:18;;;;3553:32;;-1:-1:-1;;;3337:254:1:o;3596:437::-;3682:6;3690;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;-1:-1:-1;;;;;3824:6:1;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3903:70;3965:7;3956:6;3945:9;3941:22;3903:70;:::i;:::-;3992:8;;3877:96;;-1:-1:-1;3596:437:1;-1:-1:-1;;;;3596:437:1:o;4480:245::-;4538:6;4591:2;4579:9;4570:7;4566:23;4562:32;4559:52;;;4607:1;4604;4597:12;4559:52;4646:9;4633:23;4665:30;4689:5;4665:30;:::i;4730:249::-;4799:6;4852:2;4840:9;4831:7;4827:23;4823:32;4820:52;;;4868:1;4865;4858:12;4820:52;4900:9;4894:16;4919:30;4943:5;4919:30;:::i;4984:450::-;5053:6;5106:2;5094:9;5085:7;5081:23;5077:32;5074:52;;;5122:1;5119;5112:12;5074:52;5162:9;5149:23;-1:-1:-1;;;;;5187:6:1;5184:30;5181:50;;;5227:1;5224;5217:12;5181:50;5250:22;;5303:4;5295:13;;5291:27;-1:-1:-1;5281:55:1;;5332:1;5329;5322:12;5281:55;5355:73;5420:7;5415:2;5402:16;5397:2;5393;5389:11;5355:73;:::i;5439:184::-;5497:6;5550:2;5538:9;5529:7;5525:23;5521:32;5518:52;;;5566:1;5563;5556:12;5518:52;5589:28;5607:9;5589:28;:::i;5628:258::-;5695:6;5703;5756:2;5744:9;5735:7;5731:23;5727:32;5724:52;;;5772:1;5769;5762:12;5724:52;5795:28;5813:9;5795:28;:::i;5891:180::-;5950:6;6003:2;5991:9;5982:7;5978:23;5974:32;5971:52;;;6019:1;6016;6009:12;5971:52;-1:-1:-1;6042:23:1;;5891:180;-1:-1:-1;5891:180:1:o;6076:182::-;6133:6;6186:2;6174:9;6165:7;6161:23;6157:32;6154:52;;;6202:1;6199;6192:12;6154:52;6225:27;6242:9;6225:27;:::i;6263:507::-;6356:6;6364;6372;6425:2;6413:9;6404:7;6400:23;6396:32;6393:52;;;6441:1;6438;6431:12;6393:52;6464:27;6481:9;6464:27;:::i;:::-;6454:37;;6542:2;6531:9;6527:18;6514:32;-1:-1:-1;;;;;6561:6:1;6558:30;6555:50;;;6601:1;6598;6591:12;6555:50;6640:70;6702:7;6693:6;6682:9;6678:22;6640:70;:::i;:::-;6263:507;;6729:8;;-1:-1:-1;6614:96:1;;-1:-1:-1;;;;6263:507:1:o;6775:257::-;6816:3;6854:5;6848:12;6881:6;6876:3;6869:19;6897:63;6953:6;6946:4;6941:3;6937:14;6930:4;6923:5;6919:16;6897:63;:::i;:::-;7014:2;6993:15;-1:-1:-1;;6989:29:1;6980:39;;;;7021:4;6976:50;;6775:257;-1:-1:-1;;6775:257:1:o;7037:1527::-;7261:3;7299:6;7293:13;7325:4;7338:51;7382:6;7377:3;7372:2;7364:6;7360:15;7338:51;:::i;:::-;7452:13;;7411:16;;;;7474:55;7452:13;7411:16;7496:15;;;7474:55;:::i;:::-;7618:13;;7551:20;;;7591:1;;7678;7700:18;;;;7753;;;;7780:93;;7858:4;7848:8;7844:19;7832:31;;7780:93;7921:2;7911:8;7908:16;7888:18;7885:40;7882:167;;;-1:-1:-1;;;7948:33:1;;8004:4;8001:1;7994:15;8034:4;7955:3;8022:17;7882:167;8065:18;8092:110;;;;8216:1;8211:328;;;;8058:481;;8092:110;-1:-1:-1;;8127:24:1;;8113:39;;8172:20;;;;-1:-1:-1;8092:110:1;;8211:328;14327:1;14320:14;;;14364:4;14351:18;;8306:1;8320:169;8334:8;8331:1;8328:15;8320:169;;;8416:14;;8401:13;;;8394:37;8459:16;;;;8351:10;;8320:169;;;8324:3;;8520:8;8513:5;8509:20;8502:27;;8058:481;-1:-1:-1;8555:3:1;;7037:1527;-1:-1:-1;;;;;;;;;;;7037:1527:1:o;8777:488::-;-1:-1:-1;;;;;9046:15:1;;;9028:34;;9098:15;;9093:2;9078:18;;9071:43;9145:2;9130:18;;9123:34;;;9193:3;9188:2;9173:18;;9166:31;;;8971:4;;9214:45;;9239:19;;9231:6;9214:45;:::i;:::-;9206:53;8777:488;-1:-1:-1;;;;;;8777:488:1:o;9462:219::-;9611:2;9600:9;9593:21;9574:4;9631:44;9671:2;9660:9;9656:18;9648:6;9631:44;:::i;11148:356::-;11350:2;11332:21;;;11369:18;;;11362:30;11428:34;11423:2;11408:18;;11401:62;11495:2;11480:18;;11148:356::o;13342:343::-;13544:2;13526:21;;;13583:2;13563:18;;;13556:30;-1:-1:-1;;;13617:2:1;13602:18;;13595:49;13676:2;13661:18;;13342:343::o;14380:224::-;14419:3;14447:6;14480:2;14477:1;14473:10;14510:2;14507:1;14503:10;14541:3;14537:2;14533:12;14528:3;14525:21;14522:47;;;14549:18;;:::i;:::-;14585:13;;14380:224;-1:-1:-1;;;;14380:224:1:o;14609:128::-;14649:3;14680:1;14676:6;14673:1;14670:13;14667:39;;;14686:18;;:::i;:::-;-1:-1:-1;14722:9:1;;14609:128::o;14742:204::-;14780:3;14816:4;14813:1;14809:12;14848:4;14845:1;14841:12;14883:3;14877:4;14873:14;14868:3;14865:23;14862:49;;;14891:18;;:::i;:::-;14927:13;;14742:204;-1:-1:-1;;;14742:204:1:o;14951:120::-;14991:1;15017;15007:35;;15022:18;;:::i;:::-;-1:-1:-1;15056:9:1;;14951:120::o;15076:168::-;15116:7;15182:1;15178;15174:6;15170:14;15167:1;15164:21;15159:1;15152:9;15145:17;15141:45;15138:71;;;15189:18;;:::i;:::-;-1:-1:-1;15229:9:1;;15076:168::o;15249:125::-;15289:4;15317:1;15314;15311:8;15308:34;;;15322:18;;:::i;:::-;-1:-1:-1;15359:9:1;;15249:125::o;15379:195::-;15417:4;15454;15451:1;15447:12;15486:4;15483:1;15479:12;15511:3;15506;15503:12;15500:38;;;15518:18;;:::i;:::-;15555:13;;;15379:195;-1:-1:-1;;;15379:195:1:o;15579:258::-;15651:1;15661:113;15675:6;15672:1;15669:13;15661:113;;;15751:11;;;15745:18;15732:11;;;15725:39;15697:2;15690:10;15661:113;;;15792:6;15789:1;15786:13;15783:48;;;-1:-1:-1;;15827:1:1;15809:16;;15802:27;15579:258::o;15842:380::-;15921:1;15917:12;;;;15964;;;15985:61;;16039:4;16031:6;16027:17;16017:27;;15985:61;16092:2;16084:6;16081:14;16061:18;16058:38;16055:161;;;16138:10;16133:3;16129:20;16126:1;16119:31;16173:4;16170:1;16163:15;16201:4;16198:1;16191:15;16055:161;;15842:380;;;:::o;16227:135::-;16266:3;-1:-1:-1;;16287:17:1;;16284:43;;;16307:18;;:::i;:::-;-1:-1:-1;16354:1:1;16343:13;;16227:135::o;16367:175::-;16404:3;16448:4;16441:5;16437:16;16477:4;16468:7;16465:17;16462:43;;;16485:18;;:::i;:::-;16534:1;16521:15;;16367:175;-1:-1:-1;;16367:175:1:o;16547:112::-;16579:1;16605;16595:35;;16610:18;;:::i;:::-;-1:-1:-1;16644:9:1;;16547:112::o;16664:127::-;16725:10;16720:3;16716:20;16713:1;16706:31;16756:4;16753:1;16746:15;16780:4;16777:1;16770:15;16796:127;16857:10;16852:3;16848:20;16845:1;16838:31;16888:4;16885:1;16878:15;16912:4;16909:1;16902:15;16928:127;16989:10;16984:3;16980:20;16977:1;16970:31;17020:4;17017:1;17010:15;17044:4;17041:1;17034:15;17060:127;17121:10;17116:3;17112:20;17109:1;17102:31;17152:4;17149:1;17142:15;17176:4;17173:1;17166:15;17192:131;-1:-1:-1;;;;;;17266:32:1;;17256:43;;17246:71;;17313:1;17310;17303:12

Swarm Source

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