ETH Price: $2,430.70 (-2.01%)

Token

InvisiblePhriends (IPH)
 

Overview

Max Total Supply

1,275 IPH

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 IPH
0x2fc03be6b15166103abf0e5da40e9b62659bd390
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:
InvisiblePhriends

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-01
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/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 AuxQueryForZeroAddress();
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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Invisible Phirends.sol



pragma solidity ^0.8.7;


contract InvisiblePhriends is ERC721A {
    string public _baseUri = "ipfs://QmbzHGJDKVZ22TE6VsixdmMPgbR5QamCfpuKV8jF826NVe";
    address private owner;
    uint public MINT_PRICE = 0.0069 ether;
    bool public PUBLIC_MINT = false;
    uint16 public FREE_SUPPLY = 1000;
    uint16 public MAX_SUPPLY = 5000;
    uint8 public MAX_PER_TX = 20;

    constructor() ERC721A("InvisiblePhriends", "IPH") {
        owner = msg.sender;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }
    
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        _baseUri = _newBaseURI;
    }

    function setMintPrice(uint price) external onlyOwner {
        MINT_PRICE = price;
    }

    function setPublicMint() external onlyOwner {
        PUBLIC_MINT = !PUBLIC_MINT;
    }

    function withdraw() external onlyOwner {
        payable(owner).transfer(address(this).balance);
    }

    modifier onlyOwner {
        require(owner == msg.sender, "Not the owner!");
        _;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        string memory json = string(
                    abi.encodePacked(
                        _baseUri,
                        '/',
                        Strings.toString(_tokenId),
                        '.json'
                    )
                );
        return json;
    }

    function transferOwnership(address newOwner) external onlyOwner {
        owner = newOwner;
    }

    function mint(uint8 amount) external payable {
        require(PUBLIC_MINT, "Sale not active!");
        require(_currentIndex + amount <= MAX_SUPPLY + 1, "Not enough tokens to sell");
        require(amount <= MAX_PER_TX, "Max tokens per tx exceeded");

        if(_currentIndex + amount > FREE_SUPPLY){
            require(msg.value == MINT_PRICE * amount, "Insufficient eth for mint");
        }
        _safeMint(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603560808181529062001c3b60a03980516200002991600891602090910190620000e3565b506618838370f34000600a55600b805465ffffffffffff19166514138803e8001790553480156200005957600080fd5b506040805180820182526011815270496e76697369626c6550687269656e647360781b602080830191825283518085019094526003845262092a0960eb1b908401528151919291620000ae91600291620000e3565b508051620000c4906003906020840190620000e3565b50600080555050600980546001600160a01b03191633179055620001c6565b828054620000f19062000189565b90600052602060002090601f01602090048101928262000115576000855562000160565b82601f106200013057805160ff191683800117855562000160565b8280016001018555821562000160579182015b828111156200016057825182559160200191906001019062000143565b506200016e92915062000172565b5090565b5b808211156200016e576000815560010162000173565b600181811c908216806200019e57607f821691505b60208210811415620001c057634e487b7160e01b600052602260045260246000fd5b50919050565b611a6580620001d66000396000f3fe6080604052600436106101815760003560e01c80636ecd2306116100d1578063c002d23d1161008a578063f2fde38b11610064578063f2fde38b14610475578063f43a22dc14610495578063f4a0a528146104ca578063f96bc076146104ea57600080fd5b8063c002d23d146103f6578063c87b56dd1461040c578063e985e9c51461042c57600080fd5b80636ecd23061461034e57806370a082311461036157806395d89b41146103815780639858cf1914610396578063a22cb465146103b6578063b88d4fde146103d657600080fd5b806323b872dd1161013e5780633e63eb2a116101185780633e63eb2a146102d957806342842e0e146102ee57806355f804b31461030e5780636352211e1461032e57600080fd5b806323b872dd1461026f57806332cb6b0c1461028f5780633ccfd60b146102c457600080fd5b806301ffc9a71461018657806302456aa2146101bb57806306fdde03146101d2578063081812fc146101f4578063095ea7b31461022c57806318160ddd1461024c575b600080fd5b34801561019257600080fd5b506101a66101a1366004611659565b610504565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610556565b005b3480156101de57600080fd5b506101e761059d565b6040516101b29190611868565b34801561020057600080fd5b5061021461020f3660046116dc565b61062f565b6040516001600160a01b0390911681526020016101b2565b34801561023857600080fd5b506101d061024736600461162f565b610673565b34801561025857600080fd5b50600154600054035b6040519081526020016101b2565b34801561027b57600080fd5b506101d061028a36600461153b565b610701565b34801561029b57600080fd5b50600b546102b1906301000000900461ffff1681565b60405161ffff90911681526020016101b2565b3480156102d057600080fd5b506101d061070c565b3480156102e557600080fd5b506101e7610772565b3480156102fa57600080fd5b506101d061030936600461153b565b610800565b34801561031a57600080fd5b506101d0610329366004611693565b61081b565b34801561033a57600080fd5b506102146103493660046116dc565b61085c565b6101d061035c3660046116f5565b61086e565b34801561036d57600080fd5b5061026161037c3660046114e6565b610a22565b34801561038d57600080fd5b506101e7610a71565b3480156103a257600080fd5b50600b546102b190610100900461ffff1681565b3480156103c257600080fd5b506101d06103d13660046115f3565b610a80565b3480156103e257600080fd5b506101d06103f1366004611577565b610b16565b34801561040257600080fd5b50610261600a5481565b34801561041857600080fd5b506101e76104273660046116dc565b610b67565b34801561043857600080fd5b506101a6610447366004611508565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048157600080fd5b506101d06104903660046114e6565b610b9e565b3480156104a157600080fd5b50600b546104b89065010000000000900460ff1681565b60405160ff90911681526020016101b2565b3480156104d657600080fd5b506101d06104e53660046116dc565b610bea565b3480156104f657600080fd5b50600b546101a69060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061053557506001600160e01b03198216635b5e139f60e01b145b8061055057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b031633146105895760405162461bcd60e51b81526004016105809061187b565b60405180910390fd5b600b805460ff19811660ff90911615179055565b6060600280546105ac90611957565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890611957565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b600061063a82610c19565b610657576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061067e8261085c565b9050806001600160a01b0316836001600160a01b031614156106b35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106d357506106d18133610447565b155b156106f1576040516367d9dca160e11b815260040160405180910390fd5b6106fc838383610c44565b505050565b6106fc838383610ca0565b6009546001600160a01b031633146107365760405162461bcd60e51b81526004016105809061187b565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561076f573d6000803e3d6000fd5b50565b6008805461077f90611957565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90611957565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b505050505081565b6106fc83838360405180602001604052806000815250610b16565b6009546001600160a01b031633146108455760405162461bcd60e51b81526004016105809061187b565b80516108589060089060208401906113bb565b5050565b600061086782610eb6565b5192915050565b600b5460ff166108b35760405162461bcd60e51b815260206004820152601060248201526f53616c65206e6f74206163746976652160801b6044820152606401610580565b600b546108cc906301000000900461ffff1660016118a3565b61ffff168160ff166000546108e191906118c9565b111561092f5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c000000000000006044820152606401610580565b600b5460ff65010000000000909104811690821611156109915760405162461bcd60e51b815260206004820152601a60248201527f4d617820746f6b656e73207065722074782065786365656465640000000000006044820152606401610580565b600b5460005461010090910461ffff16906109b09060ff8416906118c9565b1115610a15578060ff16600a546109c791906118f5565b3414610a155760405162461bcd60e51b815260206004820152601960248201527f496e73756666696369656e742065746820666f72206d696e74000000000000006044820152606401610580565b61076f338260ff16610fd2565b60006001600160a01b038216610a4b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546105ac90611957565b6001600160a01b038216331415610aaa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b21848484610ca0565b6001600160a01b0383163b15158015610b435750610b4184848484610fec565b155b15610b61576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606060006008610b76846110e4565b604051602001610b87929190611760565b60408051601f198184030181529190529392505050565b6009546001600160a01b03163314610bc85760405162461bcd60e51b81526004016105809061187b565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314610c145760405162461bcd60e51b81526004016105809061187b565b600a55565b6000805482108015610550575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cab82610eb6565b80519091506000906001600160a01b0316336001600160a01b03161480610cd957508151610cd99033610447565b80610cf4575033610ce98461062f565b6001600160a01b0316145b905080610d1457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610d495760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610d7057604051633a954ecd60e21b815260040160405180910390fd5b610d806000848460000151610c44565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610e6c57600054811015610e6c578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610fb957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610fb75780516001600160a01b031615610f4d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610fb2579392505050565b610f4d565b505b604051636f96cda160e11b815260040160405180910390fd5b6108588282604051806020016040528060008152506111e2565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061102190339089908890889060040161182b565b602060405180830381600087803b15801561103b57600080fd5b505af192505050801561106b575060408051601f3d908101601f1916820190925261106891810190611676565b60015b6110c6573d808015611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5080516110be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611132578061111c81611992565b915061112b9050600a836118e1565b915061110c565b60008167ffffffffffffffff81111561114d5761114d611a03565b6040519080825280601f01601f191660200182016040528015611177576020820181803683370190505b5090505b84156110dc5761118c600183611914565b9150611199600a866119ad565b6111a49060306118c9565b60f81b8183815181106111b9576111b96119ed565b60200101906001600160f81b031916908160001a9053506111db600a866118e1565b945061117b565b6106fc83838360016000546001600160a01b03851661121357604051622e076360e81b815260040160405180910390fd5b836112315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156112e357506001600160a01b0387163b15155b1561136c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113346000888480600101955088610fec565b611351576040516368d2bf6b60e11b815260040160405180910390fd5b808214156112e957826000541461136757600080fd5b6113b2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561136d575b50600055610eaf565b8280546113c790611957565b90600052602060002090601f0160209004810192826113e9576000855561142f565b82601f1061140257805160ff191683800117855561142f565b8280016001018555821561142f579182015b8281111561142f578251825591602001919060010190611414565b5061143b92915061143f565b5090565b5b8082111561143b5760008155600101611440565b600067ffffffffffffffff8084111561146f5761146f611a03565b604051601f8501601f19908116603f0116810190828211818310171561149757611497611a03565b816040528093508581528686860111156114b057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146114e157600080fd5b919050565b6000602082840312156114f857600080fd5b611501826114ca565b9392505050565b6000806040838503121561151b57600080fd5b611524836114ca565b9150611532602084016114ca565b90509250929050565b60008060006060848603121561155057600080fd5b611559846114ca565b9250611567602085016114ca565b9150604084013590509250925092565b6000806000806080858703121561158d57600080fd5b611596856114ca565b93506115a4602086016114ca565b925060408501359150606085013567ffffffffffffffff8111156115c757600080fd5b8501601f810187136115d857600080fd5b6115e787823560208401611454565b91505092959194509250565b6000806040838503121561160657600080fd5b61160f836114ca565b91506020830135801515811461162457600080fd5b809150509250929050565b6000806040838503121561164257600080fd5b61164b836114ca565b946020939093013593505050565b60006020828403121561166b57600080fd5b813561150181611a19565b60006020828403121561168857600080fd5b815161150181611a19565b6000602082840312156116a557600080fd5b813567ffffffffffffffff8111156116bc57600080fd5b8201601f810184136116cd57600080fd5b6110dc84823560208401611454565b6000602082840312156116ee57600080fd5b5035919050565b60006020828403121561170757600080fd5b813560ff8116811461150157600080fd5b6000815180845261173081602086016020860161192b565b601f01601f19169290920160200192915050565b6000815161175681856020860161192b565b9290920192915050565b600080845481600182811c91508083168061177c57607f831692505b602080841082141561179c57634e487b7160e01b86526022600452602486fd5b8180156117b057600181146117c1576117ee565b60ff198616895284890196506117ee565b60008b81526020902060005b868110156117e65781548b8201529085019083016117cd565b505084890196505b50505050505061182261181161180b83602f60f81b815260010190565b86611744565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061185e90830184611718565b9695505050505050565b6020815260006115016020830184611718565b6020808252600e908201526d4e6f7420746865206f776e65722160901b604082015260600190565b600061ffff8083168185168083038211156118c0576118c06119c1565b01949350505050565b600082198211156118dc576118dc6119c1565b500190565b6000826118f0576118f06119d7565b500490565b600081600019048311821515161561190f5761190f6119c1565b500290565b600082821015611926576119266119c1565b500390565b60005b8381101561194657818101518382015260200161192e565b83811115610b615750506000910152565b600181811c9082168061196b57607f821691505b6020821081141561198c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119a6576119a66119c1565b5060010190565b6000826119bc576119bc6119d7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461076f57600080fdfea26469706673582212206601d736c5974e65b1818eb07c40eb94dfdd33c5b08f901a3afb305cf5053dca64736f6c63430008070033697066733a2f2f516d627a48474a444b565a323254453656736978646d4d506762523551616d436670754b56386a463832364e5665

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636ecd2306116100d1578063c002d23d1161008a578063f2fde38b11610064578063f2fde38b14610475578063f43a22dc14610495578063f4a0a528146104ca578063f96bc076146104ea57600080fd5b8063c002d23d146103f6578063c87b56dd1461040c578063e985e9c51461042c57600080fd5b80636ecd23061461034e57806370a082311461036157806395d89b41146103815780639858cf1914610396578063a22cb465146103b6578063b88d4fde146103d657600080fd5b806323b872dd1161013e5780633e63eb2a116101185780633e63eb2a146102d957806342842e0e146102ee57806355f804b31461030e5780636352211e1461032e57600080fd5b806323b872dd1461026f57806332cb6b0c1461028f5780633ccfd60b146102c457600080fd5b806301ffc9a71461018657806302456aa2146101bb57806306fdde03146101d2578063081812fc146101f4578063095ea7b31461022c57806318160ddd1461024c575b600080fd5b34801561019257600080fd5b506101a66101a1366004611659565b610504565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610556565b005b3480156101de57600080fd5b506101e761059d565b6040516101b29190611868565b34801561020057600080fd5b5061021461020f3660046116dc565b61062f565b6040516001600160a01b0390911681526020016101b2565b34801561023857600080fd5b506101d061024736600461162f565b610673565b34801561025857600080fd5b50600154600054035b6040519081526020016101b2565b34801561027b57600080fd5b506101d061028a36600461153b565b610701565b34801561029b57600080fd5b50600b546102b1906301000000900461ffff1681565b60405161ffff90911681526020016101b2565b3480156102d057600080fd5b506101d061070c565b3480156102e557600080fd5b506101e7610772565b3480156102fa57600080fd5b506101d061030936600461153b565b610800565b34801561031a57600080fd5b506101d0610329366004611693565b61081b565b34801561033a57600080fd5b506102146103493660046116dc565b61085c565b6101d061035c3660046116f5565b61086e565b34801561036d57600080fd5b5061026161037c3660046114e6565b610a22565b34801561038d57600080fd5b506101e7610a71565b3480156103a257600080fd5b50600b546102b190610100900461ffff1681565b3480156103c257600080fd5b506101d06103d13660046115f3565b610a80565b3480156103e257600080fd5b506101d06103f1366004611577565b610b16565b34801561040257600080fd5b50610261600a5481565b34801561041857600080fd5b506101e76104273660046116dc565b610b67565b34801561043857600080fd5b506101a6610447366004611508565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048157600080fd5b506101d06104903660046114e6565b610b9e565b3480156104a157600080fd5b50600b546104b89065010000000000900460ff1681565b60405160ff90911681526020016101b2565b3480156104d657600080fd5b506101d06104e53660046116dc565b610bea565b3480156104f657600080fd5b50600b546101a69060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061053557506001600160e01b03198216635b5e139f60e01b145b8061055057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b031633146105895760405162461bcd60e51b81526004016105809061187b565b60405180910390fd5b600b805460ff19811660ff90911615179055565b6060600280546105ac90611957565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890611957565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b600061063a82610c19565b610657576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061067e8261085c565b9050806001600160a01b0316836001600160a01b031614156106b35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106d357506106d18133610447565b155b156106f1576040516367d9dca160e11b815260040160405180910390fd5b6106fc838383610c44565b505050565b6106fc838383610ca0565b6009546001600160a01b031633146107365760405162461bcd60e51b81526004016105809061187b565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561076f573d6000803e3d6000fd5b50565b6008805461077f90611957565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90611957565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b505050505081565b6106fc83838360405180602001604052806000815250610b16565b6009546001600160a01b031633146108455760405162461bcd60e51b81526004016105809061187b565b80516108589060089060208401906113bb565b5050565b600061086782610eb6565b5192915050565b600b5460ff166108b35760405162461bcd60e51b815260206004820152601060248201526f53616c65206e6f74206163746976652160801b6044820152606401610580565b600b546108cc906301000000900461ffff1660016118a3565b61ffff168160ff166000546108e191906118c9565b111561092f5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c000000000000006044820152606401610580565b600b5460ff65010000000000909104811690821611156109915760405162461bcd60e51b815260206004820152601a60248201527f4d617820746f6b656e73207065722074782065786365656465640000000000006044820152606401610580565b600b5460005461010090910461ffff16906109b09060ff8416906118c9565b1115610a15578060ff16600a546109c791906118f5565b3414610a155760405162461bcd60e51b815260206004820152601960248201527f496e73756666696369656e742065746820666f72206d696e74000000000000006044820152606401610580565b61076f338260ff16610fd2565b60006001600160a01b038216610a4b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546105ac90611957565b6001600160a01b038216331415610aaa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b21848484610ca0565b6001600160a01b0383163b15158015610b435750610b4184848484610fec565b155b15610b61576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606060006008610b76846110e4565b604051602001610b87929190611760565b60408051601f198184030181529190529392505050565b6009546001600160a01b03163314610bc85760405162461bcd60e51b81526004016105809061187b565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314610c145760405162461bcd60e51b81526004016105809061187b565b600a55565b6000805482108015610550575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cab82610eb6565b80519091506000906001600160a01b0316336001600160a01b03161480610cd957508151610cd99033610447565b80610cf4575033610ce98461062f565b6001600160a01b0316145b905080610d1457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610d495760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610d7057604051633a954ecd60e21b815260040160405180910390fd5b610d806000848460000151610c44565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610e6c57600054811015610e6c578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610fb957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610fb75780516001600160a01b031615610f4d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610fb2579392505050565b610f4d565b505b604051636f96cda160e11b815260040160405180910390fd5b6108588282604051806020016040528060008152506111e2565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061102190339089908890889060040161182b565b602060405180830381600087803b15801561103b57600080fd5b505af192505050801561106b575060408051601f3d908101601f1916820190925261106891810190611676565b60015b6110c6573d808015611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5080516110be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611132578061111c81611992565b915061112b9050600a836118e1565b915061110c565b60008167ffffffffffffffff81111561114d5761114d611a03565b6040519080825280601f01601f191660200182016040528015611177576020820181803683370190505b5090505b84156110dc5761118c600183611914565b9150611199600a866119ad565b6111a49060306118c9565b60f81b8183815181106111b9576111b96119ed565b60200101906001600160f81b031916908160001a9053506111db600a866118e1565b945061117b565b6106fc83838360016000546001600160a01b03851661121357604051622e076360e81b815260040160405180910390fd5b836112315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156112e357506001600160a01b0387163b15155b1561136c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113346000888480600101955088610fec565b611351576040516368d2bf6b60e11b815260040160405180910390fd5b808214156112e957826000541461136757600080fd5b6113b2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561136d575b50600055610eaf565b8280546113c790611957565b90600052602060002090601f0160209004810192826113e9576000855561142f565b82601f1061140257805160ff191683800117855561142f565b8280016001018555821561142f579182015b8281111561142f578251825591602001919060010190611414565b5061143b92915061143f565b5090565b5b8082111561143b5760008155600101611440565b600067ffffffffffffffff8084111561146f5761146f611a03565b604051601f8501601f19908116603f0116810190828211818310171561149757611497611a03565b816040528093508581528686860111156114b057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146114e157600080fd5b919050565b6000602082840312156114f857600080fd5b611501826114ca565b9392505050565b6000806040838503121561151b57600080fd5b611524836114ca565b9150611532602084016114ca565b90509250929050565b60008060006060848603121561155057600080fd5b611559846114ca565b9250611567602085016114ca565b9150604084013590509250925092565b6000806000806080858703121561158d57600080fd5b611596856114ca565b93506115a4602086016114ca565b925060408501359150606085013567ffffffffffffffff8111156115c757600080fd5b8501601f810187136115d857600080fd5b6115e787823560208401611454565b91505092959194509250565b6000806040838503121561160657600080fd5b61160f836114ca565b91506020830135801515811461162457600080fd5b809150509250929050565b6000806040838503121561164257600080fd5b61164b836114ca565b946020939093013593505050565b60006020828403121561166b57600080fd5b813561150181611a19565b60006020828403121561168857600080fd5b815161150181611a19565b6000602082840312156116a557600080fd5b813567ffffffffffffffff8111156116bc57600080fd5b8201601f810184136116cd57600080fd5b6110dc84823560208401611454565b6000602082840312156116ee57600080fd5b5035919050565b60006020828403121561170757600080fd5b813560ff8116811461150157600080fd5b6000815180845261173081602086016020860161192b565b601f01601f19169290920160200192915050565b6000815161175681856020860161192b565b9290920192915050565b600080845481600182811c91508083168061177c57607f831692505b602080841082141561179c57634e487b7160e01b86526022600452602486fd5b8180156117b057600181146117c1576117ee565b60ff198616895284890196506117ee565b60008b81526020902060005b868110156117e65781548b8201529085019083016117cd565b505084890196505b50505050505061182261181161180b83602f60f81b815260010190565b86611744565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061185e90830184611718565b9695505050505050565b6020815260006115016020830184611718565b6020808252600e908201526d4e6f7420746865206f776e65722160901b604082015260600190565b600061ffff8083168185168083038211156118c0576118c06119c1565b01949350505050565b600082198211156118dc576118dc6119c1565b500190565b6000826118f0576118f06119d7565b500490565b600081600019048311821515161561190f5761190f6119c1565b500290565b600082821015611926576119266119c1565b500390565b60005b8381101561194657818101518382015260200161192e565b83811115610b615750506000910152565b600181811c9082168061196b57607f821691505b6020821081141561198c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119a6576119a66119c1565b5060010190565b6000826119bc576119bc6119d7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461076f57600080fdfea26469706673582212206601d736c5974e65b1818eb07c40eb94dfdd33c5b08f901a3afb305cf5053dca64736f6c63430008070033

Deployed Bytecode Sourcemap

43283:2042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25742:305;;;;;;;;;;-1:-1:-1;25742:305:0;;;;;:::i;:::-;;:::i;:::-;;;7310:14:1;;7303:22;7285:41;;7273:2;7258:18;25742:305:0;;;;;;;;44060:89;;;;;;;;;;;;;:::i;:::-;;29127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30630:204::-;;;;;;;;;;-1:-1:-1;30630:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6608:32:1;;;6590:51;;6578:2;6563:18;30630:204:0;6444:203:1;30193:371:0;;;;;;;;;;-1:-1:-1;30193:371:0;;;;;:::i;:::-;;:::i;24991:303::-;;;;;;;;;;-1:-1:-1;25245:12:0;;25035:7;25229:13;:28;24991:303;;;9651:25:1;;;9639:2;9624:18;24991:303:0;9505:177:1;31487:170:0;;;;;;;;;;-1:-1:-1;31487:170:0;;;;;:::i;:::-;;:::i;43564:31::-;;;;;;;;;;-1:-1:-1;43564:31:0;;;;;;;;;;;;;;9486:6:1;9474:19;;;9456:38;;9444:2;9429:18;43564:31:0;9312:188:1;44157:104:0;;;;;;;;;;;;;:::i;43328:80::-;;;;;;;;;;;;;:::i;31728:185::-;;;;;;;;;;-1:-1:-1;31728:185:0;;;;;:::i;:::-;;:::i;43847:107::-;;;;;;;;;;-1:-1:-1;43847:107:0;;;;;:::i;:::-;;:::i;28936:124::-;;;;;;;;;;-1:-1:-1;28936:124:0;;;;;:::i;:::-;;:::i;44870:452::-;;;;;;:::i;:::-;;:::i;26111:206::-;;;;;;;;;;-1:-1:-1;26111:206:0;;;;;:::i;:::-;;:::i;29296:104::-;;;;;;;;;;;;;:::i;43525:32::-;;;;;;;;;;-1:-1:-1;43525:32:0;;;;;;;;;;;30906:279;;;;;;;;;;-1:-1:-1;30906:279:0;;;;;:::i;:::-;;:::i;31984:369::-;;;;;;;;;;-1:-1:-1;31984:369:0;;;;;:::i;:::-;;:::i;43443:37::-;;;;;;;;;;;;;;;;44373:382;;;;;;;;;;-1:-1:-1;44373:382:0;;;;;:::i;:::-;;:::i;31256:164::-;;;;;;;;;;-1:-1:-1;31256:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31377:25:0;;;31353:4;31377:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31256:164;44763:99;;;;;;;;;;-1:-1:-1;44763:99:0;;;;;:::i;:::-;;:::i;43602:28::-;;;;;;;;;;-1:-1:-1;43602:28:0;;;;;;;;;;;;;;9859:4:1;9847:17;;;9829:36;;9817:2;9802:18;43602:28:0;9687:184:1;43962:90:0;;;;;;;;;;-1:-1:-1;43962:90:0;;;;;:::i;:::-;;:::i;43487:31::-;;;;;;;;;;-1:-1:-1;43487:31:0;;;;;;;;25742:305;25844:4;-1:-1:-1;;;;;;25881:40:0;;-1:-1:-1;;;25881:40:0;;:105;;-1:-1:-1;;;;;;;25938:48:0;;-1:-1:-1;;;25938:48:0;25881:105;:158;;;-1:-1:-1;;;;;;;;;;14442:40:0;;;26003:36;25861:178;25742:305;-1:-1:-1;;25742:305:0:o;44060:89::-;44307:5;;-1:-1:-1;;;;;44307:5:0;44316:10;44307:19;44299:46;;;;-1:-1:-1;;;44299:46:0;;;;;;;:::i;:::-;;;;;;;;;44130:11:::1;::::0;;-1:-1:-1;;44115:26:0;::::1;44130:11;::::0;;::::1;44129:12;44115:26;::::0;;44060:89::o;29127:100::-;29181:13;29214:5;29207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29127:100;:::o;30630:204::-;30698:7;30723:16;30731:7;30723;:16::i;:::-;30718:64;;30748:34;;-1:-1:-1;;;30748:34:0;;;;;;;;;;;30718:64;-1:-1:-1;30802:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30802:24:0;;30630:204::o;30193:371::-;30266:13;30282:24;30298:7;30282:15;:24::i;:::-;30266:40;;30327:5;-1:-1:-1;;;;;30321:11:0;:2;-1:-1:-1;;;;;30321:11:0;;30317:48;;;30341:24;;-1:-1:-1;;;30341:24:0;;;;;;;;;;;30317:48;2883:10;-1:-1:-1;;;;;30382:21:0;;;;;;:63;;-1:-1:-1;30408:37:0;30425:5;2883:10;31256:164;:::i;30408:37::-;30407:38;30382:63;30378:138;;;30469:35;;-1:-1:-1;;;30469:35:0;;;;;;;;;;;30378:138;30528:28;30537:2;30541:7;30550:5;30528:8;:28::i;:::-;30255:309;30193:371;;:::o;31487:170::-;31621:28;31631:4;31637:2;31641:7;31621:9;:28::i;44157:104::-;44307:5;;-1:-1:-1;;;;;44307:5:0;44316:10;44307:19;44299:46;;;;-1:-1:-1;;;44299:46:0;;;;;;;:::i;:::-;44215:5:::1;::::0;44207:46:::1;::::0;-1:-1:-1;;;;;44215:5:0;;::::1;::::0;44231:21:::1;44207:46:::0;::::1;;;::::0;44215:5:::1;44207:46:::0;44215:5;44207:46;44231:21;44215:5;44207:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44157:104::o:0;43328:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31728:185::-;31866:39;31883:4;31889:2;31893:7;31866:39;;;;;;;;;;;;:16;:39::i;43847:107::-;44307:5;;-1:-1:-1;;;;;44307:5:0;44316:10;44307:19;44299:46;;;;-1:-1:-1;;;44299:46:0;;;;;;;:::i;:::-;43924:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43847:107:::0;:::o;28936:124::-;29000:7;29027:20;29039:7;29027:11;:20::i;:::-;:25;;28936:124;-1:-1:-1;;28936:124:0:o;44870:452::-;44934:11;;;;44926:40;;;;-1:-1:-1;;;44926:40:0;;8117:2:1;44926:40:0;;;8099:21:1;8156:2;8136:18;;;8129:30;-1:-1:-1;;;8175:18:1;;;8168:46;8231:18;;44926:40:0;7915:340:1;44926:40:0;45011:10;;:14;;:10;;;;;45024:1;45011:14;:::i;:::-;44985:40;;45001:6;44985:22;;:13;;:22;;;;:::i;:::-;:40;;44977:78;;;;-1:-1:-1;;;44977:78:0;;8462:2:1;44977:78:0;;;8444:21:1;8501:2;8481:18;;;8474:30;8540:27;8520:18;;;8513:55;8585:18;;44977:78:0;8260:349:1;44977:78:0;45084:10;;;;;;;;;45074:20;;;;;45066:59;;;;-1:-1:-1;;;45066:59:0;;9159:2:1;45066:59:0;;;9141:21:1;9198:2;9178:18;;;9171:30;9237:28;9217:18;;;9210:56;9283:18;;45066:59:0;8957:350:1;45066:59:0;45166:11;;45141:13;;45166:11;;;;;;;45141:22;;;;;;;:::i;:::-;:36;45138:137;;;45227:6;45214:19;;:10;;:19;;;;:::i;:::-;45201:9;:32;45193:70;;;;-1:-1:-1;;;45193:70:0;;7763:2:1;45193:70:0;;;7745:21:1;7802:2;7782:18;;;7775:30;7841:27;7821:18;;;7814:55;7886:18;;45193:70:0;7561:349:1;45193:70:0;45285:29;45295:10;45307:6;45285:29;;:9;:29::i;26111:206::-;26175:7;-1:-1:-1;;;;;26199:19:0;;26195:60;;26227:28;;-1:-1:-1;;;26227:28:0;;;;;;;;;;;26195:60;-1:-1:-1;;;;;;26281:19:0;;;;;:12;:19;;;;;:27;;;;26111:206::o;29296:104::-;29352:13;29385:7;29378:14;;;;;:::i;30906:279::-;-1:-1:-1;;;;;30997:24:0;;2883:10;30997:24;30993:54;;;31030:17;;-1:-1:-1;;;31030:17:0;;;;;;;;;;;30993:54;2883:10;31060:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31060:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31060:53:0;;;;;;;;;;31129:48;;7285:41:1;;;31060:42:0;;2883:10;31129:48;;7258:18:1;31129:48:0;;;;;;;30906:279;;:::o;31984:369::-;32151:28;32161:4;32167:2;32171:7;32151:9;:28::i;:::-;-1:-1:-1;;;;;32194:13:0;;4545:19;:23;;32194:76;;;;;32214:56;32245:4;32251:2;32255:7;32264:5;32214:30;:56::i;:::-;32213:57;32194:76;32190:156;;;32294:40;;-1:-1:-1;;;32294:40:0;;;;;;;;;;;32190:156;31984:369;;;;:::o;44373:382::-;44439:13;44465:18;44558:8;44623:26;44640:8;44623:16;:26::i;:::-;44515:191;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;44515:191:0;;;;;;;;;;44373:382;-1:-1:-1;;;44373:382:0:o;44763:99::-;44307:5;;-1:-1:-1;;;;;44307:5:0;44316:10;44307:19;44299:46;;;;-1:-1:-1;;;44299:46:0;;;;;;;:::i;:::-;44838:5:::1;:16:::0;;-1:-1:-1;;;;;;44838:16:0::1;-1:-1:-1::0;;;;;44838:16:0;;;::::1;::::0;;;::::1;::::0;;44763:99::o;43962:90::-;44307:5;;-1:-1:-1;;;;;44307:5:0;44316:10;44307:19;44299:46;;;;-1:-1:-1;;;44299:46:0;;;;;;;:::i;:::-;44026:10:::1;:18:::0;43962:90::o;32608:187::-;32665:4;32729:13;;32719:7;:23;32689:98;;;;-1:-1:-1;;32760:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32760:27:0;;;;32759:28;;32608:187::o;40219:196::-;40334:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40334:29:0;-1:-1:-1;;;;;40334:29:0;;;;;;;;;40379:28;;40334:24;;40379:28;;;;;;;40219:196;;;:::o;35721:2112::-;35836:35;35874:20;35886:7;35874:11;:20::i;:::-;35949:18;;35836:58;;-1:-1:-1;35907:22:0;;-1:-1:-1;;;;;35933:34:0;2883:10;-1:-1:-1;;;;;35933:34:0;;:101;;;-1:-1:-1;36001:18:0;;35984:50;;2883:10;31256:164;:::i;35984:50::-;35933:154;;;-1:-1:-1;2883:10:0;36051:20;36063:7;36051:11;:20::i;:::-;-1:-1:-1;;;;;36051:36:0;;35933:154;35907:181;;36106:17;36101:66;;36132:35;;-1:-1:-1;;;36132:35:0;;;;;;;;;;;36101:66;36204:4;-1:-1:-1;;;;;36182:26:0;:13;:18;;;-1:-1:-1;;;;;36182:26:0;;36178:67;;36217:28;;-1:-1:-1;;;36217:28:0;;;;;;;;;;;36178:67;-1:-1:-1;;;;;36260:16:0;;36256:52;;36285:23;;-1:-1:-1;;;36285:23:0;;;;;;;;;;;36256:52;36429:49;36446:1;36450:7;36459:13;:18;;;36429:8;:49::i;:::-;-1:-1:-1;;;;;36774:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36774:31:0;;;;;;;-1:-1:-1;;36774:31:0;;;;;;;36820:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36820:29:0;;;;;;;;;;;36866:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36911:61:0;;;;-1:-1:-1;;;36956:15:0;36911:61;;;;;;;;;;;37246:11;;;37276:24;;;;;:29;37246:11;;37276:29;37272:445;;37501:13;;37487:11;:27;37483:219;;;37571:18;;;37539:24;;;:11;:24;;;;;;;;:50;;37654:28;;;;37612:70;;-1:-1:-1;;;37612:70:0;-1:-1:-1;;;;;;37612:70:0;;;-1:-1:-1;;;;;37539:50:0;;;37612:70;;;;;;;37483:219;36749:979;37764:7;37760:2;-1:-1:-1;;;;;37745:27:0;37754:4;-1:-1:-1;;;;;37745:27:0;;;;;;;;;;;37783:42;35825:2008;;35721:2112;;;:::o;27766:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27876:7:0;27959:13;;27952:4;:20;27921:886;;;27993:31;28027:17;;;:11;:17;;;;;;;;;27993:51;;;;;;;;;-1:-1:-1;;;;;27993:51:0;;;;-1:-1:-1;;;27993:51:0;;;;;;;;;;;-1:-1:-1;;;27993:51:0;;;;;;;;;;;;;;28063:729;;28113:14;;-1:-1:-1;;;;;28113:28:0;;28109:101;;28177:9;27766:1108;-1:-1:-1;;;27766:1108:0:o;28109:101::-;-1:-1:-1;;;28552:6:0;28597:17;;;;:11;:17;;;;;;;;;28585:29;;;;;;;;;-1:-1:-1;;;;;28585:29:0;;;;;-1:-1:-1;;;28585:29:0;;;;;;;;;;;-1:-1:-1;;;28585:29:0;;;;;;;;;;;;;28645:28;28641:109;;28713:9;27766:1108;-1:-1:-1;;;27766:1108:0:o;28641:109::-;28512:261;;;27974:833;27921:886;28835:31;;-1:-1:-1;;;28835:31:0;;;;;;;;;;;32803:104;32872:27;32882:2;32886:8;32872:27;;;;;;;;;;;;:9;:27::i;40907:667::-;41091:72;;-1:-1:-1;;;41091:72:0;;41070:4;;-1:-1:-1;;;;;41091:36:0;;;;;:72;;2883:10;;41142:4;;41148:7;;41157:5;;41091:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41091:72:0;;;;;;;;-1:-1:-1;;41091:72:0;;;;;;;;;;;;:::i;:::-;;;41087:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41325:13:0;;41321:235;;41371:40;;-1:-1:-1;;;41371:40:0;;;;;;;;;;;41321:235;41514:6;41508:13;41499:6;41495:2;41491:15;41484:38;41087:480;-1:-1:-1;;;;;;41210:55:0;-1:-1:-1;;;41210:55:0;;-1:-1:-1;41087:480:0;40907:667;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;33270:163;33393:32;33399:2;33403:8;33413:5;33420:4;33831:20;33854:13;-1:-1:-1;;;;;33882:16:0;;33878:48;;33907:19;;-1:-1:-1;;;33907:19:0;;;;;;;;;;;33878:48;33941:13;33937:44;;33963:18;;-1:-1:-1;;;33963:18:0;;;;;;;;;;;33937:44;-1:-1:-1;;;;;34332:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34391:49:0;;34332:44;;;;;;;;34391:49;;;;-1:-1:-1;;34332:44:0;;;;;;34391:49;;;;;;;;;;;;;;;;34457:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34507:66:0;;;;-1:-1:-1;;;34557:15:0;34507:66;;;;;;;;;;34457:25;34654:23;;;34698:4;:23;;;;-1:-1:-1;;;;;;34706:13:0;;4545:19;:23;;34706:15;34694:641;;;34742:314;34773:38;;34798:12;;-1:-1:-1;;;;;34773:38:0;;;34790:1;;34773:38;;34790:1;;34773:38;34839:69;34878:1;34882:2;34886:14;;;;;;34902:5;34839:30;:69::i;:::-;34834:174;;34944:40;;-1:-1:-1;;;34944:40:0;;;;;;;;;;;34834:174;35051:3;35035:12;:19;;34742:314;;35137:12;35120:13;;:29;35116:43;;35151:8;;;35116:43;34694:641;;;35200:120;35231:40;;35256:14;;;;;-1:-1:-1;;;;;35231:40:0;;;35248:1;;35231:40;;35248:1;;35231:40;35315:3;35299:12;:19;;35200:120;;34694:641;-1:-1:-1;35349:13:0;:28;35399:60;31984:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:269::-;4100:6;4153:2;4141:9;4132:7;4128:23;4124:32;4121:52;;;4169:1;4166;4159:12;4121:52;4208:9;4195:23;4258:4;4251:5;4247:16;4240:5;4237:27;4227:55;;4278:1;4275;4268:12;4317:257;4358:3;4396:5;4390:12;4423:6;4418:3;4411:19;4439:63;4495:6;4488:4;4483:3;4479:14;4472:4;4465:5;4461:16;4439:63;:::i;:::-;4556:2;4535:15;-1:-1:-1;;4531:29:1;4522:39;;;;4563:4;4518:50;;4317:257;-1:-1:-1;;4317:257:1:o;4579:185::-;4621:3;4659:5;4653:12;4674:52;4719:6;4714:3;4707:4;4700:5;4696:16;4674:52;:::i;:::-;4742:16;;;;;4579:185;-1:-1:-1;;4579:185:1:o;5006:1433::-;5384:3;5413:1;5446:6;5440:13;5476:3;5498:1;5526:9;5522:2;5518:18;5508:28;;5586:2;5575:9;5571:18;5608;5598:61;;5652:4;5644:6;5640:17;5630:27;;5598:61;5678:2;5726;5718:6;5715:14;5695:18;5692:38;5689:165;;;-1:-1:-1;;;5753:33:1;;5809:4;5806:1;5799:15;5839:4;5760:3;5827:17;5689:165;5870:18;5897:104;;;;6015:1;6010:320;;;;5863:467;;5897:104;-1:-1:-1;;5930:24:1;;5918:37;;5975:16;;;;-1:-1:-1;5897:104:1;;6010:320;9949:1;9942:14;;;9986:4;9973:18;;6105:1;6119:165;6133:6;6130:1;6127:13;6119:165;;;6211:14;;6198:11;;;6191:35;6254:16;;;;6148:10;;6119:165;;;6123:3;;6313:6;6308:3;6304:16;6297:23;;5863:467;;;;;;;6346:87;6371:61;6397:34;6427:3;-1:-1:-1;;;4952:16:1;;4993:1;4984:11;;4887:114;6397:34;6389:6;6371:61;:::i;:::-;-1:-1:-1;;;4829:20:1;;4874:1;4865:11;;4769:113;6346:87;6339:94;5006:1433;-1:-1:-1;;;;;5006:1433:1:o;6652:488::-;-1:-1:-1;;;;;6921:15:1;;;6903:34;;6973:15;;6968:2;6953:18;;6946:43;7020:2;7005:18;;6998:34;;;7068:3;7063:2;7048:18;;7041:31;;;6846:4;;7089:45;;7114:19;;7106:6;7089:45;:::i;:::-;7081:53;6652:488;-1:-1:-1;;;;;;6652:488:1:o;7337:219::-;7486:2;7475:9;7468:21;7449:4;7506:44;7546:2;7535:9;7531:18;7523:6;7506:44;:::i;8614:338::-;8816:2;8798:21;;;8855:2;8835:18;;;8828:30;-1:-1:-1;;;8889:2:1;8874:18;;8867:44;8943:2;8928:18;;8614:338::o;10002:224::-;10041:3;10069:6;10102:2;10099:1;10095:10;10132:2;10129:1;10125:10;10163:3;10159:2;10155:12;10150:3;10147:21;10144:47;;;10171:18;;:::i;:::-;10207:13;;10002:224;-1:-1:-1;;;;10002:224:1:o;10231:128::-;10271:3;10302:1;10298:6;10295:1;10292:13;10289:39;;;10308:18;;:::i;:::-;-1:-1:-1;10344:9:1;;10231:128::o;10364:120::-;10404:1;10430;10420:35;;10435:18;;:::i;:::-;-1:-1:-1;10469:9:1;;10364:120::o;10489:168::-;10529:7;10595:1;10591;10587:6;10583:14;10580:1;10577:21;10572:1;10565:9;10558:17;10554:45;10551:71;;;10602:18;;:::i;:::-;-1:-1:-1;10642:9:1;;10489:168::o;10662:125::-;10702:4;10730:1;10727;10724:8;10721:34;;;10735:18;;:::i;:::-;-1:-1:-1;10772:9:1;;10662:125::o;10792:258::-;10864:1;10874:113;10888:6;10885:1;10882:13;10874:113;;;10964:11;;;10958:18;10945:11;;;10938:39;10910:2;10903:10;10874:113;;;11005:6;11002:1;10999:13;10996:48;;;-1:-1:-1;;11040:1:1;11022:16;;11015:27;10792:258::o;11055:380::-;11134:1;11130:12;;;;11177;;;11198:61;;11252:4;11244:6;11240:17;11230:27;;11198:61;11305:2;11297:6;11294:14;11274:18;11271:38;11268:161;;;11351:10;11346:3;11342:20;11339:1;11332:31;11386:4;11383:1;11376:15;11414:4;11411:1;11404:15;11268:161;;11055:380;;;:::o;11440:135::-;11479:3;-1:-1:-1;;11500:17:1;;11497:43;;;11520:18;;:::i;:::-;-1:-1:-1;11567:1:1;11556:13;;11440:135::o;11580:112::-;11612:1;11638;11628:35;;11643:18;;:::i;:::-;-1:-1:-1;11677:9:1;;11580:112::o;11697:127::-;11758:10;11753:3;11749:20;11746:1;11739:31;11789:4;11786:1;11779:15;11813:4;11810:1;11803:15;11829:127;11890:10;11885:3;11881:20;11878:1;11871:31;11921:4;11918:1;11911:15;11945:4;11942:1;11935:15;11961:127;12022:10;12017:3;12013:20;12010:1;12003:31;12053:4;12050:1;12043:15;12077:4;12074:1;12067:15;12093:127;12154:10;12149:3;12145:20;12142:1;12135:31;12185:4;12182:1;12175:15;12209:4;12206:1;12199:15;12225:131;-1:-1:-1;;;;;;12299:32:1;;12289:43;;12279:71;;12346:1;12343;12336:12

Swarm Source

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