ETH Price: $3,387.81 (-1.57%)
Gas: 2 Gwei

Token

Dream Bears (DB)
 

Overview

Max Total Supply

4,444 DB

Holders

2,113

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
woary.eth
Balance
2 DB
0x4ca19be8160cdb78176c89204402888a553bc83a
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:
DreamBears

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-08-14
*/

// SPDX-License-Identifier: MIT



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    pragma solidity ^0.8.7;
    
    contract DreamBears is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL = "ipfs://QmbdJWd859o2gtyrSEJCYQTbna7H6UJrjDSZnmYvUTtHvb";

  
  

  uint256 public cost = 0.02 ether;
 

  uint16 public constant maxSupply = 4444;

                                                             
  bool public WLpaused = true;
  bool public paused = true;
  bool public reveal =false;
  mapping (address => uint8) public NFTPerWLAddress;
  mapping (address => uint8) public NFTPerAddress;
  uint8 public maxMintAmountPerWallet = 2;  

  
  
  bytes32 public whitelistMerkleRoot = 0xd77707f3d7e9c49ca7919ab806bc075030aa162c62061000d3f13ecf1e0e4062;
  

  constructor() ERC721A("Dream Bears", "DB") {
  }

  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 _txPerAddress = NFTPerAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + _txPerAddress <= maxMintAmountPerWallet, "Exceeds max  nfts allowed per wallet.");

    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender , _mintAmount);
     NFTPerAddress[msg.sender] =_txPerAddress + _mintAmount;
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }
 
   function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
 



 function setMaxNFTsPerAddress(uint8 _limit) external onlyOwner{
    maxMintAmountPerWallet = _limit;
   delete _limit;

}
function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
        uint16 totalSupply = uint16(totalSupply());
       bytes32  leafnode = getLeafNode(msg.sender);
        uint8 _txPerAddress = NFTPerWLAddress[msg.sender];
      require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max tx per address");
      


    require(!WLpaused, "Whitelist minting is over!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

      
     _safeMint(msg.sender , _mintAmount);
      NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount;
      delete totalSupply;
      delete _mintAmount;
       delete _txPerAddress;
    
    }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
    WLpaused = true;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

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


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

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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNFTsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200018c565b50604051806060016040528060358152602001620027086035913980516200005991600b916020909101906200018c565b5066470de4df820000600c55600d805462ffffff19166101011790556010805460ff191660021790557fd77707f3d7e9c49ca7919ab806bc075030aa162c62061000d3f13ecf1e0e4062601155348015620000b357600080fd5b506040518060400160405280600b81526020016a447265616d20426561727360a81b81525060405180604001604052806002815260200161222160f11b81525081600290805190602001906200010b9291906200018c565b508051620001219060039060208401906200018c565b505060016000555062000134336200013a565b6200026f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019a9062000232565b90600052602060002090601f016020900481019282620001be576000855562000209565b82601f10620001d957805160ff191683800117855562000209565b8280016001018555821562000209579182015b8281111562000209578251825591602001919060010190620001ec565b50620002179291506200021b565b5090565b5b808211156200021757600081556001016200021c565b600181811c908216806200024757607f821691505b602082108114156200026957634e487b7160e01b600052602260045260246000fd5b50919050565b612489806200027f6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063aa98e0c6116100ab578063d5abeb011161006f578063d5abeb0114610655578063dbd37cf41461067e578063e985e9c5146106ae578063eef440af146106f7578063f2fde38b1461070c57600080fd5b8063aa98e0c6146105c5578063b88d4fde146105db578063bc951b91146105fb578063bd32fb6614610615578063c87b56dd1461063557600080fd5b80637f6e9093116100f25780637f6e9093146105385780638da5cb5b1461055257806395d89b4114610570578063a22cb46514610585578063a475b5dd146105a557600080fd5b80636352211e146104b05780636ecd2306146104d057806370a08231146104e3578063715018a6146105035780637ec4a6591461051857600080fd5b80632f6f98e1116101bc57806344a0d68a1161018057806344a0d68a146103fc5780635030d5411461041c578063583816691461043c57806359bf5dbb1461044f5780635c975abb1461049157600080fd5b80632f6f98e11461037d57806337a66d851461039d5780633bd64968146103b25780633ccfd60b146103c757806342842e0e146103dc57600080fd5b8063095ea7b311610203578063095ea7b3146102db5780631067fcc7146102fb57806313faede61461031b57806318160ddd1461033f57806323b872dd1461035d57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063093cfa63146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611fe4565b61072c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61077e565b604051610261919061225a565b34801561029857600080fd5b506102ac6102a7366004611fcb565b610810565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102d9610854565b005b3480156102e757600080fd5b506102d96102f6366004611fa1565b61089b565b34801561030757600080fd5b506102d961031636600461201e565b610929565b34801561032757600080fd5b50610331600c5481565b604051908152602001610261565b34801561034b57600080fd5b50610331600154600054036000190190565b34801561036957600080fd5b506102d9610378366004611ead565b61096a565b34801561038957600080fd5b506102d9610398366004612067565b610975565b3480156103a957600080fd5b506102d9610a17565b3480156103be57600080fd5b506102d9610a66565b3480156103d357600080fd5b506102d9610aaf565b3480156103e857600080fd5b506102d96103f7366004611ead565b610b08565b34801561040857600080fd5b506102d9610417366004611fcb565b610b23565b34801561042857600080fd5b506102d961043736600461208c565b610b52565b6102d961044a3660046120a7565b610b92565b34801561045b57600080fd5b5061047f61046a366004611e5f565b600e6020526000908152604090205460ff1681565b60405160ff9091168152602001610261565b34801561049d57600080fd5b50600d5461025590610100900460ff1681565b3480156104bc57600080fd5b506102ac6104cb366004611fcb565b610e1d565b6102d96104de36600461208c565b610e2f565b3480156104ef57600080fd5b506103316104fe366004611e5f565b61100d565b34801561050f57600080fd5b506102d961105c565b34801561052457600080fd5b506102d961053336600461201e565b611092565b34801561054457600080fd5b50600d546102559060ff1681565b34801561055e57600080fd5b506008546001600160a01b03166102ac565b34801561057c57600080fd5b5061027f6110cf565b34801561059157600080fd5b506102d96105a0366004611f65565b6110de565b3480156105b157600080fd5b50600d546102559062010000900460ff1681565b3480156105d157600080fd5b5061033160115481565b3480156105e757600080fd5b506102d96105f6366004611ee9565b611174565b34801561060757600080fd5b5060105461047f9060ff1681565b34801561062157600080fd5b506102d9610630366004611fcb565b6111c5565b34801561064157600080fd5b5061027f610650366004611fcb565b6111f4565b34801561066157600080fd5b5061066b61115c81565b60405161ffff9091168152602001610261565b34801561068a57600080fd5b5061047f610699366004611e5f565b600f6020526000908152604090205460ff1681565b3480156106ba57600080fd5b506102556106c9366004611e7a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070357600080fd5b5061027f611364565b34801561071857600080fd5b506102d9610727366004611e5f565b6113f2565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461078d9061237b565b80601f01602080910402602001604051908101604052809291908181526020018280546107b99061237b565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b8261148d565b610838576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108875760405162461bcd60e51b815260040161087e9061226d565b60405180910390fd5b600d805460ff19811660ff90911615179055565b60006108a682610e1d565b9050806001600160a01b0316836001600160a01b031614156108db5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108fb57506108f981336106c9565b155b15610919576040516367d9dca160e11b815260040160405180910390fd5b6109248383836114c6565b505050565b6008546001600160a01b031633146109535760405162461bcd60e51b815260040161087e9061226d565b805161096690600b906020840190611d23565b5050565b610924838383611522565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260040161087e9061226d565b60006109b2600154600054036000190190565b905061115c6109c184836122a2565b61ffff161115610a095760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161087e565b610924828461ffff16611712565b6008546001600160a01b03163314610a415760405162461bcd60e51b815260040161087e9061226d565b600d805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610a905760405162461bcd60e51b815260040161087e9061226d565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610ad95760405162461bcd60e51b815260040161087e9061226d565b6040514790339082156108fc029083906000818181858888f19350505050158015610966573d6000803e3d6000fd5b61092483838360405180602001604052806000815250611174565b6008546001600160a01b03163314610b4d5760405162461bcd60e51b815260040161087e9061226d565b600c55565b6008546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161087e9061226d565b6010805460ff191660ff92909216919091179055565b6000610ba5600154600054036000190190565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909150600090336000908152600e602052604090205490915060ff9081169061115c90610c0b908816856122a2565b61ffff161115610c535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087e565b610c908286868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061172c92505050565b610cd35760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161087e565b60105460ff16610ce387836122e0565b60ff161115610d345760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178207478207065722061646472657373000000000000604482015260640161087e565b600d5460ff1615610d875760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f76657221000000000000604482015260640161087e565b8560ff16600c54610d989190612319565b341015610ddd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161087e565b610dea338760ff16611712565b610df486826122e0565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050505050565b6000610e288261173b565b5192915050565b6000610e42600154600054036000190190565b336000908152600f602052604090205490915060ff9081169061115c90610e6b908516846122a2565b61ffff161115610eb35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087e565b60105460ff16610ec382856122e0565b60ff161115610f225760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d617820206e66747320616c6c6f77656420706572207761604482015264363632ba1760d91b606482015260840161087e565b600d54610100900460ff1615610f7a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161087e565b8260ff16600c54610f8b9190612319565b341015610fd05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161087e565b610fdd338460ff16611712565b610fe783826122e0565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216611036576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110865760405162461bcd60e51b815260040161087e9061226d565b6110906000611864565b565b6008546001600160a01b031633146110bc5760405162461bcd60e51b815260040161087e9061226d565b8051610966906009906020840190611d23565b60606003805461078d9061237b565b6001600160a01b0382163314156111085760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117f848484611522565b6001600160a01b0383163b151580156111a1575061119f848484846118b6565b155b156111bf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111ef5760405162461bcd60e51b815260040161087e9061226d565b601155565b60606111ff8261148d565b6112635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087e565b600d5462010000900460ff1661130557600b80546112809061237b565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac9061237b565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b50505050509050919050565b600061130f6119ae565b9050600081511161132f576040518060200160405280600081525061135d565b80611339846119bd565b600a60405160200161134d93929190612159565b6040516020818303038152906040525b9392505050565b600b80546113719061237b565b80601f016020809104026020016040519081016040528092919081815260200182805461139d9061237b565b80156113ea5780601f106113bf576101008083540402835291602001916113ea565b820191906000526020600020905b8154815290600101906020018083116113cd57829003601f168201915b505050505081565b6008546001600160a01b0316331461141c5760405162461bcd60e51b815260040161087e9061226d565b6001600160a01b0381166114815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b61148a81611864565b50565b6000816001111580156114a1575060005482105b8015610778575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061152d8261173b565b9050836001600160a01b031681600001516001600160a01b0316146115645760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611582575061158285336106c9565b8061159d57503361159284610810565b6001600160a01b0316145b9050806115bd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e457604051633a954ecd60e21b815260040160405180910390fd5b6115f0600084876114c6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116c65760005482146116c6578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610966828260405180602001604052806000815250611abb565b600061135d8260115485611ac8565b6040805160608101825260008082526020820181905291810191909152818060011115801561176b575060005481105b1561184b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118495780516001600160a01b0316156117df579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611844579392505050565b6117df565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118eb90339089908890889060040161221d565b602060405180830381600087803b15801561190557600080fd5b505af1925050508015611935575060408051601f3d908101601f1916820190925261193291810190612001565b60015b611990573d808015611963576040519150601f19603f3d011682016040523d82523d6000602084013e611968565b606091505b508051611988576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461078d9061237b565b6060816119e15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0b57806119f5816123b6565b9150611a049050600a83612305565b91506119e5565b60008167ffffffffffffffff811115611a2657611a26612427565b6040519080825280601f01601f191660200182016040528015611a50576020820181803683370190505b5090505b84156119a657611a65600183612338565b9150611a72600a866123d1565b611a7d9060306122c8565b60f81b818381518110611a9257611a92612411565b60200101906001600160f81b031916908160001a905350611ab4600a86612305565b9450611a54565b6109248383836001611ade565b600082611ad58584611caf565b14949350505050565b6000546001600160a01b038516611b0757604051622e076360e81b815260040160405180910390fd5b83611b255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611bd757506001600160a01b0387163b15155b15611c60575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c2860008884806001019550886118b6565b611c45576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611bdd578260005414611c5b57600080fd5b611ca6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c61575b5060005561170b565b600081815b8451811015611d1b576000858281518110611cd157611cd1612411565b60200260200101519050808311611cf75760008381526020829052604090209250611d08565b600081815260208490526040902092505b5080611d13816123b6565b915050611cb4565b509392505050565b828054611d2f9061237b565b90600052602060002090601f016020900481019282611d515760008555611d97565b82601f10611d6a57805160ff1916838001178555611d97565b82800160010185558215611d97579182015b82811115611d97578251825591602001919060010190611d7c565b50611da3929150611da7565b5090565b5b80821115611da35760008155600101611da8565b600067ffffffffffffffff80841115611dd757611dd7612427565b604051601f8501601f19908116603f01168101908282118183101715611dff57611dff612427565b81604052809350858152868686011115611e1857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4957600080fd5b919050565b803560ff81168114611e4957600080fd5b600060208284031215611e7157600080fd5b61135d82611e32565b60008060408385031215611e8d57600080fd5b611e9683611e32565b9150611ea460208401611e32565b90509250929050565b600080600060608486031215611ec257600080fd5b611ecb84611e32565b9250611ed960208501611e32565b9150604084013590509250925092565b60008060008060808587031215611eff57600080fd5b611f0885611e32565b9350611f1660208601611e32565b925060408501359150606085013567ffffffffffffffff811115611f3957600080fd5b8501601f81018713611f4a57600080fd5b611f5987823560208401611dbc565b91505092959194509250565b60008060408385031215611f7857600080fd5b611f8183611e32565b915060208301358015158114611f9657600080fd5b809150509250929050565b60008060408385031215611fb457600080fd5b611fbd83611e32565b946020939093013593505050565b600060208284031215611fdd57600080fd5b5035919050565b600060208284031215611ff657600080fd5b813561135d8161243d565b60006020828403121561201357600080fd5b815161135d8161243d565b60006020828403121561203057600080fd5b813567ffffffffffffffff81111561204757600080fd5b8201601f8101841361205857600080fd5b6119a684823560208401611dbc565b6000806040838503121561207a57600080fd5b823561ffff81168114611e9657600080fd5b60006020828403121561209e57600080fd5b61135d82611e4e565b6000806000604084860312156120bc57600080fd5b6120c584611e4e565b9250602084013567ffffffffffffffff808211156120e257600080fd5b818601915086601f8301126120f657600080fd5b81358181111561210557600080fd5b8760208260051b850101111561211a57600080fd5b6020830194508093505050509250925092565b6000815180845261214581602086016020860161234f565b601f01601f19169290920160200192915050565b60008451602061216c8285838a0161234f565b85519184019161217f8184848a0161234f565b8554920191600090600181811c908083168061219c57607f831692505b8583108114156121ba57634e487b7160e01b85526022600452602485fd5b8080156121ce57600181146121df5761220c565b60ff1985168852838801955061220c565b60008b81526020902060005b858110156122045781548a8201529084019088016121eb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122509083018461212d565b9695505050505050565b60208152600061135d602083018461212d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156122bf576122bf6123e5565b01949350505050565b600082198211156122db576122db6123e5565b500190565b600060ff821660ff84168060ff038211156122fd576122fd6123e5565b019392505050565b600082612314576123146123fb565b500490565b6000816000190483118215151615612333576123336123e5565b500290565b60008282101561234a5761234a6123e5565b500390565b60005b8381101561236a578181015183820152602001612352565b838111156111bf5750506000910152565b600181811c9082168061238f57607f821691505b602082108114156123b057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123ca576123ca6123e5565b5060010190565b6000826123e0576123e06123fb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461148a57600080fdfea26469706673582212209ec49e7f04cb35b2ef39d0bf86b510c2e9574a5302ce6548b7dbaf5439541a2f64736f6c63430008070033697066733a2f2f516d62644a57643835396f326774797253454a43595154626e61374836554a726a44535a6e6d5976555474487662

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063aa98e0c6116100ab578063d5abeb011161006f578063d5abeb0114610655578063dbd37cf41461067e578063e985e9c5146106ae578063eef440af146106f7578063f2fde38b1461070c57600080fd5b8063aa98e0c6146105c5578063b88d4fde146105db578063bc951b91146105fb578063bd32fb6614610615578063c87b56dd1461063557600080fd5b80637f6e9093116100f25780637f6e9093146105385780638da5cb5b1461055257806395d89b4114610570578063a22cb46514610585578063a475b5dd146105a557600080fd5b80636352211e146104b05780636ecd2306146104d057806370a08231146104e3578063715018a6146105035780637ec4a6591461051857600080fd5b80632f6f98e1116101bc57806344a0d68a1161018057806344a0d68a146103fc5780635030d5411461041c578063583816691461043c57806359bf5dbb1461044f5780635c975abb1461049157600080fd5b80632f6f98e11461037d57806337a66d851461039d5780633bd64968146103b25780633ccfd60b146103c757806342842e0e146103dc57600080fd5b8063095ea7b311610203578063095ea7b3146102db5780631067fcc7146102fb57806313faede61461031b57806318160ddd1461033f57806323b872dd1461035d57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063093cfa63146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611fe4565b61072c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61077e565b604051610261919061225a565b34801561029857600080fd5b506102ac6102a7366004611fcb565b610810565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102d9610854565b005b3480156102e757600080fd5b506102d96102f6366004611fa1565b61089b565b34801561030757600080fd5b506102d961031636600461201e565b610929565b34801561032757600080fd5b50610331600c5481565b604051908152602001610261565b34801561034b57600080fd5b50610331600154600054036000190190565b34801561036957600080fd5b506102d9610378366004611ead565b61096a565b34801561038957600080fd5b506102d9610398366004612067565b610975565b3480156103a957600080fd5b506102d9610a17565b3480156103be57600080fd5b506102d9610a66565b3480156103d357600080fd5b506102d9610aaf565b3480156103e857600080fd5b506102d96103f7366004611ead565b610b08565b34801561040857600080fd5b506102d9610417366004611fcb565b610b23565b34801561042857600080fd5b506102d961043736600461208c565b610b52565b6102d961044a3660046120a7565b610b92565b34801561045b57600080fd5b5061047f61046a366004611e5f565b600e6020526000908152604090205460ff1681565b60405160ff9091168152602001610261565b34801561049d57600080fd5b50600d5461025590610100900460ff1681565b3480156104bc57600080fd5b506102ac6104cb366004611fcb565b610e1d565b6102d96104de36600461208c565b610e2f565b3480156104ef57600080fd5b506103316104fe366004611e5f565b61100d565b34801561050f57600080fd5b506102d961105c565b34801561052457600080fd5b506102d961053336600461201e565b611092565b34801561054457600080fd5b50600d546102559060ff1681565b34801561055e57600080fd5b506008546001600160a01b03166102ac565b34801561057c57600080fd5b5061027f6110cf565b34801561059157600080fd5b506102d96105a0366004611f65565b6110de565b3480156105b157600080fd5b50600d546102559062010000900460ff1681565b3480156105d157600080fd5b5061033160115481565b3480156105e757600080fd5b506102d96105f6366004611ee9565b611174565b34801561060757600080fd5b5060105461047f9060ff1681565b34801561062157600080fd5b506102d9610630366004611fcb565b6111c5565b34801561064157600080fd5b5061027f610650366004611fcb565b6111f4565b34801561066157600080fd5b5061066b61115c81565b60405161ffff9091168152602001610261565b34801561068a57600080fd5b5061047f610699366004611e5f565b600f6020526000908152604090205460ff1681565b3480156106ba57600080fd5b506102556106c9366004611e7a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070357600080fd5b5061027f611364565b34801561071857600080fd5b506102d9610727366004611e5f565b6113f2565b60006001600160e01b031982166380ac58cd60e01b148061075d57506001600160e01b03198216635b5e139f60e01b145b8061077857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461078d9061237b565b80601f01602080910402602001604051908101604052809291908181526020018280546107b99061237b565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b8261148d565b610838576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108875760405162461bcd60e51b815260040161087e9061226d565b60405180910390fd5b600d805460ff19811660ff90911615179055565b60006108a682610e1d565b9050806001600160a01b0316836001600160a01b031614156108db5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108fb57506108f981336106c9565b155b15610919576040516367d9dca160e11b815260040160405180910390fd5b6109248383836114c6565b505050565b6008546001600160a01b031633146109535760405162461bcd60e51b815260040161087e9061226d565b805161096690600b906020840190611d23565b5050565b610924838383611522565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260040161087e9061226d565b60006109b2600154600054036000190190565b905061115c6109c184836122a2565b61ffff161115610a095760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161087e565b610924828461ffff16611712565b6008546001600160a01b03163314610a415760405162461bcd60e51b815260040161087e9061226d565b600d805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610a905760405162461bcd60e51b815260040161087e9061226d565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610ad95760405162461bcd60e51b815260040161087e9061226d565b6040514790339082156108fc029083906000818181858888f19350505050158015610966573d6000803e3d6000fd5b61092483838360405180602001604052806000815250611174565b6008546001600160a01b03163314610b4d5760405162461bcd60e51b815260040161087e9061226d565b600c55565b6008546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161087e9061226d565b6010805460ff191660ff92909216919091179055565b6000610ba5600154600054036000190190565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909150600090336000908152600e602052604090205490915060ff9081169061115c90610c0b908816856122a2565b61ffff161115610c535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087e565b610c908286868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061172c92505050565b610cd35760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161087e565b60105460ff16610ce387836122e0565b60ff161115610d345760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178207478207065722061646472657373000000000000604482015260640161087e565b600d5460ff1615610d875760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f76657221000000000000604482015260640161087e565b8560ff16600c54610d989190612319565b341015610ddd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161087e565b610dea338760ff16611712565b610df486826122e0565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050505050565b6000610e288261173b565b5192915050565b6000610e42600154600054036000190190565b336000908152600f602052604090205490915060ff9081169061115c90610e6b908516846122a2565b61ffff161115610eb35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087e565b60105460ff16610ec382856122e0565b60ff161115610f225760405162461bcd60e51b815260206004820152602560248201527f45786365656473206d617820206e66747320616c6c6f77656420706572207761604482015264363632ba1760d91b606482015260840161087e565b600d54610100900460ff1615610f7a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161087e565b8260ff16600c54610f8b9190612319565b341015610fd05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161087e565b610fdd338460ff16611712565b610fe783826122e0565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216611036576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110865760405162461bcd60e51b815260040161087e9061226d565b6110906000611864565b565b6008546001600160a01b031633146110bc5760405162461bcd60e51b815260040161087e9061226d565b8051610966906009906020840190611d23565b60606003805461078d9061237b565b6001600160a01b0382163314156111085760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117f848484611522565b6001600160a01b0383163b151580156111a1575061119f848484846118b6565b155b156111bf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146111ef5760405162461bcd60e51b815260040161087e9061226d565b601155565b60606111ff8261148d565b6112635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087e565b600d5462010000900460ff1661130557600b80546112809061237b565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac9061237b565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b50505050509050919050565b600061130f6119ae565b9050600081511161132f576040518060200160405280600081525061135d565b80611339846119bd565b600a60405160200161134d93929190612159565b6040516020818303038152906040525b9392505050565b600b80546113719061237b565b80601f016020809104026020016040519081016040528092919081815260200182805461139d9061237b565b80156113ea5780601f106113bf576101008083540402835291602001916113ea565b820191906000526020600020905b8154815290600101906020018083116113cd57829003601f168201915b505050505081565b6008546001600160a01b0316331461141c5760405162461bcd60e51b815260040161087e9061226d565b6001600160a01b0381166114815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b61148a81611864565b50565b6000816001111580156114a1575060005482105b8015610778575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061152d8261173b565b9050836001600160a01b031681600001516001600160a01b0316146115645760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611582575061158285336106c9565b8061159d57503361159284610810565b6001600160a01b0316145b9050806115bd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e457604051633a954ecd60e21b815260040160405180910390fd5b6115f0600084876114c6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116c65760005482146116c6578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610966828260405180602001604052806000815250611abb565b600061135d8260115485611ac8565b6040805160608101825260008082526020820181905291810191909152818060011115801561176b575060005481105b1561184b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118495780516001600160a01b0316156117df579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611844579392505050565b6117df565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118eb90339089908890889060040161221d565b602060405180830381600087803b15801561190557600080fd5b505af1925050508015611935575060408051601f3d908101601f1916820190925261193291810190612001565b60015b611990573d808015611963576040519150601f19603f3d011682016040523d82523d6000602084013e611968565b606091505b508051611988576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461078d9061237b565b6060816119e15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0b57806119f5816123b6565b9150611a049050600a83612305565b91506119e5565b60008167ffffffffffffffff811115611a2657611a26612427565b6040519080825280601f01601f191660200182016040528015611a50576020820181803683370190505b5090505b84156119a657611a65600183612338565b9150611a72600a866123d1565b611a7d9060306122c8565b60f81b818381518110611a9257611a92612411565b60200101906001600160f81b031916908160001a905350611ab4600a86612305565b9450611a54565b6109248383836001611ade565b600082611ad58584611caf565b14949350505050565b6000546001600160a01b038516611b0757604051622e076360e81b815260040160405180910390fd5b83611b255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611bd757506001600160a01b0387163b15155b15611c60575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c2860008884806001019550886118b6565b611c45576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611bdd578260005414611c5b57600080fd5b611ca6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c61575b5060005561170b565b600081815b8451811015611d1b576000858281518110611cd157611cd1612411565b60200260200101519050808311611cf75760008381526020829052604090209250611d08565b600081815260208490526040902092505b5080611d13816123b6565b915050611cb4565b509392505050565b828054611d2f9061237b565b90600052602060002090601f016020900481019282611d515760008555611d97565b82601f10611d6a57805160ff1916838001178555611d97565b82800160010185558215611d97579182015b82811115611d97578251825591602001919060010190611d7c565b50611da3929150611da7565b5090565b5b80821115611da35760008155600101611da8565b600067ffffffffffffffff80841115611dd757611dd7612427565b604051601f8501601f19908116603f01168101908282118183101715611dff57611dff612427565b81604052809350858152868686011115611e1857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4957600080fd5b919050565b803560ff81168114611e4957600080fd5b600060208284031215611e7157600080fd5b61135d82611e32565b60008060408385031215611e8d57600080fd5b611e9683611e32565b9150611ea460208401611e32565b90509250929050565b600080600060608486031215611ec257600080fd5b611ecb84611e32565b9250611ed960208501611e32565b9150604084013590509250925092565b60008060008060808587031215611eff57600080fd5b611f0885611e32565b9350611f1660208601611e32565b925060408501359150606085013567ffffffffffffffff811115611f3957600080fd5b8501601f81018713611f4a57600080fd5b611f5987823560208401611dbc565b91505092959194509250565b60008060408385031215611f7857600080fd5b611f8183611e32565b915060208301358015158114611f9657600080fd5b809150509250929050565b60008060408385031215611fb457600080fd5b611fbd83611e32565b946020939093013593505050565b600060208284031215611fdd57600080fd5b5035919050565b600060208284031215611ff657600080fd5b813561135d8161243d565b60006020828403121561201357600080fd5b815161135d8161243d565b60006020828403121561203057600080fd5b813567ffffffffffffffff81111561204757600080fd5b8201601f8101841361205857600080fd5b6119a684823560208401611dbc565b6000806040838503121561207a57600080fd5b823561ffff81168114611e9657600080fd5b60006020828403121561209e57600080fd5b61135d82611e4e565b6000806000604084860312156120bc57600080fd5b6120c584611e4e565b9250602084013567ffffffffffffffff808211156120e257600080fd5b818601915086601f8301126120f657600080fd5b81358181111561210557600080fd5b8760208260051b850101111561211a57600080fd5b6020830194508093505050509250925092565b6000815180845261214581602086016020860161234f565b601f01601f19169290920160200192915050565b60008451602061216c8285838a0161234f565b85519184019161217f8184848a0161234f565b8554920191600090600181811c908083168061219c57607f831692505b8583108114156121ba57634e487b7160e01b85526022600452602485fd5b8080156121ce57600181146121df5761220c565b60ff1985168852838801955061220c565b60008b81526020902060005b858110156122045781548a8201529084019088016121eb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122509083018461212d565b9695505050505050565b60208152600061135d602083018461212d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156122bf576122bf6123e5565b01949350505050565b600082198211156122db576122db6123e5565b500190565b600060ff821660ff84168060ff038211156122fd576122fd6123e5565b019392505050565b600082612314576123146123fb565b500490565b6000816000190483118215151615612333576123336123e5565b500290565b60008282101561234a5761234a6123e5565b500390565b60005b8381101561236a578181015183820152602001612352565b838111156111bf5750506000910152565b600181811c9082168061238f57607f821691505b602082108114156123b057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123ca576123ca6123e5565b5060010190565b6000826123e0576123e06123fb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461148a57600080fdfea26469706673582212209ec49e7f04cb35b2ef39d0bf86b510c2e9574a5302ce6548b7dbaf5439541a2f64736f6c63430008070033

Deployed Bytecode Sourcemap

46345:4586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;-1:-1:-1;24445:305:0;;;;;:::i;:::-;;:::i;:::-;;;8511:14:1;;8504:22;8486:41;;8474:2;8459:18;24445:305:0;;;;;;;;27558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;;;;;-1:-1:-1;29061:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7809:32:1;;;7791:51;;7779:2;7764:18;29061:204:0;7645:203:1;48650:75:0;;;;;;;;;;;;;:::i;:::-;;28624:371;;;;;;;;;;-1:-1:-1;28624:371:0;;;;;:::i;:::-;;:::i;50315:102::-;;;;;;;;;;-1:-1:-1;50315:102:0;;;;;:::i;:::-;;:::i;46593:32::-;;;;;;;;;;;;;;;;;;;8684:25:1;;;8672:2;8657:18;46593:32:0;8538:177:1;23694:303:0;;;;;;;;;;;;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;29926:170;;;;;;;;;;-1:-1:-1;29926:170:0;;;;;:::i;:::-;;:::i;47811:326::-;;;;;;;;;;-1:-1:-1;47811:326:0;;;;;:::i;:::-;;:::i;50425:91::-;;;;;;;;;;;;;:::i;50603:70::-;;;;;;;;;;;;;:::i;50679:144::-;;;;;;;;;;;;;:::i;30167:185::-;;;;;;;;;;-1:-1:-1;30167:185:0;;;;;:::i;:::-;;:::i;50522:76::-;;;;;;;;;;-1:-1:-1;50522:76:0;;;;;:::i;:::-;;:::i;48737:125::-;;;;;;;;;;-1:-1:-1;48737:125:0;;;;;:::i;:::-;;:::i;49330:872::-;;;;;;:::i;:::-;;:::i;46836:49::-;;;;;;;;;;-1:-1:-1;46836:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13536:4:1;13524:17;;;13506:36;;13494:2;13479:18;46836:49:0;13364:184:1;46776:25:0;;;;;;;;;;-1:-1:-1;46776:25:0;;;;;;;;;;;27366:125;;;;;;;;;;-1:-1:-1;27366:125:0;;;;;:::i;:::-;;:::i;47174:629::-;;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;;;;;-1:-1:-1;24814:206:0;;;;;:::i;:::-;;:::i;45491:103::-;;;;;;;;;;;;;:::i;50208:102::-;;;;;;;;;;-1:-1:-1;50208:102:0;;;;;:::i;:::-;;:::i;46744:27::-;;;;;;;;;;-1:-1:-1;46744:27:0;;;;;;;;44839:87;;;;;;;;;;-1:-1:-1;44912:6:0;;-1:-1:-1;;;;;44912:6:0;44839:87;;27727:104;;;;;;;;;;;;;:::i;29337:287::-;;;;;;;;;;-1:-1:-1;29337:287:0;;;;;:::i;:::-;;:::i;46806:25::-;;;;;;;;;;-1:-1:-1;46806:25:0;;;;;;;;;;;46998:103;;;;;;;;;;;;;;;;30423:369;;;;;;;;;;-1:-1:-1;30423:369:0;;;;;:::i;:::-;;:::i;46942:39::-;;;;;;;;;;-1:-1:-1;46942:39:0;;;;;;;;48864:142;;;;;;;;;;-1:-1:-1;48864:142:0;;;;;:::i;:::-;;:::i;48152:490::-;;;;;;;;;;-1:-1:-1;48152:490:0;;;;;:::i;:::-;;:::i;46635:39::-;;;;;;;;;;;;46670:4;46635:39;;;;;13163:6:1;13151:19;;;13133:38;;13121:2;13106:18;46635:39:0;12989:188:1;46890:47:0;;;;;;;;;;-1:-1:-1;46890:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29695:164;;;;;;;;;;-1:-1:-1;29695:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164;46495:81;;;;;;;;;;;;;:::i;45749:201::-;;;;;;;;;;-1:-1:-1;45749:201:0;;;;;:::i;:::-;;:::i;24445:305::-;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;48650:75::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;;;;;;;;;48711:8:::1;::::0;;-1:-1:-1;;48699:20:0;::::1;48711:8;::::0;;::::1;48710:9;48699:20;::::0;;48650:75::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;50315:102::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;50389:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50315:102:::0;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;47811:326::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;47894:18:::1;47922:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;47922:13:::1;47894:42:::0;-1:-1:-1;46670:4:0::1;47951:25;47965:11:::0;47894:42;47951:25:::1;:::i;:::-;:38;;;;47943:70;;;::::0;-1:-1:-1;;;47943:70:0;;9146:2:1;47943:70:0::1;::::0;::::1;9128:21:1::0;9185:2;9165:18;;;9158:30;-1:-1:-1;;;9204:18:1;;;9197:49;9263:18;;47943:70:0::1;8944:343:1::0;47943:70:0::1;48021:34;48031:9;48043:11;48021:34;;:9;:34::i;50425:91::-:0;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;50482:6:::1;::::0;;-1:-1:-1;;50482:6:0::1;;::::0;;::::1;::::0;;;::::1;50481:7;50472:16;50495:15:::0;-1:-1:-1;;50495:15:0;;;;50482:6:::1;50495:15;::::0;;50425:91::o;50603:70::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;50662:6:::1;::::0;;-1:-1:-1;;50652:16:0;::::1;50662:6:::0;;;;::::1;;;50661:7;50652:16:::0;;::::1;;::::0;;50603:70::o;50679:144::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;50768:39:::1;::::0;50739:21:::1;::::0;50776:10:::1;::::0;50768:39;::::1;;;::::0;50739:21;;50723:13:::1;50768:39:::0;50723:13;50768:39;50739:21;50776:10;50768:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30167:185:::0;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;50522:76::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;50578:4:::1;:12:::0;50522:76::o;48737:125::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;48806:22:::1;:31:::0;;-1:-1:-1;;48806:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;48737:125::o;49330:872::-;49432:18;49460:13;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;49460:13;49126:23;;;49516:10;6028:2:1;6024:15;-1:-1:-1;;6020:53:1;49126:23:0;;;;6008:66:1;;;;49126:23:0;;;;;;;;;6090:12:1;;;;49126:23:0;;;49116:34;;;;;49432:42;;-1:-1:-1;49484:17:0;;49576:10;49538:19;49560:27;;;:15;:27;;;;;;49484:43;;-1:-1:-1;49560:27:0;;;;;46670:4;;49604:25;;;;:11;:25;:::i;:::-;:38;;;;49596:70;;;;-1:-1:-1;;;49596:70:0;;12495:2:1;49596:70:0;;;12477:21:1;12534:2;12514:18;;;12507:30;-1:-1:-1;;;12553:18:1;;;12546:49;12612:18;;49596:70:0;12293:343:1;49596:70:0;49684:36;49692:8;49705:11;;49684:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49684:7:0;;-1:-1:-1;;;49684:36:0:i;:::-;49676:70;;;;-1:-1:-1;;;49676:70:0;;11378:2:1;49676:70:0;;;11360:21:1;11417:2;11397:18;;;11390:30;-1:-1:-1;;;11436:18:1;;;11429:50;11496:18;;49676:70:0;11176:344:1;49676:70:0;49796:22;;;;49765:27;49781:11;49765:13;:27;:::i;:::-;:53;;;;49756:93;;;;-1:-1:-1;;;49756:93:0;;10256:2:1;49756:93:0;;;10238:21:1;10295:2;10275:18;;;10268:30;10334:28;10314:18;;;10307:56;10380:18;;49756:93:0;10054:350:1;49756:93:0;49877:8;;;;49876:9;49868:48;;;;-1:-1:-1;;;49868:48:0;;9901:2:1;49868:48:0;;;9883:21:1;9940:2;9920:18;;;9913:30;9979:28;9959:18;;;9952:56;10025:18;;49868:48:0;9699:350:1;49868:48:0;49951:11;49944:18;;:4;;:18;;;;:::i;:::-;49931:9;:31;;49923:63;;;;-1:-1:-1;;;49923:63:0;;12843:2:1;49923:63:0;;;12825:21:1;12882:2;12862:18;;;12855:30;-1:-1:-1;;;12901:18:1;;;12894:49;12960:18;;49923:63:0;12641:343:1;49923:63:0;50004:35;50014:10;50027:11;50004:35;;:9;:35::i;:::-;50077:27;50093:11;50077:13;:27;:::i;:::-;50064:10;50048:27;;;;:15;:27;;;;;:56;;-1:-1:-1;;50048:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;49330:872:0:o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;47174:629::-;47233:18;47261:13;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;47261:13;47319:10;47283:19;47305:25;;;:13;:25;;;;;;47233:42;;-1:-1:-1;47305:25:0;;;;;46670:4;;47345:25;;;;47233:42;47345:25;:::i;:::-;:38;;;;47337:70;;;;-1:-1:-1;;;47337:70:0;;12495:2:1;47337:70:0;;;12477:21:1;12534:2;12514:18;;;12507:30;-1:-1:-1;;;12553:18:1;;;12546:49;12612:18;;47337:70:0;12293:343:1;47337:70:0;47453:22;;;;47422:27;47436:13;47422:11;:27;:::i;:::-;:53;;;;47414:103;;;;-1:-1:-1;;;47414:103:0;;10611:2:1;47414:103:0;;;10593:21:1;10650:2;10630:18;;;10623:30;10689:34;10669:18;;;10662:62;-1:-1:-1;;;10740:18:1;;;10733:35;10785:19;;47414:103:0;10409:401:1;47414:103:0;47535:6;;;;;;;47534:7;47526:43;;;;-1:-1:-1;;;47526:43:0;;11727:2:1;47526:43:0;;;11709:21:1;11766:2;11746:18;;;11739:30;11805:25;11785:18;;;11778:53;11848:18;;47526:43:0;11525:347:1;47526:43:0;47604:11;47597:18;;:4;;:18;;;;:::i;:::-;47584:9;:31;;47576:63;;;;-1:-1:-1;;;47576:63:0;;12843:2:1;47576:63:0;;;12825:21:1;12882:2;12862:18;;;12855:30;-1:-1:-1;;;12901:18:1;;;12894:49;12960:18;;47576:63:0;12641:343:1;47576:63:0;47648:35;47658:10;47671:11;47648:35;;:9;:35::i;:::-;47718:27;47734:11;47718:13;:27;:::i;:::-;47705:10;47691:25;;;;:13;:25;;;;;:54;;-1:-1:-1;;47691:54:0;;;;;;;;;;;;-1:-1:-1;;;47174:629:0:o;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;;;;24814:206::o;45491:103::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;45556:30:::1;45583:1;45556:18;:30::i;:::-;45491:103::o:0;50208:102::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;50282:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27727:104::-:0;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;-1:-1:-1;;;;;29436:24:0;;2920:10;29436:24;29432:54;;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;8486:41:1;;;29499:42:0;;2920:10;29568:48;;8459:18:1;29568:48:0;;;;;;;29337:287;;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;30629:156;30423:369;;;;:::o;48864:142::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;48956:19:::1;:42:::0;48864:142::o;48152:490::-;48251:13;48292:17;48300:8;48292:7;:17::i;:::-;48276:98;;;;-1:-1:-1;;;48276:98:0;;12079:2:1;48276:98:0;;;12061:21:1;12118:2;12098:18;;;12091:30;12157:34;12137:18;;;12130:62;-1:-1:-1;;;12208:18:1;;;12201:45;12263:19;;48276:98:0;11877:411:1;48276:98:0;48392:6;;;;;;;48387:50;;48424:9;48417:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48152:490;;;:::o;48387:50::-;48451:28;48482:10;:8;:10::i;:::-;48451:41;;48537:1;48512:14;48506:28;:32;:130;;;;;;;;;;;;;;;;;48574:14;48590:19;:8;:17;:19::i;:::-;48611:9;48557:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48506:130;48499:137;48152:490;-1:-1:-1;;;48152:490:0:o;46495:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45749:201::-;44912:6;;-1:-1:-1;;;;;44912:6:0;2920:10;45059:23;45051:69;;;;-1:-1:-1;;;45051:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45838:22:0;::::1;45830:73;;;::::0;-1:-1:-1;;;45830:73:0;;9494:2:1;45830:73:0::1;::::0;::::1;9476:21:1::0;9533:2;9513:18;;;9506:30;9572:34;9552:18;;;9545:62;-1:-1:-1;;;9623:18:1;;;9616:36;9669:19;;45830:73:0::1;9292:402:1::0;45830:73:0::1;45914:28;45933:8;45914:18;:28::i;:::-;45749:201:::0;:::o;31047:187::-;31104:4;31147:7;23551:1;31128:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39217:196::-;39332:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39332:29:0;-1:-1:-1;;;;;39332:29:0;;;;;;;;;39377:28;;39332:24;;39377:28;;;;;;;39217:196;;;:::o;34160:2130::-;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;-1:-1:-1;;;;;34351:26:0;:13;:18;;;-1:-1:-1;;;;;34351:26:0;;34347:67;;34386:28;;-1:-1:-1;;;34386:28:0;;;;;;;;;;;34347:67;34427:22;2920:10;-1:-1:-1;;;;;34453:20:0;;;;:73;;-1:-1:-1;34490:36:0;34507:4;2920:10;29695:164;:::i;34490:36::-;34453:126;;;-1:-1:-1;2920:10:0;34543:20;34555:7;34543:11;:20::i;:::-;-1:-1:-1;;;;;34543:36:0;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;-1:-1:-1;;;34624:35:0;;;;;;;;;;;34593:66;-1:-1:-1;;;;;34674:16:0;;34670:52;;34699:23;;-1:-1:-1;;;34699:23:0;;;;;;;;;;;34670:52;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;-1:-1:-1;;;;;35174:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35174:31:0;;;;;;;-1:-1:-1;;35174:31:0;;;;;;;35220:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35220:29:0;;;;;;;;;;;35300:20;;;:11;:20;;;;;;35335:18;;-1:-1:-1;;;;;;35368:49:0;;;;-1:-1:-1;;;35401:15:0;35368:49;;;;;;;;;;35691:11;;35751:24;;;;;35794:13;;35300:20;;35751:24;;35794:13;35790:384;;36004:13;;35989:11;:28;35985:174;;36042:20;;36111:28;;;;36085:54;;-1:-1:-1;;;36085:54:0;-1:-1:-1;;;;;;36085:54:0;;;-1:-1:-1;;;;;36042:20:0;;36085:54;;;;35985:174;35149:1036;;;36221:7;36217:2;-1:-1:-1;;;;;36202:27:0;36211:4;-1:-1:-1;;;;;36202:27:0;;;;;;;;;;;36240:42;34264:2026;;34160:2130;;;:::o;31242:104::-;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;49164:162::-;49242:4;49266:52;49285:5;49292:19;;49313:4;49266:18;:52::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;;23551:1;26355:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;46110:191;46203:6;;;-1:-1:-1;;;;;46220:17:0;;;-1:-1:-1;;;;;;46220:17:0;;;;;;;46253:40;;46203:6;;;46220:17;46203:6;;46253:40;;46184:16;;46253:40;46173:128;46110:191;:::o;39905:667::-;40089:72;;-1:-1:-1;;;40089:72:0;;40068:4;;-1:-1:-1;;;;;40089:36:0;;;;;:72;;2920:10;;40140:4;;40146:7;;40155:5;;40089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40089:72:0;;;;;;;;-1:-1:-1;;40089:72:0;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40323:13:0;;40319:235;;40369:40;;-1:-1:-1;;;40369:40:0;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;-1:-1:-1;;;;;;40208:55:0;-1:-1:-1;;;40208:55:0;;-1:-1:-1;40085:480:0;39905:667;;;;;;:::o;50831:97::-;50884:13;50913:9;50906:16;;;;;:::i;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;31709:163;31832:32;31838:2;31842:8;31852:5;31859:4;31832:5;:32::i;42963:190::-;43088:4;43141;43112:25;43125:5;43132:4;43112:12;:25::i;:::-;:33;;42963:190;-1:-1:-1;;;;42963:190:0:o;32131:1775::-;32270:20;32293:13;-1:-1:-1;;;;;32321:16:0;;32317:48;;32346:19;;-1:-1:-1;;;32346:19:0;;;;;;;;;;;32317:48;32380:13;32376:44;;32402:18;;-1:-1:-1;;;32402:18:0;;;;;;;;;;;32376:44;-1:-1:-1;;;;;32771:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32830:49:0;;32771:44;;;;;;;;32830:49;;;;-1:-1:-1;;32771:44:0;;;;;;32830:49;;;;;;;;;;;;;;;;32896:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32946:66:0;;;;-1:-1:-1;;;32996:15:0;32946:66;;;;;;;;;;32896:25;33093:23;;;33137:4;:23;;;;-1:-1:-1;;;;;;33145:13:0;;4582:19;:23;;33145:15;33133:641;;;33181:314;33212:38;;33237:12;;-1:-1:-1;;;;;33212:38:0;;;33229:1;;33212:38;;33229:1;;33212:38;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;-1:-1:-1;;;33383:40:0;;;;;;;;;;;33273:174;33490:3;33474:12;:19;;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33670:40;;33695:14;;;;;-1:-1:-1;;;;;33670:40:0;;;33687:1;;33670:40;;33687:1;;33670:40;33754:3;33738:12;:19;;33639:120;;33133:641;-1:-1:-1;33788:13:0;:28;33838:60;30423:369;43515:675;43598:7;43641:4;43598:7;43656:497;43680:5;:12;43676:1;:16;43656:497;;;43714:20;43737:5;43743:1;43737:8;;;;;;;;:::i;:::-;;;;;;;43714:31;;43780:12;43764;:28;43760:382;;44266:13;44316:15;;;44352:4;44345:15;;;44399:4;44383:21;;43892:57;;43760:382;;;44266:13;44316:15;;;44352:4;44345:15;;;44399:4;44383:21;;44069:57;;43760:382;-1:-1:-1;43694:3:0;;;;:::i;:::-;;;;43656:497;;;-1:-1:-1;44170:12:0;43515:675;-1:-1:-1;;;43515:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:180::-;3119:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;-1:-1:-1;3211:23:1;;3060:180;-1:-1:-1;3060:180:1:o;3245:245::-;3303:6;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3411:9;3398:23;3430:30;3454:5;3430:30;:::i;3495:249::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3665:9;3659:16;3684:30;3708:5;3684:30;:::i;3749:450::-;3818:6;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3927:9;3914:23;3960:18;3952:6;3949:30;3946:50;;;3992:1;3989;3982:12;3946:50;4015:22;;4068:4;4060:13;;4056:27;-1:-1:-1;4046:55:1;;4097:1;4094;4087:12;4046:55;4120:73;4185:7;4180:2;4167:16;4162:2;4158;4154:11;4120:73;:::i;4204:346::-;4271:6;4279;4332:2;4320:9;4311:7;4307:23;4303:32;4300:52;;;4348:1;4345;4338:12;4300:52;4387:9;4374:23;4437:6;4430:5;4426:18;4419:5;4416:29;4406:57;;4459:1;4456;4449:12;4740:182;4797:6;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:27;4906:9;4889:27;:::i;4927:685::-;5020:6;5028;5036;5089:2;5077:9;5068:7;5064:23;5060:32;5057:52;;;5105:1;5102;5095:12;5057:52;5128:27;5145:9;5128:27;:::i;:::-;5118:37;;5206:2;5195:9;5191:18;5178:32;5229:18;5270:2;5262:6;5259:14;5256:34;;;5286:1;5283;5276:12;5256:34;5324:6;5313:9;5309:22;5299:32;;5369:7;5362:4;5358:2;5354:13;5350:27;5340:55;;5391:1;5388;5381:12;5340:55;5431:2;5418:16;5457:2;5449:6;5446:14;5443:34;;;5473:1;5470;5463:12;5443:34;5526:7;5521:2;5511:6;5508:1;5504:14;5500:2;5496:23;5492:32;5489:45;5486:65;;;5547:1;5544;5537:12;5486:65;5578:2;5574;5570:11;5560:21;;5600:6;5590:16;;;;;4927:685;;;;;:::o;5617:257::-;5658:3;5696:5;5690:12;5723:6;5718:3;5711:19;5739:63;5795:6;5788:4;5783:3;5779:14;5772:4;5765:5;5761:16;5739:63;:::i;:::-;5856:2;5835:15;-1:-1:-1;;5831:29:1;5822:39;;;;5863:4;5818:50;;5617:257;-1:-1:-1;;5617:257:1:o;6113:1527::-;6337:3;6375:6;6369:13;6401:4;6414:51;6458:6;6453:3;6448:2;6440:6;6436:15;6414:51;:::i;:::-;6528:13;;6487:16;;;;6550:55;6528:13;6487:16;6572:15;;;6550:55;:::i;:::-;6694:13;;6627:20;;;6667:1;;6754;6776:18;;;;6829;;;;6856:93;;6934:4;6924:8;6920:19;6908:31;;6856:93;6997:2;6987:8;6984:16;6964:18;6961:40;6958:167;;;-1:-1:-1;;;7024:33:1;;7080:4;7077:1;7070:15;7110:4;7031:3;7098:17;6958:167;7141:18;7168:110;;;;7292:1;7287:328;;;;7134:481;;7168:110;-1:-1:-1;;7203:24:1;;7189:39;;7248:20;;;;-1:-1:-1;7168:110:1;;7287:328;13626:1;13619:14;;;13663:4;13650:18;;7382:1;7396:169;7410:8;7407:1;7404:15;7396:169;;;7492:14;;7477:13;;;7470:37;7535:16;;;;7427:10;;7396:169;;;7400:3;;7596:8;7589:5;7585:20;7578:27;;7134:481;-1:-1:-1;7631:3:1;;6113:1527;-1:-1:-1;;;;;;;;;;;6113:1527:1:o;7853:488::-;-1:-1:-1;;;;;8122:15:1;;;8104:34;;8174:15;;8169:2;8154:18;;8147:43;8221:2;8206:18;;8199:34;;;8269:3;8264:2;8249:18;;8242:31;;;8047:4;;8290:45;;8315:19;;8307:6;8290:45;:::i;:::-;8282:53;7853:488;-1:-1:-1;;;;;;7853:488:1:o;8720:219::-;8869:2;8858:9;8851:21;8832:4;8889:44;8929:2;8918:9;8914:18;8906:6;8889:44;:::i;10815:356::-;11017:2;10999:21;;;11036:18;;;11029:30;11095:34;11090:2;11075:18;;11068:62;11162:2;11147:18;;10815:356::o;13679:224::-;13718:3;13746:6;13779:2;13776:1;13772:10;13809:2;13806:1;13802:10;13840:3;13836:2;13832:12;13827:3;13824:21;13821:47;;;13848:18;;:::i;:::-;13884:13;;13679:224;-1:-1:-1;;;;13679:224:1:o;13908:128::-;13948:3;13979:1;13975:6;13972:1;13969:13;13966:39;;;13985:18;;:::i;:::-;-1:-1:-1;14021:9:1;;13908:128::o;14041:204::-;14079:3;14115:4;14112:1;14108:12;14147:4;14144:1;14140:12;14182:3;14176:4;14172:14;14167:3;14164:23;14161:49;;;14190:18;;:::i;:::-;14226:13;;14041:204;-1:-1:-1;;;14041:204:1:o;14250:120::-;14290:1;14316;14306:35;;14321:18;;:::i;:::-;-1:-1:-1;14355:9:1;;14250:120::o;14375:168::-;14415:7;14481:1;14477;14473:6;14469:14;14466:1;14463:21;14458:1;14451:9;14444:17;14440:45;14437:71;;;14488:18;;:::i;:::-;-1:-1:-1;14528:9:1;;14375:168::o;14548:125::-;14588:4;14616:1;14613;14610:8;14607:34;;;14621:18;;:::i;:::-;-1:-1:-1;14658:9:1;;14548:125::o;14678:258::-;14750:1;14760:113;14774:6;14771:1;14768:13;14760:113;;;14850:11;;;14844:18;14831:11;;;14824:39;14796:2;14789:10;14760:113;;;14891:6;14888:1;14885:13;14882:48;;;-1:-1:-1;;14926:1:1;14908:16;;14901:27;14678:258::o;14941:380::-;15020:1;15016:12;;;;15063;;;15084:61;;15138:4;15130:6;15126:17;15116:27;;15084:61;15191:2;15183:6;15180:14;15160:18;15157:38;15154:161;;;15237:10;15232:3;15228:20;15225:1;15218:31;15272:4;15269:1;15262:15;15300:4;15297:1;15290:15;15154:161;;14941:380;;;:::o;15326:135::-;15365:3;-1:-1:-1;;15386:17:1;;15383:43;;;15406:18;;:::i;:::-;-1:-1:-1;15453:1:1;15442:13;;15326:135::o;15466:112::-;15498:1;15524;15514:35;;15529:18;;:::i;:::-;-1:-1:-1;15563:9:1;;15466:112::o;15583:127::-;15644:10;15639:3;15635:20;15632:1;15625:31;15675:4;15672:1;15665:15;15699:4;15696:1;15689:15;15715:127;15776:10;15771:3;15767:20;15764:1;15757:31;15807:4;15804:1;15797:15;15831:4;15828:1;15821:15;15847:127;15908:10;15903:3;15899:20;15896:1;15889:31;15939:4;15936:1;15929:15;15963:4;15960:1;15953:15;15979:127;16040:10;16035:3;16031:20;16028:1;16021:31;16071:4;16068:1;16061:15;16095:4;16092:1;16085:15;16111:131;-1:-1:-1;;;;;;16185:32:1;;16175:43;;16165:71;;16232:1;16229;16222:12

Swarm Source

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