ETH Price: $3,438.41 (+7.72%)
Gas: 13 Gwei

Token

BrokeApeBudgetClub (BABC)
 

Overview

Max Total Supply

2,624 BABC

Holders

256

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
potatoscallop.eth
Balance
5 BABC
0xC1923cAe3b5ff75c87A1CEfA8E80e2985E1232A8
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:
BrokeApeBudgetClub

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: @openzeppelin/contracts/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/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}
// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        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) {
        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) {
        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 {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) 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) if(!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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @dev 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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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



pragma solidity >=0.8.9 <0.9.0;





contract BrokeApeBudgetClub is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public maxSupply;
    uint256 public cost;
    uint256 public maxFreeMintSupply;
    uint256 public maxFreeMintAmountPerAddr;
    uint256 public maxMintAmountPerTx;

    bool public isFreeMintOpen = false;
    bool public paused = true;
    bool public revealed = false;

    constructor(
        uint256 _maxSupply,
        uint256 _cost,
        uint256 _maxFreeMintSupply,
        uint256 _maxMintAmountPerTx,
        string memory _hiddenMetadataUri
    ) ERC721A("BrokeApeBudgetClub", "BABC") {
        maxSupply = _maxSupply;
        setCost(_cost);
        setMaxFreeMintSupply(_maxFreeMintSupply);
        setMaxMintAmountPerTx(_maxMintAmountPerTx);
        setHiddenMetadataUri(_hiddenMetadataUri);
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount."
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded."
        );
        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds.");
        _;
    }

    function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
        require(
            !paused && isFreeMintOpen,
            "BABC: Free mint phase not open yet."
        );

        require(
            totalSupply() + _mintAmount <= maxFreeMintSupply,
            "BABC: Exceeds max free mint supply."
        );
        require(
            _numberMinted(msg.sender) + _mintAmount <= maxFreeMintAmountPerAddr,
            "BABC: Exceeds max free mint per wallet."
        );
        _safeMint(_msgSender(), _mintAmount);
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
        mintPriceCompliance(_mintAmount)
    {
        require(
            _numberMinted(msg.sender) + _mintAmount <= 100,
            "BABC: Exceeds max mint per wallet."
        );
        require(!paused, "The contract is paused.");

        _safeMint(_msgSender(), _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex
        ) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned) {
                if (ownership.addr != address(0)) {
                    latestOwnerAddress = ownership.addr;
                }

                if (latestOwnerAddress == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;

                    ownedTokenIndex++;
                }
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token."
        );

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

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

    function cutMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply -= _maxSupply;
    }

    function toggleIsFreeMintOpen() public onlyOwner {
        isFreeMintOpen = !isFreeMintOpen;
    }

    function setMaxFreeMintSupply(uint256 _maxFreeMintSupply) public onlyOwner {
        maxFreeMintSupply = _maxFreeMintSupply;
    }

    function setMaxFreeMintAmountPerAddr(uint256 _maxFreeMintAmountPerAddr)
        public
        onlyOwner
    {
        maxFreeMintAmountPerAddr = _maxFreeMintAmountPerAddr;
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_receiver, _mintAmount);
    }

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

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

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

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

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os, "Withdraw failed.");
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxFreeMintSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintAmountPerAddr","type":"uint256"}],"name":"setMaxFreeMintAmountPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintSupply","type":"uint256"}],"name":"setMaxFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"toggleIsFreeMintOpen","outputs":[],"stateMutability":"nonpayable","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a91620002f5565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620002f5565b506012805462ffffff19166101001790553480156200006857600080fd5b5060405162002afa38038062002afa8339810160408190526200008b91620003b1565b6040805180820182526012815271213937b5b2a0b832a13ab233b2ba21b63ab160711b6020808301918252835180850190945260048452634241424360e01b908401528151919291620000e191600291620002f5565b508051620000f7906003906020840190620002f5565b50506001600055506200010a336200014b565b6001600955600d8590556200011f846200019d565b6200012a83620001f1565b620001358262000241565b620001408162000291565b5050505050620004f5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001ec5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ada83398151915260448201526064015b60405180910390fd5b600e55565b6008546001600160a01b031633146200023c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ada8339815191526044820152606401620001e3565b600f55565b6008546001600160a01b031633146200028c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ada8339815191526044820152606401620001e3565b601155565b6008546001600160a01b03163314620002dc5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ada8339815191526044820152606401620001e3565b8051620002f190600c906020840190620002f5565b5050565b8280546200030390620004b9565b90600052602060002090601f01602090048101928262000327576000855562000372565b82601f106200034257805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037257825182559160200191906001019062000355565b506200038092915062000384565b5090565b5b8082111562000380576000815560010162000385565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a08688031215620003ca57600080fd5b8551602080880151604089015160608a015160808b015194995091975095509350906001600160401b03808211156200040257600080fd5b818901915089601f8301126200041757600080fd5b8151818111156200042c576200042c6200039b565b604051601f8201601f19908116603f011681019083821181831017156200045757620004576200039b565b816040528281528c868487010111156200047057600080fd5b600093505b8284101562000494578484018601518185018701529285019262000475565b82841115620004a65760008684830101525b8096505050505050509295509295909350565b600181811c90821680620004ce57607f821691505b602082108103620004ef57634e487b7160e01b600052602260045260246000fd5b50919050565b6125d580620005056000396000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063a45ba8e7116100b6578063d5abeb011161007a578063d5abeb01146106ec578063da66ec0c14610702578063e0a8085314610718578063e985e9c514610738578063efbd73f414610781578063f2fde38b146107a157600080fd5b8063a45ba8e71461065d578063a6f5f01414610672578063b071401b1461068c578063b88d4fde146106ac578063c87b56dd146106cc57600080fd5b80638da5cb5b116101085780638da5cb5b146105c157806390b266c3146105df57806394354fd0146105ff57806395d89b4114610615578063a0712d681461062a578063a22cb4651461063d57600080fd5b80636352211e1461052c57806370a082311461054c578063715018a61461056c5780637c928fe9146105815780637ec4a659146105a157600080fd5b806322d59d54116101dd57806344a0d68a116101a157806344a0d68a146104835780634fdd43cb146104a357806351830227146104c35780635503a0e8146104e35780635c975abb146104f857806362b99ad41461051757600080fd5b806322d59d54146103eb57806323b872dd146104015780633ccfd60b1461042157806342842e0e14610436578063438b63001461045657600080fd5b806313faede61161022f57806313faede61461033d57806316ba10e01461036157806316c38b3c1461038157806318160ddd146103a15780631c3e88f6146103b6578063206c6bdd146103d657600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780631141df201461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f6b565b6107c1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610813565b6040516102989190611fe0565b3480156102cf57600080fd5b506102e36102de366004611ff3565b6108a5565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612028565b6108e9565b005b34801561032957600080fd5b5061031b610338366004611ff3565b61096f565b34801561034957600080fd5b50610353600e5481565b604051908152602001610298565b34801561036d57600080fd5b5061031b61037c3660046120dd565b6109bc565b34801561038d57600080fd5b5061031b61039c366004612135565b6109fd565b3480156103ad57600080fd5b50610353610a41565b3480156103c257600080fd5b5061031b6103d1366004611ff3565b610a4f565b3480156103e257600080fd5b5061031b610a7e565b3480156103f757600080fd5b50610353600f5481565b34801561040d57600080fd5b5061031b61041c366004612150565b610abc565b34801561042d57600080fd5b5061031b610ac7565b34801561044257600080fd5b5061031b610451366004612150565b610bf7565b34801561046257600080fd5b5061047661047136600461218c565b610c12565b60405161029891906121a7565b34801561048f57600080fd5b5061031b61049e366004611ff3565b610d51565b3480156104af57600080fd5b5061031b6104be3660046120dd565b610d80565b3480156104cf57600080fd5b5060125461028c9062010000900460ff1681565b3480156104ef57600080fd5b506102b6610dbd565b34801561050457600080fd5b5060125461028c90610100900460ff1681565b34801561052357600080fd5b506102b6610e4b565b34801561053857600080fd5b506102e3610547366004611ff3565b610e58565b34801561055857600080fd5b5061035361056736600461218c565b610e6a565b34801561057857600080fd5b5061031b610eb8565b34801561058d57600080fd5b5061031b61059c366004611ff3565b610eee565b3480156105ad57600080fd5b5061031b6105bc3660046120dd565b6110ca565b3480156105cd57600080fd5b506008546001600160a01b03166102e3565b3480156105eb57600080fd5b5061031b6105fa366004611ff3565b611107565b34801561060b57600080fd5b5061035360115481565b34801561062157600080fd5b506102b6611136565b61031b610638366004611ff3565b611145565b34801561064957600080fd5b5061031b6106583660046121eb565b6112e6565b34801561066957600080fd5b506102b661137b565b34801561067e57600080fd5b5060125461028c9060ff1681565b34801561069857600080fd5b5061031b6106a7366004611ff3565b611388565b3480156106b857600080fd5b5061031b6106c736600461221e565b6113b7565b3480156106d857600080fd5b506102b66106e7366004611ff3565b611401565b3480156106f857600080fd5b50610353600d5481565b34801561070e57600080fd5b5061035360105481565b34801561072457600080fd5b5061031b610733366004612135565b611577565b34801561074457600080fd5b5061028c610753366004612299565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078d57600080fd5b5061031b61079c3660046122c3565b6115bd565b3480156107ad57600080fd5b5061031b6107bc36600461218c565b611654565b60006001600160e01b031982166380ac58cd60e01b14806107f257506001600160e01b03198216635b5e139f60e01b145b8061080d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610822906122e6565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906122e6565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b0826116ef565b6108cd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f482610e58565b9050806001600160a01b0316836001600160a01b0316036109285760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461095f576109428133610753565b61095f576040516367d9dca160e11b815260040160405180910390fd5b61096a838383611728565b505050565b6008546001600160a01b031633146109a25760405162461bcd60e51b815260040161099990612320565b60405180910390fd5b80600d60008282546109b4919061236b565b909155505050565b6008546001600160a01b031633146109e65760405162461bcd60e51b815260040161099990612320565b80516109f990600b906020840190611ebc565b5050565b6008546001600160a01b03163314610a275760405162461bcd60e51b815260040161099990612320565b601280549115156101000261ff0019909216919091179055565b600154600054036000190190565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161099990612320565b600f55565b6008546001600160a01b03163314610aa85760405162461bcd60e51b815260040161099990612320565b6012805460ff19811660ff90911615179055565b61096a838383611784565b6008546001600160a01b03163314610af15760405162461bcd60e51b815260040161099990612320565b600260095403610b435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610999565b60026009556000610b5c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ba6576040519150601f19603f3d011682016040523d82523d6000602084013e610bab565b606091505b5050905080610bef5760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb903330b4b632b21760811b6044820152606401610999565b506001600955565b61096a838383604051806020016040528060008152506113b7565b60606000610c1f83610e6a565b90506000816001600160401b03811115610c3b57610c3b612052565b604051908082528060200260200182016040528015610c64578160200160208202803683370190505b50905060016000805b8482108015610c7d575060005483105b15610d4657600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d335780516001600160a01b031615610cee57805191505b876001600160a01b0316826001600160a01b031603610d335783858481518110610d1a57610d1a612382565b602090810291909101015282610d2f81612398565b9350505b83610d3d81612398565b94505050610c6d565b509195945050505050565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161099990612320565b600e55565b6008546001600160a01b03163314610daa5760405162461bcd60e51b815260040161099990612320565b80516109f990600c906020840190611ebc565b600b8054610dca906122e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610df6906122e6565b8015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b505050505081565b600a8054610dca906122e6565b6000610e6382611971565b5192915050565b60006001600160a01b038216610e93576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ee25760405162461bcd60e51b815260040161099990612320565b610eec6000611a93565b565b80600081118015610f0157506011548111155b610f1d5760405162461bcd60e51b8152600401610999906123b1565b600d5481610f29610a41565b610f3391906123df565b1115610f515760405162461bcd60e51b8152600401610999906123f7565b601254610100900460ff16158015610f6b575060125460ff165b610fc35760405162461bcd60e51b815260206004820152602360248201527f424142433a2046726565206d696e74207068617365206e6f74206f70656e207960448201526232ba1760e91b6064820152608401610999565b600f5482610fcf610a41565b610fd991906123df565b11156110335760405162461bcd60e51b815260206004820152602360248201527f424142433a2045786365656473206d61782066726565206d696e742073757070604482015262363c9760e91b6064820152608401610999565b601054336000908152600560205260409020548390600160401b90046001600160401b031661106291906123df565b11156110c05760405162461bcd60e51b815260206004820152602760248201527f424142433a2045786365656473206d61782066726565206d696e7420706572206044820152663bb0b63632ba1760c91b6064820152608401610999565b6109f93383611ae5565b6008546001600160a01b031633146110f45760405162461bcd60e51b815260040161099990612320565b80516109f990600a906020840190611ebc565b6008546001600160a01b031633146111315760405162461bcd60e51b815260040161099990612320565b601055565b606060038054610822906122e6565b8060008111801561115857506011548111155b6111745760405162461bcd60e51b8152600401610999906123b1565b600d5481611180610a41565b61118a91906123df565b11156111a85760405162461bcd60e51b8152600401610999906123f7565b8180600e546111b79190612425565b3410156111fc5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610999565b336000908152600560205260409020546064908490600160401b90046001600160401b031661122b91906123df565b11156112845760405162461bcd60e51b815260206004820152602260248201527f424142433a2045786365656473206d6178206d696e74207065722077616c6c656044820152613a1760f11b6064820152608401610999565b601254610100900460ff16156112dc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642e0000000000000000006044820152606401610999565b61096a3384611ae5565b336001600160a01b0383160361130f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610dca906122e6565b6008546001600160a01b031633146113b25760405162461bcd60e51b815260040161099990612320565b601155565b6113c2848484611784565b6001600160a01b0383163b156113fb576113de84848484611aff565b6113fb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061140c826116ef565b6114715760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b6064820152608401610999565b60125462010000900460ff16151560000361151857600c8054611493906122e6565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf906122e6565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b50505050509050919050565b6000611522611beb565b905060008151116115425760405180602001604052806000815250611570565b8061154c84611bfa565b600b60405160200161156093929190612444565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115a15760405162461bcd60e51b815260040161099990612320565b60128054911515620100000262ff000019909216919091179055565b816000811180156115d057506011548111155b6115ec5760405162461bcd60e51b8152600401610999906123b1565b600d54816115f8610a41565b61160291906123df565b11156116205760405162461bcd60e51b8152600401610999906123f7565b6008546001600160a01b0316331461164a5760405162461bcd60e51b815260040161099990612320565b61096a8284611ae5565b6008546001600160a01b0316331461167e5760405162461bcd60e51b815260040161099990612320565b6001600160a01b0381166116e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610999565b6116ec81611a93565b50565b600081600111158015611703575060005482105b801561080d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178f82611971565b9050836001600160a01b031681600001516001600160a01b0316146117c65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117e457506117e48533610753565b806117ff5750336117f4846108a5565b6001600160a01b0316145b90508061181f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661184657604051633a954ecd60e21b815260040160405180910390fd5b61185260008487611728565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661192657600054821461192657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611a7a57600054811015611a7a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a785780516001600160a01b031615611a0f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a73579392505050565b611a0f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109f9828260405180602001604052806000815250611cfa565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b34903390899088908890600401612507565b6020604051808303816000875af1925050508015611b6f575060408051601f3d908101601f19168201909252611b6c91810190612544565b60015b611bcd573d808015611b9d576040519150601f19603f3d011682016040523d82523d6000602084013e611ba2565b606091505b508051600003611bc5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610822906122e6565b606081600003611c215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c4b5780611c3581612398565b9150611c449050600a83612577565b9150611c25565b6000816001600160401b03811115611c6557611c65612052565b6040519080825280601f01601f191660200182016040528015611c8f576020820181803683370190505b5090505b8415611be357611ca460018361236b565b9150611cb1600a8661258b565b611cbc9060306123df565b60f81b818381518110611cd157611cd1612382565b60200101906001600160f81b031916908160001a905350611cf3600a86612577565b9450611c93565b6000546001600160a01b038416611d2357604051622e076360e81b815260040160405180910390fd5b82600003611d445760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611e67575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e306000878480600101955087611aff565b611e4d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611de5578260005414611e6257600080fd5b611eac565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e68575b5060009081556113fb9085838684565b828054611ec8906122e6565b90600052602060002090601f016020900481019282611eea5760008555611f30565b82601f10611f0357805160ff1916838001178555611f30565b82800160010185558215611f30579182015b82811115611f30578251825591602001919060010190611f15565b50611f3c929150611f40565b5090565b5b80821115611f3c5760008155600101611f41565b6001600160e01b0319811681146116ec57600080fd5b600060208284031215611f7d57600080fd5b813561157081611f55565b60005b83811015611fa3578181015183820152602001611f8b565b838111156113fb5750506000910152565b60008151808452611fcc816020860160208601611f88565b601f01601f19169290920160200192915050565b6020815260006115706020830184611fb4565b60006020828403121561200557600080fd5b5035919050565b80356001600160a01b038116811461202357600080fd5b919050565b6000806040838503121561203b57600080fd5b6120448361200c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561208257612082612052565b604051601f8501601f19908116603f011681019082821181831017156120aa576120aa612052565b816040528093508581528686860111156120c357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120ef57600080fd5b81356001600160401b0381111561210557600080fd5b8201601f8101841361211657600080fd5b611be384823560208401612068565b8035801515811461202357600080fd5b60006020828403121561214757600080fd5b61157082612125565b60008060006060848603121561216557600080fd5b61216e8461200c565b925061217c6020850161200c565b9150604084013590509250925092565b60006020828403121561219e57600080fd5b6115708261200c565b6020808252825182820181905260009190848201906040850190845b818110156121df578351835292840192918401916001016121c3565b50909695505050505050565b600080604083850312156121fe57600080fd5b6122078361200c565b915061221560208401612125565b90509250929050565b6000806000806080858703121561223457600080fd5b61223d8561200c565b935061224b6020860161200c565b92506040850135915060608501356001600160401b0381111561226d57600080fd5b8501601f8101871361227e57600080fd5b61228d87823560208401612068565b91505092959194509250565b600080604083850312156122ac57600080fd5b6122b58361200c565b91506122156020840161200c565b600080604083850312156122d657600080fd5b823591506122156020840161200c565b600181811c908216806122fa57607f821691505b60208210810361231a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561237d5761237d612355565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600182016123aa576123aa612355565b5060010190565b60208082526014908201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604082015260600190565b600082198211156123f2576123f2612355565b500190565b60208082526014908201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b604082015260600190565b600081600019048311821515161561243f5761243f612355565b500290565b6000845160206124578285838a01611f88565b85519184019161246a8184848a01611f88565b8554920191600090600181811c908083168061248757607f831692505b85831081036124a457634e487b7160e01b85526022600452602485fd5b8080156124b857600181146124c9576124f6565b60ff198516885283880195506124f6565b60008b81526020902060005b858110156124ee5781548a8201529084019088016124d5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253a90830184611fb4565b9695505050505050565b60006020828403121561255657600080fd5b815161157081611f55565b634e487b7160e01b600052601260045260246000fd5b60008261258657612586612561565b500490565b60008261259a5761259a612561565b50069056fea264697066735822122045d46df2f58b3dcd3a77864bb74cde72f517567e1ae7a31e636053e5752825b164736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000001c6bf52634000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000668696464656e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063a45ba8e7116100b6578063d5abeb011161007a578063d5abeb01146106ec578063da66ec0c14610702578063e0a8085314610718578063e985e9c514610738578063efbd73f414610781578063f2fde38b146107a157600080fd5b8063a45ba8e71461065d578063a6f5f01414610672578063b071401b1461068c578063b88d4fde146106ac578063c87b56dd146106cc57600080fd5b80638da5cb5b116101085780638da5cb5b146105c157806390b266c3146105df57806394354fd0146105ff57806395d89b4114610615578063a0712d681461062a578063a22cb4651461063d57600080fd5b80636352211e1461052c57806370a082311461054c578063715018a61461056c5780637c928fe9146105815780637ec4a659146105a157600080fd5b806322d59d54116101dd57806344a0d68a116101a157806344a0d68a146104835780634fdd43cb146104a357806351830227146104c35780635503a0e8146104e35780635c975abb146104f857806362b99ad41461051757600080fd5b806322d59d54146103eb57806323b872dd146104015780633ccfd60b1461042157806342842e0e14610436578063438b63001461045657600080fd5b806313faede61161022f57806313faede61461033d57806316ba10e01461036157806316c38b3c1461038157806318160ddd146103a15780631c3e88f6146103b6578063206c6bdd146103d657600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780631141df201461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f6b565b6107c1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610813565b6040516102989190611fe0565b3480156102cf57600080fd5b506102e36102de366004611ff3565b6108a5565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612028565b6108e9565b005b34801561032957600080fd5b5061031b610338366004611ff3565b61096f565b34801561034957600080fd5b50610353600e5481565b604051908152602001610298565b34801561036d57600080fd5b5061031b61037c3660046120dd565b6109bc565b34801561038d57600080fd5b5061031b61039c366004612135565b6109fd565b3480156103ad57600080fd5b50610353610a41565b3480156103c257600080fd5b5061031b6103d1366004611ff3565b610a4f565b3480156103e257600080fd5b5061031b610a7e565b3480156103f757600080fd5b50610353600f5481565b34801561040d57600080fd5b5061031b61041c366004612150565b610abc565b34801561042d57600080fd5b5061031b610ac7565b34801561044257600080fd5b5061031b610451366004612150565b610bf7565b34801561046257600080fd5b5061047661047136600461218c565b610c12565b60405161029891906121a7565b34801561048f57600080fd5b5061031b61049e366004611ff3565b610d51565b3480156104af57600080fd5b5061031b6104be3660046120dd565b610d80565b3480156104cf57600080fd5b5060125461028c9062010000900460ff1681565b3480156104ef57600080fd5b506102b6610dbd565b34801561050457600080fd5b5060125461028c90610100900460ff1681565b34801561052357600080fd5b506102b6610e4b565b34801561053857600080fd5b506102e3610547366004611ff3565b610e58565b34801561055857600080fd5b5061035361056736600461218c565b610e6a565b34801561057857600080fd5b5061031b610eb8565b34801561058d57600080fd5b5061031b61059c366004611ff3565b610eee565b3480156105ad57600080fd5b5061031b6105bc3660046120dd565b6110ca565b3480156105cd57600080fd5b506008546001600160a01b03166102e3565b3480156105eb57600080fd5b5061031b6105fa366004611ff3565b611107565b34801561060b57600080fd5b5061035360115481565b34801561062157600080fd5b506102b6611136565b61031b610638366004611ff3565b611145565b34801561064957600080fd5b5061031b6106583660046121eb565b6112e6565b34801561066957600080fd5b506102b661137b565b34801561067e57600080fd5b5060125461028c9060ff1681565b34801561069857600080fd5b5061031b6106a7366004611ff3565b611388565b3480156106b857600080fd5b5061031b6106c736600461221e565b6113b7565b3480156106d857600080fd5b506102b66106e7366004611ff3565b611401565b3480156106f857600080fd5b50610353600d5481565b34801561070e57600080fd5b5061035360105481565b34801561072457600080fd5b5061031b610733366004612135565b611577565b34801561074457600080fd5b5061028c610753366004612299565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078d57600080fd5b5061031b61079c3660046122c3565b6115bd565b3480156107ad57600080fd5b5061031b6107bc36600461218c565b611654565b60006001600160e01b031982166380ac58cd60e01b14806107f257506001600160e01b03198216635b5e139f60e01b145b8061080d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610822906122e6565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906122e6565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006108b0826116ef565b6108cd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f482610e58565b9050806001600160a01b0316836001600160a01b0316036109285760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461095f576109428133610753565b61095f576040516367d9dca160e11b815260040160405180910390fd5b61096a838383611728565b505050565b6008546001600160a01b031633146109a25760405162461bcd60e51b815260040161099990612320565b60405180910390fd5b80600d60008282546109b4919061236b565b909155505050565b6008546001600160a01b031633146109e65760405162461bcd60e51b815260040161099990612320565b80516109f990600b906020840190611ebc565b5050565b6008546001600160a01b03163314610a275760405162461bcd60e51b815260040161099990612320565b601280549115156101000261ff0019909216919091179055565b600154600054036000190190565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161099990612320565b600f55565b6008546001600160a01b03163314610aa85760405162461bcd60e51b815260040161099990612320565b6012805460ff19811660ff90911615179055565b61096a838383611784565b6008546001600160a01b03163314610af15760405162461bcd60e51b815260040161099990612320565b600260095403610b435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610999565b60026009556000610b5c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ba6576040519150601f19603f3d011682016040523d82523d6000602084013e610bab565b606091505b5050905080610bef5760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb903330b4b632b21760811b6044820152606401610999565b506001600955565b61096a838383604051806020016040528060008152506113b7565b60606000610c1f83610e6a565b90506000816001600160401b03811115610c3b57610c3b612052565b604051908082528060200260200182016040528015610c64578160200160208202803683370190505b50905060016000805b8482108015610c7d575060005483105b15610d4657600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d335780516001600160a01b031615610cee57805191505b876001600160a01b0316826001600160a01b031603610d335783858481518110610d1a57610d1a612382565b602090810291909101015282610d2f81612398565b9350505b83610d3d81612398565b94505050610c6d565b509195945050505050565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161099990612320565b600e55565b6008546001600160a01b03163314610daa5760405162461bcd60e51b815260040161099990612320565b80516109f990600c906020840190611ebc565b600b8054610dca906122e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610df6906122e6565b8015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b505050505081565b600a8054610dca906122e6565b6000610e6382611971565b5192915050565b60006001600160a01b038216610e93576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ee25760405162461bcd60e51b815260040161099990612320565b610eec6000611a93565b565b80600081118015610f0157506011548111155b610f1d5760405162461bcd60e51b8152600401610999906123b1565b600d5481610f29610a41565b610f3391906123df565b1115610f515760405162461bcd60e51b8152600401610999906123f7565b601254610100900460ff16158015610f6b575060125460ff165b610fc35760405162461bcd60e51b815260206004820152602360248201527f424142433a2046726565206d696e74207068617365206e6f74206f70656e207960448201526232ba1760e91b6064820152608401610999565b600f5482610fcf610a41565b610fd991906123df565b11156110335760405162461bcd60e51b815260206004820152602360248201527f424142433a2045786365656473206d61782066726565206d696e742073757070604482015262363c9760e91b6064820152608401610999565b601054336000908152600560205260409020548390600160401b90046001600160401b031661106291906123df565b11156110c05760405162461bcd60e51b815260206004820152602760248201527f424142433a2045786365656473206d61782066726565206d696e7420706572206044820152663bb0b63632ba1760c91b6064820152608401610999565b6109f93383611ae5565b6008546001600160a01b031633146110f45760405162461bcd60e51b815260040161099990612320565b80516109f990600a906020840190611ebc565b6008546001600160a01b031633146111315760405162461bcd60e51b815260040161099990612320565b601055565b606060038054610822906122e6565b8060008111801561115857506011548111155b6111745760405162461bcd60e51b8152600401610999906123b1565b600d5481611180610a41565b61118a91906123df565b11156111a85760405162461bcd60e51b8152600401610999906123f7565b8180600e546111b79190612425565b3410156111fc5760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610999565b336000908152600560205260409020546064908490600160401b90046001600160401b031661122b91906123df565b11156112845760405162461bcd60e51b815260206004820152602260248201527f424142433a2045786365656473206d6178206d696e74207065722077616c6c656044820152613a1760f11b6064820152608401610999565b601254610100900460ff16156112dc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642e0000000000000000006044820152606401610999565b61096a3384611ae5565b336001600160a01b0383160361130f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610dca906122e6565b6008546001600160a01b031633146113b25760405162461bcd60e51b815260040161099990612320565b601155565b6113c2848484611784565b6001600160a01b0383163b156113fb576113de84848484611aff565b6113fb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061140c826116ef565b6114715760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b6064820152608401610999565b60125462010000900460ff16151560000361151857600c8054611493906122e6565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf906122e6565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b50505050509050919050565b6000611522611beb565b905060008151116115425760405180602001604052806000815250611570565b8061154c84611bfa565b600b60405160200161156093929190612444565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115a15760405162461bcd60e51b815260040161099990612320565b60128054911515620100000262ff000019909216919091179055565b816000811180156115d057506011548111155b6115ec5760405162461bcd60e51b8152600401610999906123b1565b600d54816115f8610a41565b61160291906123df565b11156116205760405162461bcd60e51b8152600401610999906123f7565b6008546001600160a01b0316331461164a5760405162461bcd60e51b815260040161099990612320565b61096a8284611ae5565b6008546001600160a01b0316331461167e5760405162461bcd60e51b815260040161099990612320565b6001600160a01b0381166116e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610999565b6116ec81611a93565b50565b600081600111158015611703575060005482105b801561080d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178f82611971565b9050836001600160a01b031681600001516001600160a01b0316146117c65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117e457506117e48533610753565b806117ff5750336117f4846108a5565b6001600160a01b0316145b90508061181f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661184657604051633a954ecd60e21b815260040160405180910390fd5b61185260008487611728565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661192657600054821461192657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611a7a57600054811015611a7a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a785780516001600160a01b031615611a0f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a73579392505050565b611a0f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109f9828260405180602001604052806000815250611cfa565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b34903390899088908890600401612507565b6020604051808303816000875af1925050508015611b6f575060408051601f3d908101601f19168201909252611b6c91810190612544565b60015b611bcd573d808015611b9d576040519150601f19603f3d011682016040523d82523d6000602084013e611ba2565b606091505b508051600003611bc5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610822906122e6565b606081600003611c215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c4b5780611c3581612398565b9150611c449050600a83612577565b9150611c25565b6000816001600160401b03811115611c6557611c65612052565b6040519080825280601f01601f191660200182016040528015611c8f576020820181803683370190505b5090505b8415611be357611ca460018361236b565b9150611cb1600a8661258b565b611cbc9060306123df565b60f81b818381518110611cd157611cd1612382565b60200101906001600160f81b031916908160001a905350611cf3600a86612577565b9450611c93565b6000546001600160a01b038416611d2357604051622e076360e81b815260040160405180910390fd5b82600003611d445760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611e67575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e306000878480600101955087611aff565b611e4d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611de5578260005414611e6257600080fd5b611eac565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e68575b5060009081556113fb9085838684565b828054611ec8906122e6565b90600052602060002090601f016020900481019282611eea5760008555611f30565b82601f10611f0357805160ff1916838001178555611f30565b82800160010185558215611f30579182015b82811115611f30578251825591602001919060010190611f15565b50611f3c929150611f40565b5090565b5b80821115611f3c5760008155600101611f41565b6001600160e01b0319811681146116ec57600080fd5b600060208284031215611f7d57600080fd5b813561157081611f55565b60005b83811015611fa3578181015183820152602001611f8b565b838111156113fb5750506000910152565b60008151808452611fcc816020860160208601611f88565b601f01601f19169290920160200192915050565b6020815260006115706020830184611fb4565b60006020828403121561200557600080fd5b5035919050565b80356001600160a01b038116811461202357600080fd5b919050565b6000806040838503121561203b57600080fd5b6120448361200c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561208257612082612052565b604051601f8501601f19908116603f011681019082821181831017156120aa576120aa612052565b816040528093508581528686860111156120c357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120ef57600080fd5b81356001600160401b0381111561210557600080fd5b8201601f8101841361211657600080fd5b611be384823560208401612068565b8035801515811461202357600080fd5b60006020828403121561214757600080fd5b61157082612125565b60008060006060848603121561216557600080fd5b61216e8461200c565b925061217c6020850161200c565b9150604084013590509250925092565b60006020828403121561219e57600080fd5b6115708261200c565b6020808252825182820181905260009190848201906040850190845b818110156121df578351835292840192918401916001016121c3565b50909695505050505050565b600080604083850312156121fe57600080fd5b6122078361200c565b915061221560208401612125565b90509250929050565b6000806000806080858703121561223457600080fd5b61223d8561200c565b935061224b6020860161200c565b92506040850135915060608501356001600160401b0381111561226d57600080fd5b8501601f8101871361227e57600080fd5b61228d87823560208401612068565b91505092959194509250565b600080604083850312156122ac57600080fd5b6122b58361200c565b91506122156020840161200c565b600080604083850312156122d657600080fd5b823591506122156020840161200c565b600181811c908216806122fa57607f821691505b60208210810361231a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561237d5761237d612355565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600182016123aa576123aa612355565b5060010190565b60208082526014908201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604082015260600190565b600082198211156123f2576123f2612355565b500190565b60208082526014908201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b604082015260600190565b600081600019048311821515161561243f5761243f612355565b500290565b6000845160206124578285838a01611f88565b85519184019161246a8184848a01611f88565b8554920191600090600181811c908083168061248757607f831692505b85831081036124a457634e487b7160e01b85526022600452602485fd5b8080156124b857600181146124c9576124f6565b60ff198516885283880195506124f6565b60008b81526020902060005b858110156124ee5781548a8201529084019088016124d5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253a90830184611fb4565b9695505050505050565b60006020828403121561255657600080fd5b815161157081611f55565b634e487b7160e01b600052601260045260246000fd5b60008261258657612586612561565b500490565b60008261259a5761259a612561565b50069056fea264697066735822122045d46df2f58b3dcd3a77864bb74cde72f517567e1ae7a31e636053e5752825b164736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000001c6bf52634000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000668696464656e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 10000
Arg [1] : _cost (uint256): 8000000000000000
Arg [2] : _maxFreeMintSupply (uint256): 2000
Arg [3] : _maxMintAmountPerTx (uint256): 20
Arg [4] : _hiddenMetadataUri (string): hidden

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 000000000000000000000000000000000000000000000000001c6bf526340000
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 68696464656e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52872:6184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33965:305;;;;;;;;;;-1:-1:-1;33965:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33965:305:0;;;;;;;;37080:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38584:204::-;;;;;;;;;;-1:-1:-1;38584:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;38584:204:0;1528:203:1;38146:372:0;;;;;;;;;;-1:-1:-1;38146:372:0;;;;;:::i;:::-;;:::i;:::-;;57168:101;;;;;;;;;;-1:-1:-1;57168:101:0;;;;;:::i;:::-;;:::i;53124:19::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;53124:19:0;2173:177:1;58550:106:0;;;;;;;;;;-1:-1:-1;58550:106:0;;;;;:::i;:::-;;:::i;58664:83::-;;;;;;;;;;-1:-1:-1;58664:83:0;;;;;:::i;:::-;;:::i;33205:312::-;;;;;;;;;;;;;:::i;57385:132::-;;;;;;;;;;-1:-1:-1;57385:132:0;;;;;:::i;:::-;;:::i;57277:100::-;;;;;;;;;;;;;:::i;53150:32::-;;;;;;;;;;;;;;;;39449:170;;;;;;;;;;-1:-1:-1;39449:170:0;;;;;:::i;:::-;;:::i;58755:180::-;;;;;;;;;;;;;:::i;39690:185::-;;;;;;;;;;-1:-1:-1;39690:185:0;;;;;:::i;:::-;;:::i;55306:1009::-;;;;;;;;;;-1:-1:-1;55306:1009:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58012:80::-;;;;;;;;;;-1:-1:-1;58012:80:0;;;;;:::i;:::-;;:::i;58267:161::-;;;;;;;;;;-1:-1:-1;58267:161:0;;;;;:::i;:::-;;:::i;53350:28::-;;;;;;;;;;-1:-1:-1;53350:28:0;;;;;;;;;;;53013:33;;;;;;;;;;;;;:::i;53318:25::-;;;;;;;;;;-1:-1:-1;53318:25:0;;;;;;;;;;;52978:28;;;;;;;;;;;;;:::i;36888:125::-;;;;;;;;;;-1:-1:-1;36888:125:0;;;;;:::i;:::-;;:::i;34334:206::-;;;;;;;;;;-1:-1:-1;34334:206:0;;;;;:::i;:::-;;:::i;10166:103::-;;;;;;;;;;;;;:::i;54323:563::-;;;;;;;;;;-1:-1:-1;54323:563:0;;;;;:::i;:::-;;:::i;58436:106::-;;;;;;;;;;-1:-1:-1;58436:106:0;;;;;:::i;:::-;;:::i;9515:87::-;;;;;;;;;;-1:-1:-1;9588:6:0;;-1:-1:-1;;;;;9588:6:0;9515:87;;57525:183;;;;;;;;;;-1:-1:-1;57525:183:0;;;;;:::i;:::-;;:::i;53235:33::-;;;;;;;;;;;;;;;;37249:104;;;;;;;;;;;;;:::i;54894:404::-;;;;;;:::i;:::-;;:::i;38860:287::-;;;;;;;;;;-1:-1:-1;38860:287:0;;;;;:::i;:::-;;:::i;53053:31::-;;;;;;;;;;;;;:::i;53277:34::-;;;;;;;;;;-1:-1:-1;53277:34:0;;;;;;;;58100:159;;;;;;;;;;-1:-1:-1;58100:159:0;;;;;:::i;:::-;;:::i;39946:370::-;;;;;;;;;;-1:-1:-1;39946:370:0;;;;;:::i;:::-;;:::i;56432:728::-;;;;;;;;;;-1:-1:-1;56432:728:0;;;;;:::i;:::-;;:::i;53093:24::-;;;;;;;;;;;;;;;;53189:39;;;;;;;;;;;;;;;;57917:87;;;;;;;;;;-1:-1:-1;57917:87:0;;;;;:::i;:::-;;:::i;39218:164::-;;;;;;;;;;-1:-1:-1;39218:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39339:25:0;;;39315:4;39339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39218:164;57716:193;;;;;;;;;;-1:-1:-1;57716:193:0;;;;;:::i;:::-;;:::i;10424:201::-;;;;;;;;;;-1:-1:-1;10424:201:0;;;;;:::i;:::-;;:::i;33965:305::-;34067:4;-1:-1:-1;;;;;;34104:40:0;;-1:-1:-1;;;34104:40:0;;:105;;-1:-1:-1;;;;;;;34161:48:0;;-1:-1:-1;;;34161:48:0;34104:105;:158;;;-1:-1:-1;;;;;;;;;;22423:40:0;;;34226:36;34084:178;33965:305;-1:-1:-1;;33965:305:0:o;37080:100::-;37134:13;37167:5;37160:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37080:100;:::o;38584:204::-;38652:7;38677:16;38685:7;38677;:16::i;:::-;38672:64;;38702:34;;-1:-1:-1;;;38702:34:0;;;;;;;;;;;38672:64;-1:-1:-1;38756:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38756:24:0;;38584:204::o;38146:372::-;38219:13;38235:24;38251:7;38235:15;:24::i;:::-;38219:40;;38280:5;-1:-1:-1;;;;;38274:11:0;:2;-1:-1:-1;;;;;38274:11:0;;38270:48;;38294:24;;-1:-1:-1;;;38294:24:0;;;;;;;;;;;38270:48;8321:10;-1:-1:-1;;;;;38335:21:0;;;38331:139;;38362:37;38379:5;8321:10;39218:164;:::i;38362:37::-;38358:112;;38423:35;;-1:-1:-1;;;38423:35:0;;;;;;;;;;;38358:112;38482:28;38491:2;38495:7;38504:5;38482:8;:28::i;:::-;38208:310;38146:372;;:::o;57168:101::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;;;;;;;;;57251:10:::1;57238:9;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;57168:101:0:o;58550:106::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;58626:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58550:106:::0;:::o;58664:83::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;58724:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;58724:15:0;;::::1;::::0;;;::::1;::::0;;58664:83::o;33205:312::-;56415:1;33468:12;33258:7;33452:13;:28;-1:-1:-1;;33452:46:0;;33205:312::o;57385:132::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;57471:17:::1;:38:::0;57385:132::o;57277:100::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;57355:14:::1;::::0;;-1:-1:-1;;57337:32:0;::::1;57355:14;::::0;;::::1;57354:15;57337:32;::::0;;57277:100::o;39449:170::-;39583:28;39593:4;39599:2;39603:7;39583:9;:28::i;58755:180::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;::::0;-1:-1:-1;;;2402:63:0;;7756:2:1;2402:63:0::1;::::0;::::1;7738:21:1::0;7795:2;7775:18;;;7768:30;7834:33;7814:18;;;7807:61;7885:18;;2402:63:0::1;7554:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;58817:7:::2;58838;9588:6:::0;;-1:-1:-1;;;;;9588:6:0;;9515:87;58838:7:::2;-1:-1:-1::0;;;;;58830:21:0::2;58859;58830:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58816:69;;;58904:2;58896:31;;;::::0;-1:-1:-1;;;58896:31:0;;8326:2:1;58896:31:0::2;::::0;::::2;8308:21:1::0;8365:2;8345:18;;;8338:30;-1:-1:-1;;;8384:18:1;;;8377:46;8440:18;;58896:31:0::2;8124:340:1::0;58896:31:0::2;-1:-1:-1::0;1768:1:0::1;2722:7;:22:::0;58755:180::o;39690:185::-;39828:39;39845:4;39851:2;39855:7;39828:39;;;;;;;;;;;;:16;:39::i;55306:1009::-;55393:16;55427:23;55453:17;55463:6;55453:9;:17::i;:::-;55427:43;;55481:30;55528:15;-1:-1:-1;;;;;55514:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55514:30:0;-1:-1:-1;55481:63:0;-1:-1:-1;56415:1:0;55555:22;;55683:592;55722:15;55704;:33;:67;;;;;55758:13;;55741:14;:30;55704:67;55683:592;;;55798:31;55832:27;;;:11;:27;;;;;;;;;55798:61;;;;;;;;;-1:-1:-1;;;;;55798:61:0;;;;-1:-1:-1;;;55798:61:0;;-1:-1:-1;;;;;55798:61:0;;;;;;;;-1:-1:-1;;;55798:61:0;;;;;;;;;;;;;;55876:355;;55922:14;;-1:-1:-1;;;;;55922:28:0;;55918:112;;55996:14;;;-1:-1:-1;55918:112:0;56076:6;-1:-1:-1;;;;;56054:28:0;:18;-1:-1:-1;;;;;56054:28:0;;56050:166;;56140:14;56107:13;56121:15;56107:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;56179:17;;;;:::i;:::-;;;;56050:166;56247:16;;;;:::i;:::-;;;;55783:492;55683:592;;;-1:-1:-1;56294:13:0;;55306:1009;-1:-1:-1;;;;;55306:1009:0:o;58012:80::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;58072:4:::1;:12:::0;58012:80::o;58267:161::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;58382:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;53013:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52978:28::-;;;;;;;:::i;36888:125::-;36952:7;36979:21;36992:7;36979:12;:21::i;:::-;:26;;36888:125;-1:-1:-1;;36888:125:0:o;34334:206::-;34398:7;-1:-1:-1;;;;;34422:19:0;;34418:60;;34450:28;;-1:-1:-1;;;34450:28:0;;;;;;;;;;;34418:60;-1:-1:-1;;;;;;34504:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34504:27:0;;34334:206::o;10166:103::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;10231:30:::1;10258:1;10231:18;:30::i;:::-;10166:103::o:0;54323:563::-;54384:11;53936:1;53922:11;:15;:52;;;;;53956:18;;53941:11;:33;;53922:52;53900:122;;;;-1:-1:-1;;;53900:122:0;;;;;;;:::i;:::-;54086:9;;54071:11;54055:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54033:110;;;;-1:-1:-1;;;54033:110:0;;;;;;;:::i;:::-;54431:6:::1;::::0;::::1;::::0;::::1;;;54430:7;:25:::0;::::1;;;-1:-1:-1::0;54441:14:0::1;::::0;::::1;;54430:25;54408:110;;;::::0;-1:-1:-1;;;54408:110:0;;9774:2:1;54408:110:0::1;::::0;::::1;9756:21:1::0;9813:2;9793:18;;;9786:30;9852:34;9832:18;;;9825:62;-1:-1:-1;;;9903:18:1;;;9896:33;9946:19;;54408:110:0::1;9572:399:1::0;54408:110:0::1;54584:17;;54569:11;54553:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:48;;54531:133;;;::::0;-1:-1:-1;;;54531:133:0;;10178:2:1;54531:133:0::1;::::0;::::1;10160:21:1::0;10217:2;10197:18;;;10190:30;10256:34;10236:18;;;10229:62;-1:-1:-1;;;10307:18:1;;;10300:33;10350:19;;54531:133:0::1;9976:399:1::0;54531:133:0::1;54740:24;::::0;54711:10:::1;34683:7:::0;34718:19;;;:12;:19;;;;;:32;54725:11;;-1:-1:-1;;;34718:32:0;;-1:-1:-1;;;;;34718:32:0;54697:39:::1;;;;:::i;:::-;:67;;54675:156;;;::::0;-1:-1:-1;;;54675:156:0;;10582:2:1;54675:156:0::1;::::0;::::1;10564:21:1::0;10621:2;10601:18;;;10594:30;10660:34;10640:18;;;10633:62;-1:-1:-1;;;10711:18:1;;;10704:37;10758:19;;54675:156:0::1;10380:403:1::0;54675:156:0::1;54842:36;8321:10:::0;54866:11:::1;54842:9;:36::i;58436:106::-:0;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;58512:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;57525:183::-:0;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;57648:24:::1;:52:::0;57525:183::o;37249:104::-;37305:13;37338:7;37331:14;;;;;:::i;54894:404::-;54986:11;53936:1;53922:11;:15;:52;;;;;53956:18;;53941:11;:33;;53922:52;53900:122;;;;-1:-1:-1;;;53900:122:0;;;;;;;:::i;:::-;54086:9;;54071:11;54055:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54033:110;;;;-1:-1:-1;;;54033:110:0;;;;;;;:::i;:::-;55028:11:::1;54260;54253:4;;:18;;;;:::i;:::-;54240:9;:31;;54232:63;;;::::0;-1:-1:-1;;;54232:63:0;;11163:2:1;54232:63:0::1;::::0;::::1;11145:21:1::0;11202:2;11182:18;;;11175:30;-1:-1:-1;;;11221:18:1;;;11214:49;11280:18;;54232:63:0::1;10961:343:1::0;54232:63:0::1;55093:10:::2;34683:7:::0;34718:19;;;:12;:19;;;;;:32;55122:3:::2;::::0;55107:11;;-1:-1:-1;;;34718:32:0;;-1:-1:-1;;;;;34718:32:0;55079:39:::2;;;;:::i;:::-;:46;;55057:130;;;::::0;-1:-1:-1;;;55057:130:0;;11511:2:1;55057:130:0::2;::::0;::::2;11493:21:1::0;11550:2;11530:18;;;11523:30;11589:34;11569:18;;;11562:62;-1:-1:-1;;;11640:18:1;;;11633:32;11682:19;;55057:130:0::2;11309:398:1::0;55057:130:0::2;55207:6;::::0;::::2;::::0;::::2;;;55206:7;55198:43;;;::::0;-1:-1:-1;;;55198:43:0;;11914:2:1;55198:43:0::2;::::0;::::2;11896:21:1::0;11953:2;11933:18;;;11926:30;11992:25;11972:18;;;11965:53;12035:18;;55198:43:0::2;11712:347:1::0;55198:43:0::2;55254:36;8321:10:::0;55278:11:::2;55254:9;:36::i;38860:287::-:0;8321:10;-1:-1:-1;;;;;38959:24:0;;;38955:54;;38992:17;;-1:-1:-1;;;38992:17:0;;;;;;;;;;;38955:54;8321:10;39022:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39022:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39022:53:0;;;;;;;;;;39091:48;;540:41:1;;;39022:42:0;;8321:10;39091:48;;513:18:1;39091:48:0;;;;;;;38860:287;;:::o;53053:31::-;;;;;;;:::i;58100:159::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;58211:18:::1;:40:::0;58100:159::o;39946:370::-;40113:28;40123:4;40129:2;40133:7;40113:9;:28::i;:::-;-1:-1:-1;;;;;40156:13:0;;12509:19;:23;40152:157;;40177:56;40208:4;40214:2;40218:7;40227:5;40177:30;:56::i;:::-;40173:136;;40257:40;;-1:-1:-1;;;40257:40:0;;;;;;;;;;;40173:136;39946:370;;;;:::o;56432:728::-;56551:13;56604:17;56612:8;56604:7;:17::i;:::-;56582:115;;;;-1:-1:-1;;;56582:115:0;;12266:2:1;56582:115:0;;;12248:21:1;12305:2;12285:18;;;12278:30;12344:34;12324:18;;;12317:62;-1:-1:-1;;;12395:18:1;;;12388:46;12451:19;;56582:115:0;12064:412:1;56582:115:0;56714:8;;;;;;;:17;;56726:5;56714:17;56710:74;;56755:17;56748:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56432:728;;;:::o;56710:74::-;56796:28;56827:10;:8;:10::i;:::-;56796:41;;56899:1;56874:14;56868:28;:32;:284;;;;;;;;;;;;;;;;;56992:14;57033:19;:8;:17;:19::i;:::-;57079:9;56949:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56868:284;56848:304;56432:728;-1:-1:-1;;;56432:728:0:o;57917:87::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;57979:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;57979:17:0;;::::1;::::0;;;::::1;::::0;;57917:87::o;57716:193::-;57820:11;53936:1;53922:11;:15;:52;;;;;53956:18;;53941:11;:33;;53922:52;53900:122;;;;-1:-1:-1;;;53900:122:0;;;;;;;:::i;:::-;54086:9;;54071:11;54055:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54033:110;;;;-1:-1:-1;;;54033:110:0;;;;;;;:::i;:::-;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23:::1;9727:68;;;;-1:-1:-1::0;;;9727:68:0::1;;;;;;;:::i;:::-;57868:33:::2;57878:9;57889:11;57868:9;:33::i;10424:201::-:0;9588:6;;-1:-1:-1;;;;;9588:6:0;8321:10;9735:23;9727:68;;;;-1:-1:-1;;;9727:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10513:22:0;::::1;10505:73;;;::::0;-1:-1:-1;;;10505:73:0;;14341:2:1;10505:73:0::1;::::0;::::1;14323:21:1::0;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;-1:-1:-1;;;14470:18:1;;;14463:36;14516:19;;10505:73:0::1;14139:402:1::0;10505:73:0::1;10589:28;10608:8;10589:18;:28::i;:::-;10424:201:::0;:::o;40571:174::-;40628:4;40671:7;56415:1;40652:26;;:53;;;;;40692:13;;40682:7;:23;40652:53;:85;;;;-1:-1:-1;;40710:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;40710:27:0;;;;40709:28;;40571:174::o;49793:196::-;49908:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49908:29:0;-1:-1:-1;;;;;49908:29:0;;;;;;;;;49953:28;;49908:24;;49953:28;;;;;;;49793:196;;;:::o;44741:2130::-;44856:35;44894:21;44907:7;44894:12;:21::i;:::-;44856:59;;44954:4;-1:-1:-1;;;;;44932:26:0;:13;:18;;;-1:-1:-1;;;;;44932:26:0;;44928:67;;44967:28;;-1:-1:-1;;;44967:28:0;;;;;;;;;;;44928:67;45008:22;8321:10;-1:-1:-1;;;;;45034:20:0;;;;:73;;-1:-1:-1;45071:36:0;45088:4;8321:10;39218:164;:::i;45071:36::-;45034:126;;;-1:-1:-1;8321:10:0;45124:20;45136:7;45124:11;:20::i;:::-;-1:-1:-1;;;;;45124:36:0;;45034:126;45008:153;;45179:17;45174:66;;45205:35;;-1:-1:-1;;;45205:35:0;;;;;;;;;;;45174:66;-1:-1:-1;;;;;45255:16:0;;45251:52;;45280:23;;-1:-1:-1;;;45280:23:0;;;;;;;;;;;45251:52;45424:35;45441:1;45445:7;45454:4;45424:8;:35::i;:::-;-1:-1:-1;;;;;45755:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45755:31:0;;;-1:-1:-1;;;;;45755:31:0;;;-1:-1:-1;;45755:31:0;;;;;;;45801:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45801:29:0;;;;;;;;;;;45881:20;;;:11;:20;;;;;;45916:18;;-1:-1:-1;;;;;;45949:49:0;;;;-1:-1:-1;;;45982:15:0;45949:49;;;;;;;;;;46272:11;;46332:24;;;;;46375:13;;45881:20;;46332:24;;46375:13;46371:384;;46585:13;;46570:11;:28;46566:174;;46623:20;;46692:28;;;;-1:-1:-1;;;;;46666:54:0;-1:-1:-1;;;46666:54:0;-1:-1:-1;;;;;;46666:54:0;;;-1:-1:-1;;;;;46623:20:0;;46666:54;;;;46566:174;45730:1036;;;46802:7;46798:2;-1:-1:-1;;;;;46783:27:0;46792:4;-1:-1:-1;;;;;46783:27:0;;;;;;;;;;;44845:2026;;44741:2130;;;:::o;35715:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35826:7:0;;56415:1;35875:23;35871:888;;35911:13;;35904:4;:20;35900:859;;;35945:31;35979:17;;;:11;:17;;;;;;;;;35945:51;;;;;;;;;-1:-1:-1;;;;;35945:51:0;;;;-1:-1:-1;;;35945:51:0;;-1:-1:-1;;;;;35945:51:0;;;;;;;;-1:-1:-1;;;35945:51:0;;;;;;;;;;;;;;36015:729;;36065:14;;-1:-1:-1;;;;;36065:28:0;;36061:101;;36129:9;35715:1111;-1:-1:-1;;;35715:1111:0:o;36061:101::-;-1:-1:-1;;;36504:6:0;36549:17;;;;:11;:17;;;;;;;;;36537:29;;;;;;;;;-1:-1:-1;;;;;36537:29:0;;;;;-1:-1:-1;;;36537:29:0;;-1:-1:-1;;;;;36537:29:0;;;;;;;;-1:-1:-1;;;36537:29:0;;;;;;;;;;;;;36597:28;36593:109;;36665:9;35715:1111;-1:-1:-1;;;35715:1111:0:o;36593:109::-;36464:261;;;35926:833;35900:859;36787:31;;-1:-1:-1;;;36787:31:0;;;;;;;;;;;10785:191;10878:6;;;-1:-1:-1;;;;;10895:17:0;;;-1:-1:-1;;;;;;10895:17:0;;;;;;;10928:40;;10878:6;;;10895:17;10878:6;;10928:40;;10859:16;;10928:40;10848:128;10785:191;:::o;40829:104::-;40898:27;40908:2;40912:8;40898:27;;;;;;;;;;;;:9;:27::i;50481:667::-;50665:72;;-1:-1:-1;;;50665:72:0;;50644:4;;-1:-1:-1;;;;;50665:36:0;;;;;:72;;8321:10;;50716:4;;50722:7;;50731:5;;50665:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50665:72:0;;;;;;;;-1:-1:-1;;50665:72:0;;;;;;;;;;;;:::i;:::-;;;50661:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50899:6;:13;50916:1;50899:18;50895:235;;50945:40;;-1:-1:-1;;;50945:40:0;;;;;;;;;;;50895:235;51088:6;51082:13;51073:6;51069:2;51065:15;51058:38;50661:480;-1:-1:-1;;;;;;50784:55:0;-1:-1:-1;;;50784:55:0;;-1:-1:-1;50661:480:0;50481:667;;;;;;:::o;58943:110::-;59003:13;59036:9;59029:16;;;;;:::i;5805:723::-;5861:13;6082:5;6091:1;6082:10;6078:53;;-1:-1:-1;;6109:10:0;;;;;;;;;;;;-1:-1:-1;;;6109:10:0;;;;;5805:723::o;6078:53::-;6156:5;6141:12;6197:78;6204:9;;6197:78;;6230:8;;;;:::i;:::-;;-1:-1:-1;6253:10:0;;-1:-1:-1;6261:2:0;6253:10;;:::i;:::-;;;6197:78;;;6285:19;6317:6;-1:-1:-1;;;;;6307:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6307:17:0;;6285:39;;6335:154;6342:10;;6335:154;;6369:11;6379:1;6369:11;;:::i;:::-;;-1:-1:-1;6438:10:0;6446:2;6438:5;:10;:::i;:::-;6425:24;;:2;:24;:::i;:::-;6412:39;;6395:6;6402;6395:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6395:56:0;;;;;;;;-1:-1:-1;6466:11:0;6475:2;6466:11;;:::i;:::-;;;6335:154;;41306:1749;41429:20;41452:13;-1:-1:-1;;;;;41480:16:0;;41476:48;;41505:19;;-1:-1:-1;;;41505:19:0;;;;;;;;;;;41476:48;41539:8;41551:1;41539:13;41535:44;;41561:18;;-1:-1:-1;;;41561:18:0;;;;;;;;;;;41535:44;-1:-1:-1;;;;;41930:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;41989:49:0;;-1:-1:-1;;;;;41930:44:0;;;;;;;41989:49;;;-1:-1:-1;;;;;41930:44:0;;;;;;41989:49;;;;;;;;;;;;;;;;42055:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;42105:66:0;;;-1:-1:-1;;;42155:15:0;42105:66;;;;;;;;;;;;;42055:25;;42252:23;;;;12509:19;:23;42292:631;;42332:313;42363:38;;42388:12;;-1:-1:-1;;;;;42363:38:0;;;42380:1;;42363:38;;42380:1;;42363:38;42429:69;42468:1;42472:2;42476:14;;;;;;42492:5;42429:30;:69::i;:::-;42424:174;;42534:40;;-1:-1:-1;;;42534:40:0;;;;;;;;;;;42424:174;42640:3;42625:12;:18;42332:313;;42726:12;42709:13;;:29;42705:43;;42740:8;;;42705:43;42292:631;;;42789:119;42820:40;;42845:14;;;;;-1:-1:-1;;;;;42820:40:0;;;42837:1;;42820:40;;42837:1;;42820:40;42903:3;42888:12;:18;42789:119;;42292:631;-1:-1:-1;42937:13:0;:28;;;42987:60;;43020:2;43024:12;43038:8;42987:60;:::i;-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:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;-1:-1:-1;;;;;2623:2:1;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;-1:-1:-1;;;;;3327:6:1;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;-1:-1:-1;;;;;5769:6:1;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:254::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6468:9;6455:23;6445:33;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;6931:356::-;7133:2;7115:21;;;7152:18;;;7145:30;7211:34;7206:2;7191:18;;7184:62;7278:2;7263:18;;6931:356::o;7292:127::-;7353:10;7348:3;7344:20;7341:1;7334:31;7384:4;7381:1;7374:15;7408:4;7405:1;7398:15;7424:125;7464:4;7492:1;7489;7486:8;7483:34;;;7497:18;;:::i;:::-;-1:-1:-1;7534:9:1;;7424:125::o;8469:127::-;8530:10;8525:3;8521:20;8518:1;8511:31;8561:4;8558:1;8551:15;8585:4;8582:1;8575:15;8601:135;8640:3;8661:17;;;8658:43;;8681:18;;:::i;:::-;-1:-1:-1;8728:1:1;8717:13;;8601:135::o;8741:344::-;8943:2;8925:21;;;8982:2;8962:18;;;8955:30;-1:-1:-1;;;9016:2:1;9001:18;;8994:50;9076:2;9061:18;;8741:344::o;9090:128::-;9130:3;9161:1;9157:6;9154:1;9151:13;9148:39;;;9167:18;;:::i;:::-;-1:-1:-1;9203:9:1;;9090:128::o;9223:344::-;9425:2;9407:21;;;9464:2;9444:18;;;9437:30;-1:-1:-1;;;9498:2:1;9483:18;;9476:50;9558:2;9543:18;;9223:344::o;10788:168::-;10828:7;10894:1;10890;10886:6;10882:14;10879:1;10876:21;10871:1;10864:9;10857:17;10853:45;10850:71;;;10901:18;;:::i;:::-;-1:-1:-1;10941:9:1;;10788:168::o;12607:1527::-;12831:3;12869:6;12863:13;12895:4;12908:51;12952:6;12947:3;12942:2;12934:6;12930:15;12908:51;:::i;:::-;13022:13;;12981:16;;;;13044:55;13022:13;12981:16;13066:15;;;13044:55;:::i;:::-;13188:13;;13121:20;;;13161:1;;13248;13270:18;;;;13323;;;;13350:93;;13428:4;13418:8;13414:19;13402:31;;13350:93;13491:2;13481:8;13478:16;13458:18;13455:40;13452:167;;-1:-1:-1;;;13518:33:1;;13574:4;13571:1;13564:15;13604:4;13525:3;13592:17;13452:167;13635:18;13662:110;;;;13786:1;13781:328;;;;13628:481;;13662:110;-1:-1:-1;;13697:24:1;;13683:39;;13742:20;;;;-1:-1:-1;13662:110:1;;13781:328;12554:1;12547:14;;;12591:4;12578:18;;13876:1;13890:169;13904:8;13901:1;13898:15;13890:169;;;13986:14;;13971:13;;;13964:37;14029:16;;;;13921:10;;13890:169;;;13894:3;;14090:8;14083:5;14079:20;14072:27;;13628:481;-1:-1:-1;14125:3:1;;12607:1527;-1:-1:-1;;;;;;;;;;;12607:1527:1:o;14546:489::-;-1:-1:-1;;;;;14815:15:1;;;14797:34;;14867:15;;14862:2;14847:18;;14840:43;14914:2;14899:18;;14892:34;;;14962:3;14957:2;14942:18;;14935:31;;;14740:4;;14983:46;;15009:19;;15001:6;14983:46;:::i;:::-;14975:54;14546:489;-1:-1:-1;;;;;;14546:489:1:o;15040:249::-;15109:6;15162:2;15150:9;15141:7;15137:23;15133:32;15130:52;;;15178:1;15175;15168:12;15130:52;15210:9;15204:16;15229:30;15253:5;15229:30;:::i;15294:127::-;15355:10;15350:3;15346:20;15343:1;15336:31;15386:4;15383:1;15376:15;15410:4;15407:1;15400:15;15426:120;15466:1;15492;15482:35;;15497:18;;:::i;:::-;-1:-1:-1;15531:9:1;;15426:120::o;15551:112::-;15583:1;15609;15599:35;;15614:18;;:::i;:::-;-1:-1:-1;15648:9:1;;15551:112::o

Swarm Source

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