ETH Price: $3,104.52 (-6.03%)
Gas: 11 Gwei

Token

Reigning Bears Lounge Club (RBLC)
 

Overview

Max Total Supply

717 RBLC

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RBLC
0x90d12e789e8b2fcb921542006a73ecad3c50b19f
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:
ReigningBearsLoungeClub

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-05-27
*/

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


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);
    }
}




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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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




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);
            }
        }
    }
}


pragma solidity ^0.8.0;

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



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);
}




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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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




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);
}


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);
}


pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * 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) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        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++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
        return tokenIdsIdx;
    }

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

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

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

    /**
     * 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) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

        revert UnableDetermineTokenOwner();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 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 && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                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()));

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                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 TransferToNonERC721ReceiverImplementer();
                else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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 {}
}


pragma solidity ^0.8.0;


contract ReigningBearsLoungeClub is ERC721A, Ownable{
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 4888;
    uint256 public constant MAX_PUBLIC_MINT = 10;
    uint256 public constant MAX_WHITELIST_MINT = 5;
    uint256 public constant PUBLIC_SALE_PRICE = 0.06 ether;
    uint256 public constant WHITELIST_SALE_PRICE = 0.04 ether;

    string private  baseTokenUri;
    string public   placeholderTokenUri;

    //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale 
    //2 days later toggle reveal
    bool public isRevealed;
    bool public publicSale;
    bool public whiteListSale;
    bool public pause;
    
    bytes32 private merkleRoot;

    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor() ERC721A("Reigning Bears Lounge Club", "RBLC"){

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond Max Supply");
        require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "Already minted 3 times!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Below ");

        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{
        require(whiteListSale, "Minting is on Pause");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Cannot mint beyond max supply");
        require((totalWhitelistMint[msg.sender] + _quantity)  <= MAX_WHITELIST_MINT, "Cannot mint beyond whitelist max mint!");
        require(msg.value >= (WHITELIST_SALE_PRICE * _quantity), "Payment is below the price");
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "You are not whitelisted");

        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint(uint256 _quantity) external onlyOwner{
    _safeMint(msg.sender, _quantity);
    }

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

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{
        merkleRoot = _merkleRoot;
    }

    function getMerkleRoot() external view returns (bytes32){
        return merkleRoot;
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }

    function toggleWhiteListSale() external onlyOwner{
        whiteListSale = !whiteListSale;
    }

    function togglePublicSale() external onlyOwner{
        publicSale = !publicSale;
    }

    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","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":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601a81527f526569676e696e67204265617273204c6f756e676520436c756200000000000060208083019182528351808501909452600484526352424c4360e01b908401528151919291620000739160019162000102565b5080516200008990600290602084019062000102565b505050620000a6620000a0620000ac60201b60201c565b620000b0565b620001e5565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011090620001a8565b90600052602060002090601f0160209004810192826200013457600085556200017f565b82601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b5b808211156200018d576000815560010162000192565b600181811c90821680620001bd57607f821691505b60208210811415620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b61250480620001f56000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063a0712d68116100b6578063c08dfd3c1161007a578063c08dfd3c146106ee578063c4ae316814610703578063c87b56dd14610718578063e222c7f914610738578063e985e9c51461074d578063f2fde38b1461079657600080fd5b8063a0712d6814610660578063a22cb46514610673578063b0962c5314610693578063b88d4fde146106b3578063bc912e1a146106d357600080fd5b806383a974a21161010857806383a974a2146105b55780638456cb59146105d757806386a173ee146105f85780638bb64a8c146106185780638da5cb5b1461062d57806395d89b411461064b57600080fd5b80636352211e1461052b57806365f130971461054b57806370a0823114610560578063715018a6146105805780637cb647591461059557600080fd5b80632f745c59116101dd57806342842e0e116101a157806342842e0e1461049257806349590657146104b25780634cf5f7a4146104c75780634f6ccce7146104dc57806354214f69146104fc5780635b8ad4291461051657600080fd5b80632f745c59146104085780632fbba1151461042857806332cb6b0c1461044857806333bc1c5c1461045e5780633ccfd60b1461047d57600080fd5b8063081812fc1161022f578063081812fc1461033b578063095ea7b31461037357806318160ddd146103935780631c16521c146103a857806323b872dd146103d55780632904e6d9146103f557600080fd5b806301ffc9a71461026c5780630345e3cb146102a15780630675b7c6146102dc57806306fdde03146102fe57806307e89ec014610320575b600080fd5b34801561027857600080fd5b5061028c6102873660046120d2565b6107b6565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102ce6102bc366004611e9a565b600d6020526000908152604090205481565b604051908152602001610298565b3480156102e857600080fd5b506102fc6102f736600461210c565b610823565b005b34801561030a57600080fd5b5061031361086d565b60405161029891906122d9565b34801561032c57600080fd5b506102ce66d529ae9e86000081565b34801561034757600080fd5b5061035b6103563660046120b9565b6108ff565b6040516001600160a01b039091168152602001610298565b34801561037f57600080fd5b506102fc61038e366004611fdc565b610945565b34801561039f57600080fd5b506000546102ce565b3480156103b457600080fd5b506102ce6103c3366004611e9a565b600c6020526000908152604090205481565b3480156103e157600080fd5b506102fc6103f0366004611ee8565b6109d3565b6102fc610403366004612006565b6109de565b34801561041457600080fd5b506102ce610423366004611fdc565b610c7c565b34801561043457600080fd5b506102fc6104433660046120b9565b610d51565b34801561045457600080fd5b506102ce61131881565b34801561046a57600080fd5b50600a5461028c90610100900460ff1681565b34801561048957600080fd5b506102fc610d88565b34801561049e57600080fd5b506102fc6104ad366004611ee8565b610dde565b3480156104be57600080fd5b50600b546102ce565b3480156104d357600080fd5b50610313610df9565b3480156104e857600080fd5b506102ce6104f73660046120b9565b610e87565b34801561050857600080fd5b50600a5461028c9060ff1681565b34801561052257600080fd5b506102fc610eae565b34801561053757600080fd5b5061035b6105463660046120b9565b610eec565b34801561055757600080fd5b506102ce600a81565b34801561056c57600080fd5b506102ce61057b366004611e9a565b610efe565b34801561058c57600080fd5b506102fc610f4c565b3480156105a157600080fd5b506102fc6105b03660046120b9565b610f82565b3480156105c157600080fd5b506105ca610fb1565b6040516102989190612295565b3480156105e357600080fd5b50600a5461028c906301000000900460ff1681565b34801561060457600080fd5b50600a5461028c9062010000900460ff1681565b34801561062457600080fd5b506102fc611054565b34801561063957600080fd5b506007546001600160a01b031661035b565b34801561065757600080fd5b5061031361109d565b6102fc61066e3660046120b9565b6110ac565b34801561067f57600080fd5b506102fc61068e366004611fa0565b611281565b34801561069f57600080fd5b506102fc6106ae36600461210c565b611317565b3480156106bf57600080fd5b506102fc6106ce366004611f24565b611354565b3480156106df57600080fd5b506102ce668e1bc9bf04000081565b3480156106fa57600080fd5b506102ce600581565b34801561070f57600080fd5b506102fc61138e565b34801561072457600080fd5b506103136107333660046120b9565b6113d9565b34801561074457600080fd5b506102fc611555565b34801561075957600080fd5b5061028c610768366004611eb5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102fc6107b1366004611e9a565b61159c565b60006001600160e01b031982166380ac58cd60e01b14806107e757506001600160e01b03198216635b5e139f60e01b145b8061080257506001600160e01b0319821663780e9d6360e01b145b8061081d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108565760405162461bcd60e51b815260040161084d906122ec565b60405180910390fd5b8051610869906008906020840190611d96565b5050565b60606001805461087c906123e0565b80601f01602080910402602001604051908101604052809291908181526020018280546108a8906123e0565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090c826000541190565b610929576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095082610eec565b9050806001600160a01b0316836001600160a01b031614156109855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a557506109a38133610768565b155b156109c3576040516367d9dca160e11b815260040160405180910390fd5b6109ce838383611634565b505050565b6109ce838383611690565b323314610a2d5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604482015260640161084d565b600a5462010000900460ff16610a7b5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e67206973206f6e20506175736560681b604482015260640161084d565b61131881610a8860005490565b610a929190612352565b1115610ae05760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e74206265796f6e64206d617820737570706c79000000604482015260640161084d565b336000908152600d6020526040902054600590610afe908390612352565b1115610b5b5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74206d696e74206265796f6e642077686974656c697374206d6178604482015265206d696e742160d01b606482015260840161084d565b610b6c81668e1bc9bf04000061237e565b341015610bbb5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604482015260640161084d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c0183600b54836118af565b610c4d5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161084d565b336000908152600d602052604081208054849290610c6c908490612352565b909155506109ce905033836118c5565b6000610c8783610efe565b8210610ca6576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610d3f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d0157805192505b876001600160a01b0316836001600160a01b03161415610d365786841415610d2f5750935061081d92505050565b6001909301925b50600101610cae565b50610d4861244a565b50949350505050565b6007546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161084d906122ec565b610d8533826118c5565b50565b6007546001600160a01b03163314610db25760405162461bcd60e51b815260040161084d906122ec565b60405133904780156108fc02916000818181858888f19350505050158015610d85573d6000803e3d6000fd5b6109ce83838360405180602001604052806000815250611354565b60098054610e06906123e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e32906123e0565b8015610e7f5780601f10610e5457610100808354040283529160200191610e7f565b820191906000526020600020905b815481529060010190602001808311610e6257829003601f168201915b505050505081565b600080548210610eaa576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610ed85760405162461bcd60e51b815260040161084d906122ec565b600a805460ff19811660ff90911615179055565b6000610ef7826118df565b5192915050565b60006001600160a01b038216610f27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f765760405162461bcd60e51b815260040161084d906122ec565b610f806000611974565b565b6007546001600160a01b03163314610fac5760405162461bcd60e51b815260040161084d906122ec565b600b55565b6060336000610fbf82610efe565b905060008167ffffffffffffffff811115610fdc57610fdc6124a2565b604051908082528060200260200182016040528015611005578160200160208202803683370190505b50905060005b8281101561104c5761101d8482610c7c565b82828151811061102f5761102f61248c565b6020908102919091010152806110448161241b565b91505061100b565b509392505050565b6007546001600160a01b0316331461107e5760405162461bcd60e51b815260040161084d906122ec565b600a805462ff0000198116620100009182900460ff1615909102179055565b60606002805461087c906123e0565b3233146110fb5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604482015260640161084d565b600a54610100900460ff166111445760405162461bcd60e51b815260206004820152600f60248201526e2737ba102cb2ba1020b1ba34bb329760891b604482015260640161084d565b6113188161115160005490565b61115b9190612352565b111561119d5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b604482015260640161084d565b336000908152600c6020526040902054600a906111bb908390612352565b11156112095760405162461bcd60e51b815260206004820152601760248201527f416c7265616479206d696e74656420332074696d657321000000000000000000604482015260640161084d565b61121a8166d529ae9e86000061237e565b3410156112525760405162461bcd60e51b815260206004820152600660248201526502132b637bb960d51b604482015260640161084d565b336000908152600c602052604081208054839290611271908490612352565b90915550610d85905033826118c5565b6001600160a01b0382163314156112ab5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146113415760405162461bcd60e51b815260040161084d906122ec565b8051610869906009906020840190611d96565b61135f848484611690565b61136b848484846119c6565b611388576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146113b85760405162461bcd60e51b815260040161084d906122ec565b600a805463ff00000019811663010000009182900460ff1615909102179055565b60606113e6826000541190565b61144a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084d565b6000611457836001612352565b600a5490915060ff166114f75760098054611471906123e0565b80601f016020809104026020016040519081016040528092919081815260200182805461149d906123e0565b80156114ea5780601f106114bf576101008083540402835291602001916114ea565b820191906000526020600020905b8154815290600101906020018083116114cd57829003601f168201915b5050505050915050919050565b600060088054611506906123e0565b905011611522576040518060200160405280600081525061154e565b600861152d82611ad5565b60405160200161153e92919061219d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461157f5760405162461bcd60e51b815260040161084d906122ec565b600a805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146115c65760405162461bcd60e51b815260040161084d906122ec565b6001600160a01b03811661162b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084d565b610d8581611974565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169b826118df565b80519091506000906001600160a01b0316336001600160a01b031614806116d25750336116c7846108ff565b6001600160a01b0316145b806116e4575081516116e49033610768565b90508061170457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117395760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661176057604051633a954ecd60e21b815260040160405180910390fd5b6117706000848460000151611634565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661186557611818816000541190565b15611865578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826118bc8584611bd3565b14949350505050565b610869828260405180602001604052806000815250611c3f565b60408051808201909152600080825260208201526118fe826000541190565b61191b57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561196a579392505050565b506000190161191d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ac957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0a903390899088908890600401612258565b602060405180830381600087803b158015611a2457600080fd5b505af1925050508015611a54575060408051601f3d908101601f19168201909252611a51918101906120ef565b60015b611aaf573d808015611a82576040519150601f19603f3d011682016040523d82523d6000602084013e611a87565b606091505b508051611aa7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611acd565b5060015b949350505050565b606081611af95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b235780611b0d8161241b565b9150611b1c9050600a8361236a565b9150611afd565b60008167ffffffffffffffff811115611b3e57611b3e6124a2565b6040519080825280601f01601f191660200182016040528015611b68576020820181803683370190505b5090505b8415611acd57611b7d60018361239d565b9150611b8a600a86612436565b611b95906030612352565b60f81b818381518110611baa57611baa61248c565b60200101906001600160f81b031916908160001a905350611bcc600a8661236a565b9450611b6c565b600081815b845181101561104c576000858281518110611bf557611bf561248c565b60200260200101519050808311611c1b5760008381526020829052604090209250611c2c565b600081815260208490526040902092505b5080611c378161241b565b915050611bd8565b6109ce83838360016000546001600160a01b038516611c7057604051622e076360e81b815260040160405180910390fd5b83611c8e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d8d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d635750611d6160008884886119c6565b155b15611d81576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d0c565b506000556118a8565b828054611da2906123e0565b90600052602060002090601f016020900481019282611dc45760008555611e0a565b82601f10611ddd57805160ff1916838001178555611e0a565b82800160010185558215611e0a579182015b82811115611e0a578251825591602001919060010190611def565b50610eaa9291505b80821115610eaa5760008155600101611e12565b600067ffffffffffffffff831115611e4057611e406124a2565b611e53601f8401601f1916602001612321565b9050828152838383011115611e6757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611e9557600080fd5b919050565b600060208284031215611eac57600080fd5b61154e82611e7e565b60008060408385031215611ec857600080fd5b611ed183611e7e565b9150611edf60208401611e7e565b90509250929050565b600080600060608486031215611efd57600080fd5b611f0684611e7e565b9250611f1460208501611e7e565b9150604084013590509250925092565b60008060008060808587031215611f3a57600080fd5b611f4385611e7e565b9350611f5160208601611e7e565b925060408501359150606085013567ffffffffffffffff811115611f7457600080fd5b8501601f81018713611f8557600080fd5b611f9487823560208401611e26565b91505092959194509250565b60008060408385031215611fb357600080fd5b611fbc83611e7e565b915060208301358015158114611fd157600080fd5b809150509250929050565b60008060408385031215611fef57600080fd5b611ff883611e7e565b946020939093013593505050565b6000806040838503121561201957600080fd5b823567ffffffffffffffff8082111561203157600080fd5b818501915085601f83011261204557600080fd5b8135602082821115612059576120596124a2565b8160051b925061206a818401612321565b8281528181019085830185870184018b101561208557600080fd5b600096505b848710156120a857803583526001969096019591830191830161208a565b509997909101359750505050505050565b6000602082840312156120cb57600080fd5b5035919050565b6000602082840312156120e457600080fd5b813561154e816124b8565b60006020828403121561210157600080fd5b815161154e816124b8565b60006020828403121561211e57600080fd5b813567ffffffffffffffff81111561213557600080fd5b8201601f8101841361214657600080fd5b611acd84823560208401611e26565b6000815180845261216d8160208601602086016123b4565b601f01601f19169290920160200192915050565b600081516121938185602086016123b4565b9290920192915050565b600080845481600182811c9150808316806121b957607f831692505b60208084108214156121d957634e487b7160e01b86526022600452602486fd5b8180156121ed57600181146121fe5761222b565b60ff1986168952848901965061222b565b60008b81526020902060005b868110156122235781548b82015290850190830161220a565b505084890196505b50505050505061224f61223e8286612181565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228b90830184612155565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122cd578351835292840192918401916001016122b1565b50909695505050505050565b60208152600061154e6020830184612155565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561234a5761234a6124a2565b604052919050565b6000821982111561236557612365612460565b500190565b60008261237957612379612476565b500490565b600081600019048311821515161561239857612398612460565b500290565b6000828210156123af576123af612460565b500390565b60005b838110156123cf5781810151838201526020016123b7565b838111156113885750506000910152565b600181811c908216806123f457607f821691505b6020821081141561241557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561242f5761242f612460565b5060010190565b60008261244557612445612476565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8557600080fdfea264697066735822122058331352267748cbcf8761e567e44b4a79447fa9b95c7d575fe943c3c2838d0264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063a0712d68116100b6578063c08dfd3c1161007a578063c08dfd3c146106ee578063c4ae316814610703578063c87b56dd14610718578063e222c7f914610738578063e985e9c51461074d578063f2fde38b1461079657600080fd5b8063a0712d6814610660578063a22cb46514610673578063b0962c5314610693578063b88d4fde146106b3578063bc912e1a146106d357600080fd5b806383a974a21161010857806383a974a2146105b55780638456cb59146105d757806386a173ee146105f85780638bb64a8c146106185780638da5cb5b1461062d57806395d89b411461064b57600080fd5b80636352211e1461052b57806365f130971461054b57806370a0823114610560578063715018a6146105805780637cb647591461059557600080fd5b80632f745c59116101dd57806342842e0e116101a157806342842e0e1461049257806349590657146104b25780634cf5f7a4146104c75780634f6ccce7146104dc57806354214f69146104fc5780635b8ad4291461051657600080fd5b80632f745c59146104085780632fbba1151461042857806332cb6b0c1461044857806333bc1c5c1461045e5780633ccfd60b1461047d57600080fd5b8063081812fc1161022f578063081812fc1461033b578063095ea7b31461037357806318160ddd146103935780631c16521c146103a857806323b872dd146103d55780632904e6d9146103f557600080fd5b806301ffc9a71461026c5780630345e3cb146102a15780630675b7c6146102dc57806306fdde03146102fe57806307e89ec014610320575b600080fd5b34801561027857600080fd5b5061028c6102873660046120d2565b6107b6565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102ce6102bc366004611e9a565b600d6020526000908152604090205481565b604051908152602001610298565b3480156102e857600080fd5b506102fc6102f736600461210c565b610823565b005b34801561030a57600080fd5b5061031361086d565b60405161029891906122d9565b34801561032c57600080fd5b506102ce66d529ae9e86000081565b34801561034757600080fd5b5061035b6103563660046120b9565b6108ff565b6040516001600160a01b039091168152602001610298565b34801561037f57600080fd5b506102fc61038e366004611fdc565b610945565b34801561039f57600080fd5b506000546102ce565b3480156103b457600080fd5b506102ce6103c3366004611e9a565b600c6020526000908152604090205481565b3480156103e157600080fd5b506102fc6103f0366004611ee8565b6109d3565b6102fc610403366004612006565b6109de565b34801561041457600080fd5b506102ce610423366004611fdc565b610c7c565b34801561043457600080fd5b506102fc6104433660046120b9565b610d51565b34801561045457600080fd5b506102ce61131881565b34801561046a57600080fd5b50600a5461028c90610100900460ff1681565b34801561048957600080fd5b506102fc610d88565b34801561049e57600080fd5b506102fc6104ad366004611ee8565b610dde565b3480156104be57600080fd5b50600b546102ce565b3480156104d357600080fd5b50610313610df9565b3480156104e857600080fd5b506102ce6104f73660046120b9565b610e87565b34801561050857600080fd5b50600a5461028c9060ff1681565b34801561052257600080fd5b506102fc610eae565b34801561053757600080fd5b5061035b6105463660046120b9565b610eec565b34801561055757600080fd5b506102ce600a81565b34801561056c57600080fd5b506102ce61057b366004611e9a565b610efe565b34801561058c57600080fd5b506102fc610f4c565b3480156105a157600080fd5b506102fc6105b03660046120b9565b610f82565b3480156105c157600080fd5b506105ca610fb1565b6040516102989190612295565b3480156105e357600080fd5b50600a5461028c906301000000900460ff1681565b34801561060457600080fd5b50600a5461028c9062010000900460ff1681565b34801561062457600080fd5b506102fc611054565b34801561063957600080fd5b506007546001600160a01b031661035b565b34801561065757600080fd5b5061031361109d565b6102fc61066e3660046120b9565b6110ac565b34801561067f57600080fd5b506102fc61068e366004611fa0565b611281565b34801561069f57600080fd5b506102fc6106ae36600461210c565b611317565b3480156106bf57600080fd5b506102fc6106ce366004611f24565b611354565b3480156106df57600080fd5b506102ce668e1bc9bf04000081565b3480156106fa57600080fd5b506102ce600581565b34801561070f57600080fd5b506102fc61138e565b34801561072457600080fd5b506103136107333660046120b9565b6113d9565b34801561074457600080fd5b506102fc611555565b34801561075957600080fd5b5061028c610768366004611eb5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102fc6107b1366004611e9a565b61159c565b60006001600160e01b031982166380ac58cd60e01b14806107e757506001600160e01b03198216635b5e139f60e01b145b8061080257506001600160e01b0319821663780e9d6360e01b145b8061081d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108565760405162461bcd60e51b815260040161084d906122ec565b60405180910390fd5b8051610869906008906020840190611d96565b5050565b60606001805461087c906123e0565b80601f01602080910402602001604051908101604052809291908181526020018280546108a8906123e0565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090c826000541190565b610929576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095082610eec565b9050806001600160a01b0316836001600160a01b031614156109855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a557506109a38133610768565b155b156109c3576040516367d9dca160e11b815260040160405180910390fd5b6109ce838383611634565b505050565b6109ce838383611690565b323314610a2d5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604482015260640161084d565b600a5462010000900460ff16610a7b5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e67206973206f6e20506175736560681b604482015260640161084d565b61131881610a8860005490565b610a929190612352565b1115610ae05760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e74206265796f6e64206d617820737570706c79000000604482015260640161084d565b336000908152600d6020526040902054600590610afe908390612352565b1115610b5b5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74206d696e74206265796f6e642077686974656c697374206d6178604482015265206d696e742160d01b606482015260840161084d565b610b6c81668e1bc9bf04000061237e565b341015610bbb5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e742069732062656c6f7720746865207072696365000000000000604482015260640161084d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c0183600b54836118af565b610c4d5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161084d565b336000908152600d602052604081208054849290610c6c908490612352565b909155506109ce905033836118c5565b6000610c8783610efe565b8210610ca6576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610d3f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d0157805192505b876001600160a01b0316836001600160a01b03161415610d365786841415610d2f5750935061081d92505050565b6001909301925b50600101610cae565b50610d4861244a565b50949350505050565b6007546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161084d906122ec565b610d8533826118c5565b50565b6007546001600160a01b03163314610db25760405162461bcd60e51b815260040161084d906122ec565b60405133904780156108fc02916000818181858888f19350505050158015610d85573d6000803e3d6000fd5b6109ce83838360405180602001604052806000815250611354565b60098054610e06906123e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e32906123e0565b8015610e7f5780601f10610e5457610100808354040283529160200191610e7f565b820191906000526020600020905b815481529060010190602001808311610e6257829003601f168201915b505050505081565b600080548210610eaa576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610ed85760405162461bcd60e51b815260040161084d906122ec565b600a805460ff19811660ff90911615179055565b6000610ef7826118df565b5192915050565b60006001600160a01b038216610f27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f765760405162461bcd60e51b815260040161084d906122ec565b610f806000611974565b565b6007546001600160a01b03163314610fac5760405162461bcd60e51b815260040161084d906122ec565b600b55565b6060336000610fbf82610efe565b905060008167ffffffffffffffff811115610fdc57610fdc6124a2565b604051908082528060200260200182016040528015611005578160200160208202803683370190505b50905060005b8281101561104c5761101d8482610c7c565b82828151811061102f5761102f61248c565b6020908102919091010152806110448161241b565b91505061100b565b509392505050565b6007546001600160a01b0316331461107e5760405162461bcd60e51b815260040161084d906122ec565b600a805462ff0000198116620100009182900460ff1615909102179055565b60606002805461087c906123e0565b3233146110fb5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604482015260640161084d565b600a54610100900460ff166111445760405162461bcd60e51b815260206004820152600f60248201526e2737ba102cb2ba1020b1ba34bb329760891b604482015260640161084d565b6113188161115160005490565b61115b9190612352565b111561119d5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b604482015260640161084d565b336000908152600c6020526040902054600a906111bb908390612352565b11156112095760405162461bcd60e51b815260206004820152601760248201527f416c7265616479206d696e74656420332074696d657321000000000000000000604482015260640161084d565b61121a8166d529ae9e86000061237e565b3410156112525760405162461bcd60e51b815260206004820152600660248201526502132b637bb960d51b604482015260640161084d565b336000908152600c602052604081208054839290611271908490612352565b90915550610d85905033826118c5565b6001600160a01b0382163314156112ab5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146113415760405162461bcd60e51b815260040161084d906122ec565b8051610869906009906020840190611d96565b61135f848484611690565b61136b848484846119c6565b611388576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146113b85760405162461bcd60e51b815260040161084d906122ec565b600a805463ff00000019811663010000009182900460ff1615909102179055565b60606113e6826000541190565b61144a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084d565b6000611457836001612352565b600a5490915060ff166114f75760098054611471906123e0565b80601f016020809104026020016040519081016040528092919081815260200182805461149d906123e0565b80156114ea5780601f106114bf576101008083540402835291602001916114ea565b820191906000526020600020905b8154815290600101906020018083116114cd57829003601f168201915b5050505050915050919050565b600060088054611506906123e0565b905011611522576040518060200160405280600081525061154e565b600861152d82611ad5565b60405160200161153e92919061219d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461157f5760405162461bcd60e51b815260040161084d906122ec565b600a805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146115c65760405162461bcd60e51b815260040161084d906122ec565b6001600160a01b03811661162b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084d565b610d8581611974565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169b826118df565b80519091506000906001600160a01b0316336001600160a01b031614806116d25750336116c7846108ff565b6001600160a01b0316145b806116e4575081516116e49033610768565b90508061170457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117395760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661176057604051633a954ecd60e21b815260040160405180910390fd5b6117706000848460000151611634565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661186557611818816000541190565b15611865578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826118bc8584611bd3565b14949350505050565b610869828260405180602001604052806000815250611c3f565b60408051808201909152600080825260208201526118fe826000541190565b61191b57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561196a579392505050565b506000190161191d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ac957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0a903390899088908890600401612258565b602060405180830381600087803b158015611a2457600080fd5b505af1925050508015611a54575060408051601f3d908101601f19168201909252611a51918101906120ef565b60015b611aaf573d808015611a82576040519150601f19603f3d011682016040523d82523d6000602084013e611a87565b606091505b508051611aa7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611acd565b5060015b949350505050565b606081611af95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b235780611b0d8161241b565b9150611b1c9050600a8361236a565b9150611afd565b60008167ffffffffffffffff811115611b3e57611b3e6124a2565b6040519080825280601f01601f191660200182016040528015611b68576020820181803683370190505b5090505b8415611acd57611b7d60018361239d565b9150611b8a600a86612436565b611b95906030612352565b60f81b818381518110611baa57611baa61248c565b60200101906001600160f81b031916908160001a905350611bcc600a8661236a565b9450611b6c565b600081815b845181101561104c576000858281518110611bf557611bf561248c565b60200260200101519050808311611c1b5760008381526020829052604090209250611c2c565b600081815260208490526040902092505b5080611c378161241b565b915050611bd8565b6109ce83838360016000546001600160a01b038516611c7057604051622e076360e81b815260040160405180910390fd5b83611c8e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d8d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d635750611d6160008884886119c6565b155b15611d81576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d0c565b506000556118a8565b828054611da2906123e0565b90600052602060002090601f016020900481019282611dc45760008555611e0a565b82601f10611ddd57805160ff1916838001178555611e0a565b82800160010185558215611e0a579182015b82811115611e0a578251825591602001919060010190611def565b50610eaa9291505b80821115610eaa5760008155600101611e12565b600067ffffffffffffffff831115611e4057611e406124a2565b611e53601f8401601f1916602001612321565b9050828152838383011115611e6757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611e9557600080fd5b919050565b600060208284031215611eac57600080fd5b61154e82611e7e565b60008060408385031215611ec857600080fd5b611ed183611e7e565b9150611edf60208401611e7e565b90509250929050565b600080600060608486031215611efd57600080fd5b611f0684611e7e565b9250611f1460208501611e7e565b9150604084013590509250925092565b60008060008060808587031215611f3a57600080fd5b611f4385611e7e565b9350611f5160208601611e7e565b925060408501359150606085013567ffffffffffffffff811115611f7457600080fd5b8501601f81018713611f8557600080fd5b611f9487823560208401611e26565b91505092959194509250565b60008060408385031215611fb357600080fd5b611fbc83611e7e565b915060208301358015158114611fd157600080fd5b809150509250929050565b60008060408385031215611fef57600080fd5b611ff883611e7e565b946020939093013593505050565b6000806040838503121561201957600080fd5b823567ffffffffffffffff8082111561203157600080fd5b818501915085601f83011261204557600080fd5b8135602082821115612059576120596124a2565b8160051b925061206a818401612321565b8281528181019085830185870184018b101561208557600080fd5b600096505b848710156120a857803583526001969096019591830191830161208a565b509997909101359750505050505050565b6000602082840312156120cb57600080fd5b5035919050565b6000602082840312156120e457600080fd5b813561154e816124b8565b60006020828403121561210157600080fd5b815161154e816124b8565b60006020828403121561211e57600080fd5b813567ffffffffffffffff81111561213557600080fd5b8201601f8101841361214657600080fd5b611acd84823560208401611e26565b6000815180845261216d8160208601602086016123b4565b601f01601f19169290920160200192915050565b600081516121938185602086016123b4565b9290920192915050565b600080845481600182811c9150808316806121b957607f831692505b60208084108214156121d957634e487b7160e01b86526022600452602486fd5b8180156121ed57600181146121fe5761222b565b60ff1986168952848901965061222b565b60008b81526020902060005b868110156122235781548b82015290850190830161220a565b505084890196505b50505050505061224f61223e8286612181565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228b90830184612155565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122cd578351835292840192918401916001016122b1565b50909695505050505050565b60208152600061154e6020830184612155565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561234a5761234a6124a2565b604052919050565b6000821982111561236557612365612460565b500190565b60008261237957612379612476565b500490565b600081600019048311821515161561239857612398612460565b500290565b6000828210156123af576123af612460565b500390565b60005b838110156123cf5781810151838201526020016123b7565b838111156113885750506000910152565b600181811c908216806123f457607f821691505b6020821081141561241557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561242f5761242f612460565b5060010190565b60008261244557612445612476565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8557600080fdfea264697066735822122058331352267748cbcf8761e567e44b4a79447fa9b95c7d575fe943c3c2838d0264736f6c63430008070033

Deployed Bytecode Sourcemap

41662:4539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28908:372;;;;;;;;;;-1:-1:-1;28908:372:0;;;;;:::i;:::-;;:::i;:::-;;;8648:14:1;;8641:22;8623:41;;8611:2;8596:18;28908:372:0;;;;;;;;42440:53;;;;;;;;;;-1:-1:-1;42440:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;8821:25:1;;;8809:2;8794:18;42440:53:0;8675:177:1;45228:115:0;;;;;;;;;;-1:-1:-1;45228:115:0;;;;;:::i;:::-;;:::i;:::-;;30724:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41907:54::-;;;;;;;;;;;;41951:10;41907:54;;32201:204;;;;;;;;;;-1:-1:-1;32201:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7309:32:1;;;7291:51;;7279:2;7264:18;32201:204:0;7145:203:1;31790:345:0;;;;;;;;;;-1:-1:-1;31790:345:0;;;;;:::i;:::-;;:::i;27146:101::-;;;;;;;;;;-1:-1:-1;27199:7:0;27226:13;27146:101;;42383:50;;;;;;;;;;-1:-1:-1;42383:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;33058:170;;;;;;;;;;-1:-1:-1;33058:170:0;;;;;:::i;:::-;;:::i;43193:779::-;;;;;;:::i;:::-;;:::i;27800:1036::-;;;;;;;;;;-1:-1:-1;27800:1036:0;;;;;:::i;:::-;;:::i;43980:102::-;;;;;;;;;;-1:-1:-1;43980:102:0;;;;;:::i;:::-;;:::i;41755:41::-;;;;;;;;;;;;41792:4;41755:41;;42257:22;;;;;;;;;;-1:-1:-1;42257:22:0;;;;;;;;;;;46090:108;;;;;;;;;;;;;:::i;33299:185::-;;;;;;;;;;-1:-1:-1;33299:185:0;;;;;:::i;:::-;;:::i;45612:92::-;;;;;;;;;;-1:-1:-1;45686:10:0;;45612:92;;42069:35;;;;;;;;;;;;;:::i;27324:176::-;;;;;;;;;;-1:-1:-1;27324:176:0;;;;;:::i;:::-;;:::i;42228:22::-;;;;;;;;;;-1:-1:-1;42228:22:0;;;;;;;;45997:85;;;;;;;;;;;;;:::i;30533:124::-;;;;;;;;;;-1:-1:-1;30533:124:0;;;;;:::i;:::-;;:::i;41803:44::-;;;;;;;;;;;;41845:2;41803:44;;29344:206;;;;;;;;;;-1:-1:-1;29344:206:0;;;;;:::i;:::-;;:::i;6734:103::-;;;;;;;;;;;;;:::i;45499:105::-;;;;;;;;;;-1:-1:-1;45499:105:0;;;;;:::i;:::-;;:::i;44814:406::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42318:17::-;;;;;;;;;;-1:-1:-1;42318:17:0;;;;;;;;;;;42286:25;;;;;;;;;;-1:-1:-1;42286:25:0;;;;;;;;;;;45794:98;;;;;;;;;;;;;:::i;6083:87::-;;;;;;;;;;-1:-1:-1;6156:6:0;;-1:-1:-1;;;;;6156:6:0;6083:87;;30893:104;;;;;;;;;;;;;:::i;42708:477::-;;;;;;:::i;:::-;;:::i;32477:279::-;;;;;;;;;;-1:-1:-1;32477:279:0;;;;;:::i;:::-;;:::i;45349:142::-;;;;;;;;;;-1:-1:-1;45349:142:0;;;;;:::i;:::-;;:::i;33555:308::-;;;;;;;;;;-1:-1:-1;33555:308:0;;;;;:::i;:::-;;:::i;41968:57::-;;;;;;;;;;;;42015:10;41968:57;;41854:46;;;;;;;;;;;;41899:1;41854:46;;45712:74;;;;;;;;;;;;;:::i;44247:473::-;;;;;;;;;;-1:-1:-1;44247:473:0;;;;;:::i;:::-;;:::i;45900:89::-;;;;;;;;;;;;;:::i;32827:164::-;;;;;;;;;;-1:-1:-1;32827:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32948:25:0;;;32924:4;32948:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32827:164;6992:201;;;;;;;;;;-1:-1:-1;6992:201:0;;;;;:::i;:::-;;:::i;28908:372::-;29010:4;-1:-1:-1;;;;;;29047:40:0;;-1:-1:-1;;;29047:40:0;;:105;;-1:-1:-1;;;;;;;29104:48:0;;-1:-1:-1;;;29104:48:0;29047:105;:172;;;-1:-1:-1;;;;;;;29169:50:0;;-1:-1:-1;;;29169:50:0;29047:172;:225;;;-1:-1:-1;;;;;;;;;;18445:40:0;;;29236:36;29027:245;28908:372;-1:-1:-1;;28908:372:0:o;45228:115::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;;;;;;;;;45307:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45228:115:::0;:::o;30724:100::-;30778:13;30811:5;30804:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30724:100;:::o;32201:204::-;32269:7;32294:16;32302:7;34175:4;34209:13;-1:-1:-1;34199:23:0;34118:112;32294:16;32289:64;;32319:34;;-1:-1:-1;;;32319:34:0;;;;;;;;;;;32289:64;-1:-1:-1;32373:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32373:24:0;;32201:204::o;31790:345::-;31863:13;31879:24;31895:7;31879:15;:24::i;:::-;31863:40;;31924:5;-1:-1:-1;;;;;31918:11:0;:2;-1:-1:-1;;;;;31918:11:0;;31914:48;;;31938:24;;-1:-1:-1;;;31938:24:0;;;;;;;;;;;31914:48;4999:10;-1:-1:-1;;;;;31979:21:0;;;;;;:63;;-1:-1:-1;32005:37:0;32022:5;4999:10;32827:164;:::i;32005:37::-;32004:38;31979:63;31975:111;;;32051:35;;-1:-1:-1;;;32051:35:0;;;;;;;;;;;31975:111;32099:28;32108:2;32112:7;32121:5;32099:8;:28::i;:::-;31852:283;31790:345;;:::o;33058:170::-;33192:28;33202:4;33208:2;33212:7;33192:9;:28::i;43193:779::-;42622:9;42635:10;42622:23;42614:66;;;;-1:-1:-1;;;42614:66:0;;12908:2:1;42614:66:0;;;12890:21:1;12947:2;12927:18;;;12920:30;12986:32;12966:18;;;12959:60;13036:18;;42614:66:0;12706:354:1;42614:66:0;43314:13:::1;::::0;;;::::1;;;43306:45;;;::::0;-1:-1:-1;;;43306:45:0;;13267:2:1;43306:45:0::1;::::0;::::1;13249:21:1::0;13306:2;13286:18;;;13279:30;-1:-1:-1;;;13325:18:1;;;13318:49;13384:18;;43306:45:0::1;13065:343:1::0;43306:45:0::1;41792:4;43387:9;43371:13;27199:7:::0;27226:13;;27146:101;43371:13:::1;:25;;;;:::i;:::-;43370:41;;43362:83;;;::::0;-1:-1:-1;;;43362:83:0;;9283:2:1;43362:83:0::1;::::0;::::1;9265:21:1::0;9322:2;9302:18;;;9295:30;9361:31;9341:18;;;9334:59;9410:18;;43362:83:0::1;9081:353:1::0;43362:83:0::1;43484:10;43465:30;::::0;;;:18:::1;:30;::::0;;;;;41899:1:::1;::::0;43465:42:::1;::::0;43498:9;;43465:42:::1;:::i;:::-;43464:67;;43456:118;;;::::0;-1:-1:-1;;;43456:118:0;;13615:2:1;43456:118:0::1;::::0;::::1;13597:21:1::0;13654:2;13634:18;;;13627:30;13693:34;13673:18;;;13666:62;-1:-1:-1;;;13744:18:1;;;13737:36;13790:19;;43456:118:0::1;13413:402:1::0;43456:118:0::1;43607:32;43630:9:::0;42015:10:::1;43607:32;:::i;:::-;43593:9;:47;;43585:86;;;::::0;-1:-1:-1;;;43585:86:0;;10734:2:1;43585:86:0::1;::::0;::::1;10716:21:1::0;10773:2;10753:18;;;10746:30;10812:28;10792:18;;;10785:56;10858:18;;43585:86:0::1;10532:350:1::0;43585:86:0::1;43737:28;::::0;-1:-1:-1;;43754:10:0::1;5754:2:1::0;5750:15;5746:53;43737:28:0::1;::::0;::::1;5734:66:1::0;43710:14:0::1;::::0;5816:12:1;;43737:28:0::1;;;;;;;;;;;;43727:39;;;;;;43710:56;;43785:52;43804:12;43818:10;;43830:6;43785:18;:52::i;:::-;43777:88;;;::::0;-1:-1:-1;;;43777:88:0;;11433:2:1;43777:88:0::1;::::0;::::1;11415:21:1::0;11472:2;11452:18;;;11445:30;11511:25;11491:18;;;11484:53;11554:18;;43777:88:0::1;11231:347:1::0;43777:88:0::1;43897:10;43878:30;::::0;;;:18:::1;:30;::::0;;;;:43;;43912:9;;43878:30;:43:::1;::::0;43912:9;;43878:43:::1;:::i;:::-;::::0;;;-1:-1:-1;43932:32:0::1;::::0;-1:-1:-1;43942:10:0::1;43954:9:::0;43932::::1;:32::i;27800:1036::-:0;27889:7;27922:16;27932:5;27922:9;:16::i;:::-;27913:5;:25;27909:61;;27947:23;;-1:-1:-1;;;27947:23:0;;;;;;;;;;;27909:61;27981:22;27226:13;;;27981:22;;28244:466;28264:14;28260:1;:18;28244:466;;;28304:31;28338:14;;;:11;:14;;;;;;;;;28304:48;;;;;;;;;-1:-1:-1;;;;;28304:48:0;;;;;-1:-1:-1;;;28304:48:0;;;;;;;;;;;;28375:28;28371:111;;28448:14;;;-1:-1:-1;28371:111:0;28525:5;-1:-1:-1;;;;;28504:26:0;:17;-1:-1:-1;;;;;28504:26:0;;28500:195;;;28574:5;28559:11;:20;28555:85;;;-1:-1:-1;28615:1:0;-1:-1:-1;28608:8:0;;-1:-1:-1;;;28608:8:0;28555:85;28662:13;;;;;28500:195;-1:-1:-1;28280:3:0;;28244:466;;;-1:-1:-1;28786:13:0;;:::i;:::-;-1:-1:-1;28817:11:0;27800:1036;-1:-1:-1;;;;27800:1036:0:o;43980:102::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;44042:32:::1;44052:10;44064:9;44042;:32::i;:::-;43980:102:::0;:::o;46090:108::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;46139:51:::1;::::0;46147:10:::1;::::0;46168:21:::1;46139:51:::0;::::1;;;::::0;::::1;::::0;;;46168:21;46147:10;46139:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;33299:185:::0;33437:39;33454:4;33460:2;33464:7;33437:39;;;;;;;;;;;;:16;:39::i;42069:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27324:176::-;27391:7;27226:13;;27415:5;:22;27411:58;;27446:23;;-1:-1:-1;;;27446:23:0;;;;;;;;;;;27411:58;-1:-1:-1;27487:5:0;27324:176::o;45997:85::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;46064:10:::1;::::0;;-1:-1:-1;;46050:24:0;::::1;46064:10;::::0;;::::1;46063:11;46050:24;::::0;;45997:85::o;30533:124::-;30597:7;30624:20;30636:7;30624:11;:20::i;:::-;:25;;30533:124;-1:-1:-1;;30533:124:0:o;29344:206::-;29408:7;-1:-1:-1;;;;;29432:19:0;;29428:60;;29460:28;;-1:-1:-1;;;29460:28:0;;;;;;;;;;;29428:60;-1:-1:-1;;;;;;29514:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29514:27:0;;29344:206::o;6734:103::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;6799:30:::1;6826:1;6799:18;:30::i;:::-;6734:103::o:0;45499:105::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;45572:10:::1;:24:::0;45499:105::o;44814:406::-;44856:16;44901:10;44884:14;44949:17;44901:10;44949:9;:17::i;:::-;44922:44;;44977:25;45019:16;45005:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45005:31:0;;44977:59;;45053:13;45049:136;45080:16;45072:5;:24;45049:136;;;45139:34;45159:6;45167:5;45139:19;:34::i;:::-;45121:8;45130:5;45121:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;45098:7;;;;:::i;:::-;;;;45049:136;;;-1:-1:-1;45204:8:0;44814:406;-1:-1:-1;;;44814:406:0:o;45794:98::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;45871:13:::1;::::0;;-1:-1:-1;;45854:30:0;::::1;45871:13:::0;;;;::::1;;;45870:14;45854:30:::0;;::::1;;::::0;;45794:98::o;30893:104::-;30949:13;30982:7;30975:14;;;;;:::i;42708:477::-;42622:9;42635:10;42622:23;42614:66;;;;-1:-1:-1;;;42614:66:0;;12908:2:1;42614:66:0;;;12890:21:1;12947:2;12927:18;;;12920:30;12986:32;12966:18;;;12959:60;13036:18;;42614:66:0;12706:354:1;42614:66:0;42789:10:::1;::::0;::::1;::::0;::::1;;;42781:38;;;::::0;-1:-1:-1;;;42781:38:0;;11089:2:1;42781:38:0::1;::::0;::::1;11071:21:1::0;11128:2;11108:18;;;11101:30;-1:-1:-1;;;11147:18:1;;;11140:45;11202:18;;42781:38:0::1;10887:339:1::0;42781:38:0::1;41792:4;42855:9;42839:13;27199:7:::0;27226:13;;27146:101;42839:13:::1;:25;;;;:::i;:::-;42838:41;;42830:71;;;::::0;-1:-1:-1;;;42830:71:0;;12562:2:1;42830:71:0::1;::::0;::::1;12544:21:1::0;12601:2;12581:18;;;12574:30;-1:-1:-1;;;12620:18:1;;;12613:47;12677:18;;42830:71:0::1;12360:341:1::0;42830:71:0::1;42937:10;42921:27;::::0;;;:15:::1;:27;::::0;;;;;41845:2:::1;::::0;42921:38:::1;::::0;42950:9;;42921:38:::1;:::i;:::-;42920:59;;42912:95;;;::::0;-1:-1:-1;;;42912:95:0;;9641:2:1;42912:95:0::1;::::0;::::1;9623:21:1::0;9680:2;9660:18;;;9653:30;9719:25;9699:18;;;9692:53;9762:18;;42912:95:0::1;9439:347:1::0;42912:95:0::1;43040:29;43060:9:::0;41951:10:::1;43040:29;:::i;:::-;43026:9;:44;;43018:63;;;::::0;-1:-1:-1;;;43018:63:0;;9993:2:1;43018:63:0::1;::::0;::::1;9975:21:1::0;10032:1;10012:18;;;10005:29;-1:-1:-1;;;10050:18:1;;;10043:36;10096:18;;43018:63:0::1;9791:329:1::0;43018:63:0::1;43110:10;43094:27;::::0;;;:15:::1;:27;::::0;;;;:40;;43125:9;;43094:27;:40:::1;::::0;43125:9;;43094:40:::1;:::i;:::-;::::0;;;-1:-1:-1;43145:32:0::1;::::0;-1:-1:-1;43155:10:0::1;43167:9:::0;43145::::1;:32::i;32477:279::-:0;-1:-1:-1;;;;;32568:24:0;;4999:10;32568:24;32564:54;;;32601:17;;-1:-1:-1;;;32601:17:0;;;;;;;;;;;32564:54;4999:10;32631:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32631:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32631:53:0;;;;;;;;;;32700:48;;8623:41:1;;;32631:42:0;;4999:10;32700:48;;8596:18:1;32700:48:0;;;;;;;32477:279;;:::o;45349:142::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;45441:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;33555:308::-:0;33714:28;33724:4;33730:2;33734:7;33714:9;:28::i;:::-;33758:48;33781:4;33787:2;33791:7;33800:5;33758:22;:48::i;:::-;33753:102;;33815:40;;-1:-1:-1;;;33815:40:0;;;;;;;;;;;33753:102;33555:308;;;;:::o;45712:74::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;45773:5:::1;::::0;;-1:-1:-1;;45764:14:0;::::1;45773:5:::0;;;;::::1;;;45772:6;45764:14:::0;;::::1;;::::0;;45712:74::o;44247:473::-;44320:13;44354:16;44362:7;34175:4;34209:13;-1:-1:-1;34199:23:0;34118:112;44354:16;44346:76;;;;-1:-1:-1;;;44346:76:0;;12146:2:1;44346:76:0;;;12128:21:1;12185:2;12165:18;;;12158:30;12224:34;12204:18;;;12197:62;-1:-1:-1;;;12275:18:1;;;12268:45;12330:19;;44346:76:0;11944:411:1;44346:76:0;44435:14;44452:11;:7;44462:1;44452:11;:::i;:::-;44480:10;;44435:28;;-1:-1:-1;44480:10:0;;44476:68;;44513:19;44506:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44247:473;;;:::o;44476:68::-;44637:1;44614:12;44608:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;44665:12;44679:17;:6;:15;:17::i;:::-;44648:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44608:104;44601:111;44247:473;-1:-1:-1;;;44247:473:0:o;45900:89::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;45971:10:::1;::::0;;-1:-1:-1;;45957:24:0;::::1;45971:10;::::0;;;::::1;;;45970:11;45957:24:::0;;::::1;;::::0;;45900:89::o;6992:201::-;6156:6;;-1:-1:-1;;;;;6156:6:0;4999:10;6303:23;6295:68;;;;-1:-1:-1;;;6295:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7081:22:0;::::1;7073:73;;;::::0;-1:-1:-1;;;7073:73:0;;10327:2:1;7073:73:0::1;::::0;::::1;10309:21:1::0;10366:2;10346:18;;;10339:30;10405:34;10385:18;;;10378:62;-1:-1:-1;;;10456:18:1;;;10449:36;10502:19;;7073:73:0::1;10125:402:1::0;7073:73:0::1;7157:28;7176:8;7157:18;:28::i;38881:196::-:0;38996:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38996:29:0;-1:-1:-1;;;;;38996:29:0;;;;;;;;;39041:28;;38996:24;;39041:28;;;;;;;38881:196;;;:::o;36801:1962::-;36916:35;36954:20;36966:7;36954:11;:20::i;:::-;37029:18;;36916:58;;-1:-1:-1;36987:22:0;;-1:-1:-1;;;;;37013:34:0;4999:10;-1:-1:-1;;;;;37013:34:0;;:87;;;-1:-1:-1;4999:10:0;37064:20;37076:7;37064:11;:20::i;:::-;-1:-1:-1;;;;;37064:36:0;;37013:87;:154;;;-1:-1:-1;37134:18:0;;37117:50;;4999:10;32827:164;:::i;37117:50::-;36987:181;;37186:17;37181:66;;37212:35;;-1:-1:-1;;;37212:35:0;;;;;;;;;;;37181:66;37284:4;-1:-1:-1;;;;;37262:26:0;:13;:18;;;-1:-1:-1;;;;;37262:26:0;;37258:67;;37297:28;;-1:-1:-1;;;37297:28:0;;;;;;;;;;;37258:67;-1:-1:-1;;;;;37340:16:0;;37336:52;;37365:23;;-1:-1:-1;;;37365:23:0;;;;;;;;;;;37336:52;37509:49;37526:1;37530:7;37539:13;:18;;;37509:8;:49::i;:::-;-1:-1:-1;;;;;37854:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;37854:31:0;;;-1:-1:-1;;;;;37854:31:0;;;-1:-1:-1;;37854:31:0;;;;;;;37900:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37900:29:0;;;;;;;;;;;;;37946:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37991:61:0;;;;-1:-1:-1;;;38036:15:0;37991:61;;;;;;38326:11;;;38356:24;;;;;:29;38326:11;;38356:29;38352:295;;38424:20;38432:11;34175:4;34209:13;-1:-1:-1;34199:23:0;34118:112;38424:20;38420:212;;;38501:18;;;38469:24;;;:11;:24;;;;;;;;:50;;38584:28;;;;38542:70;;-1:-1:-1;;;38542:70:0;-1:-1:-1;;;;;;38542:70:0;;;-1:-1:-1;;;;;38469:50:0;;;38542:70;;;;;;;38420:212;37829:829;38694:7;38690:2;-1:-1:-1;;;;;38675:27:0;38684:4;-1:-1:-1;;;;;38675:27:0;;;;;;;;;;;38713:42;36905:1858;;36801:1962;;;:::o;866:190::-;991:4;1044;1015:25;1028:5;1035:4;1015:12;:25::i;:::-;:33;;866:190;-1:-1:-1;;;;866:190:0:o;34238:104::-;34307:27;34317:2;34321:8;34307:27;;;;;;;;;;;;:9;:27::i;29967:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;30067:16:0;30075:7;34175:4;34209:13;-1:-1:-1;34199:23:0;34118:112;30067:16;30062:61;;30092:31;;-1:-1:-1;;;30092:31:0;;;;;;;;;;;30062:61;30181:7;30161:245;30228:31;30262:17;;;:11;:17;;;;;;;;;30228:51;;;;;;;;;-1:-1:-1;;;;;30228:51:0;;;;;-1:-1:-1;;;30228:51:0;;;;;;;;;;;;30302:28;30298:93;;30362:9;29967:504;-1:-1:-1;;;29967:504:0:o;30298:93::-;-1:-1:-1;;;30201:6:0;30161:245;;7353:191;7446:6;;;-1:-1:-1;;;;;7463:17:0;;;-1:-1:-1;;;;;;7463:17:0;;;;;;;7496:40;;7446:6;;;7463:17;7446:6;;7496:40;;7427:16;;7496:40;7416:128;7353:191;:::o;39642:765::-;39797:4;-1:-1:-1;;;;;39818:13:0;;8958:19;:23;39814:586;;39854:72;;-1:-1:-1;;;39854:72:0;;-1:-1:-1;;;;;39854:36:0;;;;;:72;;4999:10;;39905:4;;39911:7;;39920:5;;39854:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39854:72:0;;;;;;;;-1:-1:-1;;39854:72:0;;;;;;;;;;;;:::i;:::-;;;39850:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40100:13:0;;40096:234;;40127:40;;-1:-1:-1;;;40127:40:0;;;;;;;;;;;40096:234;40280:6;40274:13;40265:6;40261:2;40257:15;40250:38;39850:495;-1:-1:-1;;;;;;39977:55:0;-1:-1:-1;;;39977:55:0;;-1:-1:-1;39970:62:0;;39814:586;-1:-1:-1;40384:4:0;39814:586;39642:765;;;;;;:::o;2587:723::-;2643:13;2864:10;2860:53;;-1:-1:-1;;2891:10:0;;;;;;;;;;;;-1:-1:-1;;;2891:10:0;;;;;2587:723::o;2860:53::-;2938:5;2923:12;2979:78;2986:9;;2979:78;;3012:8;;;;:::i;:::-;;-1:-1:-1;3035:10:0;;-1:-1:-1;3043:2:0;3035:10;;:::i;:::-;;;2979:78;;;3067:19;3099:6;3089:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3089:17:0;;3067:39;;3117:154;3124:10;;3117:154;;3151:11;3161:1;3151:11;;:::i;:::-;;-1:-1:-1;3220:10:0;3228:2;3220:5;:10;:::i;:::-;3207:24;;:2;:24;:::i;:::-;3194:39;;3177:6;3184;3177:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3177:56:0;;;;;;;;-1:-1:-1;3248:11:0;3257:2;3248:11;;:::i;:::-;;;3117:154;;1418:675;1501:7;1544:4;1501:7;1559:497;1583:5;:12;1579:1;:16;1559:497;;;1617:20;1640:5;1646:1;1640:8;;;;;;;;:::i;:::-;;;;;;;1617:31;;1683:12;1667;:28;1663:382;;2169:13;2219:15;;;2255:4;2248:15;;;2302:4;2286:21;;1795:57;;1663:382;;;2169:13;2219:15;;;2255:4;2248:15;;;2302:4;2286:21;;1972:57;;1663:382;-1:-1:-1;1597:3:0;;;;:::i;:::-;;;;1559:497;;34705:163;34828:32;34834:2;34838:8;34848:5;34855:4;35266:20;35289:13;-1:-1:-1;;;;;35317:16:0;;35313:48;;35342:19;;-1:-1:-1;;;35342:19:0;;;;;;;;;;;35313:48;35376:13;35372:44;;35398:18;;-1:-1:-1;;;35398:18:0;;;;;;;;;;;35372:44;-1:-1:-1;;;;;35769:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;35769:45:0;;-1:-1:-1;;;;;35769:45:0;;;;;;;;;;35829:50;;;;;;;;;;;;;;35896:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;35946:66:0;;;;-1:-1:-1;;;35996:15:0;35946:66;;;;;;;35896:25;;36081:330;36101:8;36097:1;:12;36081:330;;;36140:38;;36165:12;;-1:-1:-1;;;;;36140:38:0;;;36157:1;;36140:38;;36157:1;;36140:38;36201:4;:68;;;;;36210:59;36241:1;36245:2;36249:12;36263:5;36210:22;:59::i;:::-;36209:60;36201:68;36197:164;;;36301:40;;-1:-1:-1;;;36301:40:0;;;;;;;;;;;36197:164;36381:14;;;;;36111:3;36081:330;;;-1:-1:-1;36427:13:0;:28;36479:60;33555:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:257::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5157:63;5213:6;5206:4;5201:3;5197:14;5190:4;5183:5;5179:16;5157:63;:::i;:::-;5274:2;5253:15;-1:-1:-1;;5249:29:1;5240:39;;;;5281:4;5236:50;;5035:257;-1:-1:-1;;5035:257:1:o;5297:185::-;5339:3;5377:5;5371:12;5392:52;5437:6;5432:3;5425:4;5418:5;5414:16;5392:52;:::i;:::-;5460:16;;;;;5297:185;-1:-1:-1;;5297:185:1:o;5839:1301::-;6116:3;6145:1;6178:6;6172:13;6208:3;6230:1;6258:9;6254:2;6250:18;6240:28;;6318:2;6307:9;6303:18;6340;6330:61;;6384:4;6376:6;6372:17;6362:27;;6330:61;6410:2;6458;6450:6;6447:14;6427:18;6424:38;6421:165;;;-1:-1:-1;;;6485:33:1;;6541:4;6538:1;6531:15;6571:4;6492:3;6559:17;6421:165;6602:18;6629:104;;;;6747:1;6742:320;;;;6595:467;;6629:104;-1:-1:-1;;6662:24:1;;6650:37;;6707:16;;;;-1:-1:-1;6629:104:1;;6742:320;14355:1;14348:14;;;14392:4;14379:18;;6837:1;6851:165;6865:6;6862:1;6859:13;6851:165;;;6943:14;;6930:11;;;6923:35;6986:16;;;;6880:10;;6851:165;;;6855:3;;7045:6;7040:3;7036:16;7029:23;;6595:467;;;;;;;7078:56;7103:30;7129:3;7121:6;7103:30;:::i;:::-;-1:-1:-1;;;5547:20:1;;5592:1;5583:11;;5487:113;7078:56;7071:63;5839:1301;-1:-1:-1;;;;;5839:1301:1:o;7353:488::-;-1:-1:-1;;;;;7622:15:1;;;7604:34;;7674:15;;7669:2;7654:18;;7647:43;7721:2;7706:18;;7699:34;;;7769:3;7764:2;7749:18;;7742:31;;;7547:4;;7790:45;;7815:19;;7807:6;7790:45;:::i;:::-;7782:53;7353:488;-1:-1:-1;;;;;;7353:488:1:o;7846:632::-;8017:2;8069:21;;;8139:13;;8042:18;;;8161:22;;;7988:4;;8017:2;8240:15;;;;8214:2;8199:18;;;7988:4;8283:169;8297:6;8294:1;8291:13;8283:169;;;8358:13;;8346:26;;8427:15;;;;8392:12;;;;8319:1;8312:9;8283:169;;;-1:-1:-1;8469:3:1;;7846:632;-1:-1:-1;;;;;;7846:632:1:o;8857:219::-;9006:2;8995:9;8988:21;8969:4;9026:44;9066:2;9055:9;9051:18;9043:6;9026:44;:::i;11583:356::-;11785:2;11767:21;;;11804:18;;;11797:30;11863:34;11858:2;11843:18;;11836:62;11930:2;11915:18;;11583:356::o;14002:275::-;14073:2;14067:9;14138:2;14119:13;;-1:-1:-1;;14115:27:1;14103:40;;14173:18;14158:34;;14194:22;;;14155:62;14152:88;;;14220:18;;:::i;:::-;14256:2;14249:22;14002:275;;-1:-1:-1;14002:275:1:o;14408:128::-;14448:3;14479:1;14475:6;14472:1;14469:13;14466:39;;;14485:18;;:::i;:::-;-1:-1:-1;14521:9:1;;14408:128::o;14541:120::-;14581:1;14607;14597:35;;14612:18;;:::i;:::-;-1:-1:-1;14646:9:1;;14541:120::o;14666:168::-;14706:7;14772:1;14768;14764:6;14760:14;14757:1;14754:21;14749:1;14742:9;14735:17;14731:45;14728:71;;;14779:18;;:::i;:::-;-1:-1:-1;14819:9:1;;14666:168::o;14839:125::-;14879:4;14907:1;14904;14901:8;14898:34;;;14912:18;;:::i;:::-;-1:-1:-1;14949:9:1;;14839:125::o;14969:258::-;15041:1;15051:113;15065:6;15062:1;15059:13;15051:113;;;15141:11;;;15135:18;15122:11;;;15115:39;15087:2;15080:10;15051:113;;;15182:6;15179:1;15176:13;15173:48;;;-1:-1:-1;;15217:1:1;15199:16;;15192:27;14969:258::o;15232:380::-;15311:1;15307:12;;;;15354;;;15375:61;;15429:4;15421:6;15417:17;15407:27;;15375:61;15482:2;15474:6;15471:14;15451:18;15448:38;15445:161;;;15528:10;15523:3;15519:20;15516:1;15509:31;15563:4;15560:1;15553:15;15591:4;15588:1;15581:15;15445:161;;15232:380;;;:::o;15617:135::-;15656:3;-1:-1:-1;;15677:17:1;;15674:43;;;15697:18;;:::i;:::-;-1:-1:-1;15744:1:1;15733:13;;15617:135::o;15757:112::-;15789:1;15815;15805:35;;15820:18;;:::i;:::-;-1:-1:-1;15854:9:1;;15757:112::o;15874:127::-;15935:10;15930:3;15926:20;15923:1;15916:31;15966:4;15963:1;15956:15;15990:4;15987:1;15980:15;16006:127;16067:10;16062:3;16058:20;16055:1;16048:31;16098:4;16095:1;16088:15;16122:4;16119:1;16112:15;16138:127;16199:10;16194:3;16190:20;16187:1;16180:31;16230:4;16227:1;16220:15;16254:4;16251:1;16244:15;16270:127;16331:10;16326:3;16322:20;16319:1;16312:31;16362:4;16359:1;16352:15;16386:4;16383:1;16376:15;16402:127;16463:10;16458:3;16454:20;16451:1;16444:31;16494:4;16491:1;16484:15;16518:4;16515:1;16508:15;16534:131;-1:-1:-1;;;;;;16608:32:1;;16598:43;;16588:71;;16655:1;16652;16645:12

Swarm Source

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