ETH Price: $3,464.89 (+2.09%)
Gas: 12 Gwei

Token

Blips (Blips)
 

Overview

Max Total Supply

1,888 Blips

Holders

369

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
localhotmoms.eth
Balance
0 Blips
0x2d19d78b7172464f295c200b18225f566899f2e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Uhhhmmm JpegGs???

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Blips

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-29
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
pragma solidity ^0.8.6;

interface IERC20 {
    function totalSupply() external view returns (uint _totalSupply);
    function balanceOf(address _owner) external view returns (uint balance);
    function transfer(address _to, uint _value) external returns (bool success);
    function transferFrom(address _from, address _to, uint _value) external returns (bool success);
    function approve(address _spender, uint _value) external returns (bool success);
    function allowance(address _owner, address _spender) external view returns (uint remaining);
    event Transfer(address indexed _from, address indexed _to, uint _value);
    event Approval(address indexed _owner, address indexed _spender, uint _value);
}

contract Blips is ERC721, ERC721Enumerable, Ownable {
    string private _baseURIextended;
    uint256 public MAX_SUPPLY = 1888;
    uint256 public MAX_TX_MINT = 5;
    uint256 public MAX_MINT_PER_WALLET = 5;
    uint256 public PRICE_PER_TOKEN_PUBLIC_SALE = 0.069 ether;
    uint256 public PRICE_PER_TOKEN_PRE_SALE = 0.0069 ether;

    uint256 private currentTokenId = 1;

    uint256 public MINT_START_TIMESTAMP=1693285200;
    uint256 public constant EXCLUSIVE_MINT_DURATION = 24 hours;

    mapping(uint => address) public nftOwners;
    mapping(address => uint[]) public nftsByOwner;

    address public checkBalanceToken;
    address private withdrawAddress;

    constructor(address _checkBalanceToken, address _withdrawAddress) ERC721("Blips", "Blips") {
        checkBalanceToken = _checkBalanceToken;
        withdrawAddress = _withdrawAddress;
    }

    modifier mintingStarted() {
        require(block.timestamp >= MINT_START_TIMESTAMP, "ERR_MINTING_NOT_STARTED");
        _;
    }

    modifier validateMint(uint256 numberOfTokens) {
        require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "ERR_EXCEED_TOTAL_LIMIT");
        require(balanceOf(msg.sender) + numberOfTokens <= MAX_MINT_PER_WALLET, "ERR_EXCEED_WALLET_LIMIT");
        require(numberOfTokens <= MAX_TX_MINT, "ERR_EXCEED_TRANSACTION_LIMIT");
        _;
    }

    function mintAllowList(uint8 numberOfTokens) internal {
        uint256 ts = totalSupply();
        require(IERC20(checkBalanceToken).balanceOf(msg.sender) > 0, "Address not allowed to purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(balanceOf(msg.sender) + numberOfTokens <= MAX_MINT_PER_WALLET , "Exceeded max per wallet");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, currentTokenId); 
            nftOwners[currentTokenId] = msg.sender;
            nftsByOwner[msg.sender].push(currentTokenId);
            currentTokenId++; 
        }
    }

    function ibuyautisticJPEGS(uint8 numberOfTokens) external payable mintingStarted validateMint(numberOfTokens){
        if(block.timestamp <= MINT_START_TIMESTAMP + EXCLUSIVE_MINT_DURATION){
            require(PRICE_PER_TOKEN_PRE_SALE * numberOfTokens <= msg.value, "Ether value sent is not correct");
            mintAllowList(numberOfTokens);
        }else{
            require(PRICE_PER_TOKEN_PUBLIC_SALE * numberOfTokens <= msg.value, "Ether value sent is not correct");
            mint(numberOfTokens);
        }
    }

    function isAllowedToMintOnWL(address addr) external view returns (bool) {
        return IERC20(checkBalanceToken).balanceOf(addr) > 0;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function reserve(uint256 n) public onlyOwner {
      uint supply = totalSupply();
      uint i;
      for (i = 1; i < n; i++) {
          _safeMint(msg.sender, supply + i);
      }
    }

    function setPrices(uint256 pPublic, uint256 pPresale) public onlyOwner {
        require(pPublic >= 0 && pPresale >= 0, "Prices should be higher or equal than zero.");
        PRICE_PER_TOKEN_PUBLIC_SALE = pPublic;
        PRICE_PER_TOKEN_PRE_SALE = pPresale;
    }

    function mint(uint8 numberOfTokens) internal {
        uint256 ts = totalSupply();
        require(numberOfTokens <= MAX_TX_MINT, "Exceeded max token purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(balanceOf(msg.sender) + numberOfTokens <= MAX_MINT_PER_WALLET , "Exceeded max per wallet");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, currentTokenId); 
            nftOwners[currentTokenId] = msg.sender;
            nftsByOwner[msg.sender].push(currentTokenId);
            currentTokenId++; 
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(withdrawAddress).transfer(balance);
    }

    function withdraw_token(address _addy) public onlyOwner {
        bool approve_done = IERC20(_addy).approve(address(this), IERC20(_addy).balanceOf(address(this)) + 1);
        require(approve_done, "CA cannot approve tokens");
        bool sent = IERC20(_addy).transferFrom(address(this), withdrawAddress, IERC20(_addy).balanceOf(address(this)));
        require(sent, "CA Cannot send");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_checkBalanceToken","type":"address"},{"internalType":"address","name":"_withdrawAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EXCLUSIVE_MINT_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN_PRE_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN_PUBLIC_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"checkBalanceToken","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"ibuyautisticJPEGS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAllowedToMintOnWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftsByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pPublic","type":"uint256"},{"internalType":"uint256","name":"pPresale","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addy","type":"address"}],"name":"withdraw_token","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610760600c556005600d556005600e5566f5232269808000600f556618838370f3400060105560016011556364ed7b5060125534801562000043575f80fd5b5060405162002a6538038062002a65833981016040819052620000669162000171565b604080518082018252600580825264426c69707360d81b6020808401829052845180860190955291845290830152905f620000a2838262000247565b506001620000b1828262000247565b505050620000ce620000c86200010060201b60201c565b62000104565b601580546001600160a01b039384166001600160a01b031991821617909155601680549290931691161790556200030f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b80516001600160a01b03811681146200016c575f80fd5b919050565b5f806040838503121562000183575f80fd5b6200018e8362000155565b91506200019e6020840162000155565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001d057607f821691505b602082108103620001ef57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000242575f81815260208120601f850160051c810160208610156200021d5750805b601f850160051c820191505b818110156200023e5782815560010162000229565b5050505b505050565b81516001600160401b03811115620002635762000263620001a7565b6200027b81620002748454620001bb565b84620001f5565b602080601f831160018114620002b1575f8415620002995750858301515b5f19600386901b1c1916600185901b1785556200023e565b5f85815260208120601f198616915b82811015620002e157888601518255948401946001909101908401620002c0565b5085821015620002ff57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b612748806200031d5f395ff3fe608060405260043610610207575f3560e01c806370a0823111610113578063a22cb4651161009d578063bbd94c2f1161006d578063bbd94c2f14610592578063c87b56dd146105c6578063cec2a295146105e5578063e985e9c5146105fa578063f2fde38b14610641575f80fd5b8063a22cb46514610529578063b19960e614610548578063b790d1a71461055d578063b88d4fde14610573575f80fd5b806384fd2dde116100e357806384fd2dde146104a55780638da5cb5b146104ba57806395d89b41146104d75780639708d2fa146104eb5780639cd3cb5d1461050a575f80fd5b806370a082311461043e578063715018a61461045d5780637467f6d514610471578063819b25ba14610486575f80fd5b80632f745c59116101945780634f6ccce7116101645780634f6ccce7146103af5780634fc31c9d146103ce57806355f804b3146103e15780636352211e14610400578063688d33471461041f575f80fd5b80632f745c591461034857806332cb6b0c146103675780633ccfd60b1461037c57806342842e0e14610390575f80fd5b8063095ea7b3116101da578063095ea7b3146102b857806318160ddd146102d757806323b872dd146102f557806326619bb9146103145780632b95f5fb14610329575f80fd5b806301ffc9a71461020b57806305fefda71461023f57806306fdde0314610260578063081812fc14610281575b5f80fd5b348015610216575f80fd5b5061022a610225366004612093565b610660565b60405190151581526020015b60405180910390f35b34801561024a575f80fd5b5061025e6102593660046120ae565b610670565b005b34801561026b575f80fd5b50610274610691565b604051610236919061211b565b34801561028c575f80fd5b506102a061029b36600461212d565b610720565b6040516001600160a01b039091168152602001610236565b3480156102c3575f80fd5b5061025e6102d236600461215f565b610745565b3480156102e2575f80fd5b506008545b604051908152602001610236565b348015610300575f80fd5b5061025e61030f366004612187565b610859565b34801561031f575f80fd5b506102e7600f5481565b348015610334575f80fd5b506015546102a0906001600160a01b031681565b348015610353575f80fd5b506102e761036236600461215f565b61088a565b348015610372575f80fd5b506102e7600c5481565b348015610387575f80fd5b5061025e61091e565b34801561039b575f80fd5b5061025e6103aa366004612187565b610961565b3480156103ba575f80fd5b506102e76103c936600461212d565b61097b565b61025e6103dc3660046121c0565b610a0b565b3480156103ec575f80fd5b5061025e6103fb366004612267565b610c5f565b34801561040b575f80fd5b506102a061041a36600461212d565b610c73565b34801561042a575f80fd5b506102e761043936600461215f565b610cd2565b348015610449575f80fd5b506102e76104583660046122ac565b610cfd565b348015610468575f80fd5b5061025e610d81565b34801561047c575f80fd5b506102e7600d5481565b348015610491575f80fd5b5061025e6104a036600461212d565b610d94565b3480156104b0575f80fd5b506102e760105481565b3480156104c5575f80fd5b50600a546001600160a01b03166102a0565b3480156104e2575f80fd5b50610274610dd8565b3480156104f6575f80fd5b5061022a6105053660046122ac565b610de7565b348015610515575f80fd5b5061025e6105243660046122ac565b610e5d565b348015610534575f80fd5b5061025e6105433660046122d2565b6110ce565b348015610553575f80fd5b506102e7600e5481565b348015610568575f80fd5b506102e76201518081565b34801561057e575f80fd5b5061025e61058d366004612307565b6110d9565b34801561059d575f80fd5b506102a06105ac36600461212d565b60136020525f90815260409020546001600160a01b031681565b3480156105d1575f80fd5b506102746105e036600461212d565b611111565b3480156105f0575f80fd5b506102e760125481565b348015610605575f80fd5b5061022a61061436600461237e565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b34801561064c575f80fd5b5061025e61065b3660046122ac565b611175565b5f61066a826111ee565b92915050565b610678611212565b610686565b60405180910390fd5b600f91909155601055565b60605f805461069f906123af565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb906123af565b80156107165780601f106106ed57610100808354040283529160200191610716565b820191905f5260205f20905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b5f61072a8261126c565b505f908152600460205260409020546001600160a01b031690565b5f61074f82610c73565b9050806001600160a01b0316836001600160a01b0316036107bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067d565b336001600160a01b03821614806107d857506107d88133610614565b61084a5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161067d565b61085483836112ca565b505050565b6108633382611337565b61087f5760405162461bcd60e51b815260040161067d906123e7565b6108548383836113b4565b5f61089483610cfd565b82106108f65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067d565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b610926611212565b60165460405147916001600160a01b03169082156108fc029083905f818181858888f1935050505015801561095d573d5f803e3d5ffd5b5050565b61085483838360405180602001604052805f8152506110d9565b5f61098560085490565b82106109e85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067d565b600882815481106109fb576109fb612435565b905f5260205f2001549050919050565b601254421015610a5d5760405162461bcd60e51b815260206004820152601760248201527f4552525f4d494e54494e475f4e4f545f53544152544544000000000000000000604482015260640161067d565b8060ff16600c5481610a6e60085490565b610a78919061245d565b1115610abf5760405162461bcd60e51b815260206004820152601660248201527511549497d15610d1515117d513d5105317d31253525560521b604482015260640161067d565b600e5481610acc33610cfd565b610ad6919061245d565b1115610b245760405162461bcd60e51b815260206004820152601760248201527f4552525f4558434545445f57414c4c45545f4c494d4954000000000000000000604482015260640161067d565b600d54811115610b765760405162461bcd60e51b815260206004820152601c60248201527f4552525f4558434545445f5452414e53414354494f4e5f4c494d495400000000604482015260640161067d565b62015180601254610b87919061245d565b4211610bf657348260ff16601054610b9f9190612470565b1115610bed5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161067d565b61095d82611557565b348260ff16600f54610c089190612470565b1115610c565760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161067d565b61095d8261175c565b610c67611212565b600b61095d82826124d4565b5f818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161067d565b6014602052815f5260405f208181548110610ceb575f80fd5b905f5260205f20015f91509150505481565b5f6001600160a01b038216610d665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161067d565b506001600160a01b03165f9081526003602052604090205490565b610d89611212565b610d925f6118fc565b565b610d9c611212565b5f610da660085490565b905060015b8281101561085457610dc633610dc1838561245d565b61194d565b80610dd081612590565b915050610dab565b60606001805461069f906123af565b6015546040516370a0823160e01b81526001600160a01b0383811660048301525f9283929116906370a0823190602401602060405180830381865afa158015610e32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5691906125a8565b1192915050565b610e65611212565b6040516370a0823160e01b815230600482018190525f916001600160a01b0384169163095ea7b39183906370a0823190602401602060405180830381865afa158015610eb3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed791906125a8565b610ee290600161245d565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610f2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4e91906125bf565b905080610f9d5760405162461bcd60e51b815260206004820152601860248201527f43412063616e6e6f7420617070726f766520746f6b656e730000000000000000604482015260640161067d565b6016546040516370a0823160e01b815230600482018190525f926001600160a01b03868116936323b872dd9392919091169084906370a0823190602401602060405180830381865afa158015610ff5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101991906125a8565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561106a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061108e91906125bf565b9050806108545760405162461bcd60e51b815260206004820152600e60248201526d10d04810d85b9b9bdd081cd95b9960921b604482015260640161067d565b61095d338383611966565b6110e33383611337565b6110ff5760405162461bcd60e51b815260040161067d906123e7565b61110b84848484611a33565b50505050565b606061111c8261126c565b5f611125611a66565b90505f8151116111435760405180602001604052805f81525061116e565b8061114d84611a75565b60405160200161115e9291906125da565b6040516020818303038152906040525b9392505050565b61117d611212565b6001600160a01b0381166111e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067d565b6111eb816118fc565b50565b5f6001600160e01b0319821663780e9d6360e01b148061066a575061066a82611b72565b600a546001600160a01b03163314610d925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161067d565b5f818152600260205260409020546001600160a01b03166111eb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161067d565b5f81815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112fe82610c73565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f8061134283610c73565b9050806001600160a01b0316846001600160a01b0316148061138857506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b806113ac5750836001600160a01b03166113a184610720565b6001600160a01b0316145b949350505050565b826001600160a01b03166113c782610c73565b6001600160a01b03161461142b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067d565b6001600160a01b03821661148d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067d565b611498838383611bc1565b6114a25f826112ca565b6001600160a01b0383165f9081526003602052604081208054600192906114ca908490612608565b90915550506001600160a01b0382165f9081526003602052604081208054600192906114f790849061245d565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b5f61156160085490565b6015546040516370a0823160e01b81523360048201529192505f916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156115ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d091906125a8565b1161161d5760405162461bcd60e51b815260206004820152601f60248201527f41646472657373206e6f7420616c6c6f77656420746f20707572636861736500604482015260640161067d565b600c5461162d60ff84168361245d565b111561167b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015260640161067d565b600e548260ff1661168b33610cfd565b611695919061245d565b11156116dd5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591959081b585e081c195c881dd85b1b195d604a1b604482015260640161067d565b5f5b8260ff16811015610854576116f63360115461194d565b601180545f90815260136020908152604080832080546001600160a01b0319163390811790915583526014825282208354815460018101835591845291832001558154919061174483612590565b9190505550808061175490612590565b9150506116df565b5f61176660085490565b9050600d548260ff1611156117bd5760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604482015260640161067d565b600c546117cd60ff84168361245d565b111561181b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015260640161067d565b600e548260ff1661182b33610cfd565b611835919061245d565b111561187d5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591959081b585e081c195c881dd85b1b195d604a1b604482015260640161067d565b5f5b8260ff16811015610854576118963360115461194d565b601180545f90815260136020908152604080832080546001600160a01b031916339081179091558352601482528220835481546001810183559184529183200155815491906118e483612590565b919050555080806118f490612590565b91505061187f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61095d828260405180602001604052805f815250611bcc565b816001600160a01b0316836001600160a01b0316036119c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067d565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a3e8484846113b4565b611a4a84848484611bfe565b61110b5760405162461bcd60e51b815260040161067d9061261b565b6060600b805461069f906123af565b6060815f03611a9b5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611ac45780611aae81612590565b9150611abd9050600a83612681565b9150611a9e565b5f8167ffffffffffffffff811115611ade57611ade6121e0565b6040519080825280601f01601f191660200182016040528015611b08576020820181803683370190505b5090505b84156113ac57611b1d600183612608565b9150611b2a600a86612694565b611b3590603061245d565b60f81b818381518110611b4a57611b4a612435565b60200101906001600160f81b03191690815f1a905350611b6b600a86612681565b9450611b0c565b5f6001600160e01b031982166380ac58cd60e01b1480611ba257506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b610854838383611cfb565b611bd68383611db2565b611be25f848484611bfe565b6108545760405162461bcd60e51b815260040161067d9061261b565b5f6001600160a01b0384163b15611cf057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c419033908990889088906004016126a7565b6020604051808303815f875af1925050508015611c7b575060408051601f3d908101601f19168201909252611c78918101906126e3565b60015b611cd6573d808015611ca8576040519150601f19603f3d011682016040523d82523d5f602084013e611cad565b606091505b5080515f03611cce5760405162461bcd60e51b815260040161067d9061261b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ac565b506001949350505050565b6001600160a01b038316611d5557611d5081600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d78565b816001600160a01b0316836001600160a01b031614611d7857611d788382611efc565b6001600160a01b038216611d8f5761085481611f95565b826001600160a01b0316826001600160a01b03161461085457610854828261203c565b6001600160a01b038216611e085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067d565b5f818152600260205260409020546001600160a01b031615611e6c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067d565b611e775f8383611bc1565b6001600160a01b0382165f908152600360205260408120805460019290611e9f90849061245d565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001611f0884610cfd565b611f129190612608565b5f83815260076020526040902054909150808214611f63576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611fa690600190612608565b5f8381526009602052604081205460088054939450909284908110611fcd57611fcd612435565b905f5260205f20015490508060088381548110611fec57611fec612435565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480612023576120236126fe565b600190038181905f5260205f20015f9055905550505050565b5f61204683610cfd565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b0319811681146111eb575f80fd5b5f602082840312156120a3575f80fd5b813561116e8161207e565b5f80604083850312156120bf575f80fd5b50508035926020909101359150565b5f5b838110156120e85781810151838201526020016120d0565b50505f910152565b5f81518084526121078160208601602086016120ce565b601f01601f19169290920160200192915050565b602081525f61116e60208301846120f0565b5f6020828403121561213d575f80fd5b5035919050565b80356001600160a01b038116811461215a575f80fd5b919050565b5f8060408385031215612170575f80fd5b61217983612144565b946020939093013593505050565b5f805f60608486031215612199575f80fd5b6121a284612144565b92506121b060208501612144565b9150604084013590509250925092565b5f602082840312156121d0575f80fd5b813560ff8116811461116e575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561220e5761220e6121e0565b604051601f8501601f19908116603f01168101908282118183101715612236576122366121e0565b8160405280935085815286868601111561224e575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612277575f80fd5b813567ffffffffffffffff81111561228d575f80fd5b8201601f8101841361229d575f80fd5b6113ac848235602084016121f4565b5f602082840312156122bc575f80fd5b61116e82612144565b80151581146111eb575f80fd5b5f80604083850312156122e3575f80fd5b6122ec83612144565b915060208301356122fc816122c5565b809150509250929050565b5f805f806080858703121561231a575f80fd5b61232385612144565b935061233160208601612144565b925060408501359150606085013567ffffffffffffffff811115612353575f80fd5b8501601f81018713612363575f80fd5b612372878235602084016121f4565b91505092959194509250565b5f806040838503121561238f575f80fd5b61239883612144565b91506123a660208401612144565b90509250929050565b600181811c908216806123c357607f821691505b6020821081036123e157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561066a5761066a612449565b808202811582820484141761066a5761066a612449565b601f821115610854575f81815260208120601f850160051c810160208610156124ad5750805b601f850160051c820191505b818110156124cc578281556001016124b9565b505050505050565b815167ffffffffffffffff8111156124ee576124ee6121e0565b612502816124fc84546123af565b84612487565b602080601f831160018114612535575f841561251e5750858301515b5f19600386901b1c1916600185901b1785556124cc565b5f85815260208120601f198616915b8281101561256357888601518255948401946001909101908401612544565b508582101561258057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f600182016125a1576125a1612449565b5060010190565b5f602082840312156125b8575f80fd5b5051919050565b5f602082840312156125cf575f80fd5b815161116e816122c5565b5f83516125eb8184602088016120ce565b8351908301906125ff8183602088016120ce565b01949350505050565b8181038181111561066a5761066a612449565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b5f52601260045260245ffd5b5f8261268f5761268f61266d565b500490565b5f826126a2576126a261266d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906126d9908301846120f0565b9695505050505050565b5f602082840312156126f3575f80fd5b815161116e8161207e565b634e487b7160e01b5f52603160045260245ffdfea264697066735822122075f01192b7b795cad48de0c3ea22d40deb73aab64d8d411f817dccccf7b90ff264736f6c6343000815003300000000000000000000000007e0edf8ce600fb51d44f51e3348d77d67f298ae000000000000000000000000e9ef47a66d693bbd335091dfae30ec7f8015e3a7

Deployed Bytecode

0x608060405260043610610207575f3560e01c806370a0823111610113578063a22cb4651161009d578063bbd94c2f1161006d578063bbd94c2f14610592578063c87b56dd146105c6578063cec2a295146105e5578063e985e9c5146105fa578063f2fde38b14610641575f80fd5b8063a22cb46514610529578063b19960e614610548578063b790d1a71461055d578063b88d4fde14610573575f80fd5b806384fd2dde116100e357806384fd2dde146104a55780638da5cb5b146104ba57806395d89b41146104d75780639708d2fa146104eb5780639cd3cb5d1461050a575f80fd5b806370a082311461043e578063715018a61461045d5780637467f6d514610471578063819b25ba14610486575f80fd5b80632f745c59116101945780634f6ccce7116101645780634f6ccce7146103af5780634fc31c9d146103ce57806355f804b3146103e15780636352211e14610400578063688d33471461041f575f80fd5b80632f745c591461034857806332cb6b0c146103675780633ccfd60b1461037c57806342842e0e14610390575f80fd5b8063095ea7b3116101da578063095ea7b3146102b857806318160ddd146102d757806323b872dd146102f557806326619bb9146103145780632b95f5fb14610329575f80fd5b806301ffc9a71461020b57806305fefda71461023f57806306fdde0314610260578063081812fc14610281575b5f80fd5b348015610216575f80fd5b5061022a610225366004612093565b610660565b60405190151581526020015b60405180910390f35b34801561024a575f80fd5b5061025e6102593660046120ae565b610670565b005b34801561026b575f80fd5b50610274610691565b604051610236919061211b565b34801561028c575f80fd5b506102a061029b36600461212d565b610720565b6040516001600160a01b039091168152602001610236565b3480156102c3575f80fd5b5061025e6102d236600461215f565b610745565b3480156102e2575f80fd5b506008545b604051908152602001610236565b348015610300575f80fd5b5061025e61030f366004612187565b610859565b34801561031f575f80fd5b506102e7600f5481565b348015610334575f80fd5b506015546102a0906001600160a01b031681565b348015610353575f80fd5b506102e761036236600461215f565b61088a565b348015610372575f80fd5b506102e7600c5481565b348015610387575f80fd5b5061025e61091e565b34801561039b575f80fd5b5061025e6103aa366004612187565b610961565b3480156103ba575f80fd5b506102e76103c936600461212d565b61097b565b61025e6103dc3660046121c0565b610a0b565b3480156103ec575f80fd5b5061025e6103fb366004612267565b610c5f565b34801561040b575f80fd5b506102a061041a36600461212d565b610c73565b34801561042a575f80fd5b506102e761043936600461215f565b610cd2565b348015610449575f80fd5b506102e76104583660046122ac565b610cfd565b348015610468575f80fd5b5061025e610d81565b34801561047c575f80fd5b506102e7600d5481565b348015610491575f80fd5b5061025e6104a036600461212d565b610d94565b3480156104b0575f80fd5b506102e760105481565b3480156104c5575f80fd5b50600a546001600160a01b03166102a0565b3480156104e2575f80fd5b50610274610dd8565b3480156104f6575f80fd5b5061022a6105053660046122ac565b610de7565b348015610515575f80fd5b5061025e6105243660046122ac565b610e5d565b348015610534575f80fd5b5061025e6105433660046122d2565b6110ce565b348015610553575f80fd5b506102e7600e5481565b348015610568575f80fd5b506102e76201518081565b34801561057e575f80fd5b5061025e61058d366004612307565b6110d9565b34801561059d575f80fd5b506102a06105ac36600461212d565b60136020525f90815260409020546001600160a01b031681565b3480156105d1575f80fd5b506102746105e036600461212d565b611111565b3480156105f0575f80fd5b506102e760125481565b348015610605575f80fd5b5061022a61061436600461237e565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b34801561064c575f80fd5b5061025e61065b3660046122ac565b611175565b5f61066a826111ee565b92915050565b610678611212565b610686565b60405180910390fd5b600f91909155601055565b60605f805461069f906123af565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb906123af565b80156107165780601f106106ed57610100808354040283529160200191610716565b820191905f5260205f20905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b5f61072a8261126c565b505f908152600460205260409020546001600160a01b031690565b5f61074f82610c73565b9050806001600160a01b0316836001600160a01b0316036107bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067d565b336001600160a01b03821614806107d857506107d88133610614565b61084a5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161067d565b61085483836112ca565b505050565b6108633382611337565b61087f5760405162461bcd60e51b815260040161067d906123e7565b6108548383836113b4565b5f61089483610cfd565b82106108f65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067d565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b610926611212565b60165460405147916001600160a01b03169082156108fc029083905f818181858888f1935050505015801561095d573d5f803e3d5ffd5b5050565b61085483838360405180602001604052805f8152506110d9565b5f61098560085490565b82106109e85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067d565b600882815481106109fb576109fb612435565b905f5260205f2001549050919050565b601254421015610a5d5760405162461bcd60e51b815260206004820152601760248201527f4552525f4d494e54494e475f4e4f545f53544152544544000000000000000000604482015260640161067d565b8060ff16600c5481610a6e60085490565b610a78919061245d565b1115610abf5760405162461bcd60e51b815260206004820152601660248201527511549497d15610d1515117d513d5105317d31253525560521b604482015260640161067d565b600e5481610acc33610cfd565b610ad6919061245d565b1115610b245760405162461bcd60e51b815260206004820152601760248201527f4552525f4558434545445f57414c4c45545f4c494d4954000000000000000000604482015260640161067d565b600d54811115610b765760405162461bcd60e51b815260206004820152601c60248201527f4552525f4558434545445f5452414e53414354494f4e5f4c494d495400000000604482015260640161067d565b62015180601254610b87919061245d565b4211610bf657348260ff16601054610b9f9190612470565b1115610bed5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161067d565b61095d82611557565b348260ff16600f54610c089190612470565b1115610c565760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161067d565b61095d8261175c565b610c67611212565b600b61095d82826124d4565b5f818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161067d565b6014602052815f5260405f208181548110610ceb575f80fd5b905f5260205f20015f91509150505481565b5f6001600160a01b038216610d665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161067d565b506001600160a01b03165f9081526003602052604090205490565b610d89611212565b610d925f6118fc565b565b610d9c611212565b5f610da660085490565b905060015b8281101561085457610dc633610dc1838561245d565b61194d565b80610dd081612590565b915050610dab565b60606001805461069f906123af565b6015546040516370a0823160e01b81526001600160a01b0383811660048301525f9283929116906370a0823190602401602060405180830381865afa158015610e32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5691906125a8565b1192915050565b610e65611212565b6040516370a0823160e01b815230600482018190525f916001600160a01b0384169163095ea7b39183906370a0823190602401602060405180830381865afa158015610eb3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed791906125a8565b610ee290600161245d565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610f2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4e91906125bf565b905080610f9d5760405162461bcd60e51b815260206004820152601860248201527f43412063616e6e6f7420617070726f766520746f6b656e730000000000000000604482015260640161067d565b6016546040516370a0823160e01b815230600482018190525f926001600160a01b03868116936323b872dd9392919091169084906370a0823190602401602060405180830381865afa158015610ff5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101991906125a8565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af115801561106a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061108e91906125bf565b9050806108545760405162461bcd60e51b815260206004820152600e60248201526d10d04810d85b9b9bdd081cd95b9960921b604482015260640161067d565b61095d338383611966565b6110e33383611337565b6110ff5760405162461bcd60e51b815260040161067d906123e7565b61110b84848484611a33565b50505050565b606061111c8261126c565b5f611125611a66565b90505f8151116111435760405180602001604052805f81525061116e565b8061114d84611a75565b60405160200161115e9291906125da565b6040516020818303038152906040525b9392505050565b61117d611212565b6001600160a01b0381166111e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067d565b6111eb816118fc565b50565b5f6001600160e01b0319821663780e9d6360e01b148061066a575061066a82611b72565b600a546001600160a01b03163314610d925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161067d565b5f818152600260205260409020546001600160a01b03166111eb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161067d565b5f81815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112fe82610c73565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f8061134283610c73565b9050806001600160a01b0316846001600160a01b0316148061138857506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b806113ac5750836001600160a01b03166113a184610720565b6001600160a01b0316145b949350505050565b826001600160a01b03166113c782610c73565b6001600160a01b03161461142b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067d565b6001600160a01b03821661148d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067d565b611498838383611bc1565b6114a25f826112ca565b6001600160a01b0383165f9081526003602052604081208054600192906114ca908490612608565b90915550506001600160a01b0382165f9081526003602052604081208054600192906114f790849061245d565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b5f61156160085490565b6015546040516370a0823160e01b81523360048201529192505f916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156115ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d091906125a8565b1161161d5760405162461bcd60e51b815260206004820152601f60248201527f41646472657373206e6f7420616c6c6f77656420746f20707572636861736500604482015260640161067d565b600c5461162d60ff84168361245d565b111561167b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015260640161067d565b600e548260ff1661168b33610cfd565b611695919061245d565b11156116dd5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591959081b585e081c195c881dd85b1b195d604a1b604482015260640161067d565b5f5b8260ff16811015610854576116f63360115461194d565b601180545f90815260136020908152604080832080546001600160a01b0319163390811790915583526014825282208354815460018101835591845291832001558154919061174483612590565b9190505550808061175490612590565b9150506116df565b5f61176660085490565b9050600d548260ff1611156117bd5760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604482015260640161067d565b600c546117cd60ff84168361245d565b111561181b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015260640161067d565b600e548260ff1661182b33610cfd565b611835919061245d565b111561187d5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591959081b585e081c195c881dd85b1b195d604a1b604482015260640161067d565b5f5b8260ff16811015610854576118963360115461194d565b601180545f90815260136020908152604080832080546001600160a01b031916339081179091558352601482528220835481546001810183559184529183200155815491906118e483612590565b919050555080806118f490612590565b91505061187f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61095d828260405180602001604052805f815250611bcc565b816001600160a01b0316836001600160a01b0316036119c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067d565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a3e8484846113b4565b611a4a84848484611bfe565b61110b5760405162461bcd60e51b815260040161067d9061261b565b6060600b805461069f906123af565b6060815f03611a9b5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611ac45780611aae81612590565b9150611abd9050600a83612681565b9150611a9e565b5f8167ffffffffffffffff811115611ade57611ade6121e0565b6040519080825280601f01601f191660200182016040528015611b08576020820181803683370190505b5090505b84156113ac57611b1d600183612608565b9150611b2a600a86612694565b611b3590603061245d565b60f81b818381518110611b4a57611b4a612435565b60200101906001600160f81b03191690815f1a905350611b6b600a86612681565b9450611b0c565b5f6001600160e01b031982166380ac58cd60e01b1480611ba257506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b610854838383611cfb565b611bd68383611db2565b611be25f848484611bfe565b6108545760405162461bcd60e51b815260040161067d9061261b565b5f6001600160a01b0384163b15611cf057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c419033908990889088906004016126a7565b6020604051808303815f875af1925050508015611c7b575060408051601f3d908101601f19168201909252611c78918101906126e3565b60015b611cd6573d808015611ca8576040519150601f19603f3d011682016040523d82523d5f602084013e611cad565b606091505b5080515f03611cce5760405162461bcd60e51b815260040161067d9061261b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ac565b506001949350505050565b6001600160a01b038316611d5557611d5081600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d78565b816001600160a01b0316836001600160a01b031614611d7857611d788382611efc565b6001600160a01b038216611d8f5761085481611f95565b826001600160a01b0316826001600160a01b03161461085457610854828261203c565b6001600160a01b038216611e085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067d565b5f818152600260205260409020546001600160a01b031615611e6c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067d565b611e775f8383611bc1565b6001600160a01b0382165f908152600360205260408120805460019290611e9f90849061245d565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001611f0884610cfd565b611f129190612608565b5f83815260076020526040902054909150808214611f63576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611fa690600190612608565b5f8381526009602052604081205460088054939450909284908110611fcd57611fcd612435565b905f5260205f20015490508060088381548110611fec57611fec612435565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480612023576120236126fe565b600190038181905f5260205f20015f9055905550505050565b5f61204683610cfd565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b0319811681146111eb575f80fd5b5f602082840312156120a3575f80fd5b813561116e8161207e565b5f80604083850312156120bf575f80fd5b50508035926020909101359150565b5f5b838110156120e85781810151838201526020016120d0565b50505f910152565b5f81518084526121078160208601602086016120ce565b601f01601f19169290920160200192915050565b602081525f61116e60208301846120f0565b5f6020828403121561213d575f80fd5b5035919050565b80356001600160a01b038116811461215a575f80fd5b919050565b5f8060408385031215612170575f80fd5b61217983612144565b946020939093013593505050565b5f805f60608486031215612199575f80fd5b6121a284612144565b92506121b060208501612144565b9150604084013590509250925092565b5f602082840312156121d0575f80fd5b813560ff8116811461116e575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561220e5761220e6121e0565b604051601f8501601f19908116603f01168101908282118183101715612236576122366121e0565b8160405280935085815286868601111561224e575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612277575f80fd5b813567ffffffffffffffff81111561228d575f80fd5b8201601f8101841361229d575f80fd5b6113ac848235602084016121f4565b5f602082840312156122bc575f80fd5b61116e82612144565b80151581146111eb575f80fd5b5f80604083850312156122e3575f80fd5b6122ec83612144565b915060208301356122fc816122c5565b809150509250929050565b5f805f806080858703121561231a575f80fd5b61232385612144565b935061233160208601612144565b925060408501359150606085013567ffffffffffffffff811115612353575f80fd5b8501601f81018713612363575f80fd5b612372878235602084016121f4565b91505092959194509250565b5f806040838503121561238f575f80fd5b61239883612144565b91506123a660208401612144565b90509250929050565b600181811c908216806123c357607f821691505b6020821081036123e157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561066a5761066a612449565b808202811582820484141761066a5761066a612449565b601f821115610854575f81815260208120601f850160051c810160208610156124ad5750805b601f850160051c820191505b818110156124cc578281556001016124b9565b505050505050565b815167ffffffffffffffff8111156124ee576124ee6121e0565b612502816124fc84546123af565b84612487565b602080601f831160018114612535575f841561251e5750858301515b5f19600386901b1c1916600185901b1785556124cc565b5f85815260208120601f198616915b8281101561256357888601518255948401946001909101908401612544565b508582101561258057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f600182016125a1576125a1612449565b5060010190565b5f602082840312156125b8575f80fd5b5051919050565b5f602082840312156125cf575f80fd5b815161116e816122c5565b5f83516125eb8184602088016120ce565b8351908301906125ff8183602088016120ce565b01949350505050565b8181038181111561066a5761066a612449565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b5f52601260045260245ffd5b5f8261268f5761268f61266d565b500490565b5f826126a2576126a261266d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906126d9908301846120f0565b9695505050505050565b5f602082840312156126f3575f80fd5b815161116e8161207e565b634e487b7160e01b5f52603160045260245ffdfea264697066735822122075f01192b7b795cad48de0c3ea22d40deb73aab64d8d411f817dccccf7b90ff264736f6c63430008150033

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

00000000000000000000000007e0edf8ce600fb51d44f51e3348d77d67f298ae000000000000000000000000e9ef47a66d693bbd335091dfae30ec7f8015e3a7

-----Decoded View---------------
Arg [0] : _checkBalanceToken (address): 0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae
Arg [1] : _withdrawAddress (address): 0xe9eF47a66D693BBd335091dfAE30EC7f8015E3a7

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000007e0edf8ce600fb51d44f51e3348d77d67f298ae
Arg [1] : 000000000000000000000000e9ef47a66d693bbd335091dfae30ec7f8015e3a7


Deployed Bytecode Sourcemap

46919:5043:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49858:179;;;;;;;;;;-1:-1:-1;49858:179:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;49858:179:0;;;;;;;;50489:269;;;;;;;;;;-1:-1:-1;50489:269:0;;;;;:::i;:::-;;:::i;:::-;;26777:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28290:171::-;;;;;;;;;;-1:-1:-1;28290:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1950:32:1;;;1932:51;;1920:2;1905:18;28290:171:0;1786:203:1;27807:417:0;;;;;;;;;;-1:-1:-1;27807:417:0;;;;;:::i;:::-;;:::i;40683:113::-;;;;;;;;;;-1:-1:-1;40771:10:0;:17;40683:113;;;2577:25:1;;;2565:2;2550:18;40683:113:0;2431:177:1;28990:336:0;;;;;;;;;;-1:-1:-1;28990:336:0;;;;;:::i;:::-;;:::i;47137:56::-;;;;;;;;;;;;;;;;47528:32;;;;;;;;;;-1:-1:-1;47528:32:0;;;;-1:-1:-1;;;;;47528:32:0;;;40351:256;;;;;;;;;;-1:-1:-1;40351:256:0;;;;;:::i;:::-;;:::i;47016:32::-;;;;;;;;;;;;;;;;51408:145;;;;;;;;;;;;;:::i;29397:185::-;;;;;;;;;;-1:-1:-1;29397:185:0;;;;;:::i;:::-;;:::i;40873:233::-;;;;;;;;;;-1:-1:-1;40873:233:0;;;;;:::i;:::-;;:::i;48978:532::-;;;;;;:::i;:::-;;:::i;50045:111::-;;;;;;;;;;-1:-1:-1;50045:111:0;;;;;:::i;:::-;;:::i;26488:222::-;;;;;;;;;;-1:-1:-1;26488:222:0;;;;;:::i;:::-;;:::i;47474:45::-;;;;;;;;;;-1:-1:-1;47474:45:0;;;;;:::i;:::-;;:::i;26219:207::-;;;;;;;;;;-1:-1:-1;26219:207:0;;;;;:::i;:::-;;:::i;5306:103::-;;;;;;;;;;;;;:::i;47055:30::-;;;;;;;;;;;;;;;;50289:192;;;;;;;;;;-1:-1:-1;50289:192:0;;;;;:::i;:::-;;:::i;47200:54::-;;;;;;;;;;;;;;;;4658:87;;;;;;;;;;-1:-1:-1;4731:6:0;;-1:-1:-1;;;;;4731:6:0;4658:87;;26946:104;;;;;;;;;;;;;:::i;49518:143::-;;;;;;;;;;-1:-1:-1;49518:143:0;;;;;:::i;:::-;;:::i;51561:398::-;;;;;;;;;;-1:-1:-1;51561:398:0;;;;;:::i;:::-;;:::i;28533:155::-;;;;;;;;;;-1:-1:-1;28533:155:0;;;;;:::i;:::-;;:::i;47092:38::-;;;;;;;;;;;;;;;;47359:58;;;;;;;;;;;;47409:8;47359:58;;29653:323;;;;;;;;;;-1:-1:-1;29653:323:0;;;;;:::i;:::-;;:::i;47426:41::-;;;;;;;;;;-1:-1:-1;47426:41:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;47426:41:0;;;27121:281;;;;;;;;;;-1:-1:-1;27121:281:0;;;;;:::i;:::-;;:::i;47306:46::-;;;;;;;;;;;;;;;;28759:164;;;;;;;;;;-1:-1:-1;28759:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28880:25:0;;;28856:4;28880:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28759:164;5564:201;;;;;;;;;;-1:-1:-1;5564:201:0;;;;;:::i;:::-;;:::i;49858:179::-;49969:4;49993:36;50017:11;49993:23;:36::i;:::-;49986:43;49858:179;-1:-1:-1;;49858:179:0:o;50489:269::-;4544:13;:11;:13::i;:::-;50571:85:::1;::::0;::::1;;;;;;;;;50667:27;:37:::0;;;;50715:24:::1;:35:::0;50489:269::o;26777:100::-;26831:13;26864:5;26857:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26777:100;:::o;28290:171::-;28366:7;28386:23;28401:7;28386:14;:23::i;:::-;-1:-1:-1;28429:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28429:24:0;;28290:171::o;27807:417::-;27888:13;27904:23;27919:7;27904:14;:23::i;:::-;27888:39;;27952:5;-1:-1:-1;;;;;27946:11:0;:2;-1:-1:-1;;;;;27946:11:0;;27938:57;;;;-1:-1:-1;;;27938:57:0;;7015:2:1;27938:57:0;;;6997:21:1;7054:2;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;-1:-1:-1;;;7144:18:1;;;7137:31;7185:19;;27938:57:0;6813:397:1;27938:57:0;3289:10;-1:-1:-1;;;;;28030:21:0;;;;:62;;-1:-1:-1;28055:37:0;28072:5;3289:10;28759:164;:::i;28055:37::-;28008:174;;;;-1:-1:-1;;;28008:174:0;;7417:2:1;28008:174:0;;;7399:21:1;7456:2;7436:18;;;7429:30;7495:34;7475:18;;;7468:62;7566:32;7546:18;;;7539:60;7616:19;;28008:174:0;7215:426:1;28008:174:0;28195:21;28204:2;28208:7;28195:8;:21::i;:::-;27877:347;27807:417;;:::o;28990:336::-;29185:41;3289:10;29218:7;29185:18;:41::i;:::-;29177:100;;;;-1:-1:-1;;;29177:100:0;;;;;;;:::i;:::-;29290:28;29300:4;29306:2;29310:7;29290:9;:28::i;40351:256::-;40448:7;40484:23;40501:5;40484:16;:23::i;:::-;40476:5;:31;40468:87;;;;-1:-1:-1;;;40468:87:0;;8263:2:1;40468:87:0;;;8245:21:1;8302:2;8282:18;;;8275:30;8341:34;8321:18;;;8314:62;-1:-1:-1;;;8392:18:1;;;8385:41;8443:19;;40468:87:0;8061:407:1;40468:87:0;-1:-1:-1;;;;;;40573:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40351:256::o;51408:145::-;4544:13;:11;:13::i;:::-;51511:15:::1;::::0;51503:42:::1;::::0;51471:21:::1;::::0;-1:-1:-1;;;;;51511:15:0::1;::::0;51503:42;::::1;;;::::0;51471:21;;51456:12:::1;51503:42:::0;51456:12;51503:42;51471:21;51511:15;51503:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51445:108;51408:145::o:0;29397:185::-;29535:39;29552:4;29558:2;29562:7;29535:39;;;;;;;;;;;;:16;:39::i;40873:233::-;40948:7;40984:30;40771:10;:17;;40683:113;40984:30;40976:5;:38;40968:95;;;;-1:-1:-1;;;40968:95:0;;8675:2:1;40968:95:0;;;8657:21:1;8714:2;8694:18;;;8687:30;8753:34;8733:18;;;8726:62;-1:-1:-1;;;8804:18:1;;;8797:42;8856:19;;40968:95:0;8473:408:1;40968:95:0;41081:10;41092:5;41081:17;;;;;;;;:::i;:::-;;;;;;;;;41074:24;;40873:233;;;:::o;48978:532::-;47872:20;;47853:15;:39;;47845:75;;;;-1:-1:-1;;;47845:75:0;;9220:2:1;47845:75:0;;;9202:21:1;9259:2;9239:18;;;9232:30;9298:25;9278:18;;;9271:53;9341:18;;47845:75:0;9018:347:1;47845:75:0;49072:14:::1;47948:345;;48047:10;;48029:14;48013:13;40771:10:::0;:17;;40683:113;48013:13:::1;:30;;;;:::i;:::-;:44;;48005:79;;;::::0;-1:-1:-1;;;48005:79:0;;9834:2:1;48005:79:0::1;::::0;::::1;9816:21:1::0;9873:2;9853:18;;;9846:30;-1:-1:-1;;;9892:18:1;;;9885:52;9954:18;;48005:79:0::1;9632:346:1::0;48005:79:0::1;48145:19;;48127:14;48103:21;48113:10;48103:9;:21::i;:::-;:38;;;;:::i;:::-;:61;;48095:97;;;::::0;-1:-1:-1;;;48095:97:0;;10185:2:1;48095:97:0::1;::::0;::::1;10167:21:1::0;10224:2;10204:18;;;10197:30;10263:25;10243:18;;;10236:53;10306:18;;48095:97:0::1;9983:347:1::0;48095:97:0::1;48229:11;;48211:14;:29;;48203:70;;;::::0;-1:-1:-1;;;48203:70:0;;10537:2:1;48203:70:0::1;::::0;::::1;10519:21:1::0;10576:2;10556:18;;;10549:30;10615;10595:18;;;10588:58;10663:18;;48203:70:0::1;10335:352:1::0;48203:70:0::1;47409:8:::2;49120:20;;:46;;;;:::i;:::-;49101:15;:65;49098:405;;49235:9;49217:14;49190:41;;:24;;:41;;;;:::i;:::-;:54;;49182:98;;;::::0;-1:-1:-1;;;49182:98:0;;11067:2:1;49182:98:0::2;::::0;::::2;11049:21:1::0;11106:2;11086:18;;;11079:30;11145:33;11125:18;;;11118:61;11196:18;;49182:98:0::2;10865:355:1::0;49182:98:0::2;49295:29;49309:14;49295:13;:29::i;49098:405::-;49411:9;49393:14;49363:44;;:27;;:44;;;;:::i;:::-;:57;;49355:101;;;::::0;-1:-1:-1;;;49355:101:0;;11067:2:1;49355:101:0::2;::::0;::::2;11049:21:1::0;11106:2;11086:18;;;11079:30;11145:33;11125:18;;;11118:61;11196:18;;49355:101:0::2;10865:355:1::0;49355:101:0::2;49471:20;49476:14;49471:4;:20::i;50045:111::-:0;4544:13;:11;:13::i;:::-;50121:16:::1;:27;50140:8:::0;50121:16;:27:::1;:::i;26488:222::-:0;26560:7;26596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26596:16:0;;26623:56;;;;-1:-1:-1;;;26623:56:0;;13631:2:1;26623:56:0;;;13613:21:1;13670:2;13650:18;;;13643:30;-1:-1:-1;;;13689:18:1;;;13682:54;13753:18;;26623:56:0;13429:348:1;47474:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26219:207::-;26291:7;-1:-1:-1;;;;;26319:19:0;;26311:73;;;;-1:-1:-1;;;26311:73:0;;13984:2:1;26311:73:0;;;13966:21:1;14023:2;14003:18;;;13996:30;14062:34;14042:18;;;14035:62;-1:-1:-1;;;14113:18:1;;;14106:39;14162:19;;26311:73:0;13782:405:1;26311:73:0;-1:-1:-1;;;;;;26402:16:0;;;;;:9;:16;;;;;;;26219:207::o;5306:103::-;4544:13;:11;:13::i;:::-;5371:30:::1;5398:1;5371:18;:30::i;:::-;5306:103::o:0;50289:192::-;4544:13;:11;:13::i;:::-;50343:11:::1;50357:13;40771:10:::0;:17;;40683:113;50357:13:::1;50343:27:::0;-1:-1:-1;50403:1:0::1;50394:80;50410:1;50406;:5;50394:80;;;50431:33;50441:10;50453;50462:1:::0;50453:6;:10:::1;:::i;:::-;50431:9;:33::i;:::-;50413:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50394:80;;26946:104:::0;27002:13;27035:7;27028:14;;;;;:::i;49518:143::-;49615:17;;49608:41;;-1:-1:-1;;;49608:41:0;;-1:-1:-1;;;;;1950:32:1;;;49608:41:0;;;1932:51:1;49584:4:0;;;;49615:17;;;49608:35;;1905:18:1;;49608:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;49518:143;-1:-1:-1;;49518:143:0:o;51561:398::-;4544:13;:11;:13::i;:::-;51685:38:::1;::::0;-1:-1:-1;;;51685:38:0;;51678:4:::1;51685:38;::::0;::::1;1932:51:1::0;;;51628:17:0::1;::::0;-1:-1:-1;;;;;51648:21:0;::::1;::::0;::::1;::::0;;;51685:23:::1;::::0;1905:18:1;;51685:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;::::0;51726:1:::1;51685:42;:::i;:::-;51648:80;::::0;-1:-1:-1;;;;;;51648:80:0::1;::::0;;;;;;-1:-1:-1;;;;;14713:32:1;;;51648:80:0::1;::::0;::::1;14695:51:1::0;14762:18;;;14755:34;14668:18;;51648:80:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51628:100;;51747:12;51739:49;;;::::0;-1:-1:-1;;;51739:49:0;;15252:2:1;51739:49:0::1;::::0;::::1;15234:21:1::0;15291:2;15271:18;;;15264:30;15330:26;15310:18;;;15303:54;15374:18;;51739:49:0::1;15050:348:1::0;51739:49:0::1;51853:15;::::0;51870:38:::1;::::0;-1:-1:-1;;;51870:38:0;;51846:4:::1;51870:38;::::0;::::1;1932:51:1::0;;;51799:9:0::1;::::0;-1:-1:-1;;;;;51811:26:0;;::::1;::::0;::::1;::::0;51846:4;51853:15;;;::::1;::::0;51811:26;;51870:23:::1;::::0;1905:18:1;;51870:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51811:98;::::0;-1:-1:-1;;;;;;51811:98:0::1;::::0;;;;;;-1:-1:-1;;;;;15661:15:1;;;51811:98:0::1;::::0;::::1;15643:34:1::0;15713:15;;;;15693:18;;;15686:43;15745:18;;;15738:34;15578:18;;51811:98:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51799:110;;51928:4;51920:31;;;::::0;-1:-1:-1;;;51920:31:0;;15985:2:1;51920:31:0::1;::::0;::::1;15967:21:1::0;16024:2;16004:18;;;15997:30;-1:-1:-1;;;16043:18:1;;;16036:44;16097:18;;51920:31:0::1;15783:338:1::0;28533:155:0;28628:52;3289:10;28661:8;28671;28628:18;:52::i;29653:323::-;29827:41;3289:10;29860:7;29827:18;:41::i;:::-;29819:100;;;;-1:-1:-1;;;29819:100:0;;;;;;;:::i;:::-;29930:38;29944:4;29950:2;29954:7;29963:4;29930:13;:38::i;:::-;29653:323;;;;:::o;27121:281::-;27194:13;27220:23;27235:7;27220:14;:23::i;:::-;27256:21;27280:10;:8;:10::i;:::-;27256:34;;27332:1;27314:7;27308:21;:25;:86;;;;;;;;;;;;;;;;;27360:7;27369:18;:7;:16;:18::i;:::-;27343:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27308:86;27301:93;27121:281;-1:-1:-1;;;27121:281:0:o;5564:201::-;4544:13;:11;:13::i;:::-;-1:-1:-1;;;;;5653:22:0;::::1;5645:73;;;::::0;-1:-1:-1;;;5645:73:0;;16829:2:1;5645:73:0::1;::::0;::::1;16811:21:1::0;16868:2;16848:18;;;16841:30;16907:34;16887:18;;;16880:62;-1:-1:-1;;;16958:18:1;;;16951:36;17004:19;;5645:73:0::1;16627:402:1::0;5645:73:0::1;5729:28;5748:8;5729:18;:28::i;:::-;5564:201:::0;:::o;40043:224::-;40145:4;-1:-1:-1;;;;;;40169:50:0;;-1:-1:-1;;;40169:50:0;;:90;;;40223:36;40247:11;40223:23;:36::i;4823:132::-;4731:6;;-1:-1:-1;;;;;4731:6:0;3289:10;4887:23;4879:68;;;;-1:-1:-1;;;4879:68:0;;17236:2:1;4879:68:0;;;17218:21:1;;;17255:18;;;17248:30;17314:34;17294:18;;;17287:62;17366:18;;4879:68:0;17034:356:1;36265:135:0;31548:4;31572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31572:16:0;36339:53;;;;-1:-1:-1;;;36339:53:0;;13631:2:1;36339:53:0;;;13613:21:1;13670:2;13650:18;;;13643:30;-1:-1:-1;;;13689:18:1;;;13682:54;13753:18;;36339:53:0;13429:348:1;35544:174:0;35619:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35619:29:0;-1:-1:-1;;;;;35619:29:0;;;;;;;;:24;;35673:23;35619:24;35673:14;:23::i;:::-;-1:-1:-1;;;;;35664:46:0;;;;;;;;;;;35544:174;;:::o;31777:264::-;31870:4;31887:13;31903:23;31918:7;31903:14;:23::i;:::-;31887:39;;31956:5;-1:-1:-1;;;;;31945:16:0;:7;-1:-1:-1;;;;;31945:16:0;;:52;;;-1:-1:-1;;;;;;28880:25:0;;;28856:4;28880:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31965:32;31945:87;;;;32025:7;-1:-1:-1;;;;;32001:31:0;:20;32013:7;32001:11;:20::i;:::-;-1:-1:-1;;;;;32001:31:0;;31945:87;31937:96;31777:264;-1:-1:-1;;;;31777:264:0:o;34800:625::-;34959:4;-1:-1:-1;;;;;34932:31:0;:23;34947:7;34932:14;:23::i;:::-;-1:-1:-1;;;;;34932:31:0;;34924:81;;;;-1:-1:-1;;;34924:81:0;;17597:2:1;34924:81:0;;;17579:21:1;17636:2;17616:18;;;17609:30;17675:34;17655:18;;;17648:62;-1:-1:-1;;;17726:18:1;;;17719:35;17771:19;;34924:81:0;17395:401:1;34924:81:0;-1:-1:-1;;;;;35024:16:0;;35016:65;;;;-1:-1:-1;;;35016:65:0;;18003:2:1;35016:65:0;;;17985:21:1;18042:2;18022:18;;;18015:30;18081:34;18061:18;;;18054:62;-1:-1:-1;;;18132:18:1;;;18125:34;18176:19;;35016:65:0;17801:400:1;35016:65:0;35094:39;35115:4;35121:2;35125:7;35094:20;:39::i;:::-;35198:29;35215:1;35219:7;35198:8;:29::i;:::-;-1:-1:-1;;;;;35240:15:0;;;;;;:9;:15;;;;;:20;;35259:1;;35240:15;:20;;35259:1;;35240:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35271:13:0;;;;;;:9;:13;;;;;:18;;35288:1;;35271:13;:18;;35288:1;;35271:18;:::i;:::-;;;;-1:-1:-1;;35300:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35300:21:0;-1:-1:-1;;;;;35300:21:0;;;;;;;;;35339:27;;35300:16;;35339:27;;;;;;;27877:347;27807:417;;:::o;48301:669::-;48366:10;48379:13;40771:10;:17;;40683:113;48379:13;48418:17;;48411:47;;-1:-1:-1;;;48411:47:0;;48447:10;48411:47;;;1932:51:1;48366:26:0;;-1:-1:-1;48461:1:0;;-1:-1:-1;;;;;48418:17:0;;;;48411:35;;1905:18:1;;48411:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;48403:95;;;;-1:-1:-1;;;48403:95:0;;18541:2:1;48403:95:0;;;18523:21:1;18580:2;18560:18;;;18553:30;18619:33;18599:18;;;18592:61;18670:18;;48403:95:0;18339:355:1;48403:95:0;48540:10;;48517:19;;;;:2;:19;:::i;:::-;:33;;48509:78;;;;-1:-1:-1;;;48509:78:0;;18901:2:1;48509:78:0;;;18883:21:1;;;18920:18;;;18913:30;18979:34;18959:18;;;18952:62;19031:18;;48509:78:0;18699:356:1;48509:78:0;48648:19;;48630:14;48606:38;;:21;48616:10;48606:9;:21::i;:::-;:38;;;;:::i;:::-;:61;;48598:98;;;;-1:-1:-1;;;48598:98:0;;19262:2:1;48598:98:0;;;19244:21:1;19301:2;19281:18;;;19274:30;-1:-1:-1;;;19320:18:1;;;19313:53;19383:18;;48598:98:0;19060:347:1;48598:98:0;48714:9;48709:254;48733:14;48729:18;;:1;:18;48709:254;;;48769:37;48779:10;48791:14;;48769:9;:37::i;:::-;48832:14;;;48822:25;;;;:9;:25;;;;;;;;:38;;-1:-1:-1;;;;;;48822:38:0;48850:10;48822:38;;;;;;48875:23;;:11;:23;;;;48904:14;;48875:44;;48822:38;48875:44;;;;;;;;;;;;48934:16;;;48832:14;48934:16;;;:::i;:::-;;;;;;48749:3;;;;;:::i;:::-;;;;48709:254;;50766:634;50822:10;50835:13;40771:10;:17;;40683:113;50835:13;50822:26;;50885:11;;50867:14;:29;;;;50859:69;;;;-1:-1:-1;;;50859:69:0;;19614:2:1;50859:69:0;;;19596:21:1;19653:2;19633:18;;;19626:30;19692:29;19672:18;;;19665:57;19739:18;;50859:69:0;19412:351:1;50859:69:0;50970:10;;50947:19;;;;:2;:19;:::i;:::-;:33;;50939:78;;;;-1:-1:-1;;;50939:78:0;;18901:2:1;50939:78:0;;;18883:21:1;;;18920:18;;;18913:30;18979:34;18959:18;;;18952:62;19031:18;;50939:78:0;18699:356:1;50939:78:0;51078:19;;51060:14;51036:38;;:21;51046:10;51036:9;:21::i;:::-;:38;;;;:::i;:::-;:61;;51028:98;;;;-1:-1:-1;;;51028:98:0;;19262:2:1;51028:98:0;;;19244:21:1;19301:2;19281:18;;;19274:30;-1:-1:-1;;;19320:18:1;;;19313:53;19383:18;;51028:98:0;19060:347:1;51028:98:0;51144:9;51139:254;51163:14;51159:18;;:1;:18;51139:254;;;51199:37;51209:10;51221:14;;51199:9;:37::i;:::-;51262:14;;;51252:25;;;;:9;:25;;;;;;;;:38;;-1:-1:-1;;;;;;51252:38:0;51280:10;51252:38;;;;;;51305:23;;:11;:23;;;;51334:14;;51305:44;;51252:38;51305:44;;;;;;;;;;;;51364:16;;;51262:14;51364:16;;;:::i;:::-;;;;;;51179:3;;;;;:::i;:::-;;;;51139:254;;5925:191;6018:6;;;-1:-1:-1;;;;;6035:17:0;;;-1:-1:-1;;;;;;6035:17:0;;;;;;;6068:40;;6018:6;;;6035:17;6018:6;;6068:40;;5999:16;;6068:40;5988:128;5925:191;:::o;32383:110::-;32459:26;32469:2;32473:7;32459:26;;;;;;;;;;;;:9;:26::i;35861:315::-;36016:8;-1:-1:-1;;;;;36007:17:0;:5;-1:-1:-1;;;;;36007:17:0;;35999:55;;;;-1:-1:-1;;;35999:55:0;;19970:2:1;35999:55:0;;;19952:21:1;20009:2;19989:18;;;19982:30;20048:27;20028:18;;;20021:55;20093:18;;35999:55:0;19768:349:1;35999:55:0;-1:-1:-1;;;;;36065:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36065:46:0;;;;;;;;;;36127:41;;540::1;;;36127::0;;513:18:1;36127:41:0;;;;;;;35861:315;;;:::o;30857:313::-;31013:28;31023:4;31029:2;31033:7;31013:9;:28::i;:::-;31060:47;31083:4;31089:2;31093:7;31102:4;31060:22;:47::i;:::-;31052:110;;;;-1:-1:-1;;;31052:110:0;;;;;;;:::i;50164:117::-;50224:13;50257:16;50250:23;;;;;:::i;463:723::-;519:13;740:5;749:1;740:10;736:53;;-1:-1:-1;;767:10:0;;;;;;;;;;;;-1:-1:-1;;;767:10:0;;;;;463:723::o;736:53::-;814:5;799:12;855:78;862:9;;855:78;;888:8;;;;:::i;:::-;;-1:-1:-1;911:10:0;;-1:-1:-1;919:2:0;911:10;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;965:17:0;;943:39;;993:154;1000:10;;993:154;;1027:11;1037:1;1027:11;;:::i;:::-;;-1:-1:-1;1096:10:0;1104:2;1096:5;:10;:::i;:::-;1083:24;;:2;:24;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1053:56:0;;;;;;;;-1:-1:-1;1124:11:0;1133:2;1124:11;;:::i;:::-;;;993:154;;25850:305;25952:4;-1:-1:-1;;;;;;25989:40:0;;-1:-1:-1;;;25989:40:0;;:105;;-1:-1:-1;;;;;;;26046:48:0;;-1:-1:-1;;;26046:48:0;25989:105;:158;;;-1:-1:-1;;;;;;;;;;17621:40:0;;;26111:36;17512:157;49669:181;49797:45;49824:4;49830:2;49834:7;49797:26;:45::i;32720:319::-;32849:18;32855:2;32859:7;32849:5;:18::i;:::-;32900:53;32931:1;32935:2;32939:7;32948:4;32900:22;:53::i;:::-;32878:153;;;;-1:-1:-1;;;32878:153:0;;;;;;;:::i;36964:853::-;37118:4;-1:-1:-1;;;;;37139:13:0;;7651:19;:23;37135:675;;37175:71;;-1:-1:-1;;;37175:71:0;;-1:-1:-1;;;;;37175:36:0;;;;;:71;;3289:10;;37226:4;;37232:7;;37241:4;;37175:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37175:71:0;;;;;;;;-1:-1:-1;;37175:71:0;;;;;;;;;;;;:::i;:::-;;;37171:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37416:6;:13;37433:1;37416:18;37412:328;;37459:60;;-1:-1:-1;;;37459:60:0;;;;;;;:::i;37412:328::-;37690:6;37684:13;37675:6;37671:2;37667:15;37660:38;37171:584;-1:-1:-1;;;;;;37297:51:0;-1:-1:-1;;;37297:51:0;;-1:-1:-1;37290:58:0;;37135:675;-1:-1:-1;37794:4:0;36964:853;;;;;;:::o;41719:589::-;-1:-1:-1;;;;;41925:18:0;;41921:187;;41960:40;41992:7;43135:10;:17;;43108:24;;;;:15;:24;;;;;:44;;;43163:24;;;;;;;;;;;;43031:164;41960:40;41921:187;;;42030:2;-1:-1:-1;;;;;42022:10:0;:4;-1:-1:-1;;;;;42022:10:0;;42018:90;;42049:47;42082:4;42088:7;42049:32;:47::i;:::-;-1:-1:-1;;;;;42122:16:0;;42118:183;;42155:45;42192:7;42155:36;:45::i;42118:183::-;42228:4;-1:-1:-1;;;;;42222:10:0;:2;-1:-1:-1;;;;;42222:10:0;;42218:83;;42249:40;42277:2;42281:7;42249:27;:40::i;33375:439::-;-1:-1:-1;;;;;33455:16:0;;33447:61;;;;-1:-1:-1;;;33447:61:0;;21865:2:1;33447:61:0;;;21847:21:1;;;21884:18;;;21877:30;21943:34;21923:18;;;21916:62;21995:18;;33447:61:0;21663:356:1;33447:61:0;31548:4;31572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31572:16:0;:30;33519:58;;;;-1:-1:-1;;;33519:58:0;;22226:2:1;33519:58:0;;;22208:21:1;22265:2;22245:18;;;22238:30;22304;22284:18;;;22277:58;22352:18;;33519:58:0;22024:352:1;33519:58:0;33590:45;33619:1;33623:2;33627:7;33590:20;:45::i;:::-;-1:-1:-1;;;;;33648:13:0;;;;;;:9;:13;;;;;:18;;33665:1;;33648:13;:18;;33665:1;;33648:18;:::i;:::-;;;;-1:-1:-1;;33677:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33677:21:0;-1:-1:-1;;;;;33677:21:0;;;;;;;;33716:33;;33677:16;;;33716:33;;33677:16;;33716:33;51503:42:::1;51445:108;51408:145::o:0;43822:988::-;44088:22;44138:1;44113:22;44130:4;44113:16;:22::i;:::-;:26;;;;:::i;:::-;44150:18;44171:26;;;:17;:26;;;;;;44088:51;;-1:-1:-1;44304:28:0;;;44300:328;;-1:-1:-1;;;;;44371:18:0;;44349:19;44371:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44422:30;;;;;;:44;;;44539:30;;:17;:30;;;;;:43;;;44300:328;-1:-1:-1;44724:26:0;;;;:17;:26;;;;;;;;44717:33;;;-1:-1:-1;;;;;44768:18:0;;;;;:12;:18;;;;;:34;;;;;;;44761:41;43822:988::o;45105:1079::-;45383:10;:17;45358:22;;45383:21;;45403:1;;45383:21;:::i;:::-;45415:18;45436:24;;;:15;:24;;;;;;45809:10;:26;;45358:46;;-1:-1:-1;45436:24:0;;45358:46;;45809:26;;;;;;:::i;:::-;;;;;;;;;45787:48;;45873:11;45848:10;45859;45848:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45953:28;;;:15;:28;;;;;;;:41;;;46125:24;;;;;46118:31;46160:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45176:1008;;;45105:1079;:::o;42609:221::-;42694:14;42711:20;42728:2;42711:16;:20::i;:::-;-1:-1:-1;;;;;42742:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42787:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42609:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:248::-;660:6;668;721:2;709:9;700:7;696:23;692:32;689:52;;;737:1;734;727:12;689:52;-1:-1:-1;;760:23:1;;;830:2;815:18;;;802:32;;-1:-1:-1;592:248:1:o;845:250::-;930:1;940:113;954:6;951:1;948:13;940:113;;;1030:11;;;1024:18;1011:11;;;1004:39;976:2;969:10;940:113;;;-1:-1:-1;;1087:1:1;1069:16;;1062:27;845:250::o;1100:271::-;1142:3;1180:5;1174:12;1207:6;1202:3;1195:19;1223:76;1292:6;1285:4;1280:3;1276:14;1269:4;1262:5;1258:16;1223:76;:::i;:::-;1353:2;1332:15;-1:-1:-1;;1328:29:1;1319:39;;;;1360:4;1315:50;;1100:271;-1:-1:-1;;1100:271:1:o;1376:220::-;1525:2;1514:9;1507:21;1488:4;1545:45;1586:2;1575:9;1571:18;1563:6;1545:45;:::i;1601:180::-;1660:6;1713:2;1701:9;1692:7;1688:23;1684:32;1681:52;;;1729:1;1726;1719:12;1681:52;-1:-1:-1;1752:23:1;;1601:180;-1:-1:-1;1601:180:1:o;1994:173::-;2062:20;;-1:-1:-1;;;;;2111:31:1;;2101:42;;2091:70;;2157:1;2154;2147:12;2091:70;1994:173;;;:::o;2172:254::-;2240:6;2248;2301:2;2289:9;2280:7;2276:23;2272:32;2269:52;;;2317:1;2314;2307:12;2269:52;2340:29;2359:9;2340:29;:::i;:::-;2330:39;2416:2;2401:18;;;;2388:32;;-1:-1:-1;;;2172:254:1:o;2613:328::-;2690:6;2698;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:52;;;2775:1;2772;2765:12;2727:52;2798:29;2817:9;2798:29;:::i;:::-;2788:39;;2846:38;2880:2;2869:9;2865:18;2846:38;:::i;:::-;2836:48;;2931:2;2920:9;2916:18;2903:32;2893:42;;2613:328;;;;;:::o;2946:269::-;3003:6;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3111:9;3098:23;3161:4;3154:5;3150:16;3143:5;3140:27;3130:55;;3181:1;3178;3171:12;3220:127;3281:10;3276:3;3272:20;3269:1;3262:31;3312:4;3309:1;3302:15;3336:4;3333:1;3326:15;3352:632;3417:5;3447:18;3488:2;3480:6;3477:14;3474:40;;;3494:18;;:::i;:::-;3569:2;3563:9;3537:2;3623:15;;-1:-1:-1;;3619:24:1;;;3645:2;3615:33;3611:42;3599:55;;;3669:18;;;3689:22;;;3666:46;3663:72;;;3715:18;;:::i;:::-;3755:10;3751:2;3744:22;3784:6;3775:15;;3814:6;3806;3799:22;3854:3;3845:6;3840:3;3836:16;3833:25;3830:45;;;3871:1;3868;3861:12;3830:45;3921:6;3916:3;3909:4;3901:6;3897:17;3884:44;3976:1;3969:4;3960:6;3952;3948:19;3944:30;3937:41;;;;3352:632;;;;;:::o;3989:451::-;4058:6;4111:2;4099:9;4090:7;4086:23;4082:32;4079:52;;;4127:1;4124;4117:12;4079:52;4167:9;4154:23;4200:18;4192:6;4189:30;4186:50;;;4232:1;4229;4222:12;4186:50;4255:22;;4308:4;4300:13;;4296:27;-1:-1:-1;4286:55:1;;4337:1;4334;4327:12;4286:55;4360:74;4426:7;4421:2;4408:16;4403:2;4399;4395:11;4360:74;:::i;4445:186::-;4504:6;4557:2;4545:9;4536:7;4532:23;4528:32;4525:52;;;4573:1;4570;4563:12;4525:52;4596:29;4615:9;4596:29;:::i;4636:118::-;4722:5;4715:13;4708:21;4701:5;4698:32;4688:60;;4744:1;4741;4734:12;4759:315;4824:6;4832;4885:2;4873:9;4864:7;4860:23;4856:32;4853:52;;;4901:1;4898;4891:12;4853:52;4924:29;4943:9;4924:29;:::i;:::-;4914:39;;5003:2;4992:9;4988:18;4975:32;5016:28;5038:5;5016:28;:::i;:::-;5063:5;5053:15;;;4759:315;;;;;:::o;5079:667::-;5174:6;5182;5190;5198;5251:3;5239:9;5230:7;5226:23;5222:33;5219:53;;;5268:1;5265;5258:12;5219:53;5291:29;5310:9;5291:29;:::i;:::-;5281:39;;5339:38;5373:2;5362:9;5358:18;5339:38;:::i;:::-;5329:48;;5424:2;5413:9;5409:18;5396:32;5386:42;;5479:2;5468:9;5464:18;5451:32;5506:18;5498:6;5495:30;5492:50;;;5538:1;5535;5528:12;5492:50;5561:22;;5614:4;5606:13;;5602:27;-1:-1:-1;5592:55:1;;5643:1;5640;5633:12;5592:55;5666:74;5732:7;5727:2;5714:16;5709:2;5705;5701:11;5666:74;:::i;:::-;5656:84;;;5079:667;;;;;;;:::o;5751:260::-;5819:6;5827;5880:2;5868:9;5859:7;5855:23;5851:32;5848:52;;;5896:1;5893;5886:12;5848:52;5919:29;5938:9;5919:29;:::i;:::-;5909:39;;5967:38;6001:2;5990:9;5986:18;5967:38;:::i;:::-;5957:48;;5751:260;;;;;:::o;6428:380::-;6507:1;6503:12;;;;6550;;;6571:61;;6625:4;6617:6;6613:17;6603:27;;6571:61;6678:2;6670:6;6667:14;6647:18;6644:38;6641:161;;6724:10;6719:3;6715:20;6712:1;6705:31;6759:4;6756:1;6749:15;6787:4;6784:1;6777:15;6641:161;;6428:380;;;:::o;7646:410::-;7848:2;7830:21;;;7887:2;7867:18;;;7860:30;7926:34;7921:2;7906:18;;7899:62;-1:-1:-1;;;7992:2:1;7977:18;;7970:44;8046:3;8031:19;;7646:410::o;8886:127::-;8947:10;8942:3;8938:20;8935:1;8928:31;8978:4;8975:1;8968:15;9002:4;8999:1;8992:15;9370:127;9431:10;9426:3;9422:20;9419:1;9412:31;9462:4;9459:1;9452:15;9486:4;9483:1;9476:15;9502:125;9567:9;;;9588:10;;;9585:36;;;9601:18;;:::i;10692:168::-;10765:9;;;10796;;10813:15;;;10807:22;;10793:37;10783:71;;10834:18;;:::i;11351:545::-;11453:2;11448:3;11445:11;11442:448;;;11489:1;11514:5;11510:2;11503:17;11559:4;11555:2;11545:19;11629:2;11617:10;11613:19;11610:1;11606:27;11600:4;11596:38;11665:4;11653:10;11650:20;11647:47;;;-1:-1:-1;11688:4:1;11647:47;11743:2;11738:3;11734:12;11731:1;11727:20;11721:4;11717:31;11707:41;;11798:82;11816:2;11809:5;11806:13;11798:82;;;11861:17;;;11842:1;11831:13;11798:82;;;11802:3;;;11351:545;;;:::o;12072:1352::-;12198:3;12192:10;12225:18;12217:6;12214:30;12211:56;;;12247:18;;:::i;:::-;12276:97;12366:6;12326:38;12358:4;12352:11;12326:38;:::i;:::-;12320:4;12276:97;:::i;:::-;12428:4;;12492:2;12481:14;;12509:1;12504:663;;;;13211:1;13228:6;13225:89;;;-1:-1:-1;13280:19:1;;;13274:26;13225:89;-1:-1:-1;;12029:1:1;12025:11;;;12021:24;12017:29;12007:40;12053:1;12049:11;;;12004:57;13327:81;;12474:944;;12504:663;11298:1;11291:14;;;11335:4;11322:18;;-1:-1:-1;;12540:20:1;;;12658:236;12672:7;12669:1;12666:14;12658:236;;;12761:19;;;12755:26;12740:42;;12853:27;;;;12821:1;12809:14;;;;12688:19;;12658:236;;;12662:3;12922:6;12913:7;12910:19;12907:201;;;12983:19;;;12977:26;-1:-1:-1;;13066:1:1;13062:14;;;13078:3;13058:24;13054:37;13050:42;13035:58;13020:74;;12907:201;-1:-1:-1;;;;;13154:1:1;13138:14;;;13134:22;13121:36;;-1:-1:-1;12072:1352:1:o;14192:135::-;14231:3;14252:17;;;14249:43;;14272:18;;:::i;:::-;-1:-1:-1;14319:1:1;14308:13;;14192:135::o;14332:184::-;14402:6;14455:2;14443:9;14434:7;14430:23;14426:32;14423:52;;;14471:1;14468;14461:12;14423:52;-1:-1:-1;14494:16:1;;14332:184;-1:-1:-1;14332:184:1:o;14800:245::-;14867:6;14920:2;14908:9;14899:7;14895:23;14891:32;14888:52;;;14936:1;14933;14926:12;14888:52;14968:9;14962:16;14987:28;15009:5;14987:28;:::i;16126:496::-;16305:3;16343:6;16337:13;16359:66;16418:6;16413:3;16406:4;16398:6;16394:17;16359:66;:::i;:::-;16488:13;;16447:16;;;;16510:70;16488:13;16447:16;16557:4;16545:17;;16510:70;:::i;:::-;16596:20;;16126:496;-1:-1:-1;;;;16126:496:1:o;18206:128::-;18273:9;;;18294:11;;;18291:37;;;18308:18;;:::i;20122:414::-;20324:2;20306:21;;;20363:2;20343:18;;;20336:30;20402:34;20397:2;20382:18;;20375:62;-1:-1:-1;;;20468:2:1;20453:18;;20446:48;20526:3;20511:19;;20122:414::o;20541:127::-;20602:10;20597:3;20593:20;20590:1;20583:31;20633:4;20630:1;20623:15;20657:4;20654:1;20647:15;20673:120;20713:1;20739;20729:35;;20744:18;;:::i;:::-;-1:-1:-1;20778:9:1;;20673:120::o;20798:112::-;20830:1;20856;20846:35;;20861:18;;:::i;:::-;-1:-1:-1;20895:9:1;;20798:112::o;20915:489::-;-1:-1:-1;;;;;21184:15:1;;;21166:34;;21236:15;;21231:2;21216:18;;21209:43;21283:2;21268:18;;21261:34;;;21331:3;21326:2;21311:18;;21304:31;;;21109:4;;21352:46;;21378:19;;21370:6;21352:46;:::i;:::-;21344:54;20915:489;-1:-1:-1;;;;;;20915:489:1:o;21409:249::-;21478:6;21531:2;21519:9;21510:7;21506:23;21502:32;21499:52;;;21547:1;21544;21537:12;21499:52;21579:9;21573:16;21598:30;21622:5;21598:30;:::i;22381:127::-;22442:10;22437:3;22433:20;22430:1;22423:31;22473:4;22470:1;22463:15;22497:4;22494:1;22487:15

Swarm Source

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