ETH Price: $3,319.46 (+1.35%)
Gas: 4 Gwei

Token

Belly Beans NFT (BEANS)
 

Overview

Max Total Supply

2,002 BEANS

Holders

253

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 BEANS
0xb40ba0a0d437fb3c1e3c4f9e5049cc889aa27483
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BellyBeansNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

// SPDX-License-Identifier: MIT

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

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

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

        revert('ERC721A: unable to get token of owner by index');
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: goblintownai-contract.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

//newerc.sol
pragma solidity ^0.8.0;



contract BellyBeansNFT is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI = "ipfs://QmcPk3RrNrhwVdvXieqRyhXg4hRLoF7Z2ED745yJnZyCKN/";
    uint256 public cost = 0.000 ether;
    uint256 public maxSupply = 6969;
    uint256 public maxFree = 6969;
    uint256 public maxperAddressFreeLimit = 3;
    uint256 public maxperAddressPublicMint = 3;
    bool public revealed = false;
    string public hiddenMetadataUri;
    address[] public allowList;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("Belly Beans NFT", "BEANS") {
        setBaseURI("");

    }

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

    function mintFree(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );

		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}

        if(checkAllowList(msg.sender)){
            _safeMint(msg.sender, _mintAmount);
        }
        else{
            revert("You are not on the allowlist.");
        }

		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" );
        require(s + _mintAmount <= maxSupply, "Cant go over supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");

        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setAllowList(address[] calldata addresses) public onlyOwner{
        allowList = addresses;
    }

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

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

    function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{
        maxperAddressFreeLimit = _amount;
    }

    function withdraw() public payable onlyOwner {

        // (bool hs, ) = payable(0x4F6bfd78E65f81fde8804147466f8e60a18aC791).call{value: address(this).balance * 50 / 100}('');
        // require(hs);

        (bool os, ) = payable(msg.sender).call{value: address(this).balance}('');
        require(os);
 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"payable","type":"function"}]

60e0604052603660808181529062002b9560a03980516200002991600991602090910190620001e3565b506000600a55611b39600b819055600c556003600d819055600e55600f805460ff191690553480156200005b57600080fd5b50604080518082018252600f81526e10995b1b1e481099585b9cc8139195608a1b6020808301918252835180850190945260058452644245414e5360d81b908401528151919291620000b091600191620001e3565b508051620000c6906002906020840190620001e3565b505050620000e3620000dd6200011560201b60201c565b62000119565b6007805460ff60a01b1916905560016008556040805160208101909152600081526200010f906200016b565b620002c6565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001df906009906020840190620001e3565b5050565b828054620001f19062000289565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b600181811c908216806200029e57607f821691505b60208210811415620002c057634e487b7160e01b600052602260045260246000fd5b50919050565b6128bf80620002d66000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063a4146733116100b6578063ce07c7c81161007a578063ce07c7c8146106de578063d5abeb01146106fe578063dc4e66b514610714578063e0a8085314610734578063e985e9c514610754578063f2fde38b1461079d57600080fd5b8063a414673314610656578063a45ba8e714610669578063b88d4fde1461067e578063bde12d731461069e578063c87b56dd146106be57600080fd5b80637c6b172d116101085780637c6b172d146105a35780638da5cb5b146105d057806395d89b41146105ee57806396ea3a4714610603578063a0712d6814610623578063a22cb4651461063657600080fd5b80636352211e146105195780636447c35d146105395780636c0360eb1461055957806370a082311461056e578063715018a61461058e57600080fd5b80633ccfd60b116101dd5780634fdd43cb116101a15780634fdd43cb1461046a578063518302271461048a57806355f804b3146104a457806356569a1d146104c45780635c975abb146104da57806362a6d197146104f957600080fd5b80633ccfd60b146103ec57806342842e0e146103f457806344a0d68a14610414578063485a68a3146104345780634f6ccce71461044a57600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd14610361578063228025e81461037657806323b872dd146103965780632f745c59146103b657806334c8fd75146103d657600080fd5b806301ffc9a71461026c578063022d67dd146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461254a565b6107bd565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc3660046125cd565b61082a565b005b3480156102cf57600080fd5b506102d8610862565b604051610298919061268e565b3480156102f157600080fd5b506103056103003660046125cd565b6108f4565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004612457565b61097f565b34801561034957600080fd5b50610353600a5481565b604051908152602001610298565b34801561036d57600080fd5b50600054610353565b34801561038257600080fd5b506102c16103913660046125cd565b610a97565b3480156103a257600080fd5b506102c16103b1366004612375565b610b18565b3480156103c257600080fd5b506103536103d1366004612457565b610b23565b3480156103e257600080fd5b50610353600e5481565b6102c1610c80565b34801561040057600080fd5b506102c161040f366004612375565b610d02565b34801561042057600080fd5b506102c161042f3660046125cd565b610d1d565b34801561044057600080fd5b50610353600c5481565b34801561045657600080fd5b506103536104653660046125cd565b610d4c565b34801561047657600080fd5b506102c1610485366004612584565b610dae565b34801561049657600080fd5b50600f5461028c9060ff1681565b3480156104b057600080fd5b506102c16104bf366004612584565b610def565b3480156104d057600080fd5b50610353600d5481565b3480156104e657600080fd5b50600754600160a01b900460ff1661028c565b34801561050557600080fd5b506103056105143660046125cd565b610e2c565b34801561052557600080fd5b506103056105343660046125cd565b610e56565b34801561054557600080fd5b506102c1610554366004612481565b610e68565b34801561056557600080fd5b506102d8610e9e565b34801561057a57600080fd5b50610353610589366004612327565b610f2c565b34801561059a57600080fd5b506102c1610fbd565b3480156105af57600080fd5b506103536105be366004612327565b60126020526000908152604090205481565b3480156105dc57600080fd5b506007546001600160a01b0316610305565b3480156105fa57600080fd5b506102d8610ff3565b34801561060f57600080fd5b506102c161061e3660046124c3565b611002565b6102c16106313660046125cd565b61118b565b34801561064257600080fd5b506102c161065136600461242d565b6112f1565b6102c16106643660046125cd565b6113b6565b34801561067557600080fd5b506102d86115b6565b34801561068a57600080fd5b506102c16106993660046123b1565b6115c3565b3480156106aa57600080fd5b506102c16106b93660046125cd565b6115fc565b3480156106ca57600080fd5b506102d86106d93660046125cd565b61162b565b3480156106ea57600080fd5b5061028c6106f9366004612327565b611786565b34801561070a57600080fd5b50610353600b5481565b34801561072057600080fd5b506102c161072f3660046125cd565b6117e3565b34801561074057600080fd5b506102c161074f36600461252f565b611812565b34801561076057600080fd5b5061028c61076f366004612342565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107a957600080fd5b506102c16107b8366004612327565b61184f565b60006001600160e01b031982166380ac58cd60e01b14806107ee57506001600160e01b03198216635b5e139f60e01b145b8061080957506001600160e01b0319821663780e9d6360e01b145b8061082457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461085d5760405162461bcd60e51b8152600401610854906126a1565b60405180910390fd5b600e55565b606060018054610871906127b7565b80601f016020809104026020016040519081016040528092919081815260200182805461089d906127b7565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b6000610901826000541190565b6109635760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610854565b506000908152600560205260409020546001600160a01b031690565b600061098a82610e56565b9050806001600160a01b0316836001600160a01b031614156109f95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610854565b336001600160a01b0382161480610a155750610a15813361076f565b610a875760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610854565b610a928383836118e7565b505050565b6007546001600160a01b03163314610ac15760405162461bcd60e51b8152600401610854906126a1565b600b54811115610b135760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c790000000000006044820152606401610854565b600b55565b610a92838383611943565b6000610b2e83610f2c565b8210610b875760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610854565b600080549080805b83811015610c20576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be257805192505b876001600160a01b0316836001600160a01b03161415610c175786841415610c105750935061082492505050565b6001909301925b50600101610b8f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610854565b6007546001600160a01b03163314610caa5760405162461bcd60e51b8152600401610854906126a1565b604051600090339047908381818185875af1925050503d8060008114610cec576040519150601f19603f3d011682016040523d82523d6000602084013e610cf1565b606091505b5050905080610cff57600080fd5b50565b610a92838383604051806020016040528060008152506115c3565b6007546001600160a01b03163314610d475760405162461bcd60e51b8152600401610854906126a1565b600a55565b600080548210610daa5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610854565b5090565b6007546001600160a01b03163314610dd85760405162461bcd60e51b8152600401610854906126a1565b8051610deb906010906020840190612151565b5050565b6007546001600160a01b03163314610e195760405162461bcd60e51b8152600401610854906126a1565b8051610deb906009906020840190612151565b60118181548110610e3c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610e6182611c28565b5192915050565b6007546001600160a01b03163314610e925760405162461bcd60e51b8152600401610854906126a1565b610a92601183836121d1565b60098054610eab906127b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed7906127b7565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b505050505081565b60006001600160a01b038216610f985760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610854565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610fe75760405162461bcd60e51b8152600401610854906126a1565b610ff16000611cff565b565b606060028054610871906127b7565b6007546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610854906126a1565b8281146110855760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610854565b60008061109160005490565b905060005b858110156110d4578686828181106110b0576110b0612847565b90506020020135836110c29190612729565b92506110cd816127ec565b9050611096565b50600b546110e28383612729565b111561111b5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610854565b6000915060005b838110156111825761117285858381811061113f5761113f612847565b90506020020160208101906111549190612327565b88888481811061116657611166612847565b90506020020135611d51565b61117b816127ec565b9050611122565b50505050505050565b600260085414156111de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600855600054816112215760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610854565b600e548211156112735760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610854565b600b546112808383612729565b11156112c45760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610854565b81600a546112d29190612755565b3410156112de57600080fd5b6112e83383611d51565b50506001600855565b6001600160a01b03821633141561134a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610854565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260085414156114095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600855600080543382526012602052604090912054600d5461142d8483612729565b111561147b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610854565b600083116114b95760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610854565b600c546114c68484612729565b111561150a5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610854565b60005b8381101561154657336000908152601260205260408120805491611530836127ec565b91905055508061153f906127ec565b905061150d565b5061155033611786565b156115645761155f3384611d51565b6115ac565b60405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520616c6c6f776c6973742e0000006044820152606401610854565b5050600160085550565b60108054610eab906127b7565b6115ce848484611943565b6115da84848484611d6b565b6115f65760405162461bcd60e51b8152600401610854906126d6565b50505050565b6007546001600160a01b031633146116265760405162461bcd60e51b8152600401610854906126a1565b600c55565b6060611638826000541190565b61168e5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610854565b600f5460ff1661172a57601080546116a5906127b7565b80601f01602080910402602001604051908101604052809291908181526020018280546116d1906127b7565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b50505050509050919050565b6000611734611e79565b90506000815111611754576040518060200160405280600081525061177f565b8061175e84611e88565b60405160200161176f929190612612565b6040516020818303038152906040525b9392505050565b6000806011548110156117dd57826001600160a01b0316601182815481106117b0576117b0612847565b6000918252602090912001546001600160a01b031614156117d45750600192915050565b50600092915050565b50919050565b6007546001600160a01b0316331461180d5760405162461bcd60e51b8152600401610854906126a1565b600d55565b6007546001600160a01b0316331461183c5760405162461bcd60e51b8152600401610854906126a1565b600f805460ff1916911515919091179055565b6007546001600160a01b031633146118795760405162461bcd60e51b8152600401610854906126a1565b6001600160a01b0381166118de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b610cff81611cff565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061194e82611c28565b80519091506000906001600160a01b0316336001600160a01b0316148061198557503361197a846108f4565b6001600160a01b0316145b8061199757508151611997903361076f565b905080611a015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610854565b846001600160a01b031682600001516001600160a01b031614611a755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610854565b6001600160a01b038416611ad95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610854565b611ae960008484600001516118e7565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611bde57611b91816000541190565b15611bde578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611c47826000541190565b611ca65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610854565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cf5579392505050565b5060001901611ca8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610deb828260405180602001604052806000815250611f86565b60006001600160a01b0384163b15611e6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611daf903390899088908890600401612651565b602060405180830381600087803b158015611dc957600080fd5b505af1925050508015611df9575060408051601f3d908101601f19168201909252611df691810190612567565b60015b611e53573d808015611e27576040519150601f19603f3d011682016040523d82523d6000602084013e611e2c565b606091505b508051611e4b5760405162461bcd60e51b8152600401610854906126d6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e71565b5060015b949350505050565b606060098054610871906127b7565b606081611eac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed65780611ec0816127ec565b9150611ecf9050600a83612741565b9150611eb0565b60008167ffffffffffffffff811115611ef157611ef161285d565b6040519080825280601f01601f191660200182016040528015611f1b576020820181803683370190505b5090505b8415611e7157611f30600183612774565b9150611f3d600a86612807565b611f48906030612729565b60f81b818381518110611f5d57611f5d612847565b60200101906001600160f81b031916908160001a905350611f7f600a86612741565b9450611f1f565b610a9283838360016000546001600160a01b038516611ff15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610854565b8361204f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610854565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121485760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561213c576121206000888488611d6b565b61213c5760405162461bcd60e51b8152600401610854906126d6565b600191820191016120cd565b50600055611c21565b82805461215d906127b7565b90600052602060002090601f01602090048101928261217f57600085556121c5565b82601f1061219857805160ff19168380011785556121c5565b828001600101855582156121c5579182015b828111156121c55782518255916020019190600101906121aa565b50610daa929150612224565b8280548282559060005260206000209081019282156121c5579160200282015b828111156121c55781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121f1565b5b80821115610daa5760008155600101612225565b600067ffffffffffffffff808411156122545761225461285d565b604051601f8501601f19908116603f0116810190828211818310171561227c5761227c61285d565b8160405280935085815286868601111561229557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122c657600080fd5b919050565b60008083601f8401126122dd57600080fd5b50813567ffffffffffffffff8111156122f557600080fd5b6020830191508360208260051b850101111561231057600080fd5b9250929050565b803580151581146122c657600080fd5b60006020828403121561233957600080fd5b61177f826122af565b6000806040838503121561235557600080fd5b61235e836122af565b915061236c602084016122af565b90509250929050565b60008060006060848603121561238a57600080fd5b612393846122af565b92506123a1602085016122af565b9150604084013590509250925092565b600080600080608085870312156123c757600080fd5b6123d0856122af565b93506123de602086016122af565b925060408501359150606085013567ffffffffffffffff81111561240157600080fd5b8501601f8101871361241257600080fd5b61242187823560208401612239565b91505092959194509250565b6000806040838503121561244057600080fd5b612449836122af565b915061236c60208401612317565b6000806040838503121561246a57600080fd5b612473836122af565b946020939093013593505050565b6000806020838503121561249457600080fd5b823567ffffffffffffffff8111156124ab57600080fd5b6124b7858286016122cb565b90969095509350505050565b600080600080604085870312156124d957600080fd5b843567ffffffffffffffff808211156124f157600080fd5b6124fd888389016122cb565b9096509450602087013591508082111561251657600080fd5b50612523878288016122cb565b95989497509550505050565b60006020828403121561254157600080fd5b61177f82612317565b60006020828403121561255c57600080fd5b813561177f81612873565b60006020828403121561257957600080fd5b815161177f81612873565b60006020828403121561259657600080fd5b813567ffffffffffffffff8111156125ad57600080fd5b8201601f810184136125be57600080fd5b611e7184823560208401612239565b6000602082840312156125df57600080fd5b5035919050565b600081518084526125fe81602086016020860161278b565b601f01601f19169290920160200192915050565b6000835161262481846020880161278b565b83519083019061263881836020880161278b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612684908301846125e6565b9695505050505050565b60208152600061177f60208301846125e6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561273c5761273c61281b565b500190565b60008261275057612750612831565b500490565b600081600019048311821515161561276f5761276f61281b565b500290565b6000828210156127865761278661281b565b500390565b60005b838110156127a657818101518382015260200161278e565b838111156115f65750506000910152565b600181811c908216806127cb57607f821691505b602082108114156117dd57634e487b7160e01b600052602260045260246000fd5b60006000198214156128005761280061281b565b5060010190565b60008261281657612816612831565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cff57600080fdfea2646970667358221220837c6c7fd19eed4472d078e6503ce6e411e8a9c349937c68e8f1cc7c222b0a5864736f6c63430008070033697066733a2f2f516d63506b3352724e7268775664765869657152796858673468524c6f46375a324544373435794a6e5a79434b4e2f

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063a4146733116100b6578063ce07c7c81161007a578063ce07c7c8146106de578063d5abeb01146106fe578063dc4e66b514610714578063e0a8085314610734578063e985e9c514610754578063f2fde38b1461079d57600080fd5b8063a414673314610656578063a45ba8e714610669578063b88d4fde1461067e578063bde12d731461069e578063c87b56dd146106be57600080fd5b80637c6b172d116101085780637c6b172d146105a35780638da5cb5b146105d057806395d89b41146105ee57806396ea3a4714610603578063a0712d6814610623578063a22cb4651461063657600080fd5b80636352211e146105195780636447c35d146105395780636c0360eb1461055957806370a082311461056e578063715018a61461058e57600080fd5b80633ccfd60b116101dd5780634fdd43cb116101a15780634fdd43cb1461046a578063518302271461048a57806355f804b3146104a457806356569a1d146104c45780635c975abb146104da57806362a6d197146104f957600080fd5b80633ccfd60b146103ec57806342842e0e146103f457806344a0d68a14610414578063485a68a3146104345780634f6ccce71461044a57600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd14610361578063228025e81461037657806323b872dd146103965780632f745c59146103b657806334c8fd75146103d657600080fd5b806301ffc9a71461026c578063022d67dd146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461254a565b6107bd565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc3660046125cd565b61082a565b005b3480156102cf57600080fd5b506102d8610862565b604051610298919061268e565b3480156102f157600080fd5b506103056103003660046125cd565b6108f4565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004612457565b61097f565b34801561034957600080fd5b50610353600a5481565b604051908152602001610298565b34801561036d57600080fd5b50600054610353565b34801561038257600080fd5b506102c16103913660046125cd565b610a97565b3480156103a257600080fd5b506102c16103b1366004612375565b610b18565b3480156103c257600080fd5b506103536103d1366004612457565b610b23565b3480156103e257600080fd5b50610353600e5481565b6102c1610c80565b34801561040057600080fd5b506102c161040f366004612375565b610d02565b34801561042057600080fd5b506102c161042f3660046125cd565b610d1d565b34801561044057600080fd5b50610353600c5481565b34801561045657600080fd5b506103536104653660046125cd565b610d4c565b34801561047657600080fd5b506102c1610485366004612584565b610dae565b34801561049657600080fd5b50600f5461028c9060ff1681565b3480156104b057600080fd5b506102c16104bf366004612584565b610def565b3480156104d057600080fd5b50610353600d5481565b3480156104e657600080fd5b50600754600160a01b900460ff1661028c565b34801561050557600080fd5b506103056105143660046125cd565b610e2c565b34801561052557600080fd5b506103056105343660046125cd565b610e56565b34801561054557600080fd5b506102c1610554366004612481565b610e68565b34801561056557600080fd5b506102d8610e9e565b34801561057a57600080fd5b50610353610589366004612327565b610f2c565b34801561059a57600080fd5b506102c1610fbd565b3480156105af57600080fd5b506103536105be366004612327565b60126020526000908152604090205481565b3480156105dc57600080fd5b506007546001600160a01b0316610305565b3480156105fa57600080fd5b506102d8610ff3565b34801561060f57600080fd5b506102c161061e3660046124c3565b611002565b6102c16106313660046125cd565b61118b565b34801561064257600080fd5b506102c161065136600461242d565b6112f1565b6102c16106643660046125cd565b6113b6565b34801561067557600080fd5b506102d86115b6565b34801561068a57600080fd5b506102c16106993660046123b1565b6115c3565b3480156106aa57600080fd5b506102c16106b93660046125cd565b6115fc565b3480156106ca57600080fd5b506102d86106d93660046125cd565b61162b565b3480156106ea57600080fd5b5061028c6106f9366004612327565b611786565b34801561070a57600080fd5b50610353600b5481565b34801561072057600080fd5b506102c161072f3660046125cd565b6117e3565b34801561074057600080fd5b506102c161074f36600461252f565b611812565b34801561076057600080fd5b5061028c61076f366004612342565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107a957600080fd5b506102c16107b8366004612327565b61184f565b60006001600160e01b031982166380ac58cd60e01b14806107ee57506001600160e01b03198216635b5e139f60e01b145b8061080957506001600160e01b0319821663780e9d6360e01b145b8061082457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461085d5760405162461bcd60e51b8152600401610854906126a1565b60405180910390fd5b600e55565b606060018054610871906127b7565b80601f016020809104026020016040519081016040528092919081815260200182805461089d906127b7565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b6000610901826000541190565b6109635760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610854565b506000908152600560205260409020546001600160a01b031690565b600061098a82610e56565b9050806001600160a01b0316836001600160a01b031614156109f95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610854565b336001600160a01b0382161480610a155750610a15813361076f565b610a875760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610854565b610a928383836118e7565b505050565b6007546001600160a01b03163314610ac15760405162461bcd60e51b8152600401610854906126a1565b600b54811115610b135760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c790000000000006044820152606401610854565b600b55565b610a92838383611943565b6000610b2e83610f2c565b8210610b875760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610854565b600080549080805b83811015610c20576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be257805192505b876001600160a01b0316836001600160a01b03161415610c175786841415610c105750935061082492505050565b6001909301925b50600101610b8f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610854565b6007546001600160a01b03163314610caa5760405162461bcd60e51b8152600401610854906126a1565b604051600090339047908381818185875af1925050503d8060008114610cec576040519150601f19603f3d011682016040523d82523d6000602084013e610cf1565b606091505b5050905080610cff57600080fd5b50565b610a92838383604051806020016040528060008152506115c3565b6007546001600160a01b03163314610d475760405162461bcd60e51b8152600401610854906126a1565b600a55565b600080548210610daa5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610854565b5090565b6007546001600160a01b03163314610dd85760405162461bcd60e51b8152600401610854906126a1565b8051610deb906010906020840190612151565b5050565b6007546001600160a01b03163314610e195760405162461bcd60e51b8152600401610854906126a1565b8051610deb906009906020840190612151565b60118181548110610e3c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610e6182611c28565b5192915050565b6007546001600160a01b03163314610e925760405162461bcd60e51b8152600401610854906126a1565b610a92601183836121d1565b60098054610eab906127b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed7906127b7565b8015610f245780601f10610ef957610100808354040283529160200191610f24565b820191906000526020600020905b815481529060010190602001808311610f0757829003601f168201915b505050505081565b60006001600160a01b038216610f985760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610854565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610fe75760405162461bcd60e51b8152600401610854906126a1565b610ff16000611cff565b565b606060028054610871906127b7565b6007546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610854906126a1565b8281146110855760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610854565b60008061109160005490565b905060005b858110156110d4578686828181106110b0576110b0612847565b90506020020135836110c29190612729565b92506110cd816127ec565b9050611096565b50600b546110e28383612729565b111561111b5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610854565b6000915060005b838110156111825761117285858381811061113f5761113f612847565b90506020020160208101906111549190612327565b88888481811061116657611166612847565b90506020020135611d51565b61117b816127ec565b9050611122565b50505050505050565b600260085414156111de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600855600054816112215760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610854565b600e548211156112735760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610854565b600b546112808383612729565b11156112c45760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610854565b81600a546112d29190612755565b3410156112de57600080fd5b6112e83383611d51565b50506001600855565b6001600160a01b03821633141561134a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610854565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260085414156114095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600855600080543382526012602052604090912054600d5461142d8483612729565b111561147b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610854565b600083116114b95760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610854565b600c546114c68484612729565b111561150a5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610854565b60005b8381101561154657336000908152601260205260408120805491611530836127ec565b91905055508061153f906127ec565b905061150d565b5061155033611786565b156115645761155f3384611d51565b6115ac565b60405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520616c6c6f776c6973742e0000006044820152606401610854565b5050600160085550565b60108054610eab906127b7565b6115ce848484611943565b6115da84848484611d6b565b6115f65760405162461bcd60e51b8152600401610854906126d6565b50505050565b6007546001600160a01b031633146116265760405162461bcd60e51b8152600401610854906126a1565b600c55565b6060611638826000541190565b61168e5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610854565b600f5460ff1661172a57601080546116a5906127b7565b80601f01602080910402602001604051908101604052809291908181526020018280546116d1906127b7565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b50505050509050919050565b6000611734611e79565b90506000815111611754576040518060200160405280600081525061177f565b8061175e84611e88565b60405160200161176f929190612612565b6040516020818303038152906040525b9392505050565b6000806011548110156117dd57826001600160a01b0316601182815481106117b0576117b0612847565b6000918252602090912001546001600160a01b031614156117d45750600192915050565b50600092915050565b50919050565b6007546001600160a01b0316331461180d5760405162461bcd60e51b8152600401610854906126a1565b600d55565b6007546001600160a01b0316331461183c5760405162461bcd60e51b8152600401610854906126a1565b600f805460ff1916911515919091179055565b6007546001600160a01b031633146118795760405162461bcd60e51b8152600401610854906126a1565b6001600160a01b0381166118de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b610cff81611cff565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061194e82611c28565b80519091506000906001600160a01b0316336001600160a01b0316148061198557503361197a846108f4565b6001600160a01b0316145b8061199757508151611997903361076f565b905080611a015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610854565b846001600160a01b031682600001516001600160a01b031614611a755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610854565b6001600160a01b038416611ad95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610854565b611ae960008484600001516118e7565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611bde57611b91816000541190565b15611bde578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611c47826000541190565b611ca65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610854565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cf5579392505050565b5060001901611ca8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610deb828260405180602001604052806000815250611f86565b60006001600160a01b0384163b15611e6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611daf903390899088908890600401612651565b602060405180830381600087803b158015611dc957600080fd5b505af1925050508015611df9575060408051601f3d908101601f19168201909252611df691810190612567565b60015b611e53573d808015611e27576040519150601f19603f3d011682016040523d82523d6000602084013e611e2c565b606091505b508051611e4b5760405162461bcd60e51b8152600401610854906126d6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e71565b5060015b949350505050565b606060098054610871906127b7565b606081611eac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ed65780611ec0816127ec565b9150611ecf9050600a83612741565b9150611eb0565b60008167ffffffffffffffff811115611ef157611ef161285d565b6040519080825280601f01601f191660200182016040528015611f1b576020820181803683370190505b5090505b8415611e7157611f30600183612774565b9150611f3d600a86612807565b611f48906030612729565b60f81b818381518110611f5d57611f5d612847565b60200101906001600160f81b031916908160001a905350611f7f600a86612741565b9450611f1f565b610a9283838360016000546001600160a01b038516611ff15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610854565b8361204f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610854565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121485760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561213c576121206000888488611d6b565b61213c5760405162461bcd60e51b8152600401610854906126d6565b600191820191016120cd565b50600055611c21565b82805461215d906127b7565b90600052602060002090601f01602090048101928261217f57600085556121c5565b82601f1061219857805160ff19168380011785556121c5565b828001600101855582156121c5579182015b828111156121c55782518255916020019190600101906121aa565b50610daa929150612224565b8280548282559060005260206000209081019282156121c5579160200282015b828111156121c55781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121f1565b5b80821115610daa5760008155600101612225565b600067ffffffffffffffff808411156122545761225461285d565b604051601f8501601f19908116603f0116810190828211818310171561227c5761227c61285d565b8160405280935085815286868601111561229557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122c657600080fd5b919050565b60008083601f8401126122dd57600080fd5b50813567ffffffffffffffff8111156122f557600080fd5b6020830191508360208260051b850101111561231057600080fd5b9250929050565b803580151581146122c657600080fd5b60006020828403121561233957600080fd5b61177f826122af565b6000806040838503121561235557600080fd5b61235e836122af565b915061236c602084016122af565b90509250929050565b60008060006060848603121561238a57600080fd5b612393846122af565b92506123a1602085016122af565b9150604084013590509250925092565b600080600080608085870312156123c757600080fd5b6123d0856122af565b93506123de602086016122af565b925060408501359150606085013567ffffffffffffffff81111561240157600080fd5b8501601f8101871361241257600080fd5b61242187823560208401612239565b91505092959194509250565b6000806040838503121561244057600080fd5b612449836122af565b915061236c60208401612317565b6000806040838503121561246a57600080fd5b612473836122af565b946020939093013593505050565b6000806020838503121561249457600080fd5b823567ffffffffffffffff8111156124ab57600080fd5b6124b7858286016122cb565b90969095509350505050565b600080600080604085870312156124d957600080fd5b843567ffffffffffffffff808211156124f157600080fd5b6124fd888389016122cb565b9096509450602087013591508082111561251657600080fd5b50612523878288016122cb565b95989497509550505050565b60006020828403121561254157600080fd5b61177f82612317565b60006020828403121561255c57600080fd5b813561177f81612873565b60006020828403121561257957600080fd5b815161177f81612873565b60006020828403121561259657600080fd5b813567ffffffffffffffff8111156125ad57600080fd5b8201601f810184136125be57600080fd5b611e7184823560208401612239565b6000602082840312156125df57600080fd5b5035919050565b600081518084526125fe81602086016020860161278b565b601f01601f19169290920160200192915050565b6000835161262481846020880161278b565b83519083019061263881836020880161278b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612684908301846125e6565b9695505050505050565b60208152600061177f60208301846125e6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561273c5761273c61281b565b500190565b60008261275057612750612831565b500490565b600081600019048311821515161561276f5761276f61281b565b500290565b6000828210156127865761278661281b565b500390565b60005b838110156127a657818101518382015260200161278e565b838111156115f65750506000910152565b600181811c908216806127cb57607f821691505b602082108114156117dd57634e487b7160e01b600052602260045260246000fd5b60006000198214156128005761280061281b565b5060010190565b60008261281657612816612831565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cff57600080fdfea2646970667358221220837c6c7fd19eed4472d078e6503ce6e411e8a9c349937c68e8f1cc7c222b0a5864736f6c63430008070033

Deployed Bytecode Sourcemap

45267:4956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24942:372;;;;;;;;;;-1:-1:-1;24942:372:0;;;;;:::i;:::-;;:::i;:::-;;;7872:14:1;;7865:22;7847:41;;7835:2;7820:18;24942:372:0;;;;;;;;49645:122;;;;;;;;;;-1:-1:-1;49645:122:0;;;;;:::i;:::-;;:::i;:::-;;26828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28390:214::-;;;;;;;;;;-1:-1:-1;28390:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7170:32:1;;;7152:51;;7140:2;7125:18;28390:214:0;7006:203:1;27911:413:0;;;;;;;;;;-1:-1:-1;27911:413:0;;;;;:::i;:::-;;:::i;45463:33::-;;;;;;;;;;;;;;;;;;;19173:25:1;;;19161:2;19146:18;45463:33:0;19027:177:1;23199:100:0;;;;;;;;;;-1:-1:-1;23252:7:0;23279:12;23199:100;;48972:182;;;;;;;;;;-1:-1:-1;48972:182:0;;;;;:::i;:::-;;:::i;29266:162::-;;;;;;;;;;-1:-1:-1;29266:162:0;;;;;:::i;:::-;;:::i;23863:1007::-;;;;;;;;;;-1:-1:-1;23863:1007:0;;;;;:::i;:::-;;:::i;45625:42::-;;;;;;;;;;;;;;;;49901:319;;;:::i;29499:177::-;;;;;;;;;;-1:-1:-1;29499:177:0;;;;;:::i;:::-;;:::i;48487:86::-;;;;;;;;;;-1:-1:-1;48487:86:0;;;;;:::i;:::-;;:::i;45541:29::-;;;;;;;;;;;;;;;;23376:187;;;;;;;;;;-1:-1:-1;23376:187:0;;;;;:::i;:::-;;:::i;49499:138::-;;;;;;;;;;-1:-1:-1;49499:138:0;;;;;:::i;:::-;;:::i;45674:28::-;;;;;;;;;;-1:-1:-1;45674:28:0;;;;;;;;49292:104;;;;;;;;;;-1:-1:-1;49292:104:0;;;;;:::i;:::-;;:::i;45577:41::-;;;;;;;;;;;;;;;;39116:86;;;;;;;;;;-1:-1:-1;39187:7:0;;-1:-1:-1;;;39187:7:0;;;;39116:86;;45747:26;;;;;;;;;;-1:-1:-1;45747:26:0;;;;;:::i;:::-;;:::i;26637:124::-;;;;;;;;;;-1:-1:-1;26637:124:0;;;;;:::i;:::-;;:::i;48581:108::-;;;;;;;;;;-1:-1:-1;48581:108:0;;;;;:::i;:::-;;:::i;45376:80::-;;;;;;;;;;;;;:::i;25378:221::-;;;;;;;;;;-1:-1:-1;25378:221:0;;;;;:::i;:::-;;:::i;41933:94::-;;;;;;;;;;;;;:::i;45782:59::-;;;;;;;;;;-1:-1:-1;45782:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;41282:87;;;;;;;;;;-1:-1:-1;41355:6:0;;-1:-1:-1;;;;;41355:6:0;41282:87;;26997:104;;;;;;;;;;;;;:::i;47261:667::-;;;;;;;;;;-1:-1:-1;47261:667:0;;;;;:::i;:::-;;:::i;46820:433::-;;;;;;:::i;:::-;;:::i;28676:288::-;;;;;;;;;;-1:-1:-1;28676:288:0;;;;;:::i;:::-;;:::i;46059:751::-;;;;;;:::i;:::-;;:::i;45709:31::-;;;;;;;;;;;;;:::i;29747:355::-;;;;;;;;;;-1:-1:-1;29747:355:0;;;;;:::i;:::-;;:::i;49161:123::-;;;;;;;;;;-1:-1:-1;49161:123:0;;;;;:::i;:::-;;:::i;47936:543::-;;;;;;;;;;-1:-1:-1;47936:543:0;;;;;:::i;:::-;;:::i;48697:267::-;;;;;;;;;;-1:-1:-1;48697:267:0;;;;;:::i;:::-;;:::i;45503:31::-;;;;;;;;;;;;;;;;49775:118;;;;;;;;;;-1:-1:-1;49775:118:0;;;;;:::i;:::-;;:::i;49404:87::-;;;;;;;;;;-1:-1:-1;49404:87:0;;;;;:::i;:::-;;:::i;29035:164::-;;;;;;;;;;-1:-1:-1;29035:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29156:25:0;;;29132:4;29156:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29035:164;42182:229;;;;;;;;;;-1:-1:-1;42182:229:0;;;;;:::i;:::-;;:::i;24942:372::-;25044:4;-1:-1:-1;;;;;;25081:40:0;;-1:-1:-1;;;25081:40:0;;:105;;-1:-1:-1;;;;;;;25138:48:0;;-1:-1:-1;;;25138:48:0;25081:105;:172;;;-1:-1:-1;;;;;;;25203:50:0;;-1:-1:-1;;;25203:50:0;25081:172;:225;;;-1:-1:-1;;;;;;;;;;14571:40:0;;;25270:36;25061:245;24942:372;-1:-1:-1;;24942:372:0:o;49645:122::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;;;;;;;;;49726:23:::1;:33:::0;49645:122::o;26828:100::-;26882:13;26915:5;26908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26828:100;:::o;28390:214::-;28458:7;28486:16;28494:7;30414:4;30448:12;-1:-1:-1;30438:22:0;30357:111;28486:16;28478:74;;;;-1:-1:-1;;;28478:74:0;;18815:2:1;28478:74:0;;;18797:21:1;18854:2;18834:18;;;18827:30;18893:34;18873:18;;;18866:62;-1:-1:-1;;;18944:18:1;;;18937:43;18997:19;;28478:74:0;18613:409:1;28478:74:0;-1:-1:-1;28572:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28572:24:0;;28390:214::o;27911:413::-;27984:13;28000:24;28016:7;28000:15;:24::i;:::-;27984:40;;28049:5;-1:-1:-1;;;;;28043:11:0;:2;-1:-1:-1;;;;;28043:11:0;;;28035:58;;;;-1:-1:-1;;;28035:58:0;;15634:2:1;28035:58:0;;;15616:21:1;15673:2;15653:18;;;15646:30;15712:34;15692:18;;;15685:62;-1:-1:-1;;;15763:18:1;;;15756:32;15805:19;;28035:58:0;15432:398:1;28035:58:0;2989:10;-1:-1:-1;;;;;28128:21:0;;;;:62;;-1:-1:-1;28153:37:0;28170:5;2989:10;29035:164;:::i;28153:37::-;28106:169;;;;-1:-1:-1;;;28106:169:0;;12215:2:1;28106:169:0;;;12197:21:1;12254:2;12234:18;;;12227:30;12293:34;12273:18;;;12266:62;12364:27;12344:18;;;12337:55;12409:19;;28106:169:0;12013:421:1;28106:169:0;28288:28;28297:2;28301:7;28310:5;28288:8;:28::i;:::-;27973:351;27911:413;;:::o;48972:182::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;49070:9:::1;;49053:13;:26;;49045:65;;;::::0;-1:-1:-1;;;49045:65:0;;12641:2:1;49045:65:0::1;::::0;::::1;12623:21:1::0;12680:2;12660:18;;;12653:30;12719:28;12699:18;;;12692:56;12765:18;;49045:65:0::1;12439:350:1::0;49045:65:0::1;49121:9;:25:::0;48972:182::o;29266:162::-;29392:28;29402:4;29408:2;29412:7;29392:9;:28::i;23863:1007::-;23952:7;23988:16;23998:5;23988:9;:16::i;:::-;23980:5;:24;23972:71;;;;-1:-1:-1;;;23972:71:0;;8325:2:1;23972:71:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;-1:-1:-1;;;8454:18:1;;;8447:32;8496:19;;23972:71:0;8123:398:1;23972:71:0;24054:22;23279:12;;;24054:22;;24317:466;24337:14;24333:1;:18;24317:466;;;24377:31;24411:14;;;:11;:14;;;;;;;;;24377:48;;;;;;;;;-1:-1:-1;;;;;24377:48:0;;;;;-1:-1:-1;;;24377:48:0;;;;;;;;;;;;24448:28;24444:111;;24521:14;;;-1:-1:-1;24444:111:0;24598:5;-1:-1:-1;;;;;24577:26:0;:17;-1:-1:-1;;;;;24577:26:0;;24573:195;;;24647:5;24632:11;:20;24628:85;;;-1:-1:-1;24688:1:0;-1:-1:-1;24681:8:0;;-1:-1:-1;;;24681:8:0;24628:85;24735:13;;;;;24573:195;-1:-1:-1;24353:3:0;;24317:466;;;-1:-1:-1;24806:56:0;;-1:-1:-1;;;24806:56:0;;17624:2:1;24806:56:0;;;17606:21:1;17663:2;17643:18;;;17636:30;17702:34;17682:18;;;17675:62;-1:-1:-1;;;17753:18:1;;;17746:44;17807:19;;24806:56:0;17422:410:1;49901:319:0;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;50129:58:::1;::::0;50116:7:::1;::::0;50137:10:::1;::::0;50161:21:::1;::::0;50116:7;50129:58;50116:7;50129:58;50161:21;50137:10;50129:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50115:72;;;50206:2;50198:11;;;::::0;::::1;;49946:274;49901:319::o:0;29499:177::-;29629:39;29646:4;29652:2;29656:7;29629:39;;;;;;;;;;;;:16;:39::i;48487:86::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;48550:4:::1;:15:::0;48487:86::o;23376:187::-;23443:7;23279:12;;23471:5;:21;23463:69;;;;-1:-1:-1;;;23463:69:0;;10645:2:1;23463:69:0;;;10627:21:1;10684:2;10664:18;;;10657:30;10723:34;10703:18;;;10696:62;-1:-1:-1;;;10774:18:1;;;10767:33;10817:19;;23463:69:0;10443:399:1;23463:69:0;-1:-1:-1;23550:5:0;23376:187::o;49499:138::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;49591:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49499:138:::0;:::o;49292:104::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;49367:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;45747:26::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45747:26:0;;-1:-1:-1;45747:26:0;:::o;26637:124::-;26701:7;26728:20;26740:7;26728:11;:20::i;:::-;:25;;26637:124;-1:-1:-1;;26637:124:0:o;48581:108::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;48660:21:::1;:9;48672::::0;;48660:21:::1;:::i;45376:80::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25378:221::-;25442:7;-1:-1:-1;;;;;25470:19:0;;25462:75;;;;-1:-1:-1;;;25462:75:0;;12996:2:1;25462:75:0;;;12978:21:1;13035:2;13015:18;;;13008:30;13074:34;13054:18;;;13047:62;-1:-1:-1;;;13125:18:1;;;13118:41;13176:19;;25462:75:0;12794:407:1;25462:75:0;-1:-1:-1;;;;;;25563:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25563:27:0;;25378:221::o;41933:94::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;41998:21:::1;42016:1;41998:9;:21::i;:::-;41933:94::o:0;26997:104::-;27053:13;27086:7;27079:14;;;;;:::i;47261:667::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;47409:35;;::::1;47387:118;;;::::0;-1:-1:-1;;;47387:118:0;;11813:2:1;47387:118:0::1;::::0;::::1;11795:21:1::0;11852:2;11832:18;;;11825:30;11891:34;11871:18;;;11864:62;-1:-1:-1;;;11942:18:1;;;11935:31;11983:19;;47387:118:0::1;11611:397:1::0;47387:118:0::1;47516:21;47552:9:::0;47564:13:::1;23252:7:::0;23279:12;;23199:100;47564:13:::1;47552:25;;47593:9;47588:101;47608:19:::0;;::::1;47588:101;;;47666:8;;47675:1;47666:11;;;;;;;:::i;:::-;;;;;;;47649:28;;;;;:::i;:::-;::::0;-1:-1:-1;47629:3:0::1;::::0;::::1;:::i;:::-;;;47588:101;;;-1:-1:-1::0;47728:9:0::1;::::0;47707:17:::1;47711:13:::0;47707:1;:17:::1;:::i;:::-;:30;;47699:51;;;::::0;-1:-1:-1;;;47699:51:0;;14163:2:1;47699:51:0::1;::::0;::::1;14145:21:1::0;14202:1;14182:18;;;14175:29;-1:-1:-1;;;14220:18:1;;;14213:38;14268:18;;47699:51:0::1;13961:331:1::0;47699:51:0::1;47761:20;;;47797:9;47792:110;47812:20:::0;;::::1;47792:110;;;47854:36;47864:9;;47874:1;47864:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47878:8;;47887:1;47878:11;;;;;;;:::i;:::-;;;;;;;47854:9;:36::i;:::-;47834:3;::::0;::::1;:::i;:::-;;;47792:110;;;-1:-1:-1::0;;;;;;;47261:667:0:o;46820:433::-;44277:1;44873:7;;:19;;44865:63;;;;-1:-1:-1;;;44865:63:0;;18039:2:1;44865:63:0;;;18021:21:1;18078:2;18058:18;;;18051:30;18117:33;18097:18;;;18090:61;18168:18;;44865:63:0;17837:355:1;44865:63:0;44277:1;45006:7;:18;46894:9:::1;23279:12:::0;46938:15;46930:39:::1;;;::::0;-1:-1:-1;;;46930:39:0;;8728:2:1;46930:39:0::1;::::0;::::1;8710:21:1::0;8767:2;8747:18;;;8740:30;-1:-1:-1;;;8786:18:1;;;8779:41;8837:18;;46930:39:0::1;8526:335:1::0;46930:39:0::1;47003:23;;46988:11;:38;;46980:79;;;::::0;-1:-1:-1;;;46980:79:0;;16457:2:1;46980:79:0::1;::::0;::::1;16439:21:1::0;16496:2;16476:18;;;16469:30;16535:29;16515:18;;;16508:57;16582:18;;46980:79:0::1;16255:351:1::0;46980:79:0::1;47097:9;::::0;47078:15:::1;47082:11:::0;47078:1;:15:::1;:::i;:::-;:28;;47070:60;;;::::0;-1:-1:-1;;;47070:60:0;;13408:2:1;47070:60:0::1;::::0;::::1;13390:21:1::0;13447:2;13427:18;;;13420:30;-1:-1:-1;;;13466:18:1;;;13459:49;13525:18;;47070:60:0::1;13206:343:1::0;47070:60:0::1;47169:11;47162:4;;:18;;;;:::i;:::-;47149:9;:31;;47141:40;;;::::0;::::1;;47192:34;47202:10;47214:11;47192:9;:34::i;:::-;-1:-1:-1::0;;44233:1:0;45185:7;:22;46820:433::o;28676:288::-;-1:-1:-1;;;;;28771:24:0;;2989:10;28771:24;;28763:63;;;;-1:-1:-1;;;28763:63:0;;14860:2:1;28763:63:0;;;14842:21:1;14899:2;14879:18;;;14872:30;14938:28;14918:18;;;14911:56;14984:18;;28763:63:0;14658:350:1;28763:63:0;2989:10;28839:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28839:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28839:53:0;;;;;;;;;;28908:48;;7847:41:1;;;28839:42:0;;2989:10;28908:48;;7820:18:1;28908:48:0;;;;;;;28676:288;;:::o;46059:751::-;44277:1;44873:7;;:19;;44865:63;;;;-1:-1:-1;;;44865:63:0;;18039:2:1;44865:63:0;;;18021:21:1;18078:2;18058:18;;;18051:30;18117:33;18097:18;;;18090:61;18168:18;;44865:63:0;17837:355:1;44865:63:0;44277:1;45006:7;:18;46130:9:::1;23279:12:::0;;46224:10:::1;46199:36:::0;;:24:::1;:36;::::0;;;;;;46294:22:::1;::::0;46254:36:::1;46279:11:::0;46199:36;46254::::1;:::i;:::-;:62;;46246:103;;;::::0;-1:-1:-1;;;46246:103:0;;10288:2:1;46246:103:0::1;::::0;::::1;10270:21:1::0;10327:2;10307:18;;;10300:30;10366;10346:18;;;10339:58;10414:18;;46246:103:0::1;10086:352:1::0;46246:103:0::1;46376:1;46362:11;:15;46354:40;;;::::0;-1:-1:-1;;;46354:40:0;;8728:2:1;46354:40:0::1;::::0;::::1;8710:21:1::0;8767:2;8747:18;;;8740:30;-1:-1:-1;;;8786:18:1;;;8779:41;8837:18;;46354:40:0::1;8526:335:1::0;46354:40:0::1;46426:7;::::0;46407:15:::1;46411:11:::0;46407:1;:15:::1;:::i;:::-;:26;;46399:59;;;::::0;-1:-1:-1;;;46399:59:0;;13408:2:1;46399:59:0::1;::::0;::::1;13390:21:1::0;13447:2;13427:18;;;13420:30;-1:-1:-1;;;13466:18:1;;;13459:49;13525:18;;46399:59:0::1;13206:343:1::0;46399:59:0::1;46470:9;46465:103;46489:11;46485:1;:15;46465:103;;;46547:10;46522:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;46502:3;;;;:::i;:::-;;;46465:103;;;;46583:26;46598:10;46583:14;:26::i;:::-;46580:171;;;46625:34;46635:10;46647:11;46625:9;:34::i;:::-;46580:171;;;46700:39;::::0;-1:-1:-1;;;46700:39:0;;11455:2:1;46700:39:0::1;::::0;::::1;11437:21:1::0;11494:2;11474:18;;;11467:30;11533:31;11513:18;;;11506:59;11582:18;;46700:39:0::1;11253:353:1::0;46580:171:0::1;-1:-1:-1::0;;44233:1:0;45185:7;:22;-1:-1:-1;46059:751:0:o;45709:31::-;;;;;;;:::i;29747:355::-;29906:28;29916:4;29922:2;29926:7;29906:9;:28::i;:::-;29967:48;29990:4;29996:2;30000:7;30009:5;29967:22;:48::i;:::-;29945:149;;;;-1:-1:-1;;;29945:149:0;;;;;;;:::i;:::-;29747:355;;;;:::o;49161:123::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;49249:7:::1;:27:::0;49161:123::o;47936:543::-;48054:13;48093:16;48101:7;30414:4;30448:12;-1:-1:-1;30438:22:0;30357:111;48093:16;48085:62;;;;-1:-1:-1;;;48085:62:0;;9068:2:1;48085:62:0;;;9050:21:1;9107:2;9087:18;;;9080:30;9146:34;9126:18;;;9119:62;-1:-1:-1;;;9197:18:1;;;9190:31;9238:19;;48085:62:0;8866:397:1;48085:62:0;48164:8;;;;48160:74;;48205:17;48198:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47936:543;;;:::o;48160:74::-;48256:28;48287:10;:8;:10::i;:::-;48256:41;;48359:1;48334:14;48328:28;:32;:143;;;;;;;;;;;;;;;;;48404:14;48420:18;:7;:16;:18::i;:::-;48387:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48328:143;48308:163;47936:543;-1:-1:-1;;;47936:543:0:o;48697:267::-;48760:4;;48801:9;:16;48797:20;;48778:179;;;48858:8;-1:-1:-1;;;;;48842:24:0;:9;48852:1;48842:12;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;48842:12:0;:24;48839:75;;;-1:-1:-1;48893:4:0;;48697:267;-1:-1:-1;;48697:267:0:o;48839:75::-;-1:-1:-1;48939:5:0;;48697:267;-1:-1:-1;;48697:267:0:o;48778:179::-;;48697:267;;;:::o;49775:118::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;49853:22:::1;:32:::0;49775:118::o;49404:87::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;49466:8:::1;:17:::0;;-1:-1:-1;;49466:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49404:87::o;42182:229::-;41355:6;;-1:-1:-1;;;;;41355:6:0;2989:10;41502:23;41494:68;;;;-1:-1:-1;;;41494:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42285:22:0;::::1;42263:110;;;::::0;-1:-1:-1;;;42263:110:0;;9470:2:1;42263:110:0::1;::::0;::::1;9452:21:1::0;9509:2;9489:18;;;9482:30;9548:34;9528:18;;;9521:62;-1:-1:-1;;;9599:18:1;;;9592:36;9645:19;;42263:110:0::1;9268:402:1::0;42263:110:0::1;42384:19;42394:8;42384:9;:19::i;35277:196::-:0;35392:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35392:29:0;-1:-1:-1;;;;;35392:29:0;;;;;;;;;35437:28;;35392:24;;35437:28;;;;;;;35277:196;;;:::o;33157:2002::-;33272:35;33310:20;33322:7;33310:11;:20::i;:::-;33385:18;;33272:58;;-1:-1:-1;33343:22:0;;-1:-1:-1;;;;;33369:34:0;2989:10;-1:-1:-1;;;;;33369:34:0;;:87;;;-1:-1:-1;2989:10:0;33420:20;33432:7;33420:11;:20::i;:::-;-1:-1:-1;;;;;33420:36:0;;33369:87;:154;;;-1:-1:-1;33490:18:0;;33473:50;;2989:10;29035:164;:::i;33473:50::-;33343:181;;33545:17;33537:80;;;;-1:-1:-1;;;33537:80:0;;15215:2:1;33537:80:0;;;15197:21:1;15254:2;15234:18;;;15227:30;15293:34;15273:18;;;15266:62;-1:-1:-1;;;15344:18:1;;;15337:48;15402:19;;33537:80:0;15013:414:1;33537:80:0;33660:4;-1:-1:-1;;;;;33638:26:0;:13;:18;;;-1:-1:-1;;;;;33638:26:0;;33630:77;;;;-1:-1:-1;;;33630:77:0;;13756:2:1;33630:77:0;;;13738:21:1;13795:2;13775:18;;;13768:30;13834:34;13814:18;;;13807:62;-1:-1:-1;;;13885:18:1;;;13878:36;13931:19;;33630:77:0;13554:402:1;33630:77:0;-1:-1:-1;;;;;33726:16:0;;33718:66;;;;-1:-1:-1;;;33718:66:0;;11049:2:1;33718:66:0;;;11031:21:1;11088:2;11068:18;;;11061:30;11127:34;11107:18;;;11100:62;-1:-1:-1;;;11178:18:1;;;11171:35;11223:19;;33718:66:0;10847:401:1;33718:66:0;33905:49;33922:1;33926:7;33935:13;:18;;;33905:8;:49::i;:::-;-1:-1:-1;;;;;34250:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34250:31:0;;;-1:-1:-1;;;;;34250:31:0;;;-1:-1:-1;;34250:31:0;;;;;;;34296:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34296:29:0;;;;;;;;;;;;;34342:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34387:61:0;;;;-1:-1:-1;;;34432:15:0;34387:61;;;;;;34722:11;;;34752:24;;;;;:29;34722:11;;34752:29;34748:295;;34820:20;34828:11;30414:4;30448:12;-1:-1:-1;30438:22:0;30357:111;34820:20;34816:212;;;34897:18;;;34865:24;;;:11;:24;;;;;;;;:50;;34980:28;;;;34938:70;;-1:-1:-1;;;34938:70:0;-1:-1:-1;;;;;;34938:70:0;;;-1:-1:-1;;;;;34865:50:0;;;34938:70;;;;;;;34816:212;34225:829;35090:7;35086:2;-1:-1:-1;;;;;35071:27:0;35080:4;-1:-1:-1;;;;;35071:27:0;;;;;;;;;;;35109:42;33261:1898;;33157:2002;;;:::o;26038:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26141:16:0;26149:7;30414:4;30448:12;-1:-1:-1;30438:22:0;30357:111;26141:16;26133:71;;;;-1:-1:-1;;;26133:71:0;;9877:2:1;26133:71:0;;;9859:21:1;9916:2;9896:18;;;9889:30;9955:34;9935:18;;;9928:62;-1:-1:-1;;;10006:18:1;;;9999:40;10056:19;;26133:71:0;9675:406:1;26133:71:0;26262:7;26242:245;26309:31;26343:17;;;:11;:17;;;;;;;;;26309:51;;;;;;;;;-1:-1:-1;;;;;26309:51:0;;;;;-1:-1:-1;;;26309:51:0;;;;;;;;;;;;26383:28;26379:93;;26443:9;26038:537;-1:-1:-1;;;26038:537:0:o;26379:93::-;-1:-1:-1;;;26282:6:0;26242:245;;42419:173;42494:6;;;-1:-1:-1;;;;;42511:17:0;;;-1:-1:-1;;;;;;42511:17:0;;;;;;;42544:40;;42494:6;;;42511:17;42494:6;;42544:40;;42475:16;;42544:40;42464:128;42419:173;:::o;30476:104::-;30545:27;30555:2;30559:8;30545:27;;;;;;;;;;;;:9;:27::i;36038:804::-;36193:4;-1:-1:-1;;;;;36214:13:0;;4651:19;:23;36210:625;;36250:72;;-1:-1:-1;;;36250:72:0;;-1:-1:-1;;;;;36250:36:0;;;;;:72;;2989:10;;36301:4;;36307:7;;36316:5;;36250:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36250:72:0;;;;;;;;-1:-1:-1;;36250:72:0;;;;;;;;;;;;:::i;:::-;;;36246:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36496:13:0;;36492:273;;36539:61;;-1:-1:-1;;;36539:61:0;;;;;;;:::i;36492:273::-;36715:6;36709:13;36700:6;36696:2;36692:15;36685:38;36246:534;-1:-1:-1;;;;;;36373:55:0;-1:-1:-1;;;36373:55:0;;-1:-1:-1;36366:62:0;;36210:625;-1:-1:-1;36819:4:0;36210:625;36038:804;;;;;;:::o;45943:108::-;46003:13;46036:7;46029:14;;;;;:::i;471:723::-;527:13;748:10;744:53;;-1:-1:-1;;775:10:0;;;;;;;;;;;;-1:-1:-1;;;775:10:0;;;;;471:723::o;744:53::-;822:5;807:12;863:78;870:9;;863:78;;896:8;;;;:::i;:::-;;-1:-1:-1;919:10:0;;-1:-1:-1;927:2:0;919:10;;:::i;:::-;;;863:78;;;951:19;983:6;973:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;973:17:0;;951:39;;1001:154;1008:10;;1001:154;;1035:11;1045:1;1035:11;;:::i;:::-;;-1:-1:-1;1104:10:0;1112:2;1104:5;:10;:::i;:::-;1091:24;;:2;:24;:::i;:::-;1078:39;;1061:6;1068;1061:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1061:56:0;;;;;;;;-1:-1:-1;1132:11:0;1141:2;1132:11;;:::i;:::-;;;1001:154;;30943:163;31066:32;31072:2;31076:8;31086:5;31093:4;31504:20;31527:12;-1:-1:-1;;;;;31558:16:0;;31550:62;;;;-1:-1:-1;;;31550:62:0;;16813:2:1;31550:62:0;;;16795:21:1;16852:2;16832:18;;;16825:30;16891:34;16871:18;;;16864:62;-1:-1:-1;;;16942:18:1;;;16935:31;16983:19;;31550:62:0;16611:397:1;31550:62:0;31631:13;31623:66;;;;-1:-1:-1;;;31623:66:0;;17215:2:1;31623:66:0;;;17197:21:1;17254:2;17234:18;;;17227:30;17293:34;17273:18;;;17266:62;-1:-1:-1;;;17344:18:1;;;17337:38;17392:19;;31623:66:0;17013:404:1;31623:66:0;-1:-1:-1;;;;;32041:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;32041:45:0;;-1:-1:-1;;;;;32041:45:0;;;;;;;;;;32101:50;;;;;;;;;;;;;;32168:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32218:66:0;;;;-1:-1:-1;;;32268:15:0;32218:66;;;;;;;32168:25;;32353:415;32373:8;32369:1;:12;32353:415;;;32412:38;;32437:12;;-1:-1:-1;;;;;32412:38:0;;;32429:1;;32412:38;;32429:1;;32412:38;32473:4;32469:249;;;32536:59;32567:1;32571:2;32575:12;32589:5;32536:22;:59::i;:::-;32502:196;;;;-1:-1:-1;;;32502:196:0;;;;;;;:::i;:::-;32738:14;;;;;32383:3;32353:415;;;-1:-1:-1;32784:12:0;:27;32835:60;29747:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;2581:18;2573:6;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:437::-;3429:6;3437;3490:2;3478:9;3469:7;3465:23;3461:32;3458:52;;;3506:1;3503;3496:12;3458:52;3546:9;3533:23;3579:18;3571:6;3568:30;3565:50;;;3611:1;3608;3601:12;3565:50;3650:70;3712:7;3703:6;3692:9;3688:22;3650:70;:::i;:::-;3739:8;;3624:96;;-1:-1:-1;3343:437:1;-1:-1:-1;;;;3343:437:1:o;3785:773::-;3907:6;3915;3923;3931;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4040:9;4027:23;4069:18;4110:2;4102:6;4099:14;4096:34;;;4126:1;4123;4116:12;4096:34;4165:70;4227:7;4218:6;4207:9;4203:22;4165:70;:::i;:::-;4254:8;;-1:-1:-1;4139:96:1;-1:-1:-1;4342:2:1;4327:18;;4314:32;;-1:-1:-1;4358:16:1;;;4355:36;;;4387:1;4384;4377:12;4355:36;;4426:72;4490:7;4479:8;4468:9;4464:24;4426:72;:::i;:::-;3785:773;;;;-1:-1:-1;4517:8:1;-1:-1:-1;;;;3785:773:1:o;4563:180::-;4619:6;4672:2;4660:9;4651:7;4647:23;4643:32;4640:52;;;4688:1;4685;4678:12;4640:52;4711:26;4727:9;4711:26;:::i;4748:245::-;4806:6;4859:2;4847:9;4838:7;4834:23;4830:32;4827:52;;;4875:1;4872;4865:12;4827:52;4914:9;4901:23;4933:30;4957:5;4933:30;:::i;4998:249::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;5168:9;5162:16;5187:30;5211:5;5187:30;:::i;5252:450::-;5321:6;5374:2;5362:9;5353:7;5349:23;5345:32;5342:52;;;5390:1;5387;5380:12;5342:52;5430:9;5417:23;5463:18;5455:6;5452:30;5449:50;;;5495:1;5492;5485:12;5449:50;5518:22;;5571:4;5563:13;;5559:27;-1:-1:-1;5549:55:1;;5600:1;5597;5590:12;5549:55;5623:73;5688:7;5683:2;5670:16;5665:2;5661;5657:11;5623:73;:::i;5707:180::-;5766:6;5819:2;5807:9;5798:7;5794:23;5790:32;5787:52;;;5835:1;5832;5825:12;5787:52;-1:-1:-1;5858:23:1;;5707:180;-1:-1:-1;5707:180:1:o;5892:257::-;5933:3;5971:5;5965:12;5998:6;5993:3;5986:19;6014:63;6070:6;6063:4;6058:3;6054:14;6047:4;6040:5;6036:16;6014:63;:::i;:::-;6131:2;6110:15;-1:-1:-1;;6106:29:1;6097:39;;;;6138:4;6093:50;;5892:257;-1:-1:-1;;5892:257:1:o;6154:637::-;6434:3;6472:6;6466:13;6488:53;6534:6;6529:3;6522:4;6514:6;6510:17;6488:53;:::i;:::-;6604:13;;6563:16;;;;6626:57;6604:13;6563:16;6660:4;6648:17;;6626:57;:::i;:::-;-1:-1:-1;;;6705:20:1;;6734:22;;;6783:1;6772:13;;6154:637;-1:-1:-1;;;;6154:637:1:o;7214:488::-;-1:-1:-1;;;;;7483:15:1;;;7465:34;;7535:15;;7530:2;7515:18;;7508:43;7582:2;7567:18;;7560:34;;;7630:3;7625:2;7610:18;;7603:31;;;7408:4;;7651:45;;7676:19;;7668:6;7651:45;:::i;:::-;7643:53;7214:488;-1:-1:-1;;;;;;7214:488:1:o;7899:219::-;8048:2;8037:9;8030:21;8011:4;8068:44;8108:2;8097:9;8093:18;8085:6;8068:44;:::i;14297:356::-;14499:2;14481:21;;;14518:18;;;14511:30;14577:34;14572:2;14557:18;;14550:62;14644:2;14629:18;;14297:356::o;15835:415::-;16037:2;16019:21;;;16076:2;16056:18;;;16049:30;16115:34;16110:2;16095:18;;16088:62;-1:-1:-1;;;16181:2:1;16166:18;;16159:49;16240:3;16225:19;;15835:415::o;19209:128::-;19249:3;19280:1;19276:6;19273:1;19270:13;19267:39;;;19286:18;;:::i;:::-;-1:-1:-1;19322:9:1;;19209:128::o;19342:120::-;19382:1;19408;19398:35;;19413:18;;:::i;:::-;-1:-1:-1;19447:9:1;;19342:120::o;19467:168::-;19507:7;19573:1;19569;19565:6;19561:14;19558:1;19555:21;19550:1;19543:9;19536:17;19532:45;19529:71;;;19580:18;;:::i;:::-;-1:-1:-1;19620:9:1;;19467:168::o;19640:125::-;19680:4;19708:1;19705;19702:8;19699:34;;;19713:18;;:::i;:::-;-1:-1:-1;19750:9:1;;19640:125::o;19770:258::-;19842:1;19852:113;19866:6;19863:1;19860:13;19852:113;;;19942:11;;;19936:18;19923:11;;;19916:39;19888:2;19881:10;19852:113;;;19983:6;19980:1;19977:13;19974:48;;;-1:-1:-1;;20018:1:1;20000:16;;19993:27;19770:258::o;20033:380::-;20112:1;20108:12;;;;20155;;;20176:61;;20230:4;20222:6;20218:17;20208:27;;20176:61;20283:2;20275:6;20272:14;20252:18;20249:38;20246:161;;;20329:10;20324:3;20320:20;20317:1;20310:31;20364:4;20361:1;20354:15;20392:4;20389:1;20382:15;20418:135;20457:3;-1:-1:-1;;20478:17:1;;20475:43;;;20498:18;;:::i;:::-;-1:-1:-1;20545:1:1;20534:13;;20418:135::o;20558:112::-;20590:1;20616;20606:35;;20621:18;;:::i;:::-;-1:-1:-1;20655:9:1;;20558:112::o;20675:127::-;20736:10;20731:3;20727:20;20724:1;20717:31;20767:4;20764:1;20757:15;20791:4;20788:1;20781:15;20807:127;20868:10;20863:3;20859:20;20856:1;20849:31;20899:4;20896:1;20889:15;20923:4;20920:1;20913:15;20939:127;21000:10;20995:3;20991:20;20988:1;20981:31;21031:4;21028:1;21021:15;21055:4;21052:1;21045:15;21071:127;21132:10;21127:3;21123:20;21120:1;21113:31;21163:4;21160:1;21153:15;21187:4;21184:1;21177:15;21203:131;-1:-1:-1;;;;;;21277:32:1;;21267:43;;21257:71;;21324:1;21321;21314:12

Swarm Source

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