ETH Price: $3,271.93 (+0.36%)
Gas: 2 Gwei

Token

0xFrens (0xFrens)
 

Overview

Max Total Supply

1,166 0xFrens

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jomak.eth
Balance
10 0xFrens
0x9c9987B6a3bD51560Ce0415263d052059F518e91
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:
xFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @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/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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 + 1;
        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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

    string private _baseTokenURI;

    uint256 public constant PRICE = 10000000000000000;
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant FREE_SUPPLY = 1000;
    uint256 public constant FREE_MINT_LIMIT_PER_WALLET = 10;
    uint256 public constant MAX_MINT_AMOUNT_PER_TX = 10;
    uint256 public constant PRESALE_MAX_MINT_AMOUNT = 10;
    bool public IS_SALE_ACTIVE = false;
    bool public IS_PRESALE_ACTIVE = false;
    address[] public WHITELISTED_ADDRESSES;
    mapping(address => uint256) private MINT_COUNT;
    mapping(address => uint256) private PRESALE_MINT_TRACKER;

    constructor() 
    ERC721A("0xFrens", "0xFrens") 
    { 
        IS_PRESALE_ACTIVE = true;
    }

    /** FREE MINT **/

    function updateMintCount(address minter, uint256 count) private {
        MINT_COUNT[minter] += count;
    }

    /** SETTERS **/

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setSaleActive(bool _state) external onlyOwner {
        IS_SALE_ACTIVE = _state;
    }

    function setPresaleActive(bool _state) external onlyOwner {
        IS_PRESALE_ACTIVE = _state;
    }

    function whitelistUsers(address[] calldata _users) public onlyOwner {
        delete WHITELISTED_ADDRESSES;
        WHITELISTED_ADDRESSES = _users;
    }

    /** HELPERS **/

    function isWhitelist(address _user) public view returns (bool) {
        for(uint256 i = 0; i < WHITELISTED_ADDRESSES.length; i++) {
            if(WHITELISTED_ADDRESSES[i] == _user) {
                return true;
            }
        }
        return false;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!");
        require(_currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!");
        require(msg.sender == tx.origin, "Contract minting not allowed!");
        _;
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        if(IS_PRESALE_ACTIVE == true) {
            require(isWhitelist(msg.sender), "User is not whitelisted");
            uint256 userMintedCount = PRESALE_MINT_TRACKER[msg.sender];
            require(userMintedCount + _mintAmount <= PRESALE_MAX_MINT_AMOUNT, "Max amount has already been minted");
        }

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_SUPPLY) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - MINT_COUNT[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");
        _safeMint(msg.sender, _mintAmount);
        PRESALE_MINT_TRACKER[msg.sender] += _mintAmount;
    }

    function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    function withdraw(address _to) public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(payable(_to), balance);
    }
}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_PRESALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WHITELISTED_ADDRESSES","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleActive","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805461ffff191690553480156200001c57600080fd5b5060408051808201825260078082526630784672656e7360c81b6020808401828152855180870190965292855284015281519192916200005f9160019162000102565b5080516200007590600290602084019062000102565b505050620000926200008c620000ac60201b60201c565b620000b0565b6001600855600a805461ff001916610100179055620001e5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011090620001a8565b90600052602060002090601f0160209004810192826200013457600085556200017f565b82601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b5b808211156200018d576000815560010162000192565b600181811c90821680620001bd57607f821691505b60208210811415620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b6125bc80620001f56000396000f3fe60806040526004361061024f5760003560e01c80636352211e116101385780639858cf19116100b0578063c683630d1161007f578063e985e9c511610064578063e985e9c51461063f578063edec5f2714610688578063f2fde38b146106a857600080fd5b8063c683630d146105ff578063c87b56dd1461061f57600080fd5b80639858cf1914610596578063a0712d68146105ac578063a22cb465146105bf578063b88d4fde146105df57600080fd5b806382d29a0f116101075780638d859f3e116100ec5780638d859f3e146105485780638da5cb5b1461056357806395d89b411461058157600080fd5b806382d29a0f14610509578063841718a61461052857600080fd5b80636352211e1461049a57806370a08231146104ba578063715018a6146104da57806376d02b71146104ef57600080fd5b806332cb6b0c116101cb578063489e9fac1161019a57806351cff8d91161017f57806351cff8d91461043a57806355f804b31461045a578063575bf9e91461047a57600080fd5b8063489e9fac146103055780634f6ccce71461041a57600080fd5b806332cb6b0c146103a45780633f8121a2146103ba578063408cbf94146103da57806342842e0e146103fa57600080fd5b806309ef65271161022257806318160ddd1161020757806318160ddd1461032857806323b872dd146103645780632f745c591461038457600080fd5b806309ef65271461030557806310b0c0521461030557600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046122a1565b6106c8565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610735565b60405161028091906123eb565b3480156102b757600080fd5b506102cb6102c636600461233b565b6107c7565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe3660046121e7565b61080b565b005b34801561031157600080fd5b5061031a600a81565b604051908152602001610280565b34801561033457600080fd5b5061031a6000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b34801561037057600080fd5b5061030361037f3660046120a5565b610899565b34801561039057600080fd5b5061031a61039f3660046121e7565b6108a4565b3480156103b057600080fd5b5061031a61271081565b3480156103c657600080fd5b506103036103d5366004612286565b6109a1565b3480156103e657600080fd5b506103036103f53660046121e7565b610a1a565b34801561040657600080fd5b506103036104153660046120a5565b610b94565b34801561042657600080fd5b5061031a61043536600461233b565b610baf565b34801561044657600080fd5b50610303610455366004612057565b610c5a565b34801561046657600080fd5b506103036104753660046122db565b610d20565b34801561048657600080fd5b506102cb61049536600461233b565b610d86565b3480156104a657600080fd5b506102cb6104b536600461233b565b610db0565b3480156104c657600080fd5b5061031a6104d5366004612057565b610dc2565b3480156104e657600080fd5b50610303610e11565b3480156104fb57600080fd5b50600a546102749060ff1681565b34801561051557600080fd5b50600a5461027490610100900460ff1681565b34801561053457600080fd5b50610303610543366004612286565b610e77565b34801561055457600080fd5b5061031a662386f26fc1000081565b34801561056f57600080fd5b506007546001600160a01b03166102cb565b34801561058d57600080fd5b5061029e610ee4565b3480156105a257600080fd5b5061031a6103e881565b6103036105ba36600461233b565b610ef3565b3480156105cb57600080fd5b506103036105da3660046121bd565b61126c565b3480156105eb57600080fd5b506103036105fa3660046120e1565b611302565b34801561060b57600080fd5b5061027461061a366004612057565b61133c565b34801561062b57600080fd5b5061029e61063a36600461233b565b6113a6565b34801561064b57600080fd5b5061027461065a366004612072565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561069457600080fd5b506103036106a3366004612211565b61142b565b3480156106b457600080fd5b506103036106c3366004612057565b61149d565b60006001600160e01b031982166380ac58cd60e01b14806106f957506001600160e01b03198216635b5e139f60e01b145b8061071457506001600160e01b0319821663780e9d6360e01b145b8061072f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610744906124ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906124ae565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d28261157f565b6107ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061081682610db0565b9050806001600160a01b0316836001600160a01b0316141561084b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061086b5750610869813361065a565b155b15610889576040516367d9dca160e11b815260040160405180910390fd5b6108948383836115b3565b505050565b61089483838361161c565b60006108af83610dc2565b82106108ce576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561099b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906109475750610993565b80516001600160a01b03161561095c57805192505b876001600160a01b0316836001600160a01b03161415610991578684141561098a5750935061072f92505050565b6001909301925b505b6001016108df565b50600080fd5b6007546001600160a01b03163314610a005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a80549115156101000261ff0019909216919091179055565b80600081118015610a2c5750600a8111155b610a785760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016109f7565b60005461271090610a939083906001600160801b0316612420565b1115610ae15760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109f7565b333214610b305760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016109f7565b6007546001600160a01b03163314610b8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b610894838361183b565b61089483838360405180602001604052806000815250611302565b600080546001600160801b031681805b82811015610c4057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610c375785831415610c305750949350505050565b6001909201915b50600101610bbf565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610cb45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b60026008541415610d075760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f7565b600260085547610d178282611859565b50506001600855565b6007546001600160a01b03163314610d7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b61089460098383611f14565b600b8181548110610d9657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610dbb82611972565b5192915050565b60006001600160a01b038216610deb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610e6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b610e756000611a96565b565b6007546001600160a01b03163314610ed15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b600a805460ff1916911515919091179055565b606060028054610744906124ae565b80600081118015610f055750600a8111155b610f515760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016109f7565b60005461271090610f6c9083906001600160801b0316612420565b1115610fba5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109f7565b3332146110095760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016109f7565b600a5460ff1661105b5760405162461bcd60e51b815260206004820152601360248201527f53616c65206973206e6f7420616374697665210000000000000000000000000060448201526064016109f7565b600a5460ff6101009091041615156001141561113d5761107a3361133c565b6110c65760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109f7565b336000908152600d6020526040902054600a6110e28483612420565b111561113b5760405162461bcd60e51b815260206004820152602260248201527f4d617820616d6f756e742068617320616c7265616479206265656e206d696e74604482015261195960f21b60648201526084016109f7565b505b600061115083662386f26fc1000061244c565b6000549091506103e86001600160801b0390911610156111e957336000908152600c602052604081205461118590600a61246b565b905080156111e7578084106111c0576111a5662386f26fc100008261244c565b6111af908361246b565b91506111bb3382611af5565b6111e7565b6111d1662386f26fc100008561244c565b6111db908361246b565b91506111e73385611af5565b505b803410156112395760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016109f7565b611243338461183b565b336000908152600d602052604081208054859290611262908490612420565b9091555050505050565b6001600160a01b0382163314156112965760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61130d84848461161c565b61131984848484611b26565b611336576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000805b600b5481101561139d57826001600160a01b0316600b828154811061136757611367612544565b6000918252602090912001546001600160a01b0316141561138b5750600192915050565b80611395816124e9565b915050611340565b50600092915050565b60606113b18261157f565b6113ce57604051630a14c4b560e41b815260040160405180910390fd5b60006113d8611c35565b90508051600014156113f95760405180602001604052806000815250611424565b8061140384611c44565b604051602001611414929190612380565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b611491600b6000611f98565b610894600b8383611fb6565b6007546001600160a01b031633146114f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b6001600160a01b0381166115735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f7565b61157c81611a96565b50565b600080546001600160801b03168210801561072f575050600090815260036020526040902054600160e01b900460ff161590565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162782611972565b80519091506000906001600160a01b0316336001600160a01b0316148061165557508151611655903361065a565b80611670575033611665846107c7565b6001600160a01b0316145b90508061169057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116c55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116ec57604051633a954ecd60e21b815260040160405180910390fd5b6116fc60008484600001516115b3565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117f1576000546001600160801b03168110156117f1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611855828260405180602001604052806000815250611d5a565b5050565b804710156118a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109f7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118f6576040519150601f19603f3d011682016040523d82523d6000602084013e6118fb565b606091505b50509050806108945760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109f7565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a7d57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a7b5780516001600160a01b031615611a11579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a76579392505050565b611a11565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600c602052604081208054839290611b1d908490612420565b90915550505050565b60006001600160a01b0384163b15611c2957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b6a9033908990889088906004016123af565b602060405180830381600087803b158015611b8457600080fd5b505af1925050508015611bb4575060408051601f3d908101601f19168201909252611bb1918101906122be565b60015b611c0f573d808015611be2576040519150601f19603f3d011682016040523d82523d6000602084013e611be7565b606091505b508051611c07576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2d565b5060015b949350505050565b606060098054610744906124ae565b606081611c685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c925780611c7c816124e9565b9150611c8b9050600a83612438565b9150611c6c565b60008167ffffffffffffffff811115611cad57611cad61255a565b6040519080825280601f01601f191660200182016040528015611cd7576020820181803683370190505b5090505b8415611c2d57611cec60018361246b565b9150611cf9600a86612504565b611d04906030612420565b60f81b818381518110611d1957611d19612544565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d53600a86612438565b9450611cdb565b610894838383600160008054611d7a906001600160801b031660016123fe565b6001600160801b031690506001600160a01b038516611dab57604051622e076360e81b815260040160405180910390fd5b83611dc95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611ee55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ebb5750611eb96000888488611b26565b155b15611ed9576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e64565b50600080546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055611834565b828054611f20906124ae565b90600052602060002090601f016020900481019282611f425760008555611f88565b82601f10611f5b5782800160ff19823516178555611f88565b82800160010185558215611f88579182015b82811115611f88578235825591602001919060010190611f6d565b50611f94929150612016565b5090565b508054600082559060005260206000209081019061157c9190612016565b828054828255906000526020600020908101928215611f88579160200282015b82811115611f8857815473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03843516178255602090920191600190910190611fd6565b5b80821115611f945760008155600101612017565b80356001600160a01b038116811461204257600080fd5b919050565b8035801515811461204257600080fd5b60006020828403121561206957600080fd5b6114248261202b565b6000806040838503121561208557600080fd5b61208e8361202b565b915061209c6020840161202b565b90509250929050565b6000806000606084860312156120ba57600080fd5b6120c38461202b565b92506120d16020850161202b565b9150604084013590509250925092565b600080600080608085870312156120f757600080fd5b6121008561202b565b935061210e6020860161202b565b925060408501359150606085013567ffffffffffffffff8082111561213257600080fd5b818701915087601f83011261214657600080fd5b8135818111156121585761215861255a565b604051601f8201601f19908116603f011681019083821181831017156121805761218061255a565b816040528281528a602084870101111561219957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156121d057600080fd5b6121d98361202b565b915061209c60208401612047565b600080604083850312156121fa57600080fd5b6122038361202b565b946020939093013593505050565b6000806020838503121561222457600080fd5b823567ffffffffffffffff8082111561223c57600080fd5b818501915085601f83011261225057600080fd5b81358181111561225f57600080fd5b8660208260051b850101111561227457600080fd5b60209290920196919550909350505050565b60006020828403121561229857600080fd5b61142482612047565b6000602082840312156122b357600080fd5b813561142481612570565b6000602082840312156122d057600080fd5b815161142481612570565b600080602083850312156122ee57600080fd5b823567ffffffffffffffff8082111561230657600080fd5b818501915085601f83011261231a57600080fd5b81358181111561232957600080fd5b86602082850101111561227457600080fd5b60006020828403121561234d57600080fd5b5035919050565b6000815180845261236c816020860160208601612482565b601f01601f19169290920160200192915050565b60008351612392818460208801612482565b8351908301906123a6818360208801612482565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123e16080830184612354565b9695505050505050565b6020815260006114246020830184612354565b60006001600160801b038083168185168083038211156123a6576123a6612518565b6000821982111561243357612433612518565b500190565b6000826124475761244761252e565b500490565b600081600019048311821515161561246657612466612518565b500290565b60008282101561247d5761247d612518565b500390565b60005b8381101561249d578181015183820152602001612485565b838111156113365750506000910152565b600181811c908216806124c257607f821691505b602082108114156124e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124fd576124fd612518565b5060010190565b6000826125135761251361252e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461157c57600080fdfea26469706673582212208c84fd553663b4c8bdd09203e0bbf1f83f5f1533635bf793ee34a31549aa566364736f6c63430008070033

Deployed Bytecode

0x60806040526004361061024f5760003560e01c80636352211e116101385780639858cf19116100b0578063c683630d1161007f578063e985e9c511610064578063e985e9c51461063f578063edec5f2714610688578063f2fde38b146106a857600080fd5b8063c683630d146105ff578063c87b56dd1461061f57600080fd5b80639858cf1914610596578063a0712d68146105ac578063a22cb465146105bf578063b88d4fde146105df57600080fd5b806382d29a0f116101075780638d859f3e116100ec5780638d859f3e146105485780638da5cb5b1461056357806395d89b411461058157600080fd5b806382d29a0f14610509578063841718a61461052857600080fd5b80636352211e1461049a57806370a08231146104ba578063715018a6146104da57806376d02b71146104ef57600080fd5b806332cb6b0c116101cb578063489e9fac1161019a57806351cff8d91161017f57806351cff8d91461043a57806355f804b31461045a578063575bf9e91461047a57600080fd5b8063489e9fac146103055780634f6ccce71461041a57600080fd5b806332cb6b0c146103a45780633f8121a2146103ba578063408cbf94146103da57806342842e0e146103fa57600080fd5b806309ef65271161022257806318160ddd1161020757806318160ddd1461032857806323b872dd146103645780632f745c591461038457600080fd5b806309ef65271461030557806310b0c0521461030557600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046122a1565b6106c8565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610735565b60405161028091906123eb565b3480156102b757600080fd5b506102cb6102c636600461233b565b6107c7565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe3660046121e7565b61080b565b005b34801561031157600080fd5b5061031a600a81565b604051908152602001610280565b34801561033457600080fd5b5061031a6000546001600160801b0370010000000000000000000000000000000082048116918116919091031690565b34801561037057600080fd5b5061030361037f3660046120a5565b610899565b34801561039057600080fd5b5061031a61039f3660046121e7565b6108a4565b3480156103b057600080fd5b5061031a61271081565b3480156103c657600080fd5b506103036103d5366004612286565b6109a1565b3480156103e657600080fd5b506103036103f53660046121e7565b610a1a565b34801561040657600080fd5b506103036104153660046120a5565b610b94565b34801561042657600080fd5b5061031a61043536600461233b565b610baf565b34801561044657600080fd5b50610303610455366004612057565b610c5a565b34801561046657600080fd5b506103036104753660046122db565b610d20565b34801561048657600080fd5b506102cb61049536600461233b565b610d86565b3480156104a657600080fd5b506102cb6104b536600461233b565b610db0565b3480156104c657600080fd5b5061031a6104d5366004612057565b610dc2565b3480156104e657600080fd5b50610303610e11565b3480156104fb57600080fd5b50600a546102749060ff1681565b34801561051557600080fd5b50600a5461027490610100900460ff1681565b34801561053457600080fd5b50610303610543366004612286565b610e77565b34801561055457600080fd5b5061031a662386f26fc1000081565b34801561056f57600080fd5b506007546001600160a01b03166102cb565b34801561058d57600080fd5b5061029e610ee4565b3480156105a257600080fd5b5061031a6103e881565b6103036105ba36600461233b565b610ef3565b3480156105cb57600080fd5b506103036105da3660046121bd565b61126c565b3480156105eb57600080fd5b506103036105fa3660046120e1565b611302565b34801561060b57600080fd5b5061027461061a366004612057565b61133c565b34801561062b57600080fd5b5061029e61063a36600461233b565b6113a6565b34801561064b57600080fd5b5061027461065a366004612072565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561069457600080fd5b506103036106a3366004612211565b61142b565b3480156106b457600080fd5b506103036106c3366004612057565b61149d565b60006001600160e01b031982166380ac58cd60e01b14806106f957506001600160e01b03198216635b5e139f60e01b145b8061071457506001600160e01b0319821663780e9d6360e01b145b8061072f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610744906124ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906124ae565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d28261157f565b6107ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061081682610db0565b9050806001600160a01b0316836001600160a01b0316141561084b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061086b5750610869813361065a565b155b15610889576040516367d9dca160e11b815260040160405180910390fd5b6108948383836115b3565b505050565b61089483838361161c565b60006108af83610dc2565b82106108ce576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561099b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615801592820192909252906109475750610993565b80516001600160a01b03161561095c57805192505b876001600160a01b0316836001600160a01b03161415610991578684141561098a5750935061072f92505050565b6001909301925b505b6001016108df565b50600080fd5b6007546001600160a01b03163314610a005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a80549115156101000261ff0019909216919091179055565b80600081118015610a2c5750600a8111155b610a785760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016109f7565b60005461271090610a939083906001600160801b0316612420565b1115610ae15760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109f7565b333214610b305760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016109f7565b6007546001600160a01b03163314610b8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b610894838361183b565b61089483838360405180602001604052806000815250611302565b600080546001600160801b031681805b82811015610c4057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610c375785831415610c305750949350505050565b6001909201915b50600101610bbf565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610cb45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b60026008541415610d075760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f7565b600260085547610d178282611859565b50506001600855565b6007546001600160a01b03163314610d7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b61089460098383611f14565b600b8181548110610d9657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610dbb82611972565b5192915050565b60006001600160a01b038216610deb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610e6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b610e756000611a96565b565b6007546001600160a01b03163314610ed15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b600a805460ff1916911515919091179055565b606060028054610744906124ae565b80600081118015610f055750600a8111155b610f515760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016109f7565b60005461271090610f6c9083906001600160801b0316612420565b1115610fba5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109f7565b3332146110095760405162461bcd60e51b815260206004820152601d60248201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f7765642100000060448201526064016109f7565b600a5460ff1661105b5760405162461bcd60e51b815260206004820152601360248201527f53616c65206973206e6f7420616374697665210000000000000000000000000060448201526064016109f7565b600a5460ff6101009091041615156001141561113d5761107a3361133c565b6110c65760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109f7565b336000908152600d6020526040902054600a6110e28483612420565b111561113b5760405162461bcd60e51b815260206004820152602260248201527f4d617820616d6f756e742068617320616c7265616479206265656e206d696e74604482015261195960f21b60648201526084016109f7565b505b600061115083662386f26fc1000061244c565b6000549091506103e86001600160801b0390911610156111e957336000908152600c602052604081205461118590600a61246b565b905080156111e7578084106111c0576111a5662386f26fc100008261244c565b6111af908361246b565b91506111bb3382611af5565b6111e7565b6111d1662386f26fc100008561244c565b6111db908361246b565b91506111e73385611af5565b505b803410156112395760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016109f7565b611243338461183b565b336000908152600d602052604081208054859290611262908490612420565b9091555050505050565b6001600160a01b0382163314156112965760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61130d84848461161c565b61131984848484611b26565b611336576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000805b600b5481101561139d57826001600160a01b0316600b828154811061136757611367612544565b6000918252602090912001546001600160a01b0316141561138b5750600192915050565b80611395816124e9565b915050611340565b50600092915050565b60606113b18261157f565b6113ce57604051630a14c4b560e41b815260040160405180910390fd5b60006113d8611c35565b90508051600014156113f95760405180602001604052806000815250611424565b8061140384611c44565b604051602001611414929190612380565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b611491600b6000611f98565b610894600b8383611fb6565b6007546001600160a01b031633146114f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f7565b6001600160a01b0381166115735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f7565b61157c81611a96565b50565b600080546001600160801b03168210801561072f575050600090815260036020526040902054600160e01b900460ff161590565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162782611972565b80519091506000906001600160a01b0316336001600160a01b0316148061165557508151611655903361065a565b80611670575033611665846107c7565b6001600160a01b0316145b90508061169057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116c55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116ec57604051633a954ecd60e21b815260040160405180910390fd5b6116fc60008484600001516115b3565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117f1576000546001600160801b03168110156117f1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611855828260405180602001604052806000815250611d5a565b5050565b804710156118a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109f7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118f6576040519150601f19603f3d011682016040523d82523d6000602084013e6118fb565b606091505b50509050806108945760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109f7565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a7d57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a7b5780516001600160a01b031615611a11579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a76579392505050565b611a11565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600c602052604081208054839290611b1d908490612420565b90915550505050565b60006001600160a01b0384163b15611c2957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b6a9033908990889088906004016123af565b602060405180830381600087803b158015611b8457600080fd5b505af1925050508015611bb4575060408051601f3d908101601f19168201909252611bb1918101906122be565b60015b611c0f573d808015611be2576040519150601f19603f3d011682016040523d82523d6000602084013e611be7565b606091505b508051611c07576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2d565b5060015b949350505050565b606060098054610744906124ae565b606081611c685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c925780611c7c816124e9565b9150611c8b9050600a83612438565b9150611c6c565b60008167ffffffffffffffff811115611cad57611cad61255a565b6040519080825280601f01601f191660200182016040528015611cd7576020820181803683370190505b5090505b8415611c2d57611cec60018361246b565b9150611cf9600a86612504565b611d04906030612420565b60f81b818381518110611d1957611d19612544565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d53600a86612438565b9450611cdb565b610894838383600160008054611d7a906001600160801b031660016123fe565b6001600160801b031690506001600160a01b038516611dab57604051622e076360e81b815260040160405180910390fd5b83611dc95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611ee55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ebb5750611eb96000888488611b26565b155b15611ed9576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e64565b50600080546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055611834565b828054611f20906124ae565b90600052602060002090601f016020900481019282611f425760008555611f88565b82601f10611f5b5782800160ff19823516178555611f88565b82800160010185558215611f88579182015b82811115611f88578235825591602001919060010190611f6d565b50611f94929150612016565b5090565b508054600082559060005260206000209081019061157c9190612016565b828054828255906000526020600020908101928215611f88579160200282015b82811115611f8857815473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03843516178255602090920191600190910190611fd6565b5b80821115611f945760008155600101612017565b80356001600160a01b038116811461204257600080fd5b919050565b8035801515811461204257600080fd5b60006020828403121561206957600080fd5b6114248261202b565b6000806040838503121561208557600080fd5b61208e8361202b565b915061209c6020840161202b565b90509250929050565b6000806000606084860312156120ba57600080fd5b6120c38461202b565b92506120d16020850161202b565b9150604084013590509250925092565b600080600080608085870312156120f757600080fd5b6121008561202b565b935061210e6020860161202b565b925060408501359150606085013567ffffffffffffffff8082111561213257600080fd5b818701915087601f83011261214657600080fd5b8135818111156121585761215861255a565b604051601f8201601f19908116603f011681019083821181831017156121805761218061255a565b816040528281528a602084870101111561219957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156121d057600080fd5b6121d98361202b565b915061209c60208401612047565b600080604083850312156121fa57600080fd5b6122038361202b565b946020939093013593505050565b6000806020838503121561222457600080fd5b823567ffffffffffffffff8082111561223c57600080fd5b818501915085601f83011261225057600080fd5b81358181111561225f57600080fd5b8660208260051b850101111561227457600080fd5b60209290920196919550909350505050565b60006020828403121561229857600080fd5b61142482612047565b6000602082840312156122b357600080fd5b813561142481612570565b6000602082840312156122d057600080fd5b815161142481612570565b600080602083850312156122ee57600080fd5b823567ffffffffffffffff8082111561230657600080fd5b818501915085601f83011261231a57600080fd5b81358181111561232957600080fd5b86602082850101111561227457600080fd5b60006020828403121561234d57600080fd5b5035919050565b6000815180845261236c816020860160208601612482565b601f01601f19169290920160200192915050565b60008351612392818460208801612482565b8351908301906123a6818360208801612482565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123e16080830184612354565b9695505050505050565b6020815260006114246020830184612354565b60006001600160801b038083168185168083038211156123a6576123a6612518565b6000821982111561243357612433612518565b500190565b6000826124475761244761252e565b500490565b600081600019048311821515161561246657612466612518565b500290565b60008282101561247d5761247d612518565b500390565b60005b8381101561249d578181015183820152602001612485565b838111156113365750506000910152565b600181811c908216806124c257607f821691505b602082108114156124e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124fd576124fd612518565b5060010190565b6000826125135761251361252e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461157c57600080fdfea26469706673582212208c84fd553663b4c8bdd09203e0bbf1f83f5f1533635bf793ee34a31549aa566364736f6c63430008070033

Deployed Bytecode Sourcemap

49059:3842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32593:372;;;;;;;;;;-1:-1:-1;32593:372:0;;;;;:::i;:::-;;:::i;:::-;;;6780:14:1;;6773:22;6755:41;;6743:2;6728:18;32593:372:0;;;;;;;;35203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36706:204::-;;;;;;;;;;-1:-1:-1;36706:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6032:55:1;;;6014:74;;6002:2;5987:18;36706:204:0;5868:226:1;36269:371:0;;;;;;;;;;-1:-1:-1;36269:371:0;;;;;:::i;:::-;;:::i;:::-;;49406:51;;;;;;;;;;;;49455:2;49406:51;;;;;11597:25:1;;;11585:2;11570:18;49406:51:0;11451:177:1;29830:280:0;;;;;;;;;;;;29883:7;30075:12;-1:-1:-1;;;;;30075:12:0;;;;;30059:13;;;:28;;;;30052:35;;29830:280;37563:170;;;;;;;;;;-1:-1:-1;37563:170:0;;;;;:::i;:::-;;:::i;31416:1105::-;;;;;;;;;;-1:-1:-1;31416:1105:0;;;;;:::i;:::-;;:::i;49246:42::-;;;;;;;;;;;;49283:5;49246:42;;50386:103;;;;;;;;;;-1:-1:-1;50386:103:0;;;;;:::i;:::-;;:::i;52552:144::-;;;;;;;;;;-1:-1:-1;52552:144:0;;;;;:::i;:::-;;:::i;37804:185::-;;;;;;;;;;-1:-1:-1;37804:185:0;;;;;:::i;:::-;;:::i;30403:713::-;;;;;;;;;;-1:-1:-1;30403:713:0;;;;;:::i;:::-;;:::i;52726:172::-;;;;;;;;;;-1:-1:-1;52726:172:0;;;;;:::i;:::-;;:::i;50167:106::-;;;;;;;;;;-1:-1:-1;50167:106:0;;;;;:::i;:::-;;:::i;49608:38::-;;;;;;;;;;-1:-1:-1;49608:38:0;;;;;:::i;:::-;;:::i;35012:124::-;;;;;;;;;;-1:-1:-1;35012:124:0;;;;;:::i;:::-;;:::i;33029:206::-;;;;;;;;;;-1:-1:-1;33029:206:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;49523:34::-;;;;;;;;;;-1:-1:-1;49523:34:0;;;;;;;;49564:37;;;;;;;;;;-1:-1:-1;49564:37:0;;;;;;;;;;;50281:97;;;;;;;;;;-1:-1:-1;50281:97:0;;;;;:::i;:::-;;:::i;49190:49::-;;;;;;;;;;;;49222:17;49190:49;;6871:87;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;35372:104;;;;;;;;;;;;;:::i;49295:42::-;;;;;;;;;;;;49333:4;49295:42;;51318:1226;;;;;;:::i;:::-;;:::i;36982:279::-;;;;;;;;;;-1:-1:-1;36982:279:0;;;;;:::i;:::-;;:::i;38060:342::-;;;;;;;;;;-1:-1:-1;38060:342:0;;;;;:::i;:::-;;:::i;50684:272::-;;;;;;;;;;-1:-1:-1;50684:272:0;;;;;:::i;:::-;;:::i;35547:318::-;;;;;;;;;;-1:-1:-1;35547:318:0;;;;;:::i;:::-;;:::i;37332:164::-;;;;;;;;;;-1:-1:-1;37332:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37453:25:0;;;37429:4;37453:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37332:164;50497:156;;;;;;;;;;-1:-1:-1;50497:156:0;;;;;:::i;:::-;;:::i;7780:201::-;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;32593:372::-;32695:4;-1:-1:-1;;;;;;32732:40:0;;-1:-1:-1;;;32732:40:0;;:105;;-1:-1:-1;;;;;;;32789:48:0;;-1:-1:-1;;;32789:48:0;32732:105;:172;;;-1:-1:-1;;;;;;;32854:50:0;;-1:-1:-1;;;32854:50:0;32732:172;:225;;;-1:-1:-1;;;;;;;;;;19764:40:0;;;32921:36;32712:245;32593:372;-1:-1:-1;;32593:372:0:o;35203:100::-;35257:13;35290:5;35283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35203:100;:::o;36706:204::-;36774:7;36799:16;36807:7;36799;:16::i;:::-;36794:64;;36824:34;;-1:-1:-1;;;36824:34:0;;;;;;;;;;;36794:64;-1:-1:-1;36878:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36878:24:0;;36706:204::o;36269:371::-;36342:13;36358:24;36374:7;36358:15;:24::i;:::-;36342:40;;36403:5;-1:-1:-1;;;;;36397:11:0;:2;-1:-1:-1;;;;;36397:11:0;;36393:48;;;36417:24;;-1:-1:-1;;;36417:24:0;;;;;;;;;;;36393:48;5675:10;-1:-1:-1;;;;;36458:21:0;;;;;;:63;;-1:-1:-1;36484:37:0;36501:5;5675:10;37332:164;:::i;36484:37::-;36483:38;36458:63;36454:138;;;36545:35;;-1:-1:-1;;;36545:35:0;;;;;;;;;;;36454:138;36604:28;36613:2;36617:7;36626:5;36604:8;:28::i;:::-;36331:309;36269:371;;:::o;37563:170::-;37697:28;37707:4;37713:2;37717:7;37697:9;:28::i;31416:1105::-;31505:7;31538:16;31548:5;31538:9;:16::i;:::-;31529:5;:25;31525:61;;31563:23;;-1:-1:-1;;;31563:23:0;;;;;;;;;;;31525:61;31597:22;31622:13;;-1:-1:-1;;;;;31622:13:0;;31597:22;;31872:557;31892:14;31888:1;:18;31872:557;;;31932:31;31966:14;;;:11;:14;;;;;;;;;31932:48;;;;;;;;;-1:-1:-1;;;;;31932:48:0;;;;-1:-1:-1;;;31932:48:0;;;;;;;;;;;-1:-1:-1;;;31932:48:0;;;;;;;;;;;;;;;;31999:73;;32044:8;;;31999:73;32094:14;;-1:-1:-1;;;;;32094:28:0;;32090:111;;32167:14;;;-1:-1:-1;32090:111:0;32244:5;-1:-1:-1;;;;;32223:26:0;:17;-1:-1:-1;;;;;32223:26:0;;32219:195;;;32293:5;32278:11;:20;32274:85;;;-1:-1:-1;32334:1:0;-1:-1:-1;32327:8:0;;-1:-1:-1;;;32327:8:0;32274:85;32381:13;;;;;32219:195;31913:516;31872:557;31908:3;;31872:557;;;;32505:8;;;50386:103;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;;;;;;;;;50455:17:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;50455:26:0;;::::1;::::0;;;::::1;::::0;;50386:103::o;52552:144::-;52627:11;51062:1;51048:11;:15;:56;;;;;49455:2;51067:11;:37;;51048:56;51040:89;;;;-1:-1:-1;;;51040:89:0;;7640:2:1;51040:89:0;;;7622:21:1;7679:2;7659:18;;;7652:30;7718:22;7698:18;;;7691:50;7758:18;;51040:89:0;7438:344:1;51040:89:0;51148:13;;49283:5;;51148:27;;51164:11;;-1:-1:-1;;;;;51148:13:0;:27;:::i;:::-;:41;;51140:74;;;;-1:-1:-1;;;51140:74:0;;10193:2:1;51140:74:0;;;10175:21:1;10232:2;10212:18;;;10205:30;10271:22;10251:18;;;10244:50;10311:18;;51140:74:0;9991:344:1;51140:74:0;51233:10;51247:9;51233:23;51225:65;;;;-1:-1:-1;;;51225:65:0;;8416:2:1;51225:65:0;;;8398:21:1;8455:2;8435:18;;;8428:30;8494:31;8474:18;;;8467:59;8543:18;;51225:65:0;8214:353:1;51225:65:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23:::1;7083:68;;;::::0;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0::1;::::0;::::1;9466:21:1::0;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0::1;9282:356:1::0;7083:68:0::1;52661:27:::2;52671:3;52676:11;52661:9;:27::i;37804:185::-:0;37942:39;37959:4;37965:2;37969:7;37942:39;;;;;;;;;;;;:16;:39::i;30403:713::-;30470:7;30515:13;;-1:-1:-1;;;;;30515:13:0;30470:7;;30729:328;30749:14;30745:1;:18;30729:328;;;30789:31;30823:14;;;:11;:14;;;;;;;;;30789:48;;;;;;;;;-1:-1:-1;;;;;30789:48:0;;;;-1:-1:-1;;;30789:48:0;;;;;;;;;;;-1:-1:-1;;;30789:48:0;;;;;;;;;;;;;;30856:186;;30921:5;30906:11;:20;30902:85;;;-1:-1:-1;30962:1:0;30403:713;-1:-1:-1;;;;30403:713:0:o;30902:85::-;31009:13;;;;;30856:186;-1:-1:-1;30765:3:0;;30729:328;;;;31085:23;;-1:-1:-1;;;31085:23:0;;;;;;;;;;;52726:172;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;9282:356:1;7083:68:0;1845:1:::1;2443:7;;:19;;2435:63;;;::::0;-1:-1:-1;;;2435:63:0;;10945:2:1;2435:63:0::1;::::0;::::1;10927:21:1::0;10984:2;10964:18;;;10957:30;11023:33;11003:18;;;10996:61;11074:18;;2435:63:0::1;10743:355:1::0;2435:63:0::1;1845:1;2576:7;:18:::0;52816:21:::2;52850:40;52876:3:::0;52816:21;52850:17:::2;:40::i;:::-;-1:-1:-1::0;;1801:1:0::1;2755:7;:22:::0;52726:172::o;50167:106::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;9282:356:1;7083:68:0;50242:23:::1;:13;50258:7:::0;;50242:23:::1;:::i;49608:38::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49608:38:0;;-1:-1:-1;49608:38:0;:::o;35012:124::-;35076:7;35103:20;35115:7;35103:11;:20::i;:::-;:25;;35012:124;-1:-1:-1;;35012:124:0:o;33029:206::-;33093:7;-1:-1:-1;;;;;33117:19:0;;33113:60;;33145:28;;-1:-1:-1;;;33145:28:0;;;;;;;;;;;33113:60;-1:-1:-1;;;;;;33199:19:0;;;;;:12;:19;;;;;:27;;;;33029:206::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;9282:356:1;7083:68:0;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;50281:97::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;9282:356:1;7083:68:0;50347:14:::1;:23:::0;;-1:-1:-1;;50347:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50281:97::o;35372:104::-;35428:13;35461:7;35454:14;;;;;:::i;51318:1226::-;51383:11;51062:1;51048:11;:15;:56;;;;;49455:2;51067:11;:37;;51048:56;51040:89;;;;-1:-1:-1;;;51040:89:0;;7640:2:1;51040:89:0;;;7622:21:1;7679:2;7659:18;;;7652:30;7718:22;7698:18;;;7691:50;7758:18;;51040:89:0;7438:344:1;51040:89:0;51148:13;;49283:5;;51148:27;;51164:11;;-1:-1:-1;;;;;51148:13:0;:27;:::i;:::-;:41;;51140:74;;;;-1:-1:-1;;;51140:74:0;;10193:2:1;51140:74:0;;;10175:21:1;10232:2;10212:18;;;10205:30;10271:22;10251:18;;;10244:50;10311:18;;51140:74:0;9991:344:1;51140:74:0;51233:10;51247:9;51233:23;51225:65;;;;-1:-1:-1;;;51225:65:0;;8416:2:1;51225:65:0;;;8398:21:1;8455:2;8435:18;;;8428:30;8494:31;8474:18;;;8467:59;8543:18;;51225:65:0;8214:353:1;51225:65:0;51415:14:::1;::::0;::::1;;51407:46;;;::::0;-1:-1:-1;;;51407:46:0;;9845:2:1;51407:46:0::1;::::0;::::1;9827:21:1::0;9884:2;9864:18;;;9857:30;9923:21;9903:18;;;9896:49;9962:18;;51407:46:0::1;9643:343:1::0;51407:46:0::1;51469:17;::::0;::::1;;::::0;;::::1;;:25;;:17;:25;51466:307;;;51519:23;51531:10;51519:11;:23::i;:::-;51511:59;;;::::0;-1:-1:-1;;;51511:59:0;;9132:2:1;51511:59:0::1;::::0;::::1;9114:21:1::0;9171:2;9151:18;;;9144:30;9210:25;9190:18;;;9183:53;9253:18;;51511:59:0::1;8930:347:1::0;51511:59:0::1;51632:10;51585:23;51611:32:::0;;;:20:::1;:32;::::0;;;;;49514:2:::1;51666:29;51684:11:::0;51611:32;51666:29:::1;:::i;:::-;:56;;51658:103;;;::::0;-1:-1:-1;;;51658:103:0;;10542:2:1;51658:103:0::1;::::0;::::1;10524:21:1::0;10581:2;10561:18;;;10554:30;10620:34;10600:18;;;10593:62;-1:-1:-1;;;10671:18:1;;;10664:32;10713:19;;51658:103:0::1;10340:398:1::0;51658:103:0::1;51496:277;51466:307;51785:13;51801:19;51809:11:::0;49222:17:::1;51801:19;:::i;:::-;51837:13;::::0;51785:35;;-1:-1:-1;49333:4:0::1;-1:-1:-1::0;;;;;51837:13:0;;::::1;:27;51833:538;;;51949:10;51881:25;51938:22:::0;;;:10:::1;:22;::::0;;;;;51909:51:::1;::::0;49397:2:::1;51909:51;:::i;:::-;51881:79:::0;-1:-1:-1;51979:21:0;;51975:385:::1;;52040:17;52025:11;:32;52021:324;;52091:25;49222:17;52091::::0;:25:::1;:::i;:::-;52082:34;::::0;;::::1;:::i;:::-;;;52139:46;52155:10;52167:17;52139:15;:46::i;:::-;52021:324;;;52243:19;49222:17;52243:11:::0;:19:::1;:::i;:::-;52234:28;::::0;;::::1;:::i;:::-;;;52285:40;52301:10;52313:11;52285:15;:40::i;:::-;51866:505;51833:538;52404:5;52391:9;:18;;52383:50;;;::::0;-1:-1:-1;;;52383:50:0;;11305:2:1;52383:50:0::1;::::0;::::1;11287:21:1::0;11344:2;11324:18;;;11317:30;11383:21;11363:18;;;11356:49;11422:18;;52383:50:0::1;11103:343:1::0;52383:50:0::1;52444:34;52454:10;52466:11;52444:9;:34::i;:::-;52510:10;52489:32;::::0;;;:20:::1;:32;::::0;;;;:47;;52525:11;;52489:32;:47:::1;::::0;52525:11;;52489:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;51318:1226:0:o;36982:279::-;-1:-1:-1;;;;;37073:24:0;;5675:10;37073:24;37069:54;;;37106:17;;-1:-1:-1;;;37106:17:0;;;;;;;;;;;37069:54;5675:10;37136:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37136:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37136:53:0;;;;;;;;;;37205:48;;6755:41:1;;;37136:42:0;;5675:10;37205:48;;6728:18:1;37205:48:0;;;;;;;36982:279;;:::o;38060:342::-;38227:28;38237:4;38243:2;38247:7;38227:9;:28::i;:::-;38271:48;38294:4;38300:2;38304:7;38313:5;38271:22;:48::i;:::-;38266:129;;38343:40;;-1:-1:-1;;;38343:40:0;;;;;;;;;;;38266:129;38060:342;;;;:::o;50684:272::-;50741:4;;50758:168;50781:21;:28;50777:32;;50758:168;;;50862:5;-1:-1:-1;;;;;50834:33:0;:21;50856:1;50834:24;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;50834:24:0;:33;50831:84;;;-1:-1:-1;50895:4:0;;50684:272;-1:-1:-1;;50684:272:0:o;50831:84::-;50811:3;;;;:::i;:::-;;;;50758:168;;;-1:-1:-1;50943:5:0;;50684:272;-1:-1:-1;;50684:272:0:o;35547:318::-;35620:13;35651:16;35659:7;35651;:16::i;:::-;35646:59;;35676:29;;-1:-1:-1;;;35676:29:0;;;;;;;;;;;35646:59;35718:21;35742:10;:8;:10::i;:::-;35718:34;;35776:7;35770:21;35795:1;35770:26;;:87;;;;;;;;;;;;;;;;;35823:7;35832:18;:7;:16;:18::i;:::-;35806:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35770:87;35763:94;35547:318;-1:-1:-1;;;35547:318:0:o;50497:156::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;9282:356:1;7083:68:0;50576:28:::1;50583:21;;50576:28;:::i;:::-;50615:30;:21;50639:6:::0;;50615:30:::1;:::i;7780:201::-:0;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;9484:2:1;7083:68:0;;;9466:21:1;;;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;9614:18;;7083:68:0;9282:356:1;7083:68:0;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;7233:2:1;7861:73:0::1;::::0;::::1;7215:21:1::0;7272:2;7252:18;;;7245:30;7311:34;7291:18;;;7284:62;7382:8;7362:18;;;7355:36;7408:19;;7861:73:0::1;7031:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;38657:144::-;38714:4;38748:13;;-1:-1:-1;;;;;38748:13:0;38738:23;;:55;;;;-1:-1:-1;;38766:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38766:27:0;;;;38765:28;;38657:144::o;45877:196::-;45992:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;45992:29:0;-1:-1:-1;;;;;45992:29:0;;;;;;;;;46037:28;;45992:24;;46037:28;;;;;;;45877:196;;;:::o;41378:2112::-;41493:35;41531:20;41543:7;41531:11;:20::i;:::-;41606:18;;41493:58;;-1:-1:-1;41564:22:0;;-1:-1:-1;;;;;41590:34:0;5675:10;-1:-1:-1;;;;;41590:34:0;;:101;;;-1:-1:-1;41658:18:0;;41641:50;;5675:10;37332:164;:::i;41641:50::-;41590:154;;;-1:-1:-1;5675:10:0;41708:20;41720:7;41708:11;:20::i;:::-;-1:-1:-1;;;;;41708:36:0;;41590:154;41564:181;;41763:17;41758:66;;41789:35;;-1:-1:-1;;;41789:35:0;;;;;;;;;;;41758:66;41861:4;-1:-1:-1;;;;;41839:26:0;:13;:18;;;-1:-1:-1;;;;;41839:26:0;;41835:67;;41874:28;;-1:-1:-1;;;41874:28:0;;;;;;;;;;;41835:67;-1:-1:-1;;;;;41917:16:0;;41913:52;;41942:23;;-1:-1:-1;;;41942:23:0;;;;;;;;;;;41913:52;42086:49;42103:1;42107:7;42116:13;:18;;;42086:8;:49::i;:::-;-1:-1:-1;;;;;42431:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42431:31:0;;;;;;;-1:-1:-1;;42431:31:0;;;;;;;42477:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42477:29:0;;;;;;;;;;;42523:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42568:61:0;;;;-1:-1:-1;;;42613:15:0;42568:61;;;;;;;;;;;42903:11;;;42933:24;;;;;:29;42903:11;;42933:29;42929:445;;43158:13;;-1:-1:-1;;;;;43158:13:0;43144:27;;43140:219;;;43228:18;;;43196:24;;;:11;:24;;;;;;;;:50;;43311:28;;;;43269:70;;-1:-1:-1;;;43269:70:0;-1:-1:-1;;;;;;43269:70:0;;;-1:-1:-1;;;;;43196:50:0;;;43269:70;;;;;;;43140:219;42406:979;43421:7;43417:2;-1:-1:-1;;;;;43402:27:0;43411:4;-1:-1:-1;;;;;43402:27:0;;;;;;;;;;;43440:42;41482:2008;;41378:2112;;;:::o;38809:104::-;38878:27;38888:2;38892:8;38878:27;;;;;;;;;;;;:9;:27::i;:::-;38809:104;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;-1:-1:-1;;;10915:73:0;;8774:2:1;10915:73:0;;;8756:21:1;8813:2;8793:18;;;8786:30;8852:31;8832:18;;;8825:59;8901:18;;10915:73:0;8572:353:1;10915:73:0;11002:12;11020:9;-1:-1:-1;;;;;11020:14:0;11042:6;11020:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;-1:-1:-1;;;11064:78:0;;7989:2:1;11064:78:0;;;7971:21:1;8028:2;8008:18;;;8001:30;8067:34;8047:18;;;8040:62;8138:28;8118:18;;;8111:56;8184:19;;11064:78:0;7787:422:1;33867:1083:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;34033:13:0;;33977:7;;-1:-1:-1;;;;;34033:13:0;34026:20;;34022:861;;;34067:31;34101:17;;;:11;:17;;;;;;;;;34067:51;;;;;;;;;-1:-1:-1;;;;;34067:51:0;;;;-1:-1:-1;;;34067:51:0;;;;;;;;;;;-1:-1:-1;;;34067:51:0;;;;;;;;;;;;;;34137:731;;34187:14;;-1:-1:-1;;;;;34187:28:0;;34183:101;;34251:9;33867:1083;-1:-1:-1;;;33867:1083:0:o;34183:101::-;-1:-1:-1;;;34628:6:0;34673:17;;;;:11;:17;;;;;;;;;34661:29;;;;;;;;;-1:-1:-1;;;;;34661:29:0;;;;;-1:-1:-1;;;34661:29:0;;;;;;;;;;;-1:-1:-1;;;34661:29:0;;;;;;;;;;;;;34721:28;34717:109;;34789:9;33867:1083;-1:-1:-1;;;33867:1083:0:o;34717:109::-;34588:261;;;34048:835;34022:861;34911:31;;-1:-1:-1;;;34911:31:0;;;;;;;;;;;8141:191;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;49904:110::-;-1:-1:-1;;;;;49979:18:0;;;;;;:10;:18;;;;;:27;;50001:5;;49979:18;:27;;50001:5;;49979:27;:::i;:::-;;;;-1:-1:-1;;;;49904:110:0:o;46638:790::-;46793:4;-1:-1:-1;;;;;46814:13:0;;9867:19;:23;46810:611;;46850:72;;-1:-1:-1;;;46850:72:0;;-1:-1:-1;;;;;46850:36:0;;;;;:72;;5675:10;;46901:4;;46907:7;;46916:5;;46850:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46850:72:0;;;;;;;;-1:-1:-1;;46850:72:0;;;;;;;;;;;;:::i;:::-;;;46846:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47096:13:0;;47092:259;;47146:40;;-1:-1:-1;;;47146:40:0;;;;;;;;;;;47092:259;47301:6;47295:13;47286:6;47282:2;47278:15;47271:38;46846:520;-1:-1:-1;;;;;;46973:55:0;-1:-1:-1;;;46973:55:0;;-1:-1:-1;46966:62:0;;46810:611;-1:-1:-1;47405:4:0;46810:611;46638:790;;;;;;:::o;50045:114::-;50105:13;50138;50131:20;;;;;:::i;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;39276:163;39399:32;39405:2;39409:8;39419:5;39426:4;39837:20;39860:13;;:17;;-1:-1:-1;;;;;39860:13:0;;:17;:::i;:::-;-1:-1:-1;;;;;39837:40:0;;-1:-1:-1;;;;;;39892:16:0;;39888:48;;39917:19;;-1:-1:-1;;;39917:19:0;;;;;;;;;;;39888:48;39951:13;39947:44;;39973:18;;-1:-1:-1;;;39973:18:0;;;;;;;;;;;39947:44;-1:-1:-1;;;;;40343:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40402:49:0;;40343:44;;;;;;;;40402:49;;;;-1:-1:-1;;40343:44:0;;;;;;40402:49;;;;;;;;;;;;;;;;40468:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;40518:66:0;;;;-1:-1:-1;;;40568:15:0;40518:66;;;;;;;;;;;40468:25;;40653:328;40673:8;40669:1;:12;40653:328;;;40712:38;;40737:12;;-1:-1:-1;;;;;40712:38:0;;;40729:1;;40712:38;;40729:1;;40712:38;40773:4;:68;;;;;40782:59;40813:1;40817:2;40821:12;40835:5;40782:22;:59::i;:::-;40781:60;40773:68;40769:164;;;40873:40;;-1:-1:-1;;;40873:40:0;;;;;;;;;;;40769:164;40951:14;;;;;40683:3;40653:328;;;-1:-1:-1;40997:13:0;:37;;-1:-1:-1;;40997:37:0;-1:-1:-1;;;;;40997:37:0;;;;;;;;;;41056:60;38060:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:52;;;716:1;713;706:12;668:52;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;571:260;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;836:328;;;;;:::o;1169:1138::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:53;;;1358:1;1355;1348:12;1309:53;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1790:2;1777:16;1812:2;1808;1805:10;1802:36;;;1818:18;;:::i;:::-;1893:2;1887:9;1861:2;1947:13;;-1:-1:-1;;1943:22:1;;;1967:2;1939:31;1935:40;1923:53;;;1991:18;;;2011:22;;;1988:46;1985:72;;;2037:18;;:::i;:::-;2077:10;2073:2;2066:22;2112:2;2104:6;2097:18;2152:7;2147:2;2142;2138;2134:11;2130:20;2127:33;2124:53;;;2173:1;2170;2163:12;2124:53;2229:2;2224;2220;2216:11;2211:2;2203:6;2199:15;2186:46;2274:1;2269:2;2264;2256:6;2252:15;2248:24;2241:35;2295:6;2285:16;;;;;;;1169:1138;;;;;;;:::o;2312:254::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2477:29;2496:9;2477:29;:::i;:::-;2467:39;;2525:35;2556:2;2545:9;2541:18;2525:35;:::i;2571:254::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:52;;;2716:1;2713;2706:12;2668:52;2739:29;2758:9;2739:29;:::i;:::-;2729:39;2815:2;2800:18;;;;2787:32;;-1:-1:-1;;;2571:254:1:o;2830:615::-;2916:6;2924;2977:2;2965:9;2956:7;2952:23;2948:32;2945:52;;;2993:1;2990;2983:12;2945:52;3033:9;3020:23;3062:18;3103:2;3095:6;3092:14;3089:34;;;3119:1;3116;3109:12;3089:34;3157:6;3146:9;3142:22;3132:32;;3202:7;3195:4;3191:2;3187:13;3183:27;3173:55;;3224:1;3221;3214:12;3173:55;3264:2;3251:16;3290:2;3282:6;3279:14;3276:34;;;3306:1;3303;3296:12;3276:34;3359:7;3354:2;3344:6;3341:1;3337:14;3333:2;3329:23;3325:32;3322:45;3319:65;;;3380:1;3377;3370:12;3319:65;3411:2;3403:11;;;;;3433:6;;-1:-1:-1;2830:615:1;;-1:-1:-1;;;;2830:615:1:o;3450:180::-;3506:6;3559:2;3547:9;3538:7;3534:23;3530:32;3527:52;;;3575:1;3572;3565:12;3527:52;3598:26;3614:9;3598:26;:::i;3635:245::-;3693:6;3746:2;3734:9;3725:7;3721:23;3717:32;3714:52;;;3762:1;3759;3752:12;3714:52;3801:9;3788:23;3820:30;3844:5;3820:30;:::i;3885:249::-;3954:6;4007:2;3995:9;3986:7;3982:23;3978:32;3975:52;;;4023:1;4020;4013:12;3975:52;4055:9;4049:16;4074:30;4098:5;4074:30;:::i;4139:592::-;4210:6;4218;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4327:9;4314:23;4356:18;4397:2;4389:6;4386:14;4383:34;;;4413:1;4410;4403:12;4383:34;4451:6;4440:9;4436:22;4426:32;;4496:7;4489:4;4485:2;4481:13;4477:27;4467:55;;4518:1;4515;4508:12;4467:55;4558:2;4545:16;4584:2;4576:6;4573:14;4570:34;;;4600:1;4597;4590:12;4570:34;4645:7;4640:2;4631:6;4627:2;4623:15;4619:24;4616:37;4613:57;;;4666:1;4663;4656:12;4736:180;4795:6;4848:2;4836:9;4827:7;4823:23;4819:32;4816:52;;;4864:1;4861;4854:12;4816:52;-1:-1:-1;4887:23:1;;4736:180;-1:-1:-1;4736:180:1:o;4921:257::-;4962:3;5000:5;4994:12;5027:6;5022:3;5015:19;5043:63;5099:6;5092:4;5087:3;5083:14;5076:4;5069:5;5065:16;5043:63;:::i;:::-;5160:2;5139:15;-1:-1:-1;;5135:29:1;5126:39;;;;5167:4;5122:50;;4921:257;-1:-1:-1;;4921:257:1:o;5183:470::-;5362:3;5400:6;5394:13;5416:53;5462:6;5457:3;5450:4;5442:6;5438:17;5416:53;:::i;:::-;5532:13;;5491:16;;;;5554:57;5532:13;5491:16;5588:4;5576:17;;5554:57;:::i;:::-;5627:20;;5183:470;-1:-1:-1;;;;5183:470:1:o;6099:511::-;6293:4;-1:-1:-1;;;;;6403:2:1;6395:6;6391:15;6380:9;6373:34;6455:2;6447:6;6443:15;6438:2;6427:9;6423:18;6416:43;;6495:6;6490:2;6479:9;6475:18;6468:34;6538:3;6533:2;6522:9;6518:18;6511:31;6559:45;6599:3;6588:9;6584:19;6576:6;6559:45;:::i;:::-;6551:53;6099:511;-1:-1:-1;;;;;;6099:511:1:o;6807:219::-;6956:2;6945:9;6938:21;6919:4;6976:44;7016:2;7005:9;7001:18;6993:6;6976:44;:::i;11633:253::-;11673:3;-1:-1:-1;;;;;11762:2:1;11759:1;11755:10;11792:2;11789:1;11785:10;11823:3;11819:2;11815:12;11810:3;11807:21;11804:47;;;11831:18;;:::i;11891:128::-;11931:3;11962:1;11958:6;11955:1;11952:13;11949:39;;;11968:18;;:::i;:::-;-1:-1:-1;12004:9:1;;11891:128::o;12024:120::-;12064:1;12090;12080:35;;12095:18;;:::i;:::-;-1:-1:-1;12129:9:1;;12024:120::o;12149:168::-;12189:7;12255:1;12251;12247:6;12243:14;12240:1;12237:21;12232:1;12225:9;12218:17;12214:45;12211:71;;;12262:18;;:::i;:::-;-1:-1:-1;12302:9:1;;12149:168::o;12322:125::-;12362:4;12390:1;12387;12384:8;12381:34;;;12395:18;;:::i;:::-;-1:-1:-1;12432:9:1;;12322:125::o;12452:258::-;12524:1;12534:113;12548:6;12545:1;12542:13;12534:113;;;12624:11;;;12618:18;12605:11;;;12598:39;12570:2;12563:10;12534:113;;;12665:6;12662:1;12659:13;12656:48;;;-1:-1:-1;;12700:1:1;12682:16;;12675:27;12452:258::o;12715:380::-;12794:1;12790:12;;;;12837;;;12858:61;;12912:4;12904:6;12900:17;12890:27;;12858:61;12965:2;12957:6;12954:14;12934:18;12931:38;12928:161;;;13011:10;13006:3;13002:20;12999:1;12992:31;13046:4;13043:1;13036:15;13074:4;13071:1;13064:15;12928:161;;12715:380;;;:::o;13100:135::-;13139:3;-1:-1:-1;;13160:17:1;;13157:43;;;13180:18;;:::i;:::-;-1:-1:-1;13227:1:1;13216:13;;13100:135::o;13240:112::-;13272:1;13298;13288:35;;13303:18;;:::i;:::-;-1:-1:-1;13337:9:1;;13240:112::o;13357:127::-;13418:10;13413:3;13409:20;13406:1;13399:31;13449:4;13446:1;13439:15;13473:4;13470:1;13463:15;13489:127;13550:10;13545:3;13541:20;13538:1;13531:31;13581:4;13578:1;13571:15;13605:4;13602:1;13595:15;13621:127;13682:10;13677:3;13673:20;13670:1;13663:31;13713:4;13710:1;13703:15;13737:4;13734:1;13727:15;13753:127;13814:10;13809:3;13805:20;13802:1;13795:31;13845:4;13842:1;13835:15;13869:4;13866:1;13859:15;13885:131;-1:-1:-1;;;;;;13959:32:1;;13949:43;;13939:71;;14006:1;14003;13996:12

Swarm Source

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