ETH Price: $3,355.79 (-2.85%)
Gas: 2 Gwei

Token

Alpha Nugs AI 2022 (AN_AI_2022)
 

Overview

Max Total Supply

140 AN_AI_2022

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
orieal.eth
Balance
1 AN_AI_2022
0xC45A4b3B698F21f88687548E7F5A80dF8B99D93d
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:
AlphaNugsAI_2022

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

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

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

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

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

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

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

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

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

        revert UnableDetermineTokenOwner();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;




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

    uint256 public constant MAX_SUPPLY = 1777;
    uint256 public constant MAX_PUBLIC_MINT = 4;
    uint256 public constant MAX_WHITELIST_MINT = 2;
    uint256 public constant PUBLIC_SALE_PRICE = .07 ether;
    uint256 public constant WHITELIST_SALE_PRICE = .07 ether;

    string private  baseTokenUri;
    string public   placeholderTokenUri;

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

    bytes32 private merkleRoot;

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

    constructor() ERC721A("Alpha Nugs AI 2022", "AN_AI_2022"){

    }

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

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

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

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

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

    function teamMint() external onlyOwner{
        require(!teamMinted, "AlphaNugsAI-2022 :: Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 50);
    }

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

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

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

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

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

        return ownerIds;
    }

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b50604080518082018252601281527120b638343090273ab3b99020a4901918191960711b60208083019182528351808501909452600a84526920a72fa0a4af9918191960b11b9084015281519192916200006e91600191620000fd565b50805162000084906002906020840190620000fd565b505050620000a16200009b620000a760201b60201c565b620000ab565b620001e0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010b90620001a3565b90600052602060002090601f0160209004810192826200012f57600085556200017a565b82601f106200014a57805160ff19168380011785556200017a565b828001600101855582156200017a579182015b828111156200017a5782518255916020019190600101906200015d565b50620001889291506200018c565b5090565b5b808211156200018857600081556001016200018d565b600181811c90821680620001b857607f821691505b60208210811415620001da57634e487b7160e01b600052602260045260246000fd5b50919050565b61264180620001f06000396000f3fe6080604052600436106102725760003560e01c806365f130971161014f578063a22cb465116100c1578063c4ae31681161007a578063c4ae3168146106db578063c87b56dd146106f0578063e222c7f914610710578063e8b5498d14610725578063e985e9c514610747578063f2fde38b1461079057600080fd5b8063a22cb46514610651578063b0962c5314610671578063b88d4fde14610691578063ba7a86b8146106b1578063bc912e1a1461032b578063c08dfd3c146106c657600080fd5b80638456cb59116101135780638456cb59146105b557806386a173ee146105d65780638bb64a8c146105f65780638da5cb5b1461060b57806395d89b4114610629578063a0712d681461063e57600080fd5b806365f130971461052957806370a082311461053e578063715018a61461055e5780637cb647591461057357806383a974a21461059357600080fd5b80632f745c59116101e857806349590657116101ac57806349590657146104905780634cf5f7a4146104a55780634f6ccce7146104ba57806354214f69146104da5780635b8ad429146104f45780636352211e1461050957600080fd5b80632f745c591461041357806332cb6b0c1461043357806333bc1c5c146104495780633ccfd60b1461046857806342842e0e1461047057600080fd5b8063081812fc1161023a578063081812fc14610346578063095ea7b31461037e57806318160ddd1461039e5780631c16521c146103b357806323b872dd146103e05780632904e6d91461040057600080fd5b806301ffc9a7146102775780630345e3cb146102ac5780630675b7c6146102e757806306fdde031461030957806307e89ec01461032b575b600080fd5b34801561028357600080fd5b506102976102923660046121bd565b6107b0565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102d96102c7366004611f85565b600d6020526000908152604090205481565b6040519081526020016102a3565b3480156102f357600080fd5b506103076103023660046121f7565b61081d565b005b34801561031557600080fd5b5061031e610867565b6040516102a391906123c4565b34801561033757600080fd5b506102d966f8b0a10e47000081565b34801561035257600080fd5b506103666103613660046121a4565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561038a57600080fd5b506103076103993660046120c7565b61093f565b3480156103aa57600080fd5b506000546102d9565b3480156103bf57600080fd5b506102d96103ce366004611f85565b600c6020526000908152604090205481565b3480156103ec57600080fd5b506103076103fb366004611fd3565b6109cd565b61030761040e3660046120f1565b6109d8565b34801561041f57600080fd5b506102d961042e3660046120c7565b610cbc565b34801561043f57600080fd5b506102d96106f181565b34801561045557600080fd5b50600a5461029790610100900460ff1681565b610307610d91565b34801561047c57600080fd5b5061030761048b366004611fd3565b610df7565b34801561049c57600080fd5b50600b546102d9565b3480156104b157600080fd5b5061031e610e12565b3480156104c657600080fd5b506102d96104d53660046121a4565b610ea0565b3480156104e657600080fd5b50600a546102979060ff1681565b34801561050057600080fd5b50610307610ec7565b34801561051557600080fd5b506103666105243660046121a4565b610f05565b34801561053557600080fd5b506102d9600481565b34801561054a57600080fd5b506102d9610559366004611f85565b610f17565b34801561056a57600080fd5b50610307610f65565b34801561057f57600080fd5b5061030761058e3660046121a4565b610f9b565b34801561059f57600080fd5b506105a8610fca565b6040516102a39190612380565b3480156105c157600080fd5b50600a54610297906301000000900460ff1681565b3480156105e257600080fd5b50600a546102979062010000900460ff1681565b34801561060257600080fd5b5061030761106d565b34801561061757600080fd5b506007546001600160a01b0316610366565b34801561063557600080fd5b5061031e6110b6565b61030761064c3660046121a4565b6110c5565b34801561065d57600080fd5b5061030761066c36600461208b565b6112c5565b34801561067d57600080fd5b5061030761068c3660046121f7565b61135b565b34801561069d57600080fd5b506103076106ac36600461200f565b611398565b3480156106bd57600080fd5b506103076113d2565b3480156106d257600080fd5b506102d9600281565b3480156106e757600080fd5b50610307611487565b3480156106fc57600080fd5b5061031e61070b3660046121a4565b6114d2565b34801561071c57600080fd5b50610307611640565b34801561073157600080fd5b50600a5461029790640100000000900460ff1681565b34801561075357600080fd5b50610297610762366004611fa0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079c57600080fd5b506103076107ab366004611f85565b611687565b60006001600160e01b031982166380ac58cd60e01b14806107e157506001600160e01b03198216635b5e139f60e01b145b806107fc57506001600160e01b0319821663780e9d6360e01b145b8061081757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108505760405162461bcd60e51b8152600401610847906123d7565b60405180910390fd5b8051610863906008906020840190611e81565b5050565b6060600180546108769061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061251d565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000610906826000541190565b610923576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094a82610f05565b9050806001600160a01b0316836001600160a01b0316141561097f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099f575061099d8133610762565b155b156109bd576040516367d9dca160e11b815260040160405180910390fd5b6109c883838361171f565b505050565b6109c883838361177b565b3233146109f75760405162461bcd60e51b81526004016108479061240c565b600a5462010000900460ff16610a5f5760405162461bcd60e51b815260206004820152602760248201527f416c7068614e75677341492d32303232203a3a204d696e74696e67206973206f6044820152666e20506175736560c81b6064820152608401610847565b6106f181610a6c60005490565b610a76919061248f565b1115610ade5760405162461bcd60e51b815260206004820152603160248201527f416c7068614e75677341492d32303232203a3a2043616e6e6f74206d696e74206044820152706265796f6e64206d617820737570706c7960781b6064820152608401610847565b336000908152600d6020526040902054600290610afc90839061248f565b1115610b705760405162461bcd60e51b815260206004820152603a60248201527f416c7068614e75677341492d32303232203a3a2043616e6e6f74206d696e742060448201527f6265796f6e642077686974656c697374206d6178206d696e74210000000000006064820152608401610847565b610b818166f8b0a10e4700006124bb565b341015610be75760405162461bcd60e51b815260206004820152602e60248201527f416c7068614e75677341492d32303232203a3a205061796d656e74206973206260448201526d656c6f772074686520707269636560901b6064820152608401610847565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c2d83600b548361199a565b610c8d5760405162461bcd60e51b815260206004820152602b60248201527f416c7068614e75677341492d32303232203a3a20596f7520617265206e6f742060448201526a1dda1a5d195b1a5cdd195960aa1b6064820152608401610847565b336000908152600d602052604081208054849290610cac90849061248f565b909155506109c8905033836119b0565b6000610cc783610f17565b8210610ce6576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610d7f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d4157805192505b876001600160a01b0316836001600160a01b03161415610d765786841415610d6f5750935061081792505050565b6001909301925b50600101610cee565b50610d88612587565b50505092915050565b6007546001600160a01b03163314610dbb5760405162461bcd60e51b8152600401610847906123d7565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610df4573d6000803e3d6000fd5b50565b6109c883838360405180602001604052806000815250611398565b60098054610e1f9061251d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b9061251d565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b505050505081565b600080548210610ec3576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610ef15760405162461bcd60e51b8152600401610847906123d7565b600a805460ff19811660ff90911615179055565b6000610f10826119ca565b5192915050565b60006001600160a01b038216610f40576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610847906123d7565b610f996000611a5f565b565b6007546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610847906123d7565b600b55565b6060336000610fd882610f17565b905060008167ffffffffffffffff811115610ff557610ff56125df565b60405190808252806020026020018201604052801561101e578160200160208202803683370190505b50905060005b82811015611065576110368482610cbc565b828281518110611048576110486125c9565b60209081029190910101528061105d81612558565b915050611024565b509392505050565b6007546001600160a01b031633146110975760405162461bcd60e51b8152600401610847906123d7565b600a805462ff0000198116620100009182900460ff1615909102179055565b6060600280546108769061251d565b3233146110e45760405162461bcd60e51b81526004016108479061240c565b600a54610100900460ff166111475760405162461bcd60e51b815260206004820152602360248201527f416c7068614e75677341492d32303232203a3a204e6f742059657420416374696044820152623b329760e91b6064820152608401610847565b6106f18161115460005490565b61115e919061248f565b11156111ba5760405162461bcd60e51b815260206004820152602560248201527f416c7068614e75677341492d32303232203a3a204265796f6e64204d617820536044820152647570706c7960d81b6064820152608401610847565b336000908152600c60205260409020546004906111d890839061248f565b11156112365760405162461bcd60e51b815260206004820152602760248201527f416c7068614e75677341492d32303232203a3a20416c7265616479206d6178206044820152666d696e7465642160c81b6064820152608401610847565b6112478166f8b0a10e4700006124bb565b3410156112965760405162461bcd60e51b815260206004820152601a60248201527f416c7068614e75677341492d32303232203a3a2042656c6f77200000000000006044820152606401610847565b336000908152600c6020526040812080548392906112b590849061248f565b90915550610df4905033826119b0565b6001600160a01b0382163314156112ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146113855760405162461bcd60e51b8152600401610847906123d7565b8051610863906009906020840190611e81565b6113a384848461177b565b6113af84848484611ab1565b6113cc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146113fc5760405162461bcd60e51b8152600401610847906123d7565b600a54640100000000900460ff16156114675760405162461bcd60e51b815260206004820152602760248201527f416c7068614e75677341492d32303232203a3a205465616d20616c7265616479604482015266081b5a5b9d195960ca1b6064820152608401610847565b600a805464ff000000001916640100000000179055610f993360326119b0565b6007546001600160a01b031633146114b15760405162461bcd60e51b8152600401610847906123d7565b600a805463ff00000019811663010000009182900460ff1615909102179055565b60606114df826000541190565b6115435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610847565b600a54829060ff166115e2576009805461155c9061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546115889061251d565b80156115d55780601f106115aa576101008083540402835291602001916115d5565b820191906000526020600020905b8154815290600101906020018083116115b857829003601f168201915b5050505050915050919050565b6000600880546115f19061251d565b90501161160d5760405180602001604052806000815250611639565b600861161882611bc0565b604051602001611629929190612288565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461166a5760405162461bcd60e51b8152600401610847906123d7565b600a805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146116b15760405162461bcd60e51b8152600401610847906123d7565b6001600160a01b0381166117165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610847565b610df481611a5f565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611786826119ca565b80519091506000906001600160a01b0316336001600160a01b031614806117bd5750336117b2846108f9565b6001600160a01b0316145b806117cf575081516117cf9033610762565b9050806117ef57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118245760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661184b57604051633a954ecd60e21b815260040160405180910390fd5b61185b600084846000015161171f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661195057611903816000541190565b15611950578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826119a78584611cbe565b14949350505050565b610863828260405180602001604052806000815250611d2a565b60408051808201909152600080825260208201526119e9826000541190565b611a0657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a55579392505050565b5060001901611a08565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611bb457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af5903390899088908890600401612343565b602060405180830381600087803b158015611b0f57600080fd5b505af1925050508015611b3f575060408051601f3d908101601f19168201909252611b3c918101906121da565b60015b611b9a573d808015611b6d576040519150601f19603f3d011682016040523d82523d6000602084013e611b72565b606091505b508051611b92576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bb8565b5060015b949350505050565b606081611be45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0e5780611bf881612558565b9150611c079050600a836124a7565b9150611be8565b60008167ffffffffffffffff811115611c2957611c296125df565b6040519080825280601f01601f191660200182016040528015611c53576020820181803683370190505b5090505b8415611bb857611c686001836124da565b9150611c75600a86612573565b611c8090603061248f565b60f81b818381518110611c9557611c956125c9565b60200101906001600160f81b031916908160001a905350611cb7600a866124a7565b9450611c57565b600081815b8451811015611065576000858281518110611ce057611ce06125c9565b60200260200101519050808311611d065760008381526020829052604090209250611d17565b600081815260208490526040902092505b5080611d2281612558565b915050611cc3565b6109c883838360016000546001600160a01b038516611d5b57604051622e076360e81b815260040160405180910390fd5b83611d795760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e785760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611e4e5750611e4c6000888488611ab1565b155b15611e6c576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611df7565b50600055611993565b828054611e8d9061251d565b90600052602060002090601f016020900481019282611eaf5760008555611ef5565b82601f10611ec857805160ff1916838001178555611ef5565b82800160010185558215611ef5579182015b82811115611ef5578251825591602001919060010190611eda565b50610ec39291505b80821115610ec35760008155600101611efd565b600067ffffffffffffffff831115611f2b57611f2b6125df565b611f3e601f8401601f191660200161245e565b9050828152838383011115611f5257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f8057600080fd5b919050565b600060208284031215611f9757600080fd5b61163982611f69565b60008060408385031215611fb357600080fd5b611fbc83611f69565b9150611fca60208401611f69565b90509250929050565b600080600060608486031215611fe857600080fd5b611ff184611f69565b9250611fff60208501611f69565b9150604084013590509250925092565b6000806000806080858703121561202557600080fd5b61202e85611f69565b935061203c60208601611f69565b925060408501359150606085013567ffffffffffffffff81111561205f57600080fd5b8501601f8101871361207057600080fd5b61207f87823560208401611f11565b91505092959194509250565b6000806040838503121561209e57600080fd5b6120a783611f69565b9150602083013580151581146120bc57600080fd5b809150509250929050565b600080604083850312156120da57600080fd5b6120e383611f69565b946020939093013593505050565b6000806040838503121561210457600080fd5b823567ffffffffffffffff8082111561211c57600080fd5b818501915085601f83011261213057600080fd5b8135602082821115612144576121446125df565b8160051b925061215581840161245e565b8281528181019085830185870184018b101561217057600080fd5b600096505b84871015612193578035835260019690960195918301918301612175565b509997909101359750505050505050565b6000602082840312156121b657600080fd5b5035919050565b6000602082840312156121cf57600080fd5b8135611639816125f5565b6000602082840312156121ec57600080fd5b8151611639816125f5565b60006020828403121561220957600080fd5b813567ffffffffffffffff81111561222057600080fd5b8201601f8101841361223157600080fd5b611bb884823560208401611f11565b600081518084526122588160208601602086016124f1565b601f01601f19169290920160200192915050565b6000815161227e8185602086016124f1565b9290920192915050565b600080845481600182811c9150808316806122a457607f831692505b60208084108214156122c457634e487b7160e01b86526022600452602486fd5b8180156122d857600181146122e957612316565b60ff19861689528489019650612316565b60008b81526020902060005b8681101561230e5781548b8201529085019083016122f5565b505084890196505b50505050505061233a612329828661226c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237690830184612240565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123b85783518352928401929184019160010161239c565b50909695505050505050565b6020815260006116396020830184612240565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f416c7068614e75677341492d32303232203a3a2043616e6e6f742062652063616040820152711b1b195908189e48184818dbdb9d1c9858dd60721b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612487576124876125df565b604052919050565b600082198211156124a2576124a261259d565b500190565b6000826124b6576124b66125b3565b500490565b60008160001904831182151516156124d5576124d561259d565b500290565b6000828210156124ec576124ec61259d565b500390565b60005b8381101561250c5781810151838201526020016124f4565b838111156113cc5750506000910152565b600181811c9082168061253157607f821691505b6020821081141561255257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256c5761256c61259d565b5060010190565b600082612582576125826125b3565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610df457600080fdfea2646970667358221220dad30b47654fccf5eea7def90a427e21a5a7fdf8023bb57f530bc6da2aa8f5ae64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c806365f130971161014f578063a22cb465116100c1578063c4ae31681161007a578063c4ae3168146106db578063c87b56dd146106f0578063e222c7f914610710578063e8b5498d14610725578063e985e9c514610747578063f2fde38b1461079057600080fd5b8063a22cb46514610651578063b0962c5314610671578063b88d4fde14610691578063ba7a86b8146106b1578063bc912e1a1461032b578063c08dfd3c146106c657600080fd5b80638456cb59116101135780638456cb59146105b557806386a173ee146105d65780638bb64a8c146105f65780638da5cb5b1461060b57806395d89b4114610629578063a0712d681461063e57600080fd5b806365f130971461052957806370a082311461053e578063715018a61461055e5780637cb647591461057357806383a974a21461059357600080fd5b80632f745c59116101e857806349590657116101ac57806349590657146104905780634cf5f7a4146104a55780634f6ccce7146104ba57806354214f69146104da5780635b8ad429146104f45780636352211e1461050957600080fd5b80632f745c591461041357806332cb6b0c1461043357806333bc1c5c146104495780633ccfd60b1461046857806342842e0e1461047057600080fd5b8063081812fc1161023a578063081812fc14610346578063095ea7b31461037e57806318160ddd1461039e5780631c16521c146103b357806323b872dd146103e05780632904e6d91461040057600080fd5b806301ffc9a7146102775780630345e3cb146102ac5780630675b7c6146102e757806306fdde031461030957806307e89ec01461032b575b600080fd5b34801561028357600080fd5b506102976102923660046121bd565b6107b0565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102d96102c7366004611f85565b600d6020526000908152604090205481565b6040519081526020016102a3565b3480156102f357600080fd5b506103076103023660046121f7565b61081d565b005b34801561031557600080fd5b5061031e610867565b6040516102a391906123c4565b34801561033757600080fd5b506102d966f8b0a10e47000081565b34801561035257600080fd5b506103666103613660046121a4565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561038a57600080fd5b506103076103993660046120c7565b61093f565b3480156103aa57600080fd5b506000546102d9565b3480156103bf57600080fd5b506102d96103ce366004611f85565b600c6020526000908152604090205481565b3480156103ec57600080fd5b506103076103fb366004611fd3565b6109cd565b61030761040e3660046120f1565b6109d8565b34801561041f57600080fd5b506102d961042e3660046120c7565b610cbc565b34801561043f57600080fd5b506102d96106f181565b34801561045557600080fd5b50600a5461029790610100900460ff1681565b610307610d91565b34801561047c57600080fd5b5061030761048b366004611fd3565b610df7565b34801561049c57600080fd5b50600b546102d9565b3480156104b157600080fd5b5061031e610e12565b3480156104c657600080fd5b506102d96104d53660046121a4565b610ea0565b3480156104e657600080fd5b50600a546102979060ff1681565b34801561050057600080fd5b50610307610ec7565b34801561051557600080fd5b506103666105243660046121a4565b610f05565b34801561053557600080fd5b506102d9600481565b34801561054a57600080fd5b506102d9610559366004611f85565b610f17565b34801561056a57600080fd5b50610307610f65565b34801561057f57600080fd5b5061030761058e3660046121a4565b610f9b565b34801561059f57600080fd5b506105a8610fca565b6040516102a39190612380565b3480156105c157600080fd5b50600a54610297906301000000900460ff1681565b3480156105e257600080fd5b50600a546102979062010000900460ff1681565b34801561060257600080fd5b5061030761106d565b34801561061757600080fd5b506007546001600160a01b0316610366565b34801561063557600080fd5b5061031e6110b6565b61030761064c3660046121a4565b6110c5565b34801561065d57600080fd5b5061030761066c36600461208b565b6112c5565b34801561067d57600080fd5b5061030761068c3660046121f7565b61135b565b34801561069d57600080fd5b506103076106ac36600461200f565b611398565b3480156106bd57600080fd5b506103076113d2565b3480156106d257600080fd5b506102d9600281565b3480156106e757600080fd5b50610307611487565b3480156106fc57600080fd5b5061031e61070b3660046121a4565b6114d2565b34801561071c57600080fd5b50610307611640565b34801561073157600080fd5b50600a5461029790640100000000900460ff1681565b34801561075357600080fd5b50610297610762366004611fa0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561079c57600080fd5b506103076107ab366004611f85565b611687565b60006001600160e01b031982166380ac58cd60e01b14806107e157506001600160e01b03198216635b5e139f60e01b145b806107fc57506001600160e01b0319821663780e9d6360e01b145b8061081757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108505760405162461bcd60e51b8152600401610847906123d7565b60405180910390fd5b8051610863906008906020840190611e81565b5050565b6060600180546108769061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061251d565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000610906826000541190565b610923576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094a82610f05565b9050806001600160a01b0316836001600160a01b0316141561097f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099f575061099d8133610762565b155b156109bd576040516367d9dca160e11b815260040160405180910390fd5b6109c883838361171f565b505050565b6109c883838361177b565b3233146109f75760405162461bcd60e51b81526004016108479061240c565b600a5462010000900460ff16610a5f5760405162461bcd60e51b815260206004820152602760248201527f416c7068614e75677341492d32303232203a3a204d696e74696e67206973206f6044820152666e20506175736560c81b6064820152608401610847565b6106f181610a6c60005490565b610a76919061248f565b1115610ade5760405162461bcd60e51b815260206004820152603160248201527f416c7068614e75677341492d32303232203a3a2043616e6e6f74206d696e74206044820152706265796f6e64206d617820737570706c7960781b6064820152608401610847565b336000908152600d6020526040902054600290610afc90839061248f565b1115610b705760405162461bcd60e51b815260206004820152603a60248201527f416c7068614e75677341492d32303232203a3a2043616e6e6f74206d696e742060448201527f6265796f6e642077686974656c697374206d6178206d696e74210000000000006064820152608401610847565b610b818166f8b0a10e4700006124bb565b341015610be75760405162461bcd60e51b815260206004820152602e60248201527f416c7068614e75677341492d32303232203a3a205061796d656e74206973206260448201526d656c6f772074686520707269636560901b6064820152608401610847565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c2d83600b548361199a565b610c8d5760405162461bcd60e51b815260206004820152602b60248201527f416c7068614e75677341492d32303232203a3a20596f7520617265206e6f742060448201526a1dda1a5d195b1a5cdd195960aa1b6064820152608401610847565b336000908152600d602052604081208054849290610cac90849061248f565b909155506109c8905033836119b0565b6000610cc783610f17565b8210610ce6576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610d7f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d4157805192505b876001600160a01b0316836001600160a01b03161415610d765786841415610d6f5750935061081792505050565b6001909301925b50600101610cee565b50610d88612587565b50505092915050565b6007546001600160a01b03163314610dbb5760405162461bcd60e51b8152600401610847906123d7565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610df4573d6000803e3d6000fd5b50565b6109c883838360405180602001604052806000815250611398565b60098054610e1f9061251d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b9061251d565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b505050505081565b600080548210610ec3576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610ef15760405162461bcd60e51b8152600401610847906123d7565b600a805460ff19811660ff90911615179055565b6000610f10826119ca565b5192915050565b60006001600160a01b038216610f40576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610847906123d7565b610f996000611a5f565b565b6007546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610847906123d7565b600b55565b6060336000610fd882610f17565b905060008167ffffffffffffffff811115610ff557610ff56125df565b60405190808252806020026020018201604052801561101e578160200160208202803683370190505b50905060005b82811015611065576110368482610cbc565b828281518110611048576110486125c9565b60209081029190910101528061105d81612558565b915050611024565b509392505050565b6007546001600160a01b031633146110975760405162461bcd60e51b8152600401610847906123d7565b600a805462ff0000198116620100009182900460ff1615909102179055565b6060600280546108769061251d565b3233146110e45760405162461bcd60e51b81526004016108479061240c565b600a54610100900460ff166111475760405162461bcd60e51b815260206004820152602360248201527f416c7068614e75677341492d32303232203a3a204e6f742059657420416374696044820152623b329760e91b6064820152608401610847565b6106f18161115460005490565b61115e919061248f565b11156111ba5760405162461bcd60e51b815260206004820152602560248201527f416c7068614e75677341492d32303232203a3a204265796f6e64204d617820536044820152647570706c7960d81b6064820152608401610847565b336000908152600c60205260409020546004906111d890839061248f565b11156112365760405162461bcd60e51b815260206004820152602760248201527f416c7068614e75677341492d32303232203a3a20416c7265616479206d6178206044820152666d696e7465642160c81b6064820152608401610847565b6112478166f8b0a10e4700006124bb565b3410156112965760405162461bcd60e51b815260206004820152601a60248201527f416c7068614e75677341492d32303232203a3a2042656c6f77200000000000006044820152606401610847565b336000908152600c6020526040812080548392906112b590849061248f565b90915550610df4905033826119b0565b6001600160a01b0382163314156112ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146113855760405162461bcd60e51b8152600401610847906123d7565b8051610863906009906020840190611e81565b6113a384848461177b565b6113af84848484611ab1565b6113cc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146113fc5760405162461bcd60e51b8152600401610847906123d7565b600a54640100000000900460ff16156114675760405162461bcd60e51b815260206004820152602760248201527f416c7068614e75677341492d32303232203a3a205465616d20616c7265616479604482015266081b5a5b9d195960ca1b6064820152608401610847565b600a805464ff000000001916640100000000179055610f993360326119b0565b6007546001600160a01b031633146114b15760405162461bcd60e51b8152600401610847906123d7565b600a805463ff00000019811663010000009182900460ff1615909102179055565b60606114df826000541190565b6115435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610847565b600a54829060ff166115e2576009805461155c9061251d565b80601f01602080910402602001604051908101604052809291908181526020018280546115889061251d565b80156115d55780601f106115aa576101008083540402835291602001916115d5565b820191906000526020600020905b8154815290600101906020018083116115b857829003601f168201915b5050505050915050919050565b6000600880546115f19061251d565b90501161160d5760405180602001604052806000815250611639565b600861161882611bc0565b604051602001611629929190612288565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461166a5760405162461bcd60e51b8152600401610847906123d7565b600a805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146116b15760405162461bcd60e51b8152600401610847906123d7565b6001600160a01b0381166117165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610847565b610df481611a5f565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611786826119ca565b80519091506000906001600160a01b0316336001600160a01b031614806117bd5750336117b2846108f9565b6001600160a01b0316145b806117cf575081516117cf9033610762565b9050806117ef57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118245760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661184b57604051633a954ecd60e21b815260040160405180910390fd5b61185b600084846000015161171f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661195057611903816000541190565b15611950578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826119a78584611cbe565b14949350505050565b610863828260405180602001604052806000815250611d2a565b60408051808201909152600080825260208201526119e9826000541190565b611a0657604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a55579392505050565b5060001901611a08565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611bb457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af5903390899088908890600401612343565b602060405180830381600087803b158015611b0f57600080fd5b505af1925050508015611b3f575060408051601f3d908101601f19168201909252611b3c918101906121da565b60015b611b9a573d808015611b6d576040519150601f19603f3d011682016040523d82523d6000602084013e611b72565b606091505b508051611b92576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bb8565b5060015b949350505050565b606081611be45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0e5780611bf881612558565b9150611c079050600a836124a7565b9150611be8565b60008167ffffffffffffffff811115611c2957611c296125df565b6040519080825280601f01601f191660200182016040528015611c53576020820181803683370190505b5090505b8415611bb857611c686001836124da565b9150611c75600a86612573565b611c8090603061248f565b60f81b818381518110611c9557611c956125c9565b60200101906001600160f81b031916908160001a905350611cb7600a866124a7565b9450611c57565b600081815b8451811015611065576000858281518110611ce057611ce06125c9565b60200260200101519050808311611d065760008381526020829052604090209250611d17565b600081815260208490526040902092505b5080611d2281612558565b915050611cc3565b6109c883838360016000546001600160a01b038516611d5b57604051622e076360e81b815260040160405180910390fd5b83611d795760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e785760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611e4e5750611e4c6000888488611ab1565b155b15611e6c576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611df7565b50600055611993565b828054611e8d9061251d565b90600052602060002090601f016020900481019282611eaf5760008555611ef5565b82601f10611ec857805160ff1916838001178555611ef5565b82800160010185558215611ef5579182015b82811115611ef5578251825591602001919060010190611eda565b50610ec39291505b80821115610ec35760008155600101611efd565b600067ffffffffffffffff831115611f2b57611f2b6125df565b611f3e601f8401601f191660200161245e565b9050828152838383011115611f5257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f8057600080fd5b919050565b600060208284031215611f9757600080fd5b61163982611f69565b60008060408385031215611fb357600080fd5b611fbc83611f69565b9150611fca60208401611f69565b90509250929050565b600080600060608486031215611fe857600080fd5b611ff184611f69565b9250611fff60208501611f69565b9150604084013590509250925092565b6000806000806080858703121561202557600080fd5b61202e85611f69565b935061203c60208601611f69565b925060408501359150606085013567ffffffffffffffff81111561205f57600080fd5b8501601f8101871361207057600080fd5b61207f87823560208401611f11565b91505092959194509250565b6000806040838503121561209e57600080fd5b6120a783611f69565b9150602083013580151581146120bc57600080fd5b809150509250929050565b600080604083850312156120da57600080fd5b6120e383611f69565b946020939093013593505050565b6000806040838503121561210457600080fd5b823567ffffffffffffffff8082111561211c57600080fd5b818501915085601f83011261213057600080fd5b8135602082821115612144576121446125df565b8160051b925061215581840161245e565b8281528181019085830185870184018b101561217057600080fd5b600096505b84871015612193578035835260019690960195918301918301612175565b509997909101359750505050505050565b6000602082840312156121b657600080fd5b5035919050565b6000602082840312156121cf57600080fd5b8135611639816125f5565b6000602082840312156121ec57600080fd5b8151611639816125f5565b60006020828403121561220957600080fd5b813567ffffffffffffffff81111561222057600080fd5b8201601f8101841361223157600080fd5b611bb884823560208401611f11565b600081518084526122588160208601602086016124f1565b601f01601f19169290920160200192915050565b6000815161227e8185602086016124f1565b9290920192915050565b600080845481600182811c9150808316806122a457607f831692505b60208084108214156122c457634e487b7160e01b86526022600452602486fd5b8180156122d857600181146122e957612316565b60ff19861689528489019650612316565b60008b81526020902060005b8681101561230e5781548b8201529085019083016122f5565b505084890196505b50505050505061233a612329828661226c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237690830184612240565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123b85783518352928401929184019160010161239c565b50909695505050505050565b6020815260006116396020830184612240565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f416c7068614e75677341492d32303232203a3a2043616e6e6f742062652063616040820152711b1b195908189e48184818dbdb9d1c9858dd60721b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612487576124876125df565b604052919050565b600082198211156124a2576124a261259d565b500190565b6000826124b6576124b66125b3565b500490565b60008160001904831182151516156124d5576124d561259d565b500290565b6000828210156124ec576124ec61259d565b500390565b60005b8381101561250c5781810151838201526020016124f4565b838111156113cc5750506000910152565b600181811c9082168061253157607f821691505b6020821081141561255257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561256c5761256c61259d565b5060010190565b600082612582576125826125b3565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610df457600080fdfea2646970667358221220dad30b47654fccf5eea7def90a427e21a5a7fdf8023bb57f530bc6da2aa8f5ae64736f6c63430008070033

Deployed Bytecode Sourcemap

43465:4830:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30668:372;;;;;;;;;;-1:-1:-1;30668:372:0;;;;;:::i;:::-;;:::i;:::-;;;8648:14:1;;8641:22;8623:41;;8611:2;8596:18;30668:372:0;;;;;;;;44258:53;;;;;;;;;;-1:-1:-1;44258:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;8821:25:1;;;8809:2;8794:18;44258:53:0;8675:177:1;47316:115:0;;;;;;;;;;-1:-1:-1;47316:115:0;;;;;:::i;:::-;;:::i;:::-;;32484:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43702:53::-;;;;;;;;;;;;43746:9;43702:53;;33961:204;;;;;;;;;;-1:-1:-1;33961:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7309:32:1;;;7291:51;;7279:2;7264:18;33961:204:0;7145:203:1;33550:345:0;;;;;;;;;;-1:-1:-1;33550:345:0;;;;;:::i;:::-;;:::i;28935:101::-;;;;;;;;;;-1:-1:-1;28988:7:0;29015:13;28935:101;;44201:50;;;;;;;;;;-1:-1:-1;44201:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;34818:170;;;;;;;;;;-1:-1:-1;34818:170:0;;;;;:::i;:::-;;:::i;45105:879::-;;;;;;:::i;:::-;;:::i;29589:1007::-;;;;;;;;;;-1:-1:-1;29589:1007:0;;;;;:::i;:::-;;:::i;43551:41::-;;;;;;;;;;;;43588:4;43551:41;;44050:22;;;;;;;;;;-1:-1:-1;44050:22:0;;;;;;;;;;;48178:114;;;:::i;35059:185::-;;;;;;;;;;-1:-1:-1;35059:185:0;;;;;:::i;:::-;;:::i;47700:92::-;;;;;;;;;;-1:-1:-1;47774:10:0;;47700:92;;43862:35;;;;;;;;;;;;;:::i;29113:176::-;;;;;;;;;;-1:-1:-1;29113:176:0;;;;;:::i;:::-;;:::i;44021:22::-;;;;;;;;;;-1:-1:-1;44021:22:0;;;;;;;;48085:85;;;;;;;;;;;;;:::i;32293:124::-;;;;;;;;;;-1:-1:-1;32293:124:0;;;;;:::i;:::-;;:::i;43599:43::-;;;;;;;;;;;;43641:1;43599:43;;31104:206;;;;;;;;;;-1:-1:-1;31104:206:0;;;;;:::i;:::-;;:::i;7415:103::-;;;;;;;;;;;;;:::i;47587:105::-;;;;;;;;;;-1:-1:-1;47587:105:0;;;;;:::i;:::-;;:::i;46902:406::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44111:17::-;;;;;;;;;;-1:-1:-1;44111:17:0;;;;;;;;;;;44079:25;;;;;;;;;;-1:-1:-1;44079:25:0;;;;;;;;;;;47882:98;;;;;;;;;;;;;:::i;6764:87::-;;;;;;;;;;-1:-1:-1;6837:6:0;;-1:-1:-1;;;;;6837:6:0;6764:87;;32653:104;;;;;;;;;;;;;:::i;44544:553::-;;;;;;:::i;:::-;;:::i;34237:279::-;;;;;;;;;;-1:-1:-1;34237:279:0;;;;;:::i;:::-;;:::i;47437:142::-;;;;;;;;;;-1:-1:-1;47437:142:0;;;;;:::i;:::-;;:::i;35315:308::-;;;;;;;;;;-1:-1:-1;35315:308:0;;;;;:::i;:::-;;:::i;45992:184::-;;;;;;;;;;;;;:::i;43649:46::-;;;;;;;;;;;;43694:1;43649:46;;47800:74;;;;;;;;;;;;;:::i;46341:467::-;;;;;;;;;;-1:-1:-1;46341:467:0;;;;;:::i;:::-;;:::i;47988:89::-;;;;;;;;;;;;;:::i;44135:22::-;;;;;;;;;;-1:-1:-1;44135:22:0;;;;;;;;;;;34587:164;;;;;;;;;;-1:-1:-1;34587:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34708:25:0;;;34684:4;34708:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34587:164;7673:201;;;;;;;;;;-1:-1:-1;7673:201:0;;;;;:::i;:::-;;:::i;30668:372::-;30770:4;-1:-1:-1;;;;;;30807:40:0;;-1:-1:-1;;;30807:40:0;;:105;;-1:-1:-1;;;;;;;30864:48:0;;-1:-1:-1;;;30864:48:0;30807:105;:172;;;-1:-1:-1;;;;;;;30929:50:0;;-1:-1:-1;;;30929:50:0;30807:172;:225;;;-1:-1:-1;;;;;;;;;;19680:40:0;;;30996:36;30787:245;30668:372;-1:-1:-1;;30668:372:0:o;47316:115::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;;;;;;;;;47395:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47316:115:::0;:::o;32484:100::-;32538:13;32571:5;32564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32484:100;:::o;33961:204::-;34029:7;34054:16;34062:7;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;34054:16;34049:64;;34079:34;;-1:-1:-1;;;34079:34:0;;;;;;;;;;;34049:64;-1:-1:-1;34133:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34133:24:0;;33961:204::o;33550:345::-;33623:13;33639:24;33655:7;33639:15;:24::i;:::-;33623:40;;33684:5;-1:-1:-1;;;;;33678:11:0;:2;-1:-1:-1;;;;;33678:11:0;;33674:48;;;33698:24;;-1:-1:-1;;;33698:24:0;;;;;;;;;;;33674:48;5568:10;-1:-1:-1;;;;;33739:21:0;;;;;;:63;;-1:-1:-1;33765:37:0;33782:5;5568:10;34587:164;:::i;33765:37::-;33764:38;33739:63;33735:111;;;33811:35;;-1:-1:-1;;;33811:35:0;;;;;;;;;;;33735:111;33859:28;33868:2;33872:7;33881:5;33859:8;:28::i;:::-;33612:283;33550:345;;:::o;34818:170::-;34952:28;34962:4;34968:2;34972:7;34952:9;:28::i;45105:879::-;44438:9;44451:10;44438:23;44430:86;;;;-1:-1:-1;;;44430:86:0;;;;;;;:::i;:::-;45226:13:::1;::::0;;;::::1;;;45218:65;;;::::0;-1:-1:-1;;;45218:65:0;;12928:2:1;45218:65:0::1;::::0;::::1;12910:21:1::0;12967:2;12947:18;;;12940:30;13006:34;12986:18;;;12979:62;-1:-1:-1;;;13057:18:1;;;13050:37;13104:19;;45218:65:0::1;12726:403:1::0;45218:65:0::1;43588:4;45319:9;45303:13;28988:7:::0;29015:13;;28935:101;45303:13:::1;:25;;;;:::i;:::-;45302:41;;45294:103;;;::::0;-1:-1:-1;;;45294:103:0;;10935:2:1;45294:103:0::1;::::0;::::1;10917:21:1::0;10974:2;10954:18;;;10947:30;11013:34;10993:18;;;10986:62;-1:-1:-1;;;11064:18:1;;;11057:47;11121:19;;45294:103:0::1;10733:413:1::0;45294:103:0::1;45436:10;45417:30;::::0;;;:18:::1;:30;::::0;;;;;43694:1:::1;::::0;45417:42:::1;::::0;45450:9;;45417:42:::1;:::i;:::-;45416:67;;45408:138;;;::::0;-1:-1:-1;;;45408:138:0;;9283:2:1;45408:138:0::1;::::0;::::1;9265:21:1::0;9322:2;9302:18;;;9295:30;9361:34;9341:18;;;9334:62;9432:28;9412:18;;;9405:56;9478:19;;45408:138:0::1;9081:422:1::0;45408:138:0::1;45579:32;45602:9:::0;43809::::1;45579:32;:::i;:::-;45565:9;:47;;45557:106;;;::::0;-1:-1:-1;;;45557:106:0;;14113:2:1;45557:106:0::1;::::0;::::1;14095:21:1::0;14152:2;14132:18;;;14125:30;14191:34;14171:18;;;14164:62;-1:-1:-1;;;14242:18:1;;;14235:44;14296:19;;45557:106:0::1;13911:410:1::0;45557:106:0::1;45729:28;::::0;-1:-1:-1;;45746:10:0::1;5754:2:1::0;5750:15;5746:53;45729:28:0::1;::::0;::::1;5734:66:1::0;45702:14:0::1;::::0;5816:12:1;;45729:28:0::1;;;;;;;;;;;;45719:39;;;;;;45702:56;;45777:52;45796:12;45810:10;;45822:6;45777:18;:52::i;:::-;45769:108;;;::::0;-1:-1:-1;;;45769:108:0;;10523:2:1;45769:108:0::1;::::0;::::1;10505:21:1::0;10562:2;10542:18;;;10535:30;10601:34;10581:18;;;10574:62;-1:-1:-1;;;10652:18:1;;;10645:41;10703:19;;45769:108:0::1;10321:407:1::0;45769:108:0::1;45909:10;45890:30;::::0;;;:18:::1;:30;::::0;;;;:43;;45924:9;;45890:30;:43:::1;::::0;45924:9;;45890:43:::1;:::i;:::-;::::0;;;-1:-1:-1;45944:32:0::1;::::0;-1:-1:-1;45954:10:0::1;45966:9:::0;45944::::1;:32::i;29589:1007::-:0;29678:7;29711:16;29721:5;29711:9;:16::i;:::-;29702:5;:25;29698:61;;29736:23;;-1:-1:-1;;;29736:23:0;;;;;;;;;;;29698:61;29770:22;29015:13;;;29770:22;;30033:466;30053:14;30049:1;:18;30033:466;;;30093:31;30127:14;;;:11;:14;;;;;;;;;30093:48;;;;;;;;;-1:-1:-1;;;;;30093:48:0;;;;;-1:-1:-1;;;30093:48:0;;;;;;;;;;;;30164:28;30160:111;;30237:14;;;-1:-1:-1;30160:111:0;30314:5;-1:-1:-1;;;;;30293:26:0;:17;-1:-1:-1;;;;;30293:26:0;;30289:195;;;30363:5;30348:11;:20;30344:85;;;-1:-1:-1;30404:1:0;-1:-1:-1;30397:8:0;;-1:-1:-1;;;30397:8:0;30344:85;30451:13;;;;;30289:195;-1:-1:-1;30069:3:0;;30033:466;;;-1:-1:-1;30575:13:0;;:::i;:::-;29687:909;;;29589:1007;;;;:::o;48178:114::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;6837:6;;48236:48:::1;::::0;-1:-1:-1;;;;;6837:6:0;;;;48262:21:::1;48236:48:::0;::::1;;;::::0;::::1;::::0;;;48262:21;6837:6;48236:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48178:114::o:0;35059:185::-;35197:39;35214:4;35220:2;35224:7;35197:39;;;;;;;;;;;;:16;:39::i;43862:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29113:176::-;29180:7;29015:13;;29204:5;:22;29200:58;;29235:23;;-1:-1:-1;;;29235:23:0;;;;;;;;;;;29200:58;-1:-1:-1;29276:5:0;29113:176::o;48085:85::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48152:10:::1;::::0;;-1:-1:-1;;48138:24:0;::::1;48152:10;::::0;;::::1;48151:11;48138:24;::::0;;48085:85::o;32293:124::-;32357:7;32384:20;32396:7;32384:11;:20::i;:::-;:25;;32293:124;-1:-1:-1;;32293:124:0:o;31104:206::-;31168:7;-1:-1:-1;;;;;31192:19:0;;31188:60;;31220:28;;-1:-1:-1;;;31220:28:0;;;;;;;;;;;31188:60;-1:-1:-1;;;;;;31274:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31274:27:0;;31104:206::o;7415:103::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;7480:30:::1;7507:1;7480:18;:30::i;:::-;7415:103::o:0;47587:105::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47660:10:::1;:24:::0;47587:105::o;46902:406::-;46944:16;46989:10;46972:14;47037:17;46989:10;47037:9;:17::i;:::-;47010:44;;47065:25;47107:16;47093:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47093:31:0;;47065:59;;47141:13;47137:136;47168:16;47160:5;:24;47137:136;;;47227:34;47247:6;47255:5;47227:19;:34::i;:::-;47209:8;47218:5;47209:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;47186:7;;;;:::i;:::-;;;;47137:136;;;-1:-1:-1;47292:8:0;46902:406;-1:-1:-1;;;46902:406:0:o;47882:98::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47959:13:::1;::::0;;-1:-1:-1;;47942:30:0;::::1;47959:13:::0;;;;::::1;;;47958:14;47942:30:::0;;::::1;;::::0;;47882:98::o;32653:104::-;32709:13;32742:7;32735:14;;;;;:::i;44544:553::-;44438:9;44451:10;44438:23;44430:86;;;;-1:-1:-1;;;44430:86:0;;;;;;;:::i;:::-;44625:10:::1;::::0;::::1;::::0;::::1;;;44617:58;;;::::0;-1:-1:-1;;;44617:58:0;;11353:2:1;44617:58:0::1;::::0;::::1;11335:21:1::0;11392:2;11372:18;;;11365:30;11431:34;11411:18;;;11404:62;-1:-1:-1;;;11482:18:1;;;11475:33;11525:19;;44617:58:0::1;11151:399:1::0;44617:58:0::1;43588:4;44711:9;44695:13;28988:7:::0;29015:13;;28935:101;44695:13:::1;:25;;;;:::i;:::-;44694:41;;44686:91;;;::::0;-1:-1:-1;;;44686:91:0;;10117:2:1;44686:91:0::1;::::0;::::1;10099:21:1::0;10156:2;10136:18;;;10129:30;10195:34;10175:18;;;10168:62;-1:-1:-1;;;10246:18:1;;;10239:35;10291:19;;44686:91:0::1;9915:401:1::0;44686:91:0::1;44813:10;44797:27;::::0;;;:15:::1;:27;::::0;;;;;43641:1:::1;::::0;44797:38:::1;::::0;44826:9;;44797:38:::1;:::i;:::-;44796:59;;44788:111;;;::::0;-1:-1:-1;;;44788:111:0;;12520:2:1;44788:111:0::1;::::0;::::1;12502:21:1::0;12559:2;12539:18;;;12532:30;12598:34;12578:18;;;12571:62;-1:-1:-1;;;12649:18:1;;;12642:37;12696:19;;44788:111:0::1;12318:403:1::0;44788:111:0::1;44932:29;44952:9:::0;43746::::1;44932:29;:::i;:::-;44918:9;:44;;44910:83;;;::::0;-1:-1:-1;;;44910:83:0;;12165:2:1;44910:83:0::1;::::0;::::1;12147:21:1::0;12204:2;12184:18;;;12177:30;12243:28;12223:18;;;12216:56;12289:18;;44910:83:0::1;11963:350:1::0;44910:83:0::1;45022:10;45006:27;::::0;;;:15:::1;:27;::::0;;;;:40;;45037:9;;45006:27;:40:::1;::::0;45037:9;;45006:40:::1;:::i;:::-;::::0;;;-1:-1:-1;45057:32:0::1;::::0;-1:-1:-1;45067:10:0::1;45079:9:::0;45057::::1;:32::i;34237:279::-:0;-1:-1:-1;;;;;34328:24:0;;5568:10;34328:24;34324:54;;;34361:17;;-1:-1:-1;;;34361:17:0;;;;;;;;;;;34324:54;5568:10;34391:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34391:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34391:53:0;;;;;;;;;;34460:48;;8623:41:1;;;34391:42:0;;5568:10;34460:48;;8596:18:1;34460:48:0;;;;;;;34237:279;;:::o;47437:142::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47529:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;35315:308::-:0;35474:28;35484:4;35490:2;35494:7;35474:9;:28::i;:::-;35518:48;35541:4;35547:2;35551:7;35560:5;35518:22;:48::i;:::-;35513:102;;35575:40;;-1:-1:-1;;;35575:40:0;;;;;;;;;;;35513:102;35315:308;;;;:::o;45992:184::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;46050:10:::1;::::0;;;::::1;;;46049:11;46041:63;;;::::0;-1:-1:-1;;;46041:63:0;;11757:2:1;46041:63:0::1;::::0;::::1;11739:21:1::0;11796:2;11776:18;;;11769:30;11835:34;11815:18;;;11808:62;-1:-1:-1;;;11886:18:1;;;11879:37;11933:19;;46041:63:0::1;11555:403:1::0;46041:63:0::1;46115:10;:17:::0;;-1:-1:-1;;46115:17:0::1;::::0;::::1;::::0;;46143:25:::1;46153:10;46165:2;46143:9;:25::i;47800:74::-:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47861:5:::1;::::0;;-1:-1:-1;;47852:14:0;::::1;47861:5:::0;;;;::::1;;;47860:6;47852:14:::0;;::::1;;::::0;;47800:74::o;46341:467::-;46414:13;46448:16;46456:7;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;46448:16;46440:76;;;;-1:-1:-1;;;46440:76:0;;13697:2:1;46440:76:0;;;13679:21:1;13736:2;13716:18;;;13709:30;13775:34;13755:18;;;13748:62;-1:-1:-1;;;13826:18:1;;;13819:45;13881:19;;46440:76:0;13495:411:1;46440:76:0;46568:10;;46544:7;;46568:10;;46564:68;;46601:19;46594:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46341:467;;;:::o;46564:68::-;46725:1;46702:12;46696:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;46753:12;46767:17;:6;:15;:17::i;:::-;46736:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46696:104;46689:111;46341:467;-1:-1:-1;;;46341:467:0:o;47988:89::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48059:10:::1;::::0;;-1:-1:-1;;48045:24:0;::::1;48059:10;::::0;;;::::1;;;48058:11;48045:24:::0;;::::1;;::::0;;47988:89::o;7673:201::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7762:22:0;::::1;7754:73;;;::::0;-1:-1:-1;;;7754:73:0;;9710:2:1;7754:73:0::1;::::0;::::1;9692:21:1::0;9749:2;9729:18;;;9722:30;9788:34;9768:18;;;9761:62;-1:-1:-1;;;9839:18:1;;;9832:36;9885:19;;7754:73:0::1;9508:402:1::0;7754:73:0::1;7838:28;7857:8;7838:18;:28::i;40641:196::-:0;40756:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40756:29:0;-1:-1:-1;;;;;40756:29:0;;;;;;;;;40801:28;;40756:24;;40801:28;;;;;;;40641:196;;;:::o;38561:1962::-;38676:35;38714:20;38726:7;38714:11;:20::i;:::-;38789:18;;38676:58;;-1:-1:-1;38747:22:0;;-1:-1:-1;;;;;38773:34:0;5568:10;-1:-1:-1;;;;;38773:34:0;;:87;;;-1:-1:-1;5568:10:0;38824:20;38836:7;38824:11;:20::i;:::-;-1:-1:-1;;;;;38824:36:0;;38773:87;:154;;;-1:-1:-1;38894:18:0;;38877:50;;5568:10;34587:164;:::i;38877:50::-;38747:181;;38946:17;38941:66;;38972:35;;-1:-1:-1;;;38972:35:0;;;;;;;;;;;38941:66;39044:4;-1:-1:-1;;;;;39022:26:0;:13;:18;;;-1:-1:-1;;;;;39022:26:0;;39018:67;;39057:28;;-1:-1:-1;;;39057:28:0;;;;;;;;;;;39018:67;-1:-1:-1;;;;;39100:16:0;;39096:52;;39125:23;;-1:-1:-1;;;39125:23:0;;;;;;;;;;;39096:52;39269:49;39286:1;39290:7;39299:13;:18;;;39269:8;:49::i;:::-;-1:-1:-1;;;;;39614:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39614:31:0;;;-1:-1:-1;;;;;39614:31:0;;;-1:-1:-1;;39614:31:0;;;;;;;39660:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39660:29:0;;;;;;;;;;;;;39706:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39751:61:0;;;;-1:-1:-1;;;39796:15:0;39751:61;;;;;;40086:11;;;40116:24;;;;;:29;40086:11;;40116:29;40112:295;;40184:20;40192:11;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;40184:20;40180:212;;;40261:18;;;40229:24;;;:11;:24;;;;;;;;:50;;40344:28;;;;40302:70;;-1:-1:-1;;;40302:70:0;-1:-1:-1;;;;;;40302:70:0;;;-1:-1:-1;;;;;40229:50:0;;;40302:70;;;;;;;40180:212;39589:829;40454:7;40450:2;-1:-1:-1;;;;;40435:27:0;40444:4;-1:-1:-1;;;;;40435:27:0;;;;;;;;;;;40473:42;38665:1858;;38561:1962;;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;;1220:190;-1:-1:-1;;;;1220:190:0:o;35998:104::-;36067:27;36077:2;36081:8;36067:27;;;;;;;;;;;;:9;:27::i;31727:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;31827:16:0;31835:7;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;31827:16;31822:61;;31852:31;;-1:-1:-1;;;31852:31:0;;;;;;;;;;;31822:61;31941:7;31921:245;31988:31;32022:17;;;:11;:17;;;;;;;;;31988:51;;;;;;;;;-1:-1:-1;;;;;31988:51:0;;;;;-1:-1:-1;;;31988:51:0;;;;;;;;;;;;32062:28;32058:93;;32122:9;31727:504;-1:-1:-1;;;31727:504:0:o;32058:93::-;-1:-1:-1;;;31961:6:0;31921:245;;8034:191;8127:6;;;-1:-1:-1;;;;;8144:17:0;;;-1:-1:-1;;;;;;8144:17:0;;;;;;;8177:40;;8127:6;;;8144:17;8127:6;;8177:40;;8108:16;;8177:40;8097:128;8034:191;:::o;41402:765::-;41557:4;-1:-1:-1;;;;;41578:13:0;;9760:19;:23;41574:586;;41614:72;;-1:-1:-1;;;41614:72:0;;-1:-1:-1;;;;;41614:36:0;;;;;:72;;5568:10;;41665:4;;41671:7;;41680:5;;41614:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41614:72:0;;;;;;;;-1:-1:-1;;41614:72:0;;;;;;;;;;;;:::i;:::-;;;41610:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41860:13:0;;41856:234;;41887:40;;-1:-1:-1;;;41887:40:0;;;;;;;;;;;41856:234;42040:6;42034:13;42025:6;42021:2;42017:15;42010:38;41610:495;-1:-1:-1;;;;;;41737:55:0;-1:-1:-1;;;41737:55:0;;-1:-1:-1;41730:62:0;;41574:586;-1:-1:-1;42144:4:0;41574:586;41402:765;;;;;;:::o;3050:723::-;3106:13;3327:10;3323:53;;-1:-1:-1;;3354:10:0;;;;;;;;;;;;-1:-1:-1;;;3354:10:0;;;;;3050:723::o;3323:53::-;3401:5;3386:12;3442:78;3449:9;;3442:78;;3475:8;;;;:::i;:::-;;-1:-1:-1;3498:10:0;;-1:-1:-1;3506:2:0;3498:10;;:::i;:::-;;;3442:78;;;3530:19;3562:6;3552:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3552:17:0;;3530:39;;3580:154;3587:10;;3580:154;;3614:11;3624:1;3614:11;;:::i;:::-;;-1:-1:-1;3683:10:0;3691:2;3683:5;:10;:::i;:::-;3670:24;;:2;:24;:::i;:::-;3657:39;;3640:6;3647;3640:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3640:56:0;;;;;;;;-1:-1:-1;3711:11:0;3720:2;3711:11;;:::i;:::-;;;3580:154;;1771:675;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;36465:163;36588:32;36594:2;36598:8;36608:5;36615:4;37026:20;37049:13;-1:-1:-1;;;;;37077:16:0;;37073:48;;37102:19;;-1:-1:-1;;;37102:19:0;;;;;;;;;;;37073:48;37136:13;37132:44;;37158:18;;-1:-1:-1;;;37158:18:0;;;;;;;;;;;37132:44;-1:-1:-1;;;;;37529:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37529:45:0;;-1:-1:-1;;;;;37529:45:0;;;;;;;;;;37589:50;;;;;;;;;;;;;;37656:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37706:66:0;;;;-1:-1:-1;;;37756:15:0;37706:66;;;;;;;37656:25;;37841:330;37861:8;37857:1;:12;37841:330;;;37900:38;;37925:12;;-1:-1:-1;;;;;37900:38:0;;;37917:1;;37900:38;;37917:1;;37900:38;37961:4;:68;;;;;37970:59;38001:1;38005:2;38009:12;38023:5;37970:22;:59::i;:::-;37969:60;37961:68;37957:164;;;38061:40;;-1:-1:-1;;;38061:40:0;;;;;;;;;;;37957:164;38141:14;;;;;37871:3;37841:330;;;-1:-1:-1;38187:13:0;:28;38239:60;35315:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:257::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5157:63;5213:6;5206:4;5201:3;5197:14;5190:4;5183:5;5179:16;5157:63;:::i;:::-;5274:2;5253:15;-1:-1:-1;;5249:29:1;5240:39;;;;5281:4;5236:50;;5035:257;-1:-1:-1;;5035:257:1:o;5297:185::-;5339:3;5377:5;5371:12;5392:52;5437:6;5432:3;5425:4;5418:5;5414:16;5392:52;:::i;:::-;5460:16;;;;;5297:185;-1:-1:-1;;5297:185:1:o;5839:1301::-;6116:3;6145:1;6178:6;6172:13;6208:3;6230:1;6258:9;6254:2;6250:18;6240:28;;6318:2;6307:9;6303:18;6340;6330:61;;6384:4;6376:6;6372:17;6362:27;;6330:61;6410:2;6458;6450:6;6447:14;6427:18;6424:38;6421:165;;;-1:-1:-1;;;6485:33:1;;6541:4;6538:1;6531:15;6571:4;6492:3;6559:17;6421:165;6602:18;6629:104;;;;6747:1;6742:320;;;;6595:467;;6629:104;-1:-1:-1;;6662:24:1;;6650:37;;6707:16;;;;-1:-1:-1;6629:104:1;;6742:320;15280:1;15273:14;;;15317:4;15304:18;;6837:1;6851:165;6865:6;6862:1;6859:13;6851:165;;;6943:14;;6930:11;;;6923:35;6986:16;;;;6880:10;;6851:165;;;6855:3;;7045:6;7040:3;7036:16;7029:23;;6595:467;;;;;;;7078:56;7103:30;7129:3;7121:6;7103:30;:::i;:::-;-1:-1:-1;;;5547:20:1;;5592:1;5583:11;;5487:113;7078:56;7071:63;5839:1301;-1:-1:-1;;;;;5839:1301:1:o;7353:488::-;-1:-1:-1;;;;;7622:15:1;;;7604:34;;7674:15;;7669:2;7654:18;;7647:43;7721:2;7706:18;;7699:34;;;7769:3;7764:2;7749:18;;7742:31;;;7547:4;;7790:45;;7815:19;;7807:6;7790:45;:::i;:::-;7782:53;7353:488;-1:-1:-1;;;;;;7353:488:1:o;7846:632::-;8017:2;8069:21;;;8139:13;;8042:18;;;8161:22;;;7988:4;;8017:2;8240:15;;;;8214:2;8199:18;;;7988:4;8283:169;8297:6;8294:1;8291:13;8283:169;;;8358:13;;8346:26;;8427:15;;;;8392:12;;;;8319:1;8312:9;8283:169;;;-1:-1:-1;8469:3:1;;7846:632;-1:-1:-1;;;;;;7846:632:1:o;8857:219::-;9006:2;8995:9;8988:21;8969:4;9026:44;9066:2;9055:9;9051:18;9043:6;9026:44;:::i;13134:356::-;13336:2;13318:21;;;13355:18;;;13348:30;13414:34;13409:2;13394:18;;13387:62;13481:2;13466:18;;13134:356::o;14326:414::-;14528:2;14510:21;;;14567:2;14547:18;;;14540:30;14606:34;14601:2;14586:18;;14579:62;-1:-1:-1;;;14672:2:1;14657:18;;14650:48;14730:3;14715:19;;14326:414::o;14927:275::-;14998:2;14992:9;15063:2;15044:13;;-1:-1:-1;;15040:27:1;15028:40;;15098:18;15083:34;;15119:22;;;15080:62;15077:88;;;15145:18;;:::i;:::-;15181:2;15174:22;14927:275;;-1:-1:-1;14927:275:1:o;15333:128::-;15373:3;15404:1;15400:6;15397:1;15394:13;15391:39;;;15410:18;;:::i;:::-;-1:-1:-1;15446:9:1;;15333:128::o;15466:120::-;15506:1;15532;15522:35;;15537:18;;:::i;:::-;-1:-1:-1;15571:9:1;;15466:120::o;15591:168::-;15631:7;15697:1;15693;15689:6;15685:14;15682:1;15679:21;15674:1;15667:9;15660:17;15656:45;15653:71;;;15704:18;;:::i;:::-;-1:-1:-1;15744:9:1;;15591:168::o;15764:125::-;15804:4;15832:1;15829;15826:8;15823:34;;;15837:18;;:::i;:::-;-1:-1:-1;15874:9:1;;15764:125::o;15894:258::-;15966:1;15976:113;15990:6;15987:1;15984:13;15976:113;;;16066:11;;;16060:18;16047:11;;;16040:39;16012:2;16005:10;15976:113;;;16107:6;16104:1;16101:13;16098:48;;;-1:-1:-1;;16142:1:1;16124:16;;16117:27;15894:258::o;16157:380::-;16236:1;16232:12;;;;16279;;;16300:61;;16354:4;16346:6;16342:17;16332:27;;16300:61;16407:2;16399:6;16396:14;16376:18;16373:38;16370:161;;;16453:10;16448:3;16444:20;16441:1;16434:31;16488:4;16485:1;16478:15;16516:4;16513:1;16506:15;16370:161;;16157:380;;;:::o;16542:135::-;16581:3;-1:-1:-1;;16602:17:1;;16599:43;;;16622:18;;:::i;:::-;-1:-1:-1;16669:1:1;16658:13;;16542:135::o;16682:112::-;16714:1;16740;16730:35;;16745:18;;:::i;:::-;-1:-1:-1;16779:9:1;;16682:112::o;16799:127::-;16860:10;16855:3;16851:20;16848:1;16841:31;16891:4;16888:1;16881:15;16915:4;16912:1;16905:15;16931:127;16992:10;16987:3;16983:20;16980:1;16973:31;17023:4;17020:1;17013:15;17047:4;17044:1;17037:15;17063:127;17124:10;17119:3;17115:20;17112:1;17105:31;17155:4;17152:1;17145:15;17179:4;17176:1;17169:15;17195:127;17256:10;17251:3;17247:20;17244:1;17237:31;17287:4;17284:1;17277:15;17311:4;17308:1;17301:15;17327:127;17388:10;17383:3;17379:20;17376:1;17369:31;17419:4;17416:1;17409:15;17443:4;17440:1;17433:15;17459:131;-1:-1:-1;;;;;;17533:32:1;;17523:43;;17513:71;;17580:1;17577;17570:12

Swarm Source

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