ETH Price: $3,381.79 (-1.90%)
Gas: 3 Gwei

Token

BeeFrens (BEEFRENS)
 

Overview

Max Total Supply

8,888 BEEFRENS

Holders

1,895

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 BEEFRENS
0xF6AAFb44BC183D3083BFAe12D743d947Ca376562
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:
BeeFrens

Compiler Version
v0.8.14+commit.80d49f37

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-31
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

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

// File: contracts/BeeFrens/BeeFrens_NFT.sol


pragma solidity ^0.8.7;









// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

pragma solidity ^0.8.4;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

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

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

contract BeeFrens is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 8888;

    string private BASE_URI;
    string private UNREVEAL_URI;

    bytes32 public PRIVATE_ROOT;
    bytes32 public WHITELIST_ROOT;

    uint256 public PUBLIC_MINT_LIMIT = 2;

    uint256 public SALE_STEP = 0; // 0 => NONE, 1 => STAGE1, 2 => STAGE2, 3 => PUBLIC

    constructor() ERC721A("BeeFrens", "BEEFRENS") {}

    function setPrivateRoot(bytes32 _root) external onlyOwner {
        PRIVATE_ROOT = _root;
    }

    function setWhitelistRoot(bytes32 _root) external onlyOwner {
        WHITELIST_ROOT = _root;
    }

    function setPublicMintLimit(uint256 _publicMintLimit) external onlyOwner {
        PUBLIC_MINT_LIMIT = _publicMintLimit;
    }

    function isPrivated(bytes32 _leafNode, bytes32[] memory _proof) public view returns (bool) {
        return MerkleProof.verify(_proof, PRIVATE_ROOT, _leafNode);
    }
    function isWhiteListed(bytes32 _leafNode, bytes32[] memory _proof) public view returns (bool) {
        return MerkleProof.verify(_proof, WHITELIST_ROOT, _leafNode);
    }
    function toLeaf(address account, uint256 index, uint256 amount) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(index, account, amount));
    }
    
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mintPrivate(uint256 _mintAmount, uint256 _index, uint256 _amount, bytes32[] calldata _proof) external payable {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP == 1, "Stage 1 is not opened");

        require(isPrivated(toLeaf(msg.sender, _index, _amount), _proof), "Invalid proof");
        
        require((numberMinted(msg.sender) + _mintAmount) <= _amount, "Exceeds Max Mint Amount");

        _mintLoop(msg.sender, _mintAmount);
    }

    function mintWhitelist(uint256 _mintAmount, uint256 _index, uint256 _amount, bytes32[] calldata _proof) external payable {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP == 2, "Stage 2 is not opened");

        require(isWhiteListed(toLeaf(msg.sender, _index, _amount), _proof), "Invalid proof");
        
        require((numberMinted(msg.sender) + _mintAmount) <= _amount, "Exceeds Max Mint Amount");

        _mintLoop(msg.sender, _mintAmount);
    }

    function mintPublic(uint256 _mintAmount) external payable {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP == 3, "Public Sale is not opened");

        require((numberMinted(msg.sender) + _mintAmount) <= PUBLIC_MINT_LIMIT, "Exceeds Max Mint Amount");

        _mintLoop(msg.sender, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _airdropAddresses.length * _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _mintAmount);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : UNREVEAL_URI;
    }

    function setMaxSupply(uint256 _supply) external onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        BASE_URI = _newBaseURI;
    }

    function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner {
        UNREVEAL_URI = _newUnrevealURI;
    }

    function setSaleStep(uint256 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

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

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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIVATE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isPrivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintPrivate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setPrivateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStep","type":"uint256"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRoot","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"toLeaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b86009556002600e556000600f553480156200002157600080fd5b50604051806040016040528060088152602001674265654672656e7360c01b815250604051806040016040528060088152602001674245454652454e5360c01b81525081600290805190602001906200007c9291906200010b565b508051620000929060039060208401906200010b565b505050620000af620000a9620000b560201b60201c565b620000b9565b620001ed565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b602082108103620001e757634e487b7160e01b600052602260045260246000fd5b50919050565b61233a80620001fd6000396000f3fe6080604052600436106102305760003560e01c80638da5cb5b1161012e578063c5a53581116100ab578063efd0cbf91161006f578063efd0cbf9146106a6578063f2fde38b146106b9578063f5aa406d146106d9578063fdaf0125146106f9578063ff63cf011461071957600080fd5b8063c5a53581146105dd578063c87b56dd146105fd578063dc33e6811461061d578063e985e9c51461063d578063ef3e067c1461068657600080fd5b8063afd2b87c116100f2578063afd2b87c14610547578063b88d4fde14610567578063bceae77b14610587578063bd6454541461059d578063c204642c146105bd57600080fd5b80638da5cb5b1461047e5780639231ab2a1461049c57806395d89b41146104f257806397bc411c14610507578063a22cb4651461052757600080fd5b806342842e0e116101bc57806370a082311161018057806370a082311461040a578063715018a61461042a57806380dc041b1461043f57806384b9a4a5146104555780638910dd6a1461046b57600080fd5b806342842e0e1461036a57806353e90cbd1461038a57806355f804b3146103aa5780636352211e146103ca5780636f8b44b0146103ea57600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd146103095780632a1d61901461032957806332cb6b0c1461033f5780633ccfd60b1461035557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611bdf565b61072c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61077e565b6040516102619190611c54565b34801561029857600080fd5b506102ac6102a7366004611c67565b610810565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611c9c565b610854565b005b3480156102f257600080fd5b50600154600054035b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004611cc6565b6108e1565b34801561033557600080fd5b506102fb600d5481565b34801561034b57600080fd5b506102fb60095481565b34801561036157600080fd5b506102e46108ec565b34801561037657600080fd5b506102e4610385366004611cc6565b610952565b34801561039657600080fd5b506102e46103a5366004611c67565b61096d565b3480156103b657600080fd5b506102e46103c5366004611d9f565b61099c565b3480156103d657600080fd5b506102ac6103e5366004611c67565b6109d9565b3480156103f657600080fd5b506102e4610405366004611c67565b6109eb565b34801561041657600080fd5b506102fb610425366004611de7565b610a1a565b34801561043657600080fd5b506102e4610a68565b34801561044b57600080fd5b506102fb600c5481565b34801561046157600080fd5b506102fb600f5481565b6102e4610479366004611e02565b610a9e565b34801561048a57600080fd5b506008546001600160a01b03166102ac565b3480156104a857600080fd5b506104bc6104b7366004611c67565b610c12565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610261565b3480156104fe57600080fd5b5061027f610c38565b34801561051357600080fd5b506102e4610522366004611d9f565b610c47565b34801561053357600080fd5b506102e4610542366004611e91565b610c84565b34801561055357600080fd5b506102e4610562366004611c67565b610d19565b34801561057357600080fd5b506102e4610582366004611ecd565b610d48565b34801561059357600080fd5b506102fb600e5481565b3480156105a957600080fd5b506102556105b8366004611f6b565b610d82565b3480156105c957600080fd5b506102e46105d836600461200c565b610d98565b3480156105e957600080fd5b506102556105f8366004611f6b565b610e48565b34801561060957600080fd5b5061027f610618366004611c67565b610e57565b34801561062957600080fd5b506102fb610638366004611de7565b610f9c565b34801561064957600080fd5b506102556106583660046120a9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069257600080fd5b506102e46106a1366004611c67565b610fa7565b6102e46106b4366004611c67565b610fd6565b3480156106c557600080fd5b506102e46106d4366004611de7565b6110cd565b3480156106e557600080fd5b506102e46106f4366004611c67565b611165565b34801561070557600080fd5b506102fb6107143660046120dc565b611194565b6102e4610727366004611e02565b6111dd565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461078d9061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b99061210f565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b826112a7565b610838576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085f826109d9565b9050806001600160a01b0316836001600160a01b0316036108935760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108b357506108b18133610658565b155b156108d1576040516367d9dca160e11b815260040160405180910390fd5b6108dc8383836112d2565b505050565b6108dc83838361132e565b6008546001600160a01b0316331461091f5760405162461bcd60e51b815260040161091690612149565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f1935050505015801561094e573d6000803e3d6000fd5b5050565b6108dc83838360405180602001604052806000815250610d48565b6008546001600160a01b031633146109975760405162461bcd60e51b815260040161091690612149565b600f55565b6008546001600160a01b031633146109c65760405162461bcd60e51b815260040161091690612149565b805161094e90600a906020840190611b30565b60006109e48261153f565b5192915050565b6008546001600160a01b03163314610a155760405162461bcd60e51b815260040161091690612149565b600955565b60006001600160a01b038216610a43576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a925760405162461bcd60e51b815260040161091690612149565b610a9c6000611658565b565b60095485610aaf6001546000540390565b610ab99190612194565b1115610ad75760405162461bcd60e51b8152600401610916906121ac565b600f54600114610b215760405162461bcd60e51b815260206004820152601560248201527414dd1859d9480c481a5cc81b9bdd081bdc195b9959605a1b6044820152606401610916565b610b68610b2f338686611194565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610e4892505050565b610ba45760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610916565b8285610baf33610f9c565b610bb99190612194565b1115610c015760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610916565b610c0b33866116aa565b5050505050565b60408051606081018252600080825260208201819052918101919091526107788261153f565b60606003805461078d9061210f565b6008546001600160a01b03163314610c715760405162461bcd60e51b815260040161091690612149565b805161094e90600b906020840190611b30565b336001600160a01b03831603610cad5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d435760405162461bcd60e51b815260040161091690612149565b600c55565b610d5384848461132e565b610d5f848484846116b4565b610d7c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610d9182600d54856117b7565b9392505050565b6008546001600160a01b03163314610dc25760405162461bcd60e51b815260040161091690612149565b600954818351610dd291906121d8565b60015460005403610de39190612194565b1115610e015760405162461bcd60e51b8152600401610916906121ac565b60005b82518110156108dc576000838281518110610e2157610e216121f7565b60200260200101519050610e3581846116aa565b5080610e408161220d565b915050610e04565b6000610d9182600c54856117b7565b6060610e62826112a7565b610ec65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610916565b6000610ed06117cd565b90506000815111610f6b57600b8054610ee89061210f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f149061210f565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b5050505050610d91565b80610f75846117dc565b604051602001610f86929190612226565b6040516020818303038152906040529392505050565b6000610778826118dc565b6008546001600160a01b03163314610fd15760405162461bcd60e51b815260040161091690612149565b600e55565b60095481610fe76001546000540390565b610ff19190612194565b111561100f5760405162461bcd60e51b8152600401610916906121ac565b600f546003146110615760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e6564000000000000006044820152606401610916565b600e548161106e33610f9c565b6110789190612194565b11156110c05760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610916565b6110ca33826116aa565b50565b6008546001600160a01b031633146110f75760405162461bcd60e51b815260040161091690612149565b6001600160a01b03811661115c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610916565b6110ca81611658565b6008546001600160a01b0316331461118f5760405162461bcd60e51b815260040161091690612149565b600d55565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b600954856111ee6001546000540390565b6111f89190612194565b11156112165760405162461bcd60e51b8152600401610916906121ac565b600f546002146112605760405162461bcd60e51b815260206004820152601560248201527414dd1859d9480c881a5cc81b9bdd081bdc195b9959605a1b6044820152606401610916565b610b6861126e338686611194565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610d8292505050565b6000805482108015610778575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113398261153f565b80519091506000906001600160a01b0316336001600160a01b03161480611367575081516113679033610658565b8061138257503361137784610810565b6001600160a01b0316145b9050806113a257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113d75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166113fe57604051633a954ecd60e21b815260040160405180910390fd5b61140e60008484600001516112d2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166114f8576000548110156114f857825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c0b565b604080516060810182526000808252602082018190529181018290529054829081101561163f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061163d5780516001600160a01b0316156115d4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611638579392505050565b6115d4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61094e8282611931565b60006001600160a01b0384163b156117ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116f8903390899088908890600401612255565b6020604051808303816000875af1925050508015611733575060408051601f3d908101601f1916820190925261173091810190612292565b60015b611791573d808015611761576040519150601f19603f3d011682016040523d82523d6000602084013e611766565b606091505b508051600003611789576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117af565b5060015b949350505050565b6000826117c4858461194b565b14949350505050565b6060600a805461078d9061210f565b6060816000036118035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561182d57806118178161220d565b91506118269050600a836122c5565b9150611807565b6000816001600160401b0381111561184757611847611d02565b6040519080825280601f01601f191660200182016040528015611871576020820181803683370190505b5090505b84156117af576118866001836122d9565b9150611893600a866122f0565b61189e906030612194565b60f81b8183815181106118b3576118b36121f7565b60200101906001600160f81b031916908160001a9053506118d5600a866122c5565b9450611875565b60006001600160a01b038216611905576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61094e8282604051806020016040528060008152506119bf565b600081815b84518110156119b757600085828151811061196d5761196d6121f7565b6020026020010151905080831161199357600083815260208290526040902092506119a4565b600081815260208490526040902092505b50806119af8161220d565b915050611950565b509392505050565b6108dc83838360016000546001600160a01b0385166119f057604051622e076360e81b815260040160405180910390fd5b83600003611a115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b275760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611afd5750611afb60008884886116b4565b155b15611b1b576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611aa6565b50600055610c0b565b828054611b3c9061210f565b90600052602060002090601f016020900481019282611b5e5760008555611ba4565b82601f10611b7757805160ff1916838001178555611ba4565b82800160010185558215611ba4579182015b82811115611ba4578251825591602001919060010190611b89565b50611bb0929150611bb4565b5090565b5b80821115611bb05760008155600101611bb5565b6001600160e01b0319811681146110ca57600080fd5b600060208284031215611bf157600080fd5b8135610d9181611bc9565b60005b83811015611c17578181015183820152602001611bff565b83811115610d7c5750506000910152565b60008151808452611c40816020860160208601611bfc565b601f01601f19169290920160200192915050565b602081526000610d916020830184611c28565b600060208284031215611c7957600080fd5b5035919050565b80356001600160a01b0381168114611c9757600080fd5b919050565b60008060408385031215611caf57600080fd5b611cb883611c80565b946020939093013593505050565b600080600060608486031215611cdb57600080fd5b611ce484611c80565b9250611cf260208501611c80565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d4057611d40611d02565b604052919050565b60006001600160401b03831115611d6157611d61611d02565b611d74601f8401601f1916602001611d18565b9050828152838383011115611d8857600080fd5b828260208301376000602084830101529392505050565b600060208284031215611db157600080fd5b81356001600160401b03811115611dc757600080fd5b8201601f81018413611dd857600080fd5b6117af84823560208401611d48565b600060208284031215611df957600080fd5b610d9182611c80565b600080600080600060808688031215611e1a57600080fd5b85359450602086013593506040860135925060608601356001600160401b0380821115611e4657600080fd5b818801915088601f830112611e5a57600080fd5b813581811115611e6957600080fd5b8960208260051b8501011115611e7e57600080fd5b9699959850939650602001949392505050565b60008060408385031215611ea457600080fd5b611ead83611c80565b915060208301358015158114611ec257600080fd5b809150509250929050565b60008060008060808587031215611ee357600080fd5b611eec85611c80565b9350611efa60208601611c80565b92506040850135915060608501356001600160401b03811115611f1c57600080fd5b8501601f81018713611f2d57600080fd5b611f3c87823560208401611d48565b91505092959194509250565b60006001600160401b03821115611f6157611f61611d02565b5060051b60200190565b60008060408385031215611f7e57600080fd5b823591506020808401356001600160401b03811115611f9c57600080fd5b8401601f81018613611fad57600080fd5b8035611fc0611fbb82611f48565b611d18565b81815260059190911b82018301908381019088831115611fdf57600080fd5b928401925b82841015611ffd57833582529284019290840190611fe4565b80955050505050509250929050565b6000806040838503121561201f57600080fd5b82356001600160401b0381111561203557600080fd5b8301601f8101851361204657600080fd5b80356020612056611fbb83611f48565b82815260059290921b8301810191818101908884111561207557600080fd5b938201935b8385101561209a5761208b85611c80565b8252938201939082019061207a565b98969091013596505050505050565b600080604083850312156120bc57600080fd5b6120c583611c80565b91506120d360208401611c80565b90509250929050565b6000806000606084860312156120f157600080fd5b6120fa84611c80565b95602085013595506040909401359392505050565b600181811c9082168061212357607f821691505b60208210810361214357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121a7576121a761217e565b500190565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b60008160001904831182151516156121f2576121f261217e565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161221f5761221f61217e565b5060010190565b60008351612238818460208801611bfc565b83519083019061224c818360208801611bfc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228890830184611c28565b9695505050505050565b6000602082840312156122a457600080fd5b8151610d9181611bc9565b634e487b7160e01b600052601260045260246000fd5b6000826122d4576122d46122af565b500490565b6000828210156122eb576122eb61217e565b500390565b6000826122ff576122ff6122af565b50069056fea2646970667358221220d52fc3ea9330b8c95553b67e0a0d092261e217a9c7e328a6d89c32ed5714ed0c64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80638da5cb5b1161012e578063c5a53581116100ab578063efd0cbf91161006f578063efd0cbf9146106a6578063f2fde38b146106b9578063f5aa406d146106d9578063fdaf0125146106f9578063ff63cf011461071957600080fd5b8063c5a53581146105dd578063c87b56dd146105fd578063dc33e6811461061d578063e985e9c51461063d578063ef3e067c1461068657600080fd5b8063afd2b87c116100f2578063afd2b87c14610547578063b88d4fde14610567578063bceae77b14610587578063bd6454541461059d578063c204642c146105bd57600080fd5b80638da5cb5b1461047e5780639231ab2a1461049c57806395d89b41146104f257806397bc411c14610507578063a22cb4651461052757600080fd5b806342842e0e116101bc57806370a082311161018057806370a082311461040a578063715018a61461042a57806380dc041b1461043f57806384b9a4a5146104555780638910dd6a1461046b57600080fd5b806342842e0e1461036a57806353e90cbd1461038a57806355f804b3146103aa5780636352211e146103ca5780636f8b44b0146103ea57600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd146103095780632a1d61901461032957806332cb6b0c1461033f5780633ccfd60b1461035557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611bdf565b61072c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61077e565b6040516102619190611c54565b34801561029857600080fd5b506102ac6102a7366004611c67565b610810565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611c9c565b610854565b005b3480156102f257600080fd5b50600154600054035b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004611cc6565b6108e1565b34801561033557600080fd5b506102fb600d5481565b34801561034b57600080fd5b506102fb60095481565b34801561036157600080fd5b506102e46108ec565b34801561037657600080fd5b506102e4610385366004611cc6565b610952565b34801561039657600080fd5b506102e46103a5366004611c67565b61096d565b3480156103b657600080fd5b506102e46103c5366004611d9f565b61099c565b3480156103d657600080fd5b506102ac6103e5366004611c67565b6109d9565b3480156103f657600080fd5b506102e4610405366004611c67565b6109eb565b34801561041657600080fd5b506102fb610425366004611de7565b610a1a565b34801561043657600080fd5b506102e4610a68565b34801561044b57600080fd5b506102fb600c5481565b34801561046157600080fd5b506102fb600f5481565b6102e4610479366004611e02565b610a9e565b34801561048a57600080fd5b506008546001600160a01b03166102ac565b3480156104a857600080fd5b506104bc6104b7366004611c67565b610c12565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610261565b3480156104fe57600080fd5b5061027f610c38565b34801561051357600080fd5b506102e4610522366004611d9f565b610c47565b34801561053357600080fd5b506102e4610542366004611e91565b610c84565b34801561055357600080fd5b506102e4610562366004611c67565b610d19565b34801561057357600080fd5b506102e4610582366004611ecd565b610d48565b34801561059357600080fd5b506102fb600e5481565b3480156105a957600080fd5b506102556105b8366004611f6b565b610d82565b3480156105c957600080fd5b506102e46105d836600461200c565b610d98565b3480156105e957600080fd5b506102556105f8366004611f6b565b610e48565b34801561060957600080fd5b5061027f610618366004611c67565b610e57565b34801561062957600080fd5b506102fb610638366004611de7565b610f9c565b34801561064957600080fd5b506102556106583660046120a9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069257600080fd5b506102e46106a1366004611c67565b610fa7565b6102e46106b4366004611c67565b610fd6565b3480156106c557600080fd5b506102e46106d4366004611de7565b6110cd565b3480156106e557600080fd5b506102e46106f4366004611c67565b611165565b34801561070557600080fd5b506102fb6107143660046120dc565b611194565b6102e4610727366004611e02565b6111dd565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461078d9061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b99061210f565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b826112a7565b610838576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085f826109d9565b9050806001600160a01b0316836001600160a01b0316036108935760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108b357506108b18133610658565b155b156108d1576040516367d9dca160e11b815260040160405180910390fd5b6108dc8383836112d2565b505050565b6108dc83838361132e565b6008546001600160a01b0316331461091f5760405162461bcd60e51b815260040161091690612149565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f1935050505015801561094e573d6000803e3d6000fd5b5050565b6108dc83838360405180602001604052806000815250610d48565b6008546001600160a01b031633146109975760405162461bcd60e51b815260040161091690612149565b600f55565b6008546001600160a01b031633146109c65760405162461bcd60e51b815260040161091690612149565b805161094e90600a906020840190611b30565b60006109e48261153f565b5192915050565b6008546001600160a01b03163314610a155760405162461bcd60e51b815260040161091690612149565b600955565b60006001600160a01b038216610a43576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a925760405162461bcd60e51b815260040161091690612149565b610a9c6000611658565b565b60095485610aaf6001546000540390565b610ab99190612194565b1115610ad75760405162461bcd60e51b8152600401610916906121ac565b600f54600114610b215760405162461bcd60e51b815260206004820152601560248201527414dd1859d9480c481a5cc81b9bdd081bdc195b9959605a1b6044820152606401610916565b610b68610b2f338686611194565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610e4892505050565b610ba45760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610916565b8285610baf33610f9c565b610bb99190612194565b1115610c015760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610916565b610c0b33866116aa565b5050505050565b60408051606081018252600080825260208201819052918101919091526107788261153f565b60606003805461078d9061210f565b6008546001600160a01b03163314610c715760405162461bcd60e51b815260040161091690612149565b805161094e90600b906020840190611b30565b336001600160a01b03831603610cad5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d435760405162461bcd60e51b815260040161091690612149565b600c55565b610d5384848461132e565b610d5f848484846116b4565b610d7c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610d9182600d54856117b7565b9392505050565b6008546001600160a01b03163314610dc25760405162461bcd60e51b815260040161091690612149565b600954818351610dd291906121d8565b60015460005403610de39190612194565b1115610e015760405162461bcd60e51b8152600401610916906121ac565b60005b82518110156108dc576000838281518110610e2157610e216121f7565b60200260200101519050610e3581846116aa565b5080610e408161220d565b915050610e04565b6000610d9182600c54856117b7565b6060610e62826112a7565b610ec65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610916565b6000610ed06117cd565b90506000815111610f6b57600b8054610ee89061210f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f149061210f565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b5050505050610d91565b80610f75846117dc565b604051602001610f86929190612226565b6040516020818303038152906040529392505050565b6000610778826118dc565b6008546001600160a01b03163314610fd15760405162461bcd60e51b815260040161091690612149565b600e55565b60095481610fe76001546000540390565b610ff19190612194565b111561100f5760405162461bcd60e51b8152600401610916906121ac565b600f546003146110615760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e6564000000000000006044820152606401610916565b600e548161106e33610f9c565b6110789190612194565b11156110c05760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc813585e08135a5b9d08105b5bdd5b9d604a1b6044820152606401610916565b6110ca33826116aa565b50565b6008546001600160a01b031633146110f75760405162461bcd60e51b815260040161091690612149565b6001600160a01b03811661115c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610916565b6110ca81611658565b6008546001600160a01b0316331461118f5760405162461bcd60e51b815260040161091690612149565b600d55565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b600954856111ee6001546000540390565b6111f89190612194565b11156112165760405162461bcd60e51b8152600401610916906121ac565b600f546002146112605760405162461bcd60e51b815260206004820152601560248201527414dd1859d9480c881a5cc81b9bdd081bdc195b9959605a1b6044820152606401610916565b610b6861126e338686611194565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610d8292505050565b6000805482108015610778575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113398261153f565b80519091506000906001600160a01b0316336001600160a01b03161480611367575081516113679033610658565b8061138257503361137784610810565b6001600160a01b0316145b9050806113a257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113d75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166113fe57604051633a954ecd60e21b815260040160405180910390fd5b61140e60008484600001516112d2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166114f8576000548110156114f857825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c0b565b604080516060810182526000808252602082018190529181018290529054829081101561163f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061163d5780516001600160a01b0316156115d4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611638579392505050565b6115d4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61094e8282611931565b60006001600160a01b0384163b156117ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116f8903390899088908890600401612255565b6020604051808303816000875af1925050508015611733575060408051601f3d908101601f1916820190925261173091810190612292565b60015b611791573d808015611761576040519150601f19603f3d011682016040523d82523d6000602084013e611766565b606091505b508051600003611789576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117af565b5060015b949350505050565b6000826117c4858461194b565b14949350505050565b6060600a805461078d9061210f565b6060816000036118035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561182d57806118178161220d565b91506118269050600a836122c5565b9150611807565b6000816001600160401b0381111561184757611847611d02565b6040519080825280601f01601f191660200182016040528015611871576020820181803683370190505b5090505b84156117af576118866001836122d9565b9150611893600a866122f0565b61189e906030612194565b60f81b8183815181106118b3576118b36121f7565b60200101906001600160f81b031916908160001a9053506118d5600a866122c5565b9450611875565b60006001600160a01b038216611905576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61094e8282604051806020016040528060008152506119bf565b600081815b84518110156119b757600085828151811061196d5761196d6121f7565b6020026020010151905080831161199357600083815260208290526040902092506119a4565b600081815260208490526040902092505b50806119af8161220d565b915050611950565b509392505050565b6108dc83838360016000546001600160a01b0385166119f057604051622e076360e81b815260040160405180910390fd5b83600003611a115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611b275760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611afd5750611afb60008884886116b4565b155b15611b1b576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611aa6565b50600055610c0b565b828054611b3c9061210f565b90600052602060002090601f016020900481019282611b5e5760008555611ba4565b82601f10611b7757805160ff1916838001178555611ba4565b82800160010185558215611ba4579182015b82811115611ba4578251825591602001919060010190611b89565b50611bb0929150611bb4565b5090565b5b80821115611bb05760008155600101611bb5565b6001600160e01b0319811681146110ca57600080fd5b600060208284031215611bf157600080fd5b8135610d9181611bc9565b60005b83811015611c17578181015183820152602001611bff565b83811115610d7c5750506000910152565b60008151808452611c40816020860160208601611bfc565b601f01601f19169290920160200192915050565b602081526000610d916020830184611c28565b600060208284031215611c7957600080fd5b5035919050565b80356001600160a01b0381168114611c9757600080fd5b919050565b60008060408385031215611caf57600080fd5b611cb883611c80565b946020939093013593505050565b600080600060608486031215611cdb57600080fd5b611ce484611c80565b9250611cf260208501611c80565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d4057611d40611d02565b604052919050565b60006001600160401b03831115611d6157611d61611d02565b611d74601f8401601f1916602001611d18565b9050828152838383011115611d8857600080fd5b828260208301376000602084830101529392505050565b600060208284031215611db157600080fd5b81356001600160401b03811115611dc757600080fd5b8201601f81018413611dd857600080fd5b6117af84823560208401611d48565b600060208284031215611df957600080fd5b610d9182611c80565b600080600080600060808688031215611e1a57600080fd5b85359450602086013593506040860135925060608601356001600160401b0380821115611e4657600080fd5b818801915088601f830112611e5a57600080fd5b813581811115611e6957600080fd5b8960208260051b8501011115611e7e57600080fd5b9699959850939650602001949392505050565b60008060408385031215611ea457600080fd5b611ead83611c80565b915060208301358015158114611ec257600080fd5b809150509250929050565b60008060008060808587031215611ee357600080fd5b611eec85611c80565b9350611efa60208601611c80565b92506040850135915060608501356001600160401b03811115611f1c57600080fd5b8501601f81018713611f2d57600080fd5b611f3c87823560208401611d48565b91505092959194509250565b60006001600160401b03821115611f6157611f61611d02565b5060051b60200190565b60008060408385031215611f7e57600080fd5b823591506020808401356001600160401b03811115611f9c57600080fd5b8401601f81018613611fad57600080fd5b8035611fc0611fbb82611f48565b611d18565b81815260059190911b82018301908381019088831115611fdf57600080fd5b928401925b82841015611ffd57833582529284019290840190611fe4565b80955050505050509250929050565b6000806040838503121561201f57600080fd5b82356001600160401b0381111561203557600080fd5b8301601f8101851361204657600080fd5b80356020612056611fbb83611f48565b82815260059290921b8301810191818101908884111561207557600080fd5b938201935b8385101561209a5761208b85611c80565b8252938201939082019061207a565b98969091013596505050505050565b600080604083850312156120bc57600080fd5b6120c583611c80565b91506120d360208401611c80565b90509250929050565b6000806000606084860312156120f157600080fd5b6120fa84611c80565b95602085013595506040909401359392505050565b600181811c9082168061212357607f821691505b60208210810361214357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121a7576121a761217e565b500190565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b60008160001904831182151516156121f2576121f261217e565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161221f5761221f61217e565b5060010190565b60008351612238818460208801611bfc565b83519083019061224c818360208801611bfc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228890830184611c28565b9695505050505050565b6000602082840312156122a457600080fd5b8151610d9181611bc9565b634e487b7160e01b600052601260045260246000fd5b6000826122d4576122d46122af565b500490565b6000828210156122eb576122eb61217e565b500390565b6000826122ff576122ff6122af565b50069056fea2646970667358221220d52fc3ea9330b8c95553b67e0a0d092261e217a9c7e328a6d89c32ed5714ed0c64736f6c634300080e0033

Deployed Bytecode Sourcemap

47177:4659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29975:305;;;;;;;;;;-1:-1:-1;29975:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29975:305:0;;;;;;;;33335:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34838:204::-;;;;;;;;;;-1:-1:-1;34838:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34838:204:0;1528:203:1;34401:371:0;;;;;;;;;;-1:-1:-1;34401:371:0;;;;;:::i;:::-;;:::i;:::-;;29632:271;;;;;;;;;;-1:-1:-1;29868:12:0;;29676:7;29852:13;:28;29632:271;;;2319:25:1;;;2307:2;2292:18;29632:271:0;2173:177:1;35695:170:0;;;;;;;;;;-1:-1:-1;35695:170:0;;;;;:::i;:::-;;:::i;47401:29::-;;;;;;;;;;;;;;;;47260:32;;;;;;;;;;;;;;;;51682:151;;;;;;;;;;;;;:::i;35936:185::-;;;;;;;;;;-1:-1:-1;35936:185:0;;;;;:::i;:::-;;:::i;51304:99::-;;;;;;;;;;-1:-1:-1;51304:99:0;;;;;:::i;:::-;;:::i;51058:107::-;;;;;;;;;;-1:-1:-1;51058:107:0;;;;;:::i;:::-;;:::i;33144:124::-;;;;;;;;;;-1:-1:-1;33144:124:0;;;;;:::i;:::-;;:::i;50953:97::-;;;;;;;;;;-1:-1:-1;50953:97:0;;;;;:::i;:::-;;:::i;30344:206::-;;;;;;;;;;-1:-1:-1;30344:206:0;;;;;:::i;:::-;;:::i;12338:103::-;;;;;;;;;;;;;:::i;47367:27::-;;;;;;;;;;;;;;;;47484:28;;;;;;;;;;;;;;;;48638:520;;;;;;:::i;:::-;;:::i;11687:87::-;;;;;;;;;;-1:-1:-1;11760:6:0;;-1:-1:-1;;;;;11760:6:0;11687:87;;51539:135;;;;;;;;;;-1:-1:-1;51539:135:0;;;;;:::i;:::-;;:::i;:::-;;;;5396:13:1;;-1:-1:-1;;;;;5392:39:1;5374:58;;5492:4;5480:17;;;5474:24;-1:-1:-1;;;;;5470:49:1;5448:20;;;5441:79;5578:17;;;5572:24;5565:32;5558:40;5536:20;;;5529:70;5362:2;5347:18;51539:135:0;5166:439:1;33504:104:0;;;;;;;;;;;;;:::i;51173:123::-;;;;;;;;;;-1:-1:-1;51173:123:0;;;;;:::i;:::-;;:::i;35114:279::-;;;;;;;;;;-1:-1:-1;35114:279:0;;;;;:::i;:::-;;:::i;47629:97::-;;;;;;;;;;-1:-1:-1;47629:97:0;;;;;:::i;:::-;;:::i;36192:342::-;;;;;;;;;;-1:-1:-1;36192:342:0;;;;;:::i;:::-;;:::i;47439:36::-;;;;;;;;;;;;;;;;48153:173;;;;;;;;;;-1:-1:-1;48153:173:0;;;;;:::i;:::-;;:::i;50078:379::-;;;;;;;;;;-1:-1:-1;50078:379:0;;;;;:::i;:::-;;:::i;47979:168::-;;;;;;;;;;-1:-1:-1;47979:168:0;;;;;:::i;:::-;;:::i;50582:363::-;;;;;;;;;;-1:-1:-1;50582:363:0;;;;;:::i;:::-;;:::i;48515:115::-;;;;;;;;;;-1:-1:-1;48515:115:0;;;;;:::i;:::-;;:::i;35464:164::-;;;;;;;;;;-1:-1:-1;35464:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35585:25:0;;;35561:4;35585:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35464:164;47843:128;;;;;;;;;;-1:-1:-1;47843:128:0;;;;;:::i;:::-;;:::i;49699:371::-;;;;;;:::i;:::-;;:::i;12596:201::-;;;;;;;;;;-1:-1:-1;12596:201:0;;;;;:::i;:::-;;:::i;47734:101::-;;;;;;;;;;-1:-1:-1;47734:101:0;;;;;:::i;:::-;;:::i;48332:171::-;;;;;;;;;;-1:-1:-1;48332:171:0;;;;;:::i;:::-;;:::i;49166:525::-;;;;;;:::i;:::-;;:::i;29975:305::-;30077:4;-1:-1:-1;;;;;;30114:40:0;;-1:-1:-1;;;30114:40:0;;:105;;-1:-1:-1;;;;;;;30171:48:0;;-1:-1:-1;;;30171:48:0;30114:105;:158;;;-1:-1:-1;;;;;;;;;;8646:40:0;;;30236:36;30094:178;29975:305;-1:-1:-1;;29975:305:0:o;33335:100::-;33389:13;33422:5;33415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33335:100;:::o;34838:204::-;34906:7;34931:16;34939:7;34931;:16::i;:::-;34926:64;;34956:34;;-1:-1:-1;;;34956:34:0;;;;;;;;;;;34926:64;-1:-1:-1;35010:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35010:24:0;;34838:204::o;34401:371::-;34474:13;34490:24;34506:7;34490:15;:24::i;:::-;34474:40;;34535:5;-1:-1:-1;;;;;34529:11:0;:2;-1:-1:-1;;;;;34529:11:0;;34525:48;;34549:24;;-1:-1:-1;;;34549:24:0;;;;;;;;;;;34525:48;10491:10;-1:-1:-1;;;;;34590:21:0;;;;;;:63;;-1:-1:-1;34616:37:0;34633:5;10491:10;35464:164;:::i;34616:37::-;34615:38;34590:63;34586:138;;;34677:35;;-1:-1:-1;;;34677:35:0;;;;;;;;;;;34586:138;34736:28;34745:2;34749:7;34758:5;34736:8;:28::i;:::-;34463:309;34401:371;;:::o;35695:170::-;35829:28;35839:4;35845:2;35849:7;35829:9;:28::i;51682:151::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;;;;;;;;;51785:40:::1;::::0;51753:21:::1;::::0;51793:10:::1;::::0;51785:40;::::1;;;::::0;51753:21;;51732:18:::1;51785:40:::0;51732:18;51785:40;51753:21;51793:10;51785:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51721:112;51682:151::o:0;35936:185::-;36074:39;36091:4;36097:2;36101:7;36074:39;;;;;;;;;;;;:16;:39::i;51304:99::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;51374:9:::1;:21:::0;51304:99::o;51058:107::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;51135:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;33144:124::-:0;33208:7;33235:20;33247:7;33235:11;:20::i;:::-;:25;;33144:124;-1:-1:-1;;33144:124:0:o;50953:97::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;51022:10:::1;:20:::0;50953:97::o;30344:206::-;30408:7;-1:-1:-1;;;;;30432:19:0;;30428:60;;30460:28;;-1:-1:-1;;;30460:28:0;;;;;;;;;;;30428:60;-1:-1:-1;;;;;;30514:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30514:27:0;;30344:206::o;12338:103::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;12403:30:::1;12430:1;12403:18;:30::i;:::-;12338:103::o:0;48638:520::-;48807:10;;48792:11;48776:13;29868:12;;29676:7;29852:13;:28;;29632:271;48776:13;:27;;;;:::i;:::-;:41;;48768:72;;;;-1:-1:-1;;;48768:72:0;;;;;;;:::i;:::-;48861:9;;48874:1;48861:14;48853:48;;;;-1:-1:-1;;;48853:48:0;;11095:2:1;48853:48:0;;;11077:21:1;11134:2;11114:18;;;11107:30;-1:-1:-1;;;11153:18:1;;;11146:51;11214:18;;48853:48:0;10893:345:1;48853:48:0;48922:55;48933:35;48940:10;48952:6;48960:7;48933:6;:35::i;:::-;48970:6;;48922:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48922:10:0;;-1:-1:-1;;;48922:55:0:i;:::-;48914:81;;;;-1:-1:-1;;;48914:81:0;;11445:2:1;48914:81:0;;;11427:21:1;11484:2;11464:18;;;11457:30;-1:-1:-1;;;11503:18:1;;;11496:43;11556:18;;48914:81:0;11243:337:1;48914:81:0;49068:7;49052:11;49025:24;49038:10;49025:12;:24::i;:::-;:38;;;;:::i;:::-;49024:51;;49016:87;;;;-1:-1:-1;;;49016:87:0;;11787:2:1;49016:87:0;;;11769:21:1;11826:2;11806:18;;;11799:30;-1:-1:-1;;;11845:18:1;;;11838:53;11908:18;;49016:87:0;11585:347:1;49016:87:0;49116:34;49126:10;49138:11;49116:9;:34::i;:::-;48638:520;;;;;:::o;51539:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;51646:20:0;51658:7;51646:11;:20::i;33504:104::-;33560:13;33593:7;33586:14;;;;;:::i;51173:123::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;51258:30;;::::1;::::0;:12:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;35114:279::-:0;10491:10;-1:-1:-1;;;;;35205:24:0;;;35201:54;;35238:17;;-1:-1:-1;;;35238:17:0;;;;;;;;;;;35201:54;10491:10;35268:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35268:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35268:53:0;;;;;;;;;;35337:48;;540:41:1;;;35268:42:0;;10491:10;35337:48;;513:18:1;35337:48:0;;;;;;;35114:279;;:::o;47629:97::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;47698:12:::1;:20:::0;47629:97::o;36192:342::-;36359:28;36369:4;36375:2;36379:7;36359:9;:28::i;:::-;36403:48;36426:4;36432:2;36436:7;36445:5;36403:22;:48::i;:::-;36398:129;;36475:40;;-1:-1:-1;;;36475:40:0;;;;;;;;;;;36398:129;36192:342;;;;:::o;48153:173::-;48241:4;48265:53;48284:6;48292:14;;48308:9;48265:18;:53::i;:::-;48258:60;48153:173;-1:-1:-1;;;48153:173:0:o;50078:379::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;50248:10:::1;;50233:11;50206:17;:24;:38;;;;:::i;:::-;29868:12:::0;;29676:7;29852:13;:28;50190:54:::1;;;;:::i;:::-;:68;;50182:99;;;;-1:-1:-1::0;;;50182:99:0::1;;;;;;;:::i;:::-;50299:9;50294:156;50318:17;:24;50314:1;:28;50294:156;;;50364:10;50377:17;50395:1;50377:20;;;;;;;;:::i;:::-;;;;;;;50364:33;;50412:26;50422:2;50426:11;50412:9;:26::i;:::-;-1:-1:-1::0;50344:3:0;::::1;::::0;::::1;:::i;:::-;;;;50294:156;;47979:168:::0;48064:4;48088:51;48107:6;48115:12;;48129:9;48088:18;:51::i;50582:363::-;50655:13;50689:16;50697:7;50689;:16::i;:::-;50681:76;;;;-1:-1:-1;;;50681:76:0;;12584:2:1;50681:76:0;;;12566:21:1;12623:2;12603:18;;;12596:30;12662:34;12642:18;;;12635:62;-1:-1:-1;;;12713:18:1;;;12706:45;12768:19;;50681:76:0;12382:411:1;50681:76:0;50768:28;50799:10;:8;:10::i;:::-;50768:41;;50858:1;50833:14;50827:28;:32;:110;;50925:12;50827:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50886:14;50902:18;:7;:16;:18::i;:::-;50869:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50820:117;50582:363;-1:-1:-1;;;50582:363:0:o;48515:115::-;48574:7;48601:21;48615:6;48601:13;:21::i;47843:128::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;47927:17:::1;:36:::0;47843:128::o;49699:371::-;49807:10;;49792:11;49776:13;29868:12;;29676:7;29852:13;:28;;29632:271;49776:13;:27;;;;:::i;:::-;:41;;49768:72;;;;-1:-1:-1;;;49768:72:0;;;;;;;:::i;:::-;49861:9;;49874:1;49861:14;49853:52;;;;-1:-1:-1;;;49853:52:0;;13475:2:1;49853:52:0;;;13457:21:1;13514:2;13494:18;;;13487:30;13553:27;13533:18;;;13526:55;13598:18;;49853:52:0;13273:349:1;49853:52:0;49970:17;;49954:11;49927:24;49940:10;49927:12;:24::i;:::-;:38;;;;:::i;:::-;49926:61;;49918:97;;;;-1:-1:-1;;;49918:97:0;;11787:2:1;49918:97:0;;;11769:21:1;11826:2;11806:18;;;11799:30;-1:-1:-1;;;11845:18:1;;;11838:53;11908:18;;49918:97:0;11585:347:1;49918:97:0;50028:34;50038:10;50050:11;50028:9;:34::i;:::-;49699:371;:::o;12596:201::-;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12685:22:0;::::1;12677:73;;;::::0;-1:-1:-1;;;12677:73:0;;13829:2:1;12677:73:0::1;::::0;::::1;13811:21:1::0;13868:2;13848:18;;;13841:30;13907:34;13887:18;;;13880:62;-1:-1:-1;;;13958:18:1;;;13951:36;14004:19;;12677:73:0::1;13627:402:1::0;12677:73:0::1;12761:28;12780:8;12761:18;:28::i;47734:101::-:0;11760:6;;-1:-1:-1;;;;;11760:6:0;10491:10;11907:23;11899:68;;;;-1:-1:-1;;;11899:68:0;;;;;;;:::i;:::-;47805:14:::1;:22:::0;47734:101::o;48332:171::-;48454:40;;;;;;;14219:19:1;;;;14276:2;14272:15;;;;-1:-1:-1;;14268:53:1;14254:12;;;14247:75;14338:12;;;;14331:28;;;;48454:40:0;;;;;;;;;;14375:12:1;;;;48454:40:0;;;48444:51;;;;;;48332:171::o;49166:525::-;49337:10;;49322:11;49306:13;29868:12;;29676:7;29852:13;:28;;29632:271;49306:13;:27;;;;:::i;:::-;:41;;49298:72;;;;-1:-1:-1;;;49298:72:0;;;;;;;:::i;:::-;49391:9;;49404:1;49391:14;49383:48;;;;-1:-1:-1;;;49383:48:0;;14600:2:1;49383:48:0;;;14582:21:1;14639:2;14619:18;;;14612:30;-1:-1:-1;;;14658:18:1;;;14651:51;14719:18;;49383:48:0;14398:345:1;49383:48:0;49452:58;49466:35;49473:10;49485:6;49493:7;49466:6;:35::i;:::-;49503:6;;49452:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49452:13:0;;-1:-1:-1;;;49452:58:0:i;36789:144::-;36846:4;36880:13;;36870:7;:23;:55;;;;-1:-1:-1;;36898:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36898:27:0;;;;36897:28;;36789:144::o;43995:196::-;44110:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44110:29:0;-1:-1:-1;;;;;44110:29:0;;;;;;;;;44155:28;;44110:24;;44155:28;;;;;;;43995:196;;;:::o;39496:2112::-;39611:35;39649:20;39661:7;39649:11;:20::i;:::-;39724:18;;39611:58;;-1:-1:-1;39682:22:0;;-1:-1:-1;;;;;39708:34:0;10491:10;-1:-1:-1;;;;;39708:34:0;;:101;;;-1:-1:-1;39776:18:0;;39759:50;;10491:10;35464:164;:::i;39759:50::-;39708:154;;;-1:-1:-1;10491:10:0;39826:20;39838:7;39826:11;:20::i;:::-;-1:-1:-1;;;;;39826:36:0;;39708:154;39682:181;;39881:17;39876:66;;39907:35;;-1:-1:-1;;;39907:35:0;;;;;;;;;;;39876:66;39979:4;-1:-1:-1;;;;;39957:26:0;:13;:18;;;-1:-1:-1;;;;;39957:26:0;;39953:67;;39992:28;;-1:-1:-1;;;39992:28:0;;;;;;;;;;;39953:67;-1:-1:-1;;;;;40035:16:0;;40031:52;;40060:23;;-1:-1:-1;;;40060:23:0;;;;;;;;;;;40031:52;40204:49;40221:1;40225:7;40234:13;:18;;;40204:8;:49::i;:::-;-1:-1:-1;;;;;40549:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40549:31:0;;;-1:-1:-1;;;;;40549:31:0;;;-1:-1:-1;;40549:31:0;;;;;;;40595:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40595:29:0;;;;;;;;;;;40641:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40686:61:0;;;;-1:-1:-1;;;40731:15:0;40686:61;;;;;;;;;;;41021:11;;;41051:24;;;;;:29;41021:11;;41051:29;41047:445;;41276:13;;41262:11;:27;41258:219;;;41346:18;;;41314:24;;;:11;:24;;;;;;;;:50;;41429:28;;;;-1:-1:-1;;;;;41387:70:0;-1:-1:-1;;;41387:70:0;-1:-1:-1;;;;;;41387:70:0;;;-1:-1:-1;;;;;41314:50:0;;;41387:70;;;;;;;41258:219;40524:979;41539:7;41535:2;-1:-1:-1;;;;;41520:27:0;41529:4;-1:-1:-1;;;;;41520:27:0;;;;;;;;;;;41558:42;36192:342;31999:1083;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;32165:13:0;;32109:7;;32158:20;;32154:861;;;32199:31;32233:17;;;:11;:17;;;;;;;;;32199:51;;;;;;;;;-1:-1:-1;;;;;32199:51:0;;;;-1:-1:-1;;;32199:51:0;;-1:-1:-1;;;;;32199:51:0;;;;;;;;-1:-1:-1;;;32199:51:0;;;;;;;;;;;;;;32269:731;;32319:14;;-1:-1:-1;;;;;32319:28:0;;32315:101;;32383:9;31999:1083;-1:-1:-1;;;31999:1083:0:o;32315:101::-;-1:-1:-1;;;32760:6:0;32805:17;;;;:11;:17;;;;;;;;;32793:29;;;;;;;;;-1:-1:-1;;;;;32793:29:0;;;;;-1:-1:-1;;;32793:29:0;;-1:-1:-1;;;;;32793:29:0;;;;;;;;-1:-1:-1;;;32793:29:0;;;;;;;;;;;;;32853:28;32849:109;;32921:9;31999:1083;-1:-1:-1;;;31999:1083:0:o;32849:109::-;32720:261;;;32180:835;32154:861;33043:31;;-1:-1:-1;;;33043:31:0;;;;;;;;;;;12957:191;13050:6;;;-1:-1:-1;;;;;13067:17:0;;;-1:-1:-1;;;;;;13067:17:0;;;;;;;13100:40;;13050:6;;;13067:17;13050:6;;13100:40;;13031:16;;13100:40;13020:128;12957:191;:::o;51411:120::-;51490:33;51500:9;51511:11;51490:9;:33::i;44756:790::-;44911:4;-1:-1:-1;;;;;44932:13:0;;14683:19;:23;44928:611;;44968:72;;-1:-1:-1;;;44968:72:0;;-1:-1:-1;;;;;44968:36:0;;;;;:72;;10491:10;;45019:4;;45025:7;;45034:5;;44968:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44968:72:0;;;;;;;;-1:-1:-1;;44968:72:0;;;;;;;;;;;;:::i;:::-;;;44964:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45214:6;:13;45231:1;45214:18;45210:259;;45264:40;;-1:-1:-1;;;45264:40:0;;;;;;;;;;;45210:259;45419:6;45413:13;45404:6;45400:2;45396:15;45389:38;44964:520;-1:-1:-1;;;;;;45091:55:0;-1:-1:-1;;;45091:55:0;;-1:-1:-1;45084:62:0;;44928:611;-1:-1:-1;45523:4:0;44928:611;44756:790;;;;;;:::o;24705:190::-;24830:4;24883;24854:25;24867:5;24874:4;24854:12;:25::i;:::-;:33;;24705:190;-1:-1:-1;;;;24705:190:0:o;50465:109::-;50525:13;50558:8;50551:15;;;;;:::i;22023:723::-;22079:13;22300:5;22309:1;22300:10;22296:53;;-1:-1:-1;;22327:10:0;;;;;;;;;;;;-1:-1:-1;;;22327:10:0;;;;;22023:723::o;22296:53::-;22374:5;22359:12;22415:78;22422:9;;22415:78;;22448:8;;;;:::i;:::-;;-1:-1:-1;22471:10:0;;-1:-1:-1;22479:2:0;22471:10;;:::i;:::-;;;22415:78;;;22503:19;22535:6;-1:-1:-1;;;;;22525:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22525:17:0;;22503:39;;22553:154;22560:10;;22553:154;;22587:11;22597:1;22587:11;;:::i;:::-;;-1:-1:-1;22656:10:0;22664:2;22656:5;:10;:::i;:::-;22643:24;;:2;:24;:::i;:::-;22630:39;;22613:6;22620;22613:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22613:56:0;;;;;;;;-1:-1:-1;22684:11:0;22693:2;22684:11;;:::i;:::-;;;22553:154;;30632:207;30693:7;-1:-1:-1;;;;;30717:19:0;;30713:59;;30745:27;;-1:-1:-1;;;30745:27:0;;;;;;;;;;;30713:59;-1:-1:-1;;;;;;30798:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30798:32:0;;-1:-1:-1;;;;;30798:32:0;;30632:207::o;36941:104::-;37010:27;37020:2;37024:8;37010:27;;;;;;;;;;;;:9;:27::i;25257:675::-;25340:7;25383:4;25340:7;25398:497;25422:5;:12;25418:1;:16;25398:497;;;25456:20;25479:5;25485:1;25479:8;;;;;;;;:::i;:::-;;;;;;;25456:31;;25522:12;25506;:28;25502:382;;26008:13;26058:15;;;26094:4;26087:15;;;26141:4;26125:21;;25634:57;;25502:382;;;26008:13;26058:15;;;26094:4;26087:15;;;26141:4;26125:21;;25811:57;;25502:382;-1:-1:-1;25436:3:0;;;;:::i;:::-;;;;25398:497;;;-1:-1:-1;25912:12:0;25257:675;-1:-1:-1;;;25257:675:0:o;37408:163::-;37531:32;37537:2;37541:8;37551:5;37558:4;37969:20;37992:13;-1:-1:-1;;;;;38020:16:0;;38016:48;;38045:19;;-1:-1:-1;;;38045:19:0;;;;;;;;;;;38016:48;38079:8;38091:1;38079:13;38075:44;;38101:18;;-1:-1:-1;;;38101:18:0;;;;;;;;;;;38075:44;-1:-1:-1;;;;;38470:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38529:49:0;;-1:-1:-1;;;;;38470:44:0;;;;;;;38529:49;;;-1:-1:-1;;;;;38470:44:0;;;;;;38529:49;;;;;;;;;;;;;;;;38595:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38645:66:0;;;;-1:-1:-1;;;38695:15:0;38645:66;;;;;;;;;;;38595:25;;38780:328;38800:8;38796:1;:12;38780:328;;;38839:38;;38864:12;;-1:-1:-1;;;;;38839:38:0;;;38856:1;;38839:38;;38856:1;;38839:38;38900:4;:68;;;;;38909:59;38940:1;38944:2;38948:12;38962:5;38909:22;:59::i;:::-;38908:60;38900:68;38896:164;;;39000:40;;-1:-1:-1;;;39000:40:0;;;;;;;;;;;38896:164;39078:14;;;;;38810:3;38780:328;;;-1:-1:-1;39124:13:0;:28;39174:60;36192:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:127::-;2931:10;2926:3;2922:20;2919:1;2912:31;2962:4;2959:1;2952:15;2986:4;2983:1;2976:15;3002:275;3073:2;3067:9;3138:2;3119:13;;-1:-1:-1;;3115:27:1;3103:40;;-1:-1:-1;;;;;3158:34:1;;3194:22;;;3155:62;3152:88;;;3220:18;;:::i;:::-;3256:2;3249:22;3002:275;;-1:-1:-1;3002:275:1:o;3282:407::-;3347:5;-1:-1:-1;;;;;3373:6:1;3370:30;3367:56;;;3403:18;;:::i;:::-;3441:57;3486:2;3465:15;;-1:-1:-1;;3461:29:1;3492:4;3457:40;3441:57;:::i;:::-;3432:66;;3521:6;3514:5;3507:21;3561:3;3552:6;3547:3;3543:16;3540:25;3537:45;;;3578:1;3575;3568:12;3537:45;3627:6;3622:3;3615:4;3608:5;3604:16;3591:43;3681:1;3674:4;3665:6;3658:5;3654:18;3650:29;3643:40;3282:407;;;;;:::o;3694:451::-;3763:6;3816:2;3804:9;3795:7;3791:23;3787:32;3784:52;;;3832:1;3829;3822:12;3784:52;3872:9;3859:23;-1:-1:-1;;;;;3897:6:1;3894:30;3891:50;;;3937:1;3934;3927:12;3891:50;3960:22;;4013:4;4005:13;;4001:27;-1:-1:-1;3991:55:1;;4042:1;4039;4032:12;3991:55;4065:74;4131:7;4126:2;4113:16;4108:2;4104;4100:11;4065:74;:::i;4150:186::-;4209:6;4262:2;4250:9;4241:7;4237:23;4233:32;4230:52;;;4278:1;4275;4268:12;4230:52;4301:29;4320:9;4301:29;:::i;4341:820::-;4454:6;4462;4470;4478;4486;4539:3;4527:9;4518:7;4514:23;4510:33;4507:53;;;4556:1;4553;4546:12;4507:53;4592:9;4579:23;4569:33;;4649:2;4638:9;4634:18;4621:32;4611:42;;4700:2;4689:9;4685:18;4672:32;4662:42;;4755:2;4744:9;4740:18;4727:32;-1:-1:-1;;;;;4819:2:1;4811:6;4808:14;4805:34;;;4835:1;4832;4825:12;4805:34;4873:6;4862:9;4858:22;4848:32;;4918:7;4911:4;4907:2;4903:13;4899:27;4889:55;;4940:1;4937;4930:12;4889:55;4980:2;4967:16;5006:2;4998:6;4995:14;4992:34;;;5022:1;5019;5012:12;4992:34;5075:7;5070:2;5060:6;5057:1;5053:14;5049:2;5045:23;5041:32;5038:45;5035:65;;;5096:1;5093;5086:12;5035:65;4341:820;;;;-1:-1:-1;4341:820:1;;-1:-1:-1;5127:2:1;5119:11;;5149:6;4341:820;-1:-1:-1;;;4341:820:1:o;5610:347::-;5675:6;5683;5736:2;5724:9;5715:7;5711:23;5707:32;5704:52;;;5752:1;5749;5742:12;5704:52;5775:29;5794:9;5775:29;:::i;:::-;5765:39;;5854:2;5843:9;5839:18;5826:32;5901:5;5894:13;5887:21;5880:5;5877:32;5867:60;;5923:1;5920;5913:12;5867:60;5946:5;5936:15;;;5610:347;;;;;:::o;6147:667::-;6242:6;6250;6258;6266;6319:3;6307:9;6298:7;6294:23;6290:33;6287:53;;;6336:1;6333;6326:12;6287:53;6359:29;6378:9;6359:29;:::i;:::-;6349:39;;6407:38;6441:2;6430:9;6426:18;6407:38;:::i;:::-;6397:48;;6492:2;6481:9;6477:18;6464:32;6454:42;;6547:2;6536:9;6532:18;6519:32;-1:-1:-1;;;;;6566:6:1;6563:30;6560:50;;;6606:1;6603;6596:12;6560:50;6629:22;;6682:4;6674:13;;6670:27;-1:-1:-1;6660:55:1;;6711:1;6708;6701:12;6660:55;6734:74;6800:7;6795:2;6782:16;6777:2;6773;6769:11;6734:74;:::i;:::-;6724:84;;;6147:667;;;;;;;:::o;6819:183::-;6879:4;-1:-1:-1;;;;;6904:6:1;6901:30;6898:56;;;6934:18;;:::i;:::-;-1:-1:-1;6979:1:1;6975:14;6991:4;6971:25;;6819:183::o;7007:959::-;7100:6;7108;7161:2;7149:9;7140:7;7136:23;7132:32;7129:52;;;7177:1;7174;7167:12;7129:52;7213:9;7200:23;7190:33;;7242:2;7295;7284:9;7280:18;7267:32;-1:-1:-1;;;;;7314:6:1;7311:30;7308:50;;;7354:1;7351;7344:12;7308:50;7377:22;;7430:4;7422:13;;7418:27;-1:-1:-1;7408:55:1;;7459:1;7456;7449:12;7408:55;7495:2;7482:16;7518:60;7534:43;7574:2;7534:43;:::i;:::-;7518:60;:::i;:::-;7612:15;;;7694:1;7690:10;;;;7682:19;;7678:28;;;7643:12;;;;7718:19;;;7715:39;;;7750:1;7747;7740:12;7715:39;7774:11;;;;7794:142;7810:6;7805:3;7802:15;7794:142;;;7876:17;;7864:30;;7827:12;;;;7914;;;;7794:142;;;7955:5;7945:15;;;;;;;7007:959;;;;;:::o;7971:967::-;8064:6;8072;8125:2;8113:9;8104:7;8100:23;8096:32;8093:52;;;8141:1;8138;8131:12;8093:52;8181:9;8168:23;-1:-1:-1;;;;;8206:6:1;8203:30;8200:50;;;8246:1;8243;8236:12;8200:50;8269:22;;8322:4;8314:13;;8310:27;-1:-1:-1;8300:55:1;;8351:1;8348;8341:12;8300:55;8387:2;8374:16;8409:4;8433:60;8449:43;8489:2;8449:43;:::i;8433:60::-;8527:15;;;8609:1;8605:10;;;;8597:19;;8593:28;;;8558:12;;;;8633:19;;;8630:39;;;8665:1;8662;8655:12;8630:39;8689:11;;;;8709:148;8725:6;8720:3;8717:15;8709:148;;;8791:23;8810:3;8791:23;:::i;:::-;8779:36;;8742:12;;;;8835;;;;8709:148;;;8876:5;8913:18;;;;8900:32;;-1:-1:-1;;;;;;7971:967:1:o;8943:260::-;9011:6;9019;9072:2;9060:9;9051:7;9047:23;9043:32;9040:52;;;9088:1;9085;9078:12;9040:52;9111:29;9130:9;9111:29;:::i;:::-;9101:39;;9159:38;9193:2;9182:9;9178:18;9159:38;:::i;:::-;9149:48;;8943:260;;;;;:::o;9208:322::-;9285:6;9293;9301;9354:2;9342:9;9333:7;9329:23;9325:32;9322:52;;;9370:1;9367;9360:12;9322:52;9393:29;9412:9;9393:29;:::i;:::-;9383:39;9469:2;9454:18;;9441:32;;-1:-1:-1;9520:2:1;9505:18;;;9492:32;;9208:322;-1:-1:-1;;;9208:322:1:o;9535:380::-;9614:1;9610:12;;;;9657;;;9678:61;;9732:4;9724:6;9720:17;9710:27;;9678:61;9785:2;9777:6;9774:14;9754:18;9751:38;9748:161;;9831:10;9826:3;9822:20;9819:1;9812:31;9866:4;9863:1;9856:15;9894:4;9891:1;9884:15;9748:161;;9535:380;;;:::o;9920:356::-;10122:2;10104:21;;;10141:18;;;10134:30;10200:34;10195:2;10180:18;;10173:62;10267:2;10252:18;;9920:356::o;10281:127::-;10342:10;10337:3;10333:20;10330:1;10323:31;10373:4;10370:1;10363:15;10397:4;10394:1;10387:15;10413:128;10453:3;10484:1;10480:6;10477:1;10474:13;10471:39;;;10490:18;;:::i;:::-;-1:-1:-1;10526:9:1;;10413:128::o;10546:342::-;10748:2;10730:21;;;10787:2;10767:18;;;10760:30;-1:-1:-1;;;10821:2:1;10806:18;;10799:48;10879:2;10864:18;;10546:342::o;11937:168::-;11977:7;12043:1;12039;12035:6;12031:14;12028:1;12025:21;12020:1;12013:9;12006:17;12002:45;11999:71;;;12050:18;;:::i;:::-;-1:-1:-1;12090:9:1;;11937:168::o;12110:127::-;12171:10;12166:3;12162:20;12159:1;12152:31;12202:4;12199:1;12192:15;12226:4;12223:1;12216:15;12242:135;12281:3;12302:17;;;12299:43;;12322:18;;:::i;:::-;-1:-1:-1;12369:1:1;12358:13;;12242:135::o;12798:470::-;12977:3;13015:6;13009:13;13031:53;13077:6;13072:3;13065:4;13057:6;13053:17;13031:53;:::i;:::-;13147:13;;13106:16;;;;13169:57;13147:13;13106:16;13203:4;13191:17;;13169:57;:::i;:::-;13242:20;;12798:470;-1:-1:-1;;;;12798:470:1:o;14748:489::-;-1:-1:-1;;;;;15017:15:1;;;14999:34;;15069:15;;15064:2;15049:18;;15042:43;15116:2;15101:18;;15094:34;;;15164:3;15159:2;15144:18;;15137:31;;;14942:4;;15185:46;;15211:19;;15203:6;15185:46;:::i;:::-;15177:54;14748:489;-1:-1:-1;;;;;;14748:489:1:o;15242:249::-;15311:6;15364:2;15352:9;15343:7;15339:23;15335:32;15332:52;;;15380:1;15377;15370:12;15332:52;15412:9;15406:16;15431:30;15455:5;15431:30;:::i;15496:127::-;15557:10;15552:3;15548:20;15545:1;15538:31;15588:4;15585:1;15578:15;15612:4;15609:1;15602:15;15628:120;15668:1;15694;15684:35;;15699:18;;:::i;:::-;-1:-1:-1;15733:9:1;;15628:120::o;15753:125::-;15793:4;15821:1;15818;15815:8;15812:34;;;15826:18;;:::i;:::-;-1:-1:-1;15863:9:1;;15753:125::o;15883:112::-;15915:1;15941;15931:35;;15946:18;;:::i;:::-;-1:-1:-1;15980:9:1;;15883:112::o

Swarm Source

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