ETH Price: $3,493.18 (+2.17%)
Gas: 14 Gwei

Token

Pocket Bone (BONE)
 

Overview

Max Total Supply

10,000 BONE

Holders

2,099

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BONE
0x34570a5c5060b78c544f4bf9971d3d1dfe79b6b2
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:
PocketBone

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//Developer : Asaf , Discord : Asaf#8528
//Developer : MOE , Discord : MOE#5061



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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

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

    /**
     * @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 {}
}




//Developer : Asaf , Discord : Asaf#8528
//Developer : MOE , Discord : MOE#5061



pragma solidity >=0.7.0 <0.9.0;






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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.1 ether;
  uint256 public wlcost = 0.07 ether;
  uint256 public freecost = 0 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxPresaleSupply = 3500;
  uint256 public maxFreeSupply = 1000;
  uint256 public MaxperWallet = 10;
  uint256 public MaxperWalletWl = 3;
  uint256 public MaxperWalletFree = 1;
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = false;
  bool public freeSale = false;
  bool public publicSale = false;
  bytes32 public merkleRoot;
  bytes32 public merkleRootFree;

  address public constant wallet1 = 0x98eAfb43BB4688d12C561eda173fCe11e7d2c911; // Wallet One 
  address public constant wallet2 = 0xdb734624D5f1F53508121684d222e5393fAB2843; // Wallet Two 

  constructor(
  ) ERC721A("Pocket Bone", "BONE") {
    setNotRevealedURI("");
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  // public
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "BONE: oops contract is paused");
    require(publicSale, "BONE: Sale Hasn't started yet");
    uint256 supply = totalSupply();
    require(tokens > 0, "BONE: need to mint at least 1 NFT");
    require(tokens <= MaxperWallet, "BONE: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "BONE: We Soldout");
    require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "BONE: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "BONE: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "BONE: oops contract is paused");
    require(preSale, "BONE: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "BONE: You are not Whitelisted");
    uint256 supply = totalSupply();
    require(_numberMinted(_msgSender()) + tokens <= MaxperWalletWl, "BONE: Max NFT Per Wallet exceeded");
    require(tokens > 0, "BONE: need to mint at least 1 NFT");
    require(tokens <= MaxperWalletWl, "BONE: max mint per Tx exceeded");
    require(supply + tokens <= maxPresaleSupply, "BONE: Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "BONE: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }

  function freemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "BONE: oops contract is paused");
    require(freeSale, "BONE: Freesale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRootFree, keccak256(abi.encodePacked(msg.sender))), "BONE: You are not Whitelisted");
    uint256 supply = totalSupply();
    require(_numberMinted(_msgSender()) + tokens <= MaxperWalletFree, "BONE: Max NFT Per Wallet exceeded");
    require(tokens > 0, "BONE: need to mint at least 1 NFT");
    require(tokens <= MaxperWalletFree, "BONE: max mint per Tx exceeded");
    require(supply + tokens <= maxFreeSupply, "BONE: Whitelist MaxSupply exceeded");
    require(msg.value >= freecost * tokens, "BONE: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

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

    function setMerkleRootFree(bytes32 _merkleRootFree) external onlyOwner {
        merkleRootFree = _merkleRootFree;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    function togglefreeSale(bool _state) external onlyOwner {
        freeSale = _state;
    }

    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
 
  function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        uint256 withdrawal = (balance / 2);
        _withdraw(wallet1, withdrawal);
        _withdraw(wallet2, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) internal {
        payable(_address).transfer(_amount);
    }
}

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":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freecost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootFree","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootFree","type":"bytes32"}],"name":"setMerkleRootFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","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":"bool","name":"_state","type":"bool"}],"name":"togglefreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620001e9565b5067016345785d8a0000600d5566f8b0a10e470000600e556000600f55612710601055610dac6011556103e8601255600a601355600360145560016015556016805464ffffffffff191690553480156200008157600080fd5b50604080518082018252600b81526a506f636b657420426f6e6560a81b602080830191825283518085019094526004845263424f4e4560e01b908401528151919291620000d191600291620001e9565b508051620000e7906003906020840190620001e9565b5050600160005550620000fa336200011f565b6001600955604080516020810190915260008152620001199062000171565b620002cc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e590600c906020840190620001e9565b5050565b828054620001f7906200028f565b90600052602060002090601f0160209004810192826200021b576000855562000266565b82601f106200023657805160ff191683800117855562000266565b8280016001018555821562000266579182015b828111156200026657825182559160200191906001019062000249565b506200027492915062000278565b5090565b5b8082111562000274576000815560010162000279565b600181811c90821680620002a457607f821691505b60208210811415620002c657634e487b7160e01b600052602260045260246000fd5b50919050565b612dec80620002dc6000396000f3fe60806040526004361061038b5760003560e01c80636c2d3c4f116101dc578063b88d4fde11610102578063dc33e681116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a00578063f2fde38b14610a20578063f3257cdd14610a40578063fea0e05814610a6057600080fd5b8063dc33e68114610957578063e268e4d314610977578063e985e9c514610997578063f12f6d5d146109e057600080fd5b8063c6682862116100dc578063c6682862146108ec578063c87b56dd14610901578063d5abeb0114610921578063da3ef23f1461093757600080fd5b8063b88d4fde14610896578063bd7a1998146108b6578063bde0608a146108cc57600080fd5b806387e0db601161017a57806395d89b411161014957806395d89b411461082d578063a0712d6814610842578063a22cb46514610855578063a4b41a151461087557600080fd5b806387e0db60146107c657806389ba959c146107d95780638da5cb5b146107ef578063940cd05b1461080d57600080fd5b80637cb64759116101b65780637cb647591461075157806380a0bcc61461077157806383a076be14610791578063853828b6146107b157600080fd5b80636c2d3c4f1461070657806370a082311461071c578063715018a61461073c57600080fd5b806321bdb26e116102c1578063518302271161025f578063624208ae1161022e578063624208ae146106a55780636352211e146106bb5780636ab945d0146106db5780636c0360eb146106f157600080fd5b8063518302271461062c57806355f804b31461064b5780635a7adf7f1461066b5780635c975abb1461068b57600080fd5b806333bc1c5c1161029b57806333bc1c5c146105b457806342842e0e146105d657806344a0d68a146105f6578063475133341461061657600080fd5b806321bdb26e1461056857806323b872dd1461057e5780632eb4a7ab1461059e57600080fd5b8063095ea7b31161032e578063149835a011610308578063149835a0146104eb57806318160ddd1461050b5780631a026c96146105205780631c6eda321461054857600080fd5b8063095ea7b31461048d5780630b8d0a28146104ad57806313faede6146104d557600080fd5b8063036e4cb51161036a578063036e4cb51461040b57806306fdde031461041e578063081812fc14610440578063081c8c441461047857600080fd5b806277ec051461039057806301ffc9a7146103b957806302329a29146103e9575b600080fd5b34801561039c57600080fd5b506103a660145481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004612886565b610a80565b60405190151581526020016103b0565b3480156103f557600080fd5b50610409610404366004612852565b610ad2565b005b61040961041936600461292b565b610b18565b34801561042a57600080fd5b50610433610df4565b6040516103b09190612ad6565b34801561044c57600080fd5b5061046061045b36600461286d565b610e86565b6040516001600160a01b0390911681526020016103b0565b34801561048457600080fd5b50610433610eca565b34801561049957600080fd5b506104096104a8366004612828565b610f58565b3480156104b957600080fd5b5061046073db734624d5f1f53508121684d222e5393fab284381565b3480156104e157600080fd5b506103a6600d5481565b3480156104f757600080fd5b5061040961050636600461286d565b610fe6565b34801561051757600080fd5b506103a6611015565b34801561052c57600080fd5b506104607398eafb43bb4688d12c561eda173fce11e7d2c91181565b34801561055457600080fd5b50610409610563366004612852565b611023565b34801561057457600080fd5b506103a660115481565b34801561058a57600080fd5b50610409610599366004612747565b61106b565b3480156105aa57600080fd5b506103a660175481565b3480156105c057600080fd5b506016546103d990640100000000900460ff1681565b3480156105e257600080fd5b506104096105f1366004612747565b611076565b34801561060257600080fd5b5061040961061136600461286d565b611091565b34801561062257600080fd5b506103a660125481565b34801561063857600080fd5b506016546103d990610100900460ff1681565b34801561065757600080fd5b506104096106663660046128c0565b6110c0565b34801561067757600080fd5b506016546103d99062010000900460ff1681565b34801561069757600080fd5b506016546103d99060ff1681565b3480156106b157600080fd5b506103a660155481565b3480156106c757600080fd5b506104606106d636600461286d565b611101565b3480156106e757600080fd5b506103a6600f5481565b3480156106fd57600080fd5b50610433611113565b34801561071257600080fd5b506103a6600e5481565b34801561072857600080fd5b506103a66107373660046126f9565b611120565b34801561074857600080fd5b5061040961116e565b34801561075d57600080fd5b5061040961076c36600461286d565b6111a4565b34801561077d57600080fd5b5061040961078c36600461286d565b6111d3565b34801561079d57600080fd5b506104096107ac366004612908565b611202565b3480156107bd57600080fd5b50610409611316565b6104096107d436600461292b565b611396565b3480156107e557600080fd5b506103a660185481565b3480156107fb57600080fd5b506008546001600160a01b0316610460565b34801561081957600080fd5b50610409610828366004612852565b6115dc565b34801561083957600080fd5b50610433611620565b61040961085036600461286d565b61162f565b34801561086157600080fd5b506104096108703660046127fe565b61184e565b34801561088157600080fd5b506016546103d9906301000000900460ff1681565b3480156108a257600080fd5b506104096108b1366004612783565b6118e4565b3480156108c257600080fd5b506103a660135481565b3480156108d857600080fd5b506104096108e736600461286d565b611935565b3480156108f857600080fd5b50610433611964565b34801561090d57600080fd5b5061043361091c36600461286d565b611971565b34801561092d57600080fd5b506103a660105481565b34801561094357600080fd5b506104096109523660046128c0565b611ae1565b34801561096357600080fd5b506103a66109723660046126f9565b611b1e565b34801561098357600080fd5b5061040961099236600461286d565b611b4c565b3480156109a357600080fd5b506103d96109b2366004612714565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ec57600080fd5b506104096109fb36600461286d565b611b7b565b348015610a0c57600080fd5b50610409610a1b3660046128c0565b611baa565b348015610a2c57600080fd5b50610409610a3b3660046126f9565b611be7565b348015610a4c57600080fd5b50610409610a5b366004612852565b611c82565b348015610a6c57600080fd5b50610409610a7b366004612852565b611ccc565b60006001600160e01b031982166380ac58cd60e01b1480610ab157506001600160e01b03198216635b5e139f60e01b145b80610acc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b055760405162461bcd60e51b8152600401610afc90612b6c565b60405180910390fd5b6016805460ff1916911515919091179055565b60026009541415610b3b5760405162461bcd60e51b8152600401610afc90612bd8565b600260095560165460ff1615610b635760405162461bcd60e51b8152600401610afc90612ba1565b60165462010000900460ff16610bbb5760405162461bcd60e51b815260206004820181905260248201527f424f4e453a2050726573616c65204861736e27742073746172746564207965746044820152606401610afc565b610c31828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120611d12565b610c7d5760405162461bcd60e51b815260206004820152601d60248201527f424f4e453a20596f7520617265206e6f742057686974656c69737465640000006044820152606401610afc565b6000610c87611015565b905060145484610cc2610c973390565b6001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610ccc9190612c50565b1115610cea5760405162461bcd60e51b8152600401610afc90612b2b565b60008411610d0a5760405162461bcd60e51b8152600401610afc90612c0f565b601454841115610d5c5760405162461bcd60e51b815260206004820152601e60248201527f424f4e453a206d6178206d696e742070657220547820657863656564656400006044820152606401610afc565b601154610d698583612c50565b1115610d875760405162461bcd60e51b8152600401610afc90612ae9565b83600e54610d959190612c7c565b341015610ddf5760405162461bcd60e51b8152602060048201526018602482015277424f4e453a20696e73756666696369656e742066756e647360401b6044820152606401610afc565b610de93385611d28565b505060016009555050565b606060028054610e0390612cde565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2f90612cde565b8015610e7c5780601f10610e5157610100808354040283529160200191610e7c565b820191906000526020600020905b815481529060010190602001808311610e5f57829003601f168201915b5050505050905090565b6000610e9182611d42565b610eae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c8054610ed790612cde565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0390612cde565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b505050505081565b6000610f6382611101565b9050806001600160a01b0316836001600160a01b03161415610f985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610fb85750610fb681336109b2565b155b15610fd6576040516367d9dca160e11b815260040160405180910390fd5b610fe1838383611d7b565b505050565b6008546001600160a01b031633146110105760405162461bcd60e51b8152600401610afc90612b6c565b601055565b600154600054036000190190565b6008546001600160a01b0316331461104d5760405162461bcd60e51b8152600401610afc90612b6c565b6016805491151563010000000263ff00000019909216919091179055565b610fe1838383611dd7565b610fe1838383604051806020016040528060008152506118e4565b6008546001600160a01b031633146110bb5760405162461bcd60e51b8152600401610afc90612b6c565b600d55565b6008546001600160a01b031633146110ea5760405162461bcd60e51b8152600401610afc90612b6c565b80516110fd90600a9060208401906125bf565b5050565b600061110c82611fc5565b5192915050565b600a8054610ed790612cde565b60006001600160a01b038216611149576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111985760405162461bcd60e51b8152600401610afc90612b6c565b6111a260006120ec565b565b6008546001600160a01b031633146111ce5760405162461bcd60e51b8152600401610afc90612b6c565b601755565b6008546001600160a01b031633146111fd5760405162461bcd60e51b8152600401610afc90612b6c565b601855565b6008546001600160a01b0316331461122c5760405162461bcd60e51b8152600401610afc90612b6c565b6002600954141561124f5760405162461bcd60e51b8152600401610afc90612bd8565b6002600955816112a15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610afc565b60006112ab611015565b6010549091506112bb8483612c50565b11156113025760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610afc565b61130c8284611d28565b5050600160095550565b6008546001600160a01b031633146113405760405162461bcd60e51b8152600401610afc90612b6c565b478061134b57600080fd5b6000611358600283612c68565b90506113787398eafb43bb4688d12c561eda173fce11e7d2c9118261213e565b6110fd73db734624d5f1f53508121684d222e5393fab28434761213e565b600260095414156113b95760405162461bcd60e51b8152600401610afc90612bd8565b600260095560165460ff16156113e15760405162461bcd60e51b8152600401610afc90612ba1565b6016546301000000900460ff166114445760405162461bcd60e51b815260206004820152602160248201527f424f4e453a204672656573616c65204861736e277420737461727465642079656044820152601d60fa1b6064820152608401610afc565b6114a3828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050610c16565b6114ef5760405162461bcd60e51b815260206004820152601d60248201527f424f4e453a20596f7520617265206e6f742057686974656c69737465640000006044820152606401610afc565b60006114f9611015565b905060155484611509610c973390565b6115139190612c50565b11156115315760405162461bcd60e51b8152600401610afc90612b2b565b600084116115515760405162461bcd60e51b8152600401610afc90612c0f565b6015548411156115a35760405162461bcd60e51b815260206004820152601e60248201527f424f4e453a206d6178206d696e742070657220547820657863656564656400006044820152606401610afc565b6012546115b08583612c50565b11156115ce5760405162461bcd60e51b8152600401610afc90612ae9565b83600f54610d959190612c7c565b6008546001600160a01b031633146116065760405162461bcd60e51b8152600401610afc90612b6c565b601680549115156101000261ff0019909216919091179055565b606060038054610e0390612cde565b600260095414156116525760405162461bcd60e51b8152600401610afc90612bd8565b600260095560165460ff161561167a5760405162461bcd60e51b8152600401610afc90612ba1565b601654640100000000900460ff166116d45760405162461bcd60e51b815260206004820152601d60248201527f424f4e453a2053616c65204861736e27742073746172746564207965740000006044820152606401610afc565b60006116de611015565b9050600082116117005760405162461bcd60e51b8152600401610afc90612c0f565b6013548211156117605760405162461bcd60e51b815260206004820152602560248201527f424f4e453a206d6178206d696e7420616d6f756e742070657220747820657863604482015264195959195960da1b6064820152608401610afc565b60105461176d8383612c50565b11156117ae5760405162461bcd60e51b815260206004820152601060248201526f1093d3914e8815d94814dbdb191bdd5d60821b6044820152606401610afc565b601354826117bb33610c97565b6117c59190612c50565b11156117e35760405162461bcd60e51b8152600401610afc90612b2b565b81600d546117f19190612c7c565b34101561183b5760405162461bcd60e51b8152602060048201526018602482015277424f4e453a20696e73756666696369656e742066756e647360401b6044820152606401610afc565b6118453383611d28565b50506001600955565b6001600160a01b0382163314156118785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118ef848484611dd7565b6001600160a01b0383163b15158015611911575061190f84848484612174565b155b1561192f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461195f5760405162461bcd60e51b8152600401610afc90612b6c565b601455565b600b8054610ed790612cde565b606061197c82611d42565b6119e15760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610afc565b601654610100900460ff16611a8257600c80546119fd90612cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2990612cde565b8015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b50505050509050919050565b6000611a8c61226c565b90506000815111611aac5760405180602001604052806000815250611ada565b80611ab68461227b565b600b604051602001611aca939291906129d5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611b0b5760405162461bcd60e51b8152600401610afc90612b6c565b80516110fd90600b9060208401906125bf565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610acc565b6008546001600160a01b03163314611b765760405162461bcd60e51b8152600401610afc90612b6c565b601355565b6008546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610afc90612b6c565b600e55565b6008546001600160a01b03163314611bd45760405162461bcd60e51b8152600401610afc90612b6c565b80516110fd90600c9060208401906125bf565b6008546001600160a01b03163314611c115760405162461bcd60e51b8152600401610afc90612b6c565b6001600160a01b038116611c765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afc565b611c7f816120ec565b50565b6008546001600160a01b03163314611cac5760405162461bcd60e51b8152600401610afc90612b6c565b601680549115156401000000000264ff0000000019909216919091179055565b6008546001600160a01b03163314611cf65760405162461bcd60e51b8152600401610afc90612b6c565b60168054911515620100000262ff000019909216919091179055565b600082611d1f8584612378565b14949350505050565b6110fd8282604051806020016040528060008152506123ec565b600081600111158015611d56575060005482105b8015610acc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611de282611fc5565b9050836001600160a01b031681600001516001600160a01b031614611e195760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611e375750611e3785336109b2565b80611e52575033611e4784610e86565b6001600160a01b0316145b905080611e7257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611e9957604051633a954ecd60e21b815260040160405180910390fd5b611ea560008487611d7b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611f79576000548214611f7957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611ff5575060005481105b156120d357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120d15780516001600160a01b031615612068579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156120cc579392505050565b612068565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610fe1573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906121a9903390899088908890600401612a99565b602060405180830381600087803b1580156121c357600080fd5b505af19250505080156121f3575060408051601f3d908101601f191682019092526121f0918101906128a3565b60015b61224e573d808015612221576040519150601f19603f3d011682016040523d82523d6000602084013e612226565b606091505b508051612246576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610e0390612cde565b60608161229f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122c957806122b381612d19565b91506122c29050600a83612c68565b91506122a3565b6000816001600160401b038111156122e3576122e3612d8a565b6040519080825280601f01601f19166020018201604052801561230d576020820181803683370190505b5090505b841561226457612322600183612c9b565b915061232f600a86612d34565b61233a906030612c50565b60f81b81838151811061234f5761234f612d74565b60200101906001600160f81b031916908160001a905350612371600a86612c68565b9450612311565b600081815b84518110156123e457600085828151811061239a5761239a612d74565b602002602001015190508083116123c057600083815260208290526040902092506123d1565b600081815260208490526040902092505b50806123dc81612d19565b91505061237d565b509392505050565b610fe183838360016000546001600160a01b03851661241d57604051622e076360e81b815260040160405180910390fd5b8361243b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156124e757506001600160a01b0387163b15155b15612570575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125386000888480600101955088612174565b612555576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124ed57826000541461256b57600080fd5b6125b6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612571575b50600055611fbe565b8280546125cb90612cde565b90600052602060002090601f0160209004810192826125ed5760008555612633565b82601f1061260657805160ff1916838001178555612633565b82800160010185558215612633579182015b82811115612633578251825591602001919060010190612618565b5061263f929150612643565b5090565b5b8082111561263f5760008155600101612644565b60006001600160401b038084111561267257612672612d8a565b604051601f8501601f19908116603f0116810190828211818310171561269a5761269a612d8a565b816040528093508581528686860111156126b357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126e457600080fd5b919050565b803580151581146126e457600080fd5b60006020828403121561270b57600080fd5b611ada826126cd565b6000806040838503121561272757600080fd5b612730836126cd565b915061273e602084016126cd565b90509250929050565b60008060006060848603121561275c57600080fd5b612765846126cd565b9250612773602085016126cd565b9150604084013590509250925092565b6000806000806080858703121561279957600080fd5b6127a2856126cd565b93506127b0602086016126cd565b92506040850135915060608501356001600160401b038111156127d257600080fd5b8501601f810187136127e357600080fd5b6127f287823560208401612658565b91505092959194509250565b6000806040838503121561281157600080fd5b61281a836126cd565b915061273e602084016126e9565b6000806040838503121561283b57600080fd5b612844836126cd565b946020939093013593505050565b60006020828403121561286457600080fd5b611ada826126e9565b60006020828403121561287f57600080fd5b5035919050565b60006020828403121561289857600080fd5b8135611ada81612da0565b6000602082840312156128b557600080fd5b8151611ada81612da0565b6000602082840312156128d257600080fd5b81356001600160401b038111156128e857600080fd5b8201601f810184136128f957600080fd5b61226484823560208401612658565b6000806040838503121561291b57600080fd5b8235915061273e602084016126cd565b60008060006040848603121561294057600080fd5b8335925060208401356001600160401b038082111561295e57600080fd5b818601915086601f83011261297257600080fd5b81358181111561298157600080fd5b8760208260051b850101111561299657600080fd5b6020830194508093505050509250925092565b600081518084526129c1816020860160208601612cb2565b601f01601f19169290920160200192915050565b6000845160206129e88285838a01612cb2565b8551918401916129fb8184848a01612cb2565b8554920191600090600181811c9080831680612a1857607f831692505b858310811415612a3657634e487b7160e01b85526022600452602485fd5b808015612a4a5760018114612a5b57612a88565b60ff19851688528388019550612a88565b60008b81526020902060005b85811015612a805781548a820152908401908801612a67565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612acc908301846129a9565b9695505050505050565b602081526000611ada60208301846129a9565b60208082526022908201527f424f4e453a2057686974656c697374204d6178537570706c7920657863656564604082015261195960f21b606082015260800190565b60208082526021908201527f424f4e453a204d6178204e4654205065722057616c6c657420657863656564656040820152601960fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f424f4e453a206f6f707320636f6e747261637420697320706175736564000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526021908201527f424f4e453a206e65656420746f206d696e74206174206c656173742031204e466040820152601560fa1b606082015260800190565b60008219821115612c6357612c63612d48565b500190565b600082612c7757612c77612d5e565b500490565b6000816000190483118215151615612c9657612c96612d48565b500290565b600082821015612cad57612cad612d48565b500390565b60005b83811015612ccd578181015183820152602001612cb5565b8381111561192f5750506000910152565b600181811c90821680612cf257607f821691505b60208210811415612d1357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d2d57612d2d612d48565b5060010190565b600082612d4357612d43612d5e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c7f57600080fdfea26469706673582212208b667aa895c2444ab38a0d60c0e7beca5d3a09d90fa9784d49d0a86cfed0072e64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061038b5760003560e01c80636c2d3c4f116101dc578063b88d4fde11610102578063dc33e681116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a00578063f2fde38b14610a20578063f3257cdd14610a40578063fea0e05814610a6057600080fd5b8063dc33e68114610957578063e268e4d314610977578063e985e9c514610997578063f12f6d5d146109e057600080fd5b8063c6682862116100dc578063c6682862146108ec578063c87b56dd14610901578063d5abeb0114610921578063da3ef23f1461093757600080fd5b8063b88d4fde14610896578063bd7a1998146108b6578063bde0608a146108cc57600080fd5b806387e0db601161017a57806395d89b411161014957806395d89b411461082d578063a0712d6814610842578063a22cb46514610855578063a4b41a151461087557600080fd5b806387e0db60146107c657806389ba959c146107d95780638da5cb5b146107ef578063940cd05b1461080d57600080fd5b80637cb64759116101b65780637cb647591461075157806380a0bcc61461077157806383a076be14610791578063853828b6146107b157600080fd5b80636c2d3c4f1461070657806370a082311461071c578063715018a61461073c57600080fd5b806321bdb26e116102c1578063518302271161025f578063624208ae1161022e578063624208ae146106a55780636352211e146106bb5780636ab945d0146106db5780636c0360eb146106f157600080fd5b8063518302271461062c57806355f804b31461064b5780635a7adf7f1461066b5780635c975abb1461068b57600080fd5b806333bc1c5c1161029b57806333bc1c5c146105b457806342842e0e146105d657806344a0d68a146105f6578063475133341461061657600080fd5b806321bdb26e1461056857806323b872dd1461057e5780632eb4a7ab1461059e57600080fd5b8063095ea7b31161032e578063149835a011610308578063149835a0146104eb57806318160ddd1461050b5780631a026c96146105205780631c6eda321461054857600080fd5b8063095ea7b31461048d5780630b8d0a28146104ad57806313faede6146104d557600080fd5b8063036e4cb51161036a578063036e4cb51461040b57806306fdde031461041e578063081812fc14610440578063081c8c441461047857600080fd5b806277ec051461039057806301ffc9a7146103b957806302329a29146103e9575b600080fd5b34801561039c57600080fd5b506103a660145481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004612886565b610a80565b60405190151581526020016103b0565b3480156103f557600080fd5b50610409610404366004612852565b610ad2565b005b61040961041936600461292b565b610b18565b34801561042a57600080fd5b50610433610df4565b6040516103b09190612ad6565b34801561044c57600080fd5b5061046061045b36600461286d565b610e86565b6040516001600160a01b0390911681526020016103b0565b34801561048457600080fd5b50610433610eca565b34801561049957600080fd5b506104096104a8366004612828565b610f58565b3480156104b957600080fd5b5061046073db734624d5f1f53508121684d222e5393fab284381565b3480156104e157600080fd5b506103a6600d5481565b3480156104f757600080fd5b5061040961050636600461286d565b610fe6565b34801561051757600080fd5b506103a6611015565b34801561052c57600080fd5b506104607398eafb43bb4688d12c561eda173fce11e7d2c91181565b34801561055457600080fd5b50610409610563366004612852565b611023565b34801561057457600080fd5b506103a660115481565b34801561058a57600080fd5b50610409610599366004612747565b61106b565b3480156105aa57600080fd5b506103a660175481565b3480156105c057600080fd5b506016546103d990640100000000900460ff1681565b3480156105e257600080fd5b506104096105f1366004612747565b611076565b34801561060257600080fd5b5061040961061136600461286d565b611091565b34801561062257600080fd5b506103a660125481565b34801561063857600080fd5b506016546103d990610100900460ff1681565b34801561065757600080fd5b506104096106663660046128c0565b6110c0565b34801561067757600080fd5b506016546103d99062010000900460ff1681565b34801561069757600080fd5b506016546103d99060ff1681565b3480156106b157600080fd5b506103a660155481565b3480156106c757600080fd5b506104606106d636600461286d565b611101565b3480156106e757600080fd5b506103a6600f5481565b3480156106fd57600080fd5b50610433611113565b34801561071257600080fd5b506103a6600e5481565b34801561072857600080fd5b506103a66107373660046126f9565b611120565b34801561074857600080fd5b5061040961116e565b34801561075d57600080fd5b5061040961076c36600461286d565b6111a4565b34801561077d57600080fd5b5061040961078c36600461286d565b6111d3565b34801561079d57600080fd5b506104096107ac366004612908565b611202565b3480156107bd57600080fd5b50610409611316565b6104096107d436600461292b565b611396565b3480156107e557600080fd5b506103a660185481565b3480156107fb57600080fd5b506008546001600160a01b0316610460565b34801561081957600080fd5b50610409610828366004612852565b6115dc565b34801561083957600080fd5b50610433611620565b61040961085036600461286d565b61162f565b34801561086157600080fd5b506104096108703660046127fe565b61184e565b34801561088157600080fd5b506016546103d9906301000000900460ff1681565b3480156108a257600080fd5b506104096108b1366004612783565b6118e4565b3480156108c257600080fd5b506103a660135481565b3480156108d857600080fd5b506104096108e736600461286d565b611935565b3480156108f857600080fd5b50610433611964565b34801561090d57600080fd5b5061043361091c36600461286d565b611971565b34801561092d57600080fd5b506103a660105481565b34801561094357600080fd5b506104096109523660046128c0565b611ae1565b34801561096357600080fd5b506103a66109723660046126f9565b611b1e565b34801561098357600080fd5b5061040961099236600461286d565b611b4c565b3480156109a357600080fd5b506103d96109b2366004612714565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ec57600080fd5b506104096109fb36600461286d565b611b7b565b348015610a0c57600080fd5b50610409610a1b3660046128c0565b611baa565b348015610a2c57600080fd5b50610409610a3b3660046126f9565b611be7565b348015610a4c57600080fd5b50610409610a5b366004612852565b611c82565b348015610a6c57600080fd5b50610409610a7b366004612852565b611ccc565b60006001600160e01b031982166380ac58cd60e01b1480610ab157506001600160e01b03198216635b5e139f60e01b145b80610acc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b055760405162461bcd60e51b8152600401610afc90612b6c565b60405180910390fd5b6016805460ff1916911515919091179055565b60026009541415610b3b5760405162461bcd60e51b8152600401610afc90612bd8565b600260095560165460ff1615610b635760405162461bcd60e51b8152600401610afc90612ba1565b60165462010000900460ff16610bbb5760405162461bcd60e51b815260206004820181905260248201527f424f4e453a2050726573616c65204861736e27742073746172746564207965746044820152606401610afc565b610c31828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120611d12565b610c7d5760405162461bcd60e51b815260206004820152601d60248201527f424f4e453a20596f7520617265206e6f742057686974656c69737465640000006044820152606401610afc565b6000610c87611015565b905060145484610cc2610c973390565b6001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610ccc9190612c50565b1115610cea5760405162461bcd60e51b8152600401610afc90612b2b565b60008411610d0a5760405162461bcd60e51b8152600401610afc90612c0f565b601454841115610d5c5760405162461bcd60e51b815260206004820152601e60248201527f424f4e453a206d6178206d696e742070657220547820657863656564656400006044820152606401610afc565b601154610d698583612c50565b1115610d875760405162461bcd60e51b8152600401610afc90612ae9565b83600e54610d959190612c7c565b341015610ddf5760405162461bcd60e51b8152602060048201526018602482015277424f4e453a20696e73756666696369656e742066756e647360401b6044820152606401610afc565b610de93385611d28565b505060016009555050565b606060028054610e0390612cde565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2f90612cde565b8015610e7c5780601f10610e5157610100808354040283529160200191610e7c565b820191906000526020600020905b815481529060010190602001808311610e5f57829003601f168201915b5050505050905090565b6000610e9182611d42565b610eae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c8054610ed790612cde565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0390612cde565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b505050505081565b6000610f6382611101565b9050806001600160a01b0316836001600160a01b03161415610f985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610fb85750610fb681336109b2565b155b15610fd6576040516367d9dca160e11b815260040160405180910390fd5b610fe1838383611d7b565b505050565b6008546001600160a01b031633146110105760405162461bcd60e51b8152600401610afc90612b6c565b601055565b600154600054036000190190565b6008546001600160a01b0316331461104d5760405162461bcd60e51b8152600401610afc90612b6c565b6016805491151563010000000263ff00000019909216919091179055565b610fe1838383611dd7565b610fe1838383604051806020016040528060008152506118e4565b6008546001600160a01b031633146110bb5760405162461bcd60e51b8152600401610afc90612b6c565b600d55565b6008546001600160a01b031633146110ea5760405162461bcd60e51b8152600401610afc90612b6c565b80516110fd90600a9060208401906125bf565b5050565b600061110c82611fc5565b5192915050565b600a8054610ed790612cde565b60006001600160a01b038216611149576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111985760405162461bcd60e51b8152600401610afc90612b6c565b6111a260006120ec565b565b6008546001600160a01b031633146111ce5760405162461bcd60e51b8152600401610afc90612b6c565b601755565b6008546001600160a01b031633146111fd5760405162461bcd60e51b8152600401610afc90612b6c565b601855565b6008546001600160a01b0316331461122c5760405162461bcd60e51b8152600401610afc90612b6c565b6002600954141561124f5760405162461bcd60e51b8152600401610afc90612bd8565b6002600955816112a15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610afc565b60006112ab611015565b6010549091506112bb8483612c50565b11156113025760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610afc565b61130c8284611d28565b5050600160095550565b6008546001600160a01b031633146113405760405162461bcd60e51b8152600401610afc90612b6c565b478061134b57600080fd5b6000611358600283612c68565b90506113787398eafb43bb4688d12c561eda173fce11e7d2c9118261213e565b6110fd73db734624d5f1f53508121684d222e5393fab28434761213e565b600260095414156113b95760405162461bcd60e51b8152600401610afc90612bd8565b600260095560165460ff16156113e15760405162461bcd60e51b8152600401610afc90612ba1565b6016546301000000900460ff166114445760405162461bcd60e51b815260206004820152602160248201527f424f4e453a204672656573616c65204861736e277420737461727465642079656044820152601d60fa1b6064820152608401610afc565b6114a3828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050610c16565b6114ef5760405162461bcd60e51b815260206004820152601d60248201527f424f4e453a20596f7520617265206e6f742057686974656c69737465640000006044820152606401610afc565b60006114f9611015565b905060155484611509610c973390565b6115139190612c50565b11156115315760405162461bcd60e51b8152600401610afc90612b2b565b600084116115515760405162461bcd60e51b8152600401610afc90612c0f565b6015548411156115a35760405162461bcd60e51b815260206004820152601e60248201527f424f4e453a206d6178206d696e742070657220547820657863656564656400006044820152606401610afc565b6012546115b08583612c50565b11156115ce5760405162461bcd60e51b8152600401610afc90612ae9565b83600f54610d959190612c7c565b6008546001600160a01b031633146116065760405162461bcd60e51b8152600401610afc90612b6c565b601680549115156101000261ff0019909216919091179055565b606060038054610e0390612cde565b600260095414156116525760405162461bcd60e51b8152600401610afc90612bd8565b600260095560165460ff161561167a5760405162461bcd60e51b8152600401610afc90612ba1565b601654640100000000900460ff166116d45760405162461bcd60e51b815260206004820152601d60248201527f424f4e453a2053616c65204861736e27742073746172746564207965740000006044820152606401610afc565b60006116de611015565b9050600082116117005760405162461bcd60e51b8152600401610afc90612c0f565b6013548211156117605760405162461bcd60e51b815260206004820152602560248201527f424f4e453a206d6178206d696e7420616d6f756e742070657220747820657863604482015264195959195960da1b6064820152608401610afc565b60105461176d8383612c50565b11156117ae5760405162461bcd60e51b815260206004820152601060248201526f1093d3914e8815d94814dbdb191bdd5d60821b6044820152606401610afc565b601354826117bb33610c97565b6117c59190612c50565b11156117e35760405162461bcd60e51b8152600401610afc90612b2b565b81600d546117f19190612c7c565b34101561183b5760405162461bcd60e51b8152602060048201526018602482015277424f4e453a20696e73756666696369656e742066756e647360401b6044820152606401610afc565b6118453383611d28565b50506001600955565b6001600160a01b0382163314156118785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118ef848484611dd7565b6001600160a01b0383163b15158015611911575061190f84848484612174565b155b1561192f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461195f5760405162461bcd60e51b8152600401610afc90612b6c565b601455565b600b8054610ed790612cde565b606061197c82611d42565b6119e15760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610afc565b601654610100900460ff16611a8257600c80546119fd90612cde565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2990612cde565b8015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b50505050509050919050565b6000611a8c61226c565b90506000815111611aac5760405180602001604052806000815250611ada565b80611ab68461227b565b600b604051602001611aca939291906129d5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611b0b5760405162461bcd60e51b8152600401610afc90612b6c565b80516110fd90600b9060208401906125bf565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610acc565b6008546001600160a01b03163314611b765760405162461bcd60e51b8152600401610afc90612b6c565b601355565b6008546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610afc90612b6c565b600e55565b6008546001600160a01b03163314611bd45760405162461bcd60e51b8152600401610afc90612b6c565b80516110fd90600c9060208401906125bf565b6008546001600160a01b03163314611c115760405162461bcd60e51b8152600401610afc90612b6c565b6001600160a01b038116611c765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afc565b611c7f816120ec565b50565b6008546001600160a01b03163314611cac5760405162461bcd60e51b8152600401610afc90612b6c565b601680549115156401000000000264ff0000000019909216919091179055565b6008546001600160a01b03163314611cf65760405162461bcd60e51b8152600401610afc90612b6c565b60168054911515620100000262ff000019909216919091179055565b600082611d1f8584612378565b14949350505050565b6110fd8282604051806020016040528060008152506123ec565b600081600111158015611d56575060005482105b8015610acc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611de282611fc5565b9050836001600160a01b031681600001516001600160a01b031614611e195760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611e375750611e3785336109b2565b80611e52575033611e4784610e86565b6001600160a01b0316145b905080611e7257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611e9957604051633a954ecd60e21b815260040160405180910390fd5b611ea560008487611d7b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611f79576000548214611f7957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611ff5575060005481105b156120d357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906120d15780516001600160a01b031615612068579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156120cc579392505050565b612068565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610fe1573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906121a9903390899088908890600401612a99565b602060405180830381600087803b1580156121c357600080fd5b505af19250505080156121f3575060408051601f3d908101601f191682019092526121f0918101906128a3565b60015b61224e573d808015612221576040519150601f19603f3d011682016040523d82523d6000602084013e612226565b606091505b508051612246576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610e0390612cde565b60608161229f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122c957806122b381612d19565b91506122c29050600a83612c68565b91506122a3565b6000816001600160401b038111156122e3576122e3612d8a565b6040519080825280601f01601f19166020018201604052801561230d576020820181803683370190505b5090505b841561226457612322600183612c9b565b915061232f600a86612d34565b61233a906030612c50565b60f81b81838151811061234f5761234f612d74565b60200101906001600160f81b031916908160001a905350612371600a86612c68565b9450612311565b600081815b84518110156123e457600085828151811061239a5761239a612d74565b602002602001015190508083116123c057600083815260208290526040902092506123d1565b600081815260208490526040902092505b50806123dc81612d19565b91505061237d565b509392505050565b610fe183838360016000546001600160a01b03851661241d57604051622e076360e81b815260040160405180910390fd5b8361243b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156124e757506001600160a01b0387163b15155b15612570575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125386000888480600101955088612174565b612555576040516368d2bf6b60e11b815260040160405180910390fd5b808214156124ed57826000541461256b57600080fd5b6125b6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612571575b50600055611fbe565b8280546125cb90612cde565b90600052602060002090601f0160209004810192826125ed5760008555612633565b82601f1061260657805160ff1916838001178555612633565b82800160010185558215612633579182015b82811115612633578251825591602001919060010190612618565b5061263f929150612643565b5090565b5b8082111561263f5760008155600101612644565b60006001600160401b038084111561267257612672612d8a565b604051601f8501601f19908116603f0116810190828211818310171561269a5761269a612d8a565b816040528093508581528686860111156126b357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126e457600080fd5b919050565b803580151581146126e457600080fd5b60006020828403121561270b57600080fd5b611ada826126cd565b6000806040838503121561272757600080fd5b612730836126cd565b915061273e602084016126cd565b90509250929050565b60008060006060848603121561275c57600080fd5b612765846126cd565b9250612773602085016126cd565b9150604084013590509250925092565b6000806000806080858703121561279957600080fd5b6127a2856126cd565b93506127b0602086016126cd565b92506040850135915060608501356001600160401b038111156127d257600080fd5b8501601f810187136127e357600080fd5b6127f287823560208401612658565b91505092959194509250565b6000806040838503121561281157600080fd5b61281a836126cd565b915061273e602084016126e9565b6000806040838503121561283b57600080fd5b612844836126cd565b946020939093013593505050565b60006020828403121561286457600080fd5b611ada826126e9565b60006020828403121561287f57600080fd5b5035919050565b60006020828403121561289857600080fd5b8135611ada81612da0565b6000602082840312156128b557600080fd5b8151611ada81612da0565b6000602082840312156128d257600080fd5b81356001600160401b038111156128e857600080fd5b8201601f810184136128f957600080fd5b61226484823560208401612658565b6000806040838503121561291b57600080fd5b8235915061273e602084016126cd565b60008060006040848603121561294057600080fd5b8335925060208401356001600160401b038082111561295e57600080fd5b818601915086601f83011261297257600080fd5b81358181111561298157600080fd5b8760208260051b850101111561299657600080fd5b6020830194508093505050509250925092565b600081518084526129c1816020860160208601612cb2565b601f01601f19169290920160200192915050565b6000845160206129e88285838a01612cb2565b8551918401916129fb8184848a01612cb2565b8554920191600090600181811c9080831680612a1857607f831692505b858310811415612a3657634e487b7160e01b85526022600452602485fd5b808015612a4a5760018114612a5b57612a88565b60ff19851688528388019550612a88565b60008b81526020902060005b85811015612a805781548a820152908401908801612a67565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612acc908301846129a9565b9695505050505050565b602081526000611ada60208301846129a9565b60208082526022908201527f424f4e453a2057686974656c697374204d6178537570706c7920657863656564604082015261195960f21b606082015260800190565b60208082526021908201527f424f4e453a204d6178204e4654205065722057616c6c657420657863656564656040820152601960fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f424f4e453a206f6f707320636f6e747261637420697320706175736564000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526021908201527f424f4e453a206e65656420746f206d696e74206174206c656173742031204e466040820152601560fa1b606082015260800190565b60008219821115612c6357612c63612d48565b500190565b600082612c7757612c77612d5e565b500490565b6000816000190483118215151615612c9657612c96612d48565b500290565b600082821015612cad57612cad612d48565b500390565b60005b83811015612ccd578181015183820152602001612cb5565b8381111561192f5750506000910152565b600181811c90821680612cf257607f821691505b60208210811415612d1357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d2d57612d2d612d48565b5060010190565b600082612d4357612d43612d5e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c7f57600080fdfea26469706673582212208b667aa895c2444ab38a0d60c0e7beca5d3a09d90fa9784d49d0a86cfed0072e64736f6c63430008070033

Deployed Bytecode Sourcemap

50105:6680:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50570:33;;;;;;;;;;;;;;;;;;;8499:25:1;;;8487:2;8472:18;50570:33:0;;;;;;;;32208:305;;;;;;;;;;-1:-1:-1;32208:305:0;;;;;:::i;:::-;;:::i;:::-;;;8326:14:1;;8319:22;8301:41;;8289:2;8274:18;32208:305:0;8161:187:1;56002:73:0;;;;;;;;;;-1:-1:-1;56002:73:0;;;;;:::i;:::-;;:::i;:::-;;52096:841;;;;;;:::i;:::-;;:::i;35321:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36824:204::-;;;;;;;;;;-1:-1:-1;36824:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7624:32:1;;;7606:51;;7594:2;7579:18;36824:204:0;7460:203:1;50267:28:0;;;;;;;;;;;;;:::i;36387:371::-;;;;;;;;;;-1:-1:-1;36387:371:0;;;;;:::i;:::-;;:::i;50974:76::-;;;;;;;;;;;;51008:42;50974:76;;50300:31;;;;;;;;;;;;;;;;55542:94;;;;;;;;;;-1:-1:-1;55542:94:0;;;;;:::i;:::-;;:::i;31457:303::-;;;;;;;;;;;;;:::i;50878:76::-;;;;;;;;;;;;50912:42;50878:76;;56181:92;;;;;;;;;;-1:-1:-1;56181:92:0;;;;;:::i;:::-;;:::i;50450:38::-;;;;;;;;;;;;;;;;37689:170;;;;;;;;;;-1:-1:-1;37689:170:0;;;;;:::i;:::-;;:::i;50812:25::-;;;;;;;;;;;;;;;;50777:30;;;;;;;;;;-1:-1:-1;50777:30:0;;;;;;;;;;;37930:185;;;;;;;;;;-1:-1:-1;37930:185:0;;;;;:::i;:::-;;:::i;55358:80::-;;;;;;;;;;-1:-1:-1;55358:80:0;;;;;:::i;:::-;;:::i;50493:35::-;;;;;;;;;;;;;;;;50679:28;;;;;;;;;;-1:-1:-1;50679:28:0;;;;;;;;;;;55642:98;;;;;;;;;;-1:-1:-1;55642:98:0;;;;;:::i;:::-;;:::i;50712:27::-;;;;;;;;;;-1:-1:-1;50712:27:0;;;;;;;;;;;50648:26;;;;;;;;;;-1:-1:-1;50648:26:0;;;;;;;;50608:35;;;;;;;;;;;;;;;;35129:125;;;;;;;;;;-1:-1:-1;35129:125:0;;;;;:::i;:::-;;:::i;50375:33::-;;;;;;;;;;;;;;;;50199:21;;;;;;;;;;;;;:::i;50336:34::-;;;;;;;;;;;;;;;;32577:206;;;;;;;;;;-1:-1:-1;32577:206:0;;;;;:::i;:::-;;:::i;9966:103::-;;;;;;;;;;;;;:::i;54910:106::-;;;;;;;;;;-1:-1:-1;54910:106:0;;;;;:::i;:::-;;:::i;55024:122::-;;;;;;;;;;-1:-1:-1;55024:122:0;;;;;:::i;:::-;;:::i;53859:318::-;;;;;;;;;;-1:-1:-1;53859:318:0;;;;;:::i;:::-;;:::i;56388:269::-;;;;;;;;;;;;;:::i;52943:847::-;;;;;;:::i;:::-;;:::i;50842:29::-;;;;;;;;;;;;;;;;9315:87;;;;;;;;;;-1:-1:-1;9388:6:0;;-1:-1:-1;;;;;9388:6:0;9315:87;;54826:78;;;;;;;;;;-1:-1:-1;54826:78:0;;;;;:::i;:::-;;:::i;35490:104::-;;;;;;;;;;;;;:::i;51406:645::-;;;;;;:::i;:::-;;:::i;37100:287::-;;;;;;;;;;-1:-1:-1;37100:287:0;;;;;:::i;:::-;;:::i;50744:28::-;;;;;;;;;;-1:-1:-1;50744:28:0;;;;;;;;;;;38186:369;;;;;;;;;;-1:-1:-1;38186:369:0;;;;;:::i;:::-;;:::i;50533:32::-;;;;;;;;;;;;;;;;55254:96;;;;;;;;;;-1:-1:-1;55254:96:0;;;;;:::i;:::-;;:::i;50225:37::-;;;;;;;;;;;;;:::i;54191:498::-;;;;;;;;;;-1:-1:-1;54191:498:0;;;;;:::i;:::-;;:::i;50413:32::-;;;;;;;;;;;;;;;;55746:122;;;;;;;;;;-1:-1:-1;55746:122:0;;;;;:::i;:::-;;:::i;54697:107::-;;;;;;;;;;-1:-1:-1;54697:107:0;;;;;:::i;:::-;;:::i;55154:92::-;;;;;;;;;;-1:-1:-1;55154:92:0;;;;;:::i;:::-;;:::i;37458:164::-;;;;;;;;;;-1:-1:-1;37458:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37579:25:0;;;37555:4;37579:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37458:164;55446:88;;;;;;;;;;-1:-1:-1;55446:88:0;;;;;:::i;:::-;;:::i;55876:120::-;;;;;;;;;;-1:-1:-1;55876:120:0;;;;;:::i;:::-;;:::i;10224:201::-;;;;;;;;;;-1:-1:-1;10224:201:0;;;;;:::i;:::-;;:::i;56281:96::-;;;;;;;;;;-1:-1:-1;56281:96:0;;;;;:::i;:::-;;:::i;56083:90::-;;;;;;;;;;-1:-1:-1;56083:90:0;;;;;:::i;:::-;;:::i;32208:305::-;32310:4;-1:-1:-1;;;;;;32347:40:0;;-1:-1:-1;;;32347:40:0;;:105;;-1:-1:-1;;;;;;;32404:48:0;;-1:-1:-1;;;32404:48:0;32347:105;:158;;;-1:-1:-1;;;;;;;;;;22208:40:0;;;32469:36;32327:178;32208:305;-1:-1:-1;;32208:305:0:o;56002:73::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;;;;;;;;;56054:6:::1;:15:::0;;-1:-1:-1;;56054:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56002:73::o;52096:841::-;4289:1;4887:7;;:19;;4879:63;;;;-1:-1:-1;;;4879:63:0;;;;;;;:::i;:::-;4289:1;5020:7;:18;52209:6:::1;::::0;::::1;;52208:7;52200:49;;;;-1:-1:-1::0;;;52200:49:0::1;;;;;;;:::i;:::-;52264:7;::::0;;;::::1;;;52256:52;;;::::0;-1:-1:-1;;;52256:52:0;;14241:2:1;52256:52:0::1;::::0;::::1;14223:21:1::0;;;14260:18;;;14253:30;14319:34;14299:18;;;14292:62;14371:18;;52256:52:0::1;14039:356:1::0;52256:52:0::1;52323:84;52342:11;;52323:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;52355:10:0::1;::::0;52377:28:::1;::::0;-1:-1:-1;;52394:10:0::1;5843:2:1::0;5839:15;5835:53;52377:28:0::1;::::0;::::1;5823:66:1::0;52355:10:0;;-1:-1:-1;5905:12:1;;;-1:-1:-1;52377:28:0::1;;;;;;;;;;;;;52367:39;;;;;;52323:18;:84::i;:::-;52315:126;;;::::0;-1:-1:-1;;;52315:126:0;;13883:2:1;52315:126:0::1;::::0;::::1;13865:21:1::0;13922:2;13902:18;;;13895:30;13961:31;13941:18;;;13934:59;14010:18;;52315:126:0::1;13681:353:1::0;52315:126:0::1;52448:14;52465:13;:11;:13::i;:::-;52448:30;;52533:14;;52523:6;52493:27;52507:12;8119:10:::0;;8039:98;52507:12:::1;-1:-1:-1::0;;;;;32961:19:0;32926:7;32961:19;;;:12;:19;;;;;:32;-1:-1:-1;;;32961:32:0;;-1:-1:-1;;;;;32961:32:0;;32865:137;52493:27:::1;:36;;;;:::i;:::-;:54;;52485:100;;;;-1:-1:-1::0;;;52485:100:0::1;;;;;;;:::i;:::-;52609:1;52600:6;:10;52592:56;;;;-1:-1:-1::0;;;52592:56:0::1;;;;;;;:::i;:::-;52673:14;;52663:6;:24;;52655:67;;;::::0;-1:-1:-1;;;52655:67:0;;10899:2:1;52655:67:0::1;::::0;::::1;10881:21:1::0;10938:2;10918:18;;;10911:30;10977:32;10957:18;;;10950:60;11027:18;;52655:67:0::1;10697:354:1::0;52655:67:0::1;52756:16;::::0;52737:15:::1;52746:6:::0;52737;:15:::1;:::i;:::-;:35;;52729:82;;;;-1:-1:-1::0;;;52729:82:0::1;;;;;;;:::i;:::-;52848:6;52839;;:15;;;;:::i;:::-;52826:9;:28;;52818:65;;;::::0;-1:-1:-1;;;52818:65:0;;9736:2:1;52818:65:0::1;::::0;::::1;9718:21:1::0;9775:2;9755:18;;;9748:30;-1:-1:-1;;;9794:18:1;;;9787:54;9858:18;;52818:65:0::1;9534:348:1::0;52818:65:0::1;52894:31;8119:10:::0;52918:6:::1;52894:9;:31::i;:::-;-1:-1:-1::0;;4245:1:0;5199:7;:22;-1:-1:-1;;52096:841:0:o;35321:100::-;35375:13;35408:5;35401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35321:100;:::o;36824:204::-;36892:7;36917:16;36925:7;36917;:16::i;:::-;36912:64;;36942:34;;-1:-1:-1;;;36942:34:0;;;;;;;;;;;36912:64;-1:-1:-1;36996:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36996:24:0;;36824:204::o;50267:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36387:371::-;36460:13;36476:24;36492:7;36476:15;:24::i;:::-;36460:40;;36521:5;-1:-1:-1;;;;;36515:11:0;:2;-1:-1:-1;;;;;36515:11:0;;36511:48;;;36535:24;;-1:-1:-1;;;36535:24:0;;;;;;;;;;;36511:48;8119:10;-1:-1:-1;;;;;36576:21:0;;;;;;:63;;-1:-1:-1;36602:37:0;36619:5;8119:10;37458:164;:::i;36602:37::-;36601:38;36576:63;36572:138;;;36663:35;;-1:-1:-1;;;36663:35:0;;;;;;;;;;;36572:138;36722:28;36731:2;36735:7;36744:5;36722:8;:28::i;:::-;36449:309;36387:371;;:::o;55542:94::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55608:9:::1;:22:::0;55542:94::o;31457:303::-;51378:1;31711:12;31501:7;31695:13;:28;-1:-1:-1;;31695:46:0;;31457:303::o;56181:92::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;56248:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56248:17:0;;::::1;::::0;;;::::1;::::0;;56181:92::o;37689:170::-;37823:28;37833:4;37839:2;37843:7;37823:9;:28::i;37930:185::-;38068:39;38085:4;38091:2;38095:7;38068:39;;;;;;;;;;;;:16;:39::i;55358:80::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55417:4:::1;:15:::0;55358:80::o;55642:98::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55713:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55642:98:::0;:::o;35129:125::-;35193:7;35220:21;35233:7;35220:12;:21::i;:::-;:26;;35129:125;-1:-1:-1;;35129:125:0:o;50199:21::-;;;;;;;:::i;32577:206::-;32641:7;-1:-1:-1;;;;;32665:19:0;;32661:60;;32693:28;;-1:-1:-1;;;32693:28:0;;;;;;;;;;;32661:60;-1:-1:-1;;;;;;32747:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32747:27:0;;32577:206::o;9966:103::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;10031:30:::1;10058:1;10031:18;:30::i;:::-;9966:103::o:0;54910:106::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;54984:10:::1;:24:::0;54910:106::o;55024:122::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55106:14:::1;:32:::0;55024:122::o;53859:318::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;4289:1:::1;4887:7;;:19;;4879:63;;;;-1:-1:-1::0;;;4879:63:0::1;;;;;;;:::i;:::-;4289:1;5020:7;:18:::0;53960:15;53952:55:::2;;;::::0;-1:-1:-1;;;53952:55:0;;15364:2:1;53952:55:0::2;::::0;::::2;15346:21:1::0;15403:2;15383:18;;;15376:30;15442:29;15422:18;;;15415:57;15489:18;;53952:55:0::2;15162:351:1::0;53952:55:0::2;54014:14;54031:13;:11;:13::i;:::-;54083:9;::::0;54014:30;;-1:-1:-1;54059:20:0::2;54068:11:::0;54014:30;54059:20:::2;:::i;:::-;:33;;54051:68;;;::::0;-1:-1:-1;;;54051:68:0;;12407:2:1;54051:68:0::2;::::0;::::2;12389:21:1::0;12446:2;12426:18;;;12419:30;-1:-1:-1;;;12465:18:1;;;12458:52;12527:18;;54051:68:0::2;12205:346:1::0;54051:68:0::2;54130:35;54140:11;54153;54130:9;:35::i;:::-;-1:-1:-1::0;;4245:1:0::1;5199:7;:22:::0;-1:-1:-1;53859:318:0:o;56388:269::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;56459:21:::1;56499:11:::0;56491:20:::1;;;::::0;::::1;;56522:18;56544:11;56554:1;56544:7:::0;:11:::1;:::i;:::-;56522:34;;56567:30;50912:42;56586:10;56567:9;:30::i;:::-;56608:41;51008:42;56627:21;56608:9;:41::i;52943:847::-:0;4289:1;4887:7;;:19;;4879:63;;;;-1:-1:-1;;;4879:63:0;;;;;;;:::i;:::-;4289:1;5020:7;:18;53053:6:::1;::::0;::::1;;53052:7;53044:49;;;;-1:-1:-1::0;;;53044:49:0::1;;;;;;;:::i;:::-;53108:8;::::0;;;::::1;;;53100:54;;;::::0;-1:-1:-1;;;53100:54:0;;11660:2:1;53100:54:0::1;::::0;::::1;11642:21:1::0;11699:2;11679:18;;;11672:30;11738:34;11718:18;;;11711:62;-1:-1:-1;;;11789:18:1;;;11782:31;11830:19;;53100:54:0::1;11458:397:1::0;53100:54:0::1;53169:88;53188:11;;53169:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;53201:14:0::1;::::0;53227:28:::1;::::0;-1:-1:-1;;53244:10:0::1;5843:2:1::0;5839:15;5835:53;53227:28:0::1;::::0;::::1;5823:66:1::0;53201:14:0;;-1:-1:-1;5905:12:1;;;-1:-1:-1;53227:28:0::1;5694:229:1::0;53169:88:0::1;53161:130;;;::::0;-1:-1:-1;;;53161:130:0;;13883:2:1;53161:130:0::1;::::0;::::1;13865:21:1::0;13922:2;13902:18;;;13895:30;13961:31;13941:18;;;13934:59;14010:18;;53161:130:0::1;13681:353:1::0;53161:130:0::1;53298:14;53315:13;:11;:13::i;:::-;53298:30;;53383:16;;53373:6;53343:27;53357:12;8119:10:::0;;8039:98;53343:27:::1;:36;;;;:::i;:::-;:56;;53335:102;;;;-1:-1:-1::0;;;53335:102:0::1;;;;;;;:::i;:::-;53461:1;53452:6;:10;53444:56;;;;-1:-1:-1::0;;;53444:56:0::1;;;;;;;:::i;:::-;53525:16;;53515:6;:26;;53507:69;;;::::0;-1:-1:-1;;;53507:69:0;;10899:2:1;53507:69:0::1;::::0;::::1;10881:21:1::0;10938:2;10918:18;;;10911:30;10977:32;10957:18;;;10950:60;11027:18;;53507:69:0::1;10697:354:1::0;53507:69:0::1;53610:13;::::0;53591:15:::1;53600:6:::0;53591;:15:::1;:::i;:::-;:32;;53583:79;;;;-1:-1:-1::0;;;53583:79:0::1;;;;;;;:::i;:::-;53701:6;53690:8;;:17;;;;:::i;54826:78::-:0;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;54881:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;54881:17:0;;::::1;::::0;;;::::1;::::0;;54826:78::o;35490:104::-;35546:13;35579:7;35572:14;;;;;:::i;51406:645::-;4289:1;4887:7;;:19;;4879:63;;;;-1:-1:-1;;;4879:63:0;;;;;;;:::i;:::-;4289:1;5020:7;:18;51480:6:::1;::::0;::::1;;51479:7;51471:49;;;;-1:-1:-1::0;;;51471:49:0::1;;;;;;;:::i;:::-;51535:10;::::0;;;::::1;;;51527:52;;;::::0;-1:-1:-1;;;51527:52:0;;9378:2:1;51527:52:0::1;::::0;::::1;9360:21:1::0;9417:2;9397:18;;;9390:30;9456:31;9436:18;;;9429:59;9505:18;;51527:52:0::1;9176:353:1::0;51527:52:0::1;51586:14;51603:13;:11;:13::i;:::-;51586:30;;51640:1;51631:6;:10;51623:56;;;;-1:-1:-1::0;;;51623:56:0::1;;;;;;;:::i;:::-;51704:12;;51694:6;:22;;51686:72;;;::::0;-1:-1:-1;;;51686:72:0;;13119:2:1;51686:72:0::1;::::0;::::1;13101:21:1::0;13158:2;13138:18;;;13131:30;13197:34;13177:18;;;13170:62;-1:-1:-1;;;13248:18:1;;;13241:35;13293:19;;51686:72:0::1;12917:401:1::0;51686:72:0::1;51792:9;::::0;51773:15:::1;51782:6:::0;51773;:15:::1;:::i;:::-;:28;;51765:57;;;::::0;-1:-1:-1;;;51765:57:0;;12062:2:1;51765:57:0::1;::::0;::::1;12044:21:1::0;12101:2;12081:18;;;12074:30;-1:-1:-1;;;12120:18:1;;;12113:46;12176:18;;51765:57:0::1;11860:340:1::0;51765:57:0::1;51877:12;::::0;51867:6;51837:27:::1;8119:10:::0;52493:13:::1;:27::i;51837:::-;:36;;;;:::i;:::-;:52;;51829:98;;;;-1:-1:-1::0;;;51829:98:0::1;;;;;;;:::i;:::-;51962:6;51955:4;;:13;;;;:::i;:::-;51942:9;:26;;51934:63;;;::::0;-1:-1:-1;;;51934:63:0;;9736:2:1;51934:63:0::1;::::0;::::1;9718:21:1::0;9775:2;9755:18;;;9748:30;-1:-1:-1;;;9794:18:1;;;9787:54;9858:18;;51934:63:0::1;9534:348:1::0;51934:63:0::1;52008:31;8119:10:::0;52032:6:::1;52008:9;:31::i;:::-;-1:-1:-1::0;;4245:1:0;5199:7;:22;51406:645::o;37100:287::-;-1:-1:-1;;;;;37199:24:0;;8119:10;37199:24;37195:54;;;37232:17;;-1:-1:-1;;;37232:17:0;;;;;;;;;;;37195:54;8119:10;37262:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37262:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37262:53:0;;;;;;;;;;37331:48;;8301:41:1;;;37262:42:0;;8119:10;37331:48;;8274:18:1;37331:48:0;;;;;;;37100:287;;:::o;38186:369::-;38353:28;38363:4;38369:2;38373:7;38353:9;:28::i;:::-;-1:-1:-1;;;;;38396:13:0;;12311:19;:23;;38396:76;;;;;38416:56;38447:4;38453:2;38457:7;38466:5;38416:30;:56::i;:::-;38415:57;38396:76;38392:156;;;38496:40;;-1:-1:-1;;;38496:40:0;;;;;;;;;;;38392:156;38186:369;;;;:::o;55254:96::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55321:14:::1;:23:::0;55254:96::o;50225:37::-;;;;;;;:::i;54191:498::-;54289:13;54330:16;54338:7;54330;:16::i;:::-;54314:98;;;;-1:-1:-1;;;54314:98:0;;8961:2:1;54314:98:0;;;8943:21:1;9000:2;8980:18;;;8973:30;9039:34;9019:18;;;9012:62;-1:-1:-1;;;9090:18:1;;;9083:46;9146:19;;54314:98:0;8759:412:1;54314:98:0;54428:8;;;;;;;54425:62;;54465:14;54458:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54191:498;;;:::o;54425:62::-;54495:28;54526:10;:8;:10::i;:::-;54495:41;;54581:1;54556:14;54550:28;:32;:133;;;;;;;;;;;;;;;;;54618:14;54634:18;:7;:16;:18::i;:::-;54654:13;54601:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54550:133;54543:140;54191:498;-1:-1:-1;;;54191:498:0:o;55746:122::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55829:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;54697:107::-:0;-1:-1:-1;;;;;32961:19:0;;54755:7;32961:19;;;:12;:19;;;;;:32;-1:-1:-1;;;32961:32:0;;-1:-1:-1;;;;;32961:32:0;54778:20;32865:137;55154:92;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55219:12:::1;:21:::0;55154:92::o;55446:88::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55509:6:::1;:19:::0;55446:88::o;55876:120::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;55958:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;10224:201::-:0;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10313:22:0;::::1;10305:73;;;::::0;-1:-1:-1;;;10305:73:0;;10089:2:1;10305:73:0::1;::::0;::::1;10071:21:1::0;10128:2;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;-1:-1:-1;;;10218:18:1;;;10211:36;10264:19;;10305:73:0::1;9887:402:1::0;10305:73:0::1;10389:28;10408:8;10389:18;:28::i;:::-;10224:201:::0;:::o;56281:96::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;56350:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56350:19:0;;::::1;::::0;;;::::1;::::0;;56281:96::o;56083:90::-;9388:6;;-1:-1:-1;;;;;9388:6:0;8119:10;9535:23;9527:68;;;;-1:-1:-1;;;9527:68:0;;;;;;;:::i;:::-;56149:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56149:16:0;;::::1;::::0;;;::::1;::::0;;56083:90::o;1011:190::-;1136:4;1189;1160:25;1173:5;1180:4;1160:12;:25::i;:::-;:33;;1011:190;-1:-1:-1;;;;1011:190:0:o;39005:104::-;39074:27;39084:2;39088:8;39074:27;;;;;;;;;;;;:9;:27::i;38810:187::-;38867:4;38910:7;51378:1;38891:26;;:53;;;;;38931:13;;38921:7;:23;38891:53;:98;;;;-1:-1:-1;;38962:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38962:27:0;;;;38961:28;;38810:187::o;46980:196::-;47095:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47095:29:0;-1:-1:-1;;;;;47095:29:0;;;;;;;;;47140:28;;47095:24;;47140:28;;;;;;;46980:196;;;:::o;41923:2130::-;42038:35;42076:21;42089:7;42076:12;:21::i;:::-;42038:59;;42136:4;-1:-1:-1;;;;;42114:26:0;:13;:18;;;-1:-1:-1;;;;;42114:26:0;;42110:67;;42149:28;;-1:-1:-1;;;42149:28:0;;;;;;;;;;;42110:67;42190:22;8119:10;-1:-1:-1;;;;;42216:20:0;;;;:73;;-1:-1:-1;42253:36:0;42270:4;8119:10;37458:164;:::i;42253:36::-;42216:126;;;-1:-1:-1;8119:10:0;42306:20;42318:7;42306:11;:20::i;:::-;-1:-1:-1;;;;;42306:36:0;;42216:126;42190:153;;42361:17;42356:66;;42387:35;;-1:-1:-1;;;42387:35:0;;;;;;;;;;;42356:66;-1:-1:-1;;;;;42437:16:0;;42433:52;;42462:23;;-1:-1:-1;;;42462:23:0;;;;;;;;;;;42433:52;42606:35;42623:1;42627:7;42636:4;42606:8;:35::i;:::-;-1:-1:-1;;;;;42937:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42937:31:0;;;-1:-1:-1;;;;;42937:31:0;;;-1:-1:-1;;42937:31:0;;;;;;;42983:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42983:29:0;;;;;;;;;;;43063:20;;;:11;:20;;;;;;43098:18;;-1:-1:-1;;;;;;43131:49:0;;;;-1:-1:-1;;;43164:15:0;43131:49;;;;;;;;;;43454:11;;43514:24;;;;;43557:13;;43063:20;;43514:24;;43557:13;43553:384;;43767:13;;43752:11;:28;43748:174;;43805:20;;43874:28;;;;-1:-1:-1;;;;;43848:54:0;-1:-1:-1;;;43848:54:0;-1:-1:-1;;;;;;43848:54:0;;;-1:-1:-1;;;;;43805:20:0;;43848:54;;;;43748:174;42912:1036;;;43984:7;43980:2;-1:-1:-1;;;;;43965:27:0;43974:4;-1:-1:-1;;;;;43965:27:0;;;;;;;;;;;44003:42;42027:2026;;41923:2130;;;:::o;33958:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34069:7:0;;51378:1;34118:23;;:47;;;;;34152:13;;34145:4;:20;34118:47;34114:886;;;34186:31;34220:17;;;:11;:17;;;;;;;;;34186:51;;;;;;;;;-1:-1:-1;;;;;34186:51:0;;;;-1:-1:-1;;;34186:51:0;;-1:-1:-1;;;;;34186:51:0;;;;;;;;-1:-1:-1;;;34186:51:0;;;;;;;;;;;;;;34256:729;;34306:14;;-1:-1:-1;;;;;34306:28:0;;34302:101;;34370:9;33958:1109;-1:-1:-1;;;33958:1109:0:o;34302:101::-;-1:-1:-1;;;34745:6:0;34790:17;;;;:11;:17;;;;;;;;;34778:29;;;;;;;;;-1:-1:-1;;;;;34778:29:0;;;;;-1:-1:-1;;;34778:29:0;;-1:-1:-1;;;;;34778:29:0;;;;;;;;-1:-1:-1;;;34778:29:0;;;;;;;;;;;;;34838:28;34834:109;;34906:9;33958:1109;-1:-1:-1;;;33958:1109:0:o;34834:109::-;34705:261;;;34167:833;34114:886;35028:31;;-1:-1:-1;;;35028:31:0;;;;;;;;;;;10585:191;10678:6;;;-1:-1:-1;;;;;10695:17:0;;;-1:-1:-1;;;;;;10695:17:0;;;;;;;10728:40;;10678:6;;;10695:17;10678:6;;10728:40;;10659:16;;10728:40;10648:128;10585:191;:::o;56665:117::-;56739:35;;-1:-1:-1;;;;;56739:26:0;;;:35;;;;;56766:7;;56739:35;;;;56766:7;56739:26;:35;;;;;;;;;;;;;;;;;;;47668:667;47852:72;;-1:-1:-1;;;47852:72:0;;47831:4;;-1:-1:-1;;;;;47852:36:0;;;;;:72;;8119:10;;47903:4;;47909:7;;47918:5;;47852:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47852:72:0;;;;;;;;-1:-1:-1;;47852:72:0;;;;;;;;;;;;:::i;:::-;;;47848:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48086:13:0;;48082:235;;48132:40;;-1:-1:-1;;;48132:40:0;;;;;;;;;;;48082:235;48275:6;48269:13;48260:6;48256:2;48252:15;48245:38;47848:480;-1:-1:-1;;;;;;47971:55:0;-1:-1:-1;;;47971:55:0;;-1:-1:-1;47848:480:0;47668:667;;;;;;:::o;51176:102::-;51236:13;51265:7;51258:14;;;;;:::i;5601:723::-;5657:13;5878:10;5874:53;;-1:-1:-1;;5905:10:0;;;;;;;;;;;;-1:-1:-1;;;5905:10:0;;;;;5601:723::o;5874:53::-;5952:5;5937:12;5993:78;6000:9;;5993:78;;6026:8;;;;:::i;:::-;;-1:-1:-1;6049:10:0;;-1:-1:-1;6057:2:0;6049:10;;:::i;:::-;;;5993:78;;;6081:19;6113:6;-1:-1:-1;;;;;6103:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6103:17:0;;6081:39;;6131:154;6138:10;;6131:154;;6165:11;6175:1;6165:11;;:::i;:::-;;-1:-1:-1;6234:10:0;6242:2;6234:5;:10;:::i;:::-;6221:24;;:2;:24;:::i;:::-;6208:39;;6191:6;6198;6191:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6191:56:0;;;;;;;;-1:-1:-1;6262:11:0;6271:2;6262:11;;:::i;:::-;;;6131:154;;1563:675;1646:7;1689:4;1646:7;1704:497;1728:5;:12;1724:1;:16;1704:497;;;1762:20;1785:5;1791:1;1785:8;;;;;;;;:::i;:::-;;;;;;;1762:31;;1828:12;1812;:28;1808:382;;2314:13;2364:15;;;2400:4;2393:15;;;2447:4;2431:21;;1940:57;;1808:382;;;2314:13;2364:15;;;2400:4;2393:15;;;2447:4;2431:21;;2117:57;;1808:382;-1:-1:-1;1742:3:0;;;;:::i;:::-;;;;1704:497;;;-1:-1:-1;2218:12:0;1563:675;-1:-1:-1;;;1563:675:0:o;39472:163::-;39595:32;39601:2;39605:8;39615:5;39622:4;40033:20;40056:13;-1:-1:-1;;;;;40084:16:0;;40080:48;;40109:19;;-1:-1:-1;;;40109:19:0;;;;;;;;;;;40080:48;40143:13;40139:44;;40165:18;;-1:-1:-1;;;40165:18:0;;;;;;;;;;;40139:44;-1:-1:-1;;;;;40534:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40593:49:0;;-1:-1:-1;;;;;40534:44:0;;;;;;;40593:49;;;-1:-1:-1;;;;;40534:44:0;;;;;;40593:49;;;;;;;;;;;;;;;;40659:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;40709:66:0;;;;-1:-1:-1;;;40759:15:0;40709:66;;;;;;;;;;40659:25;40856:23;;;40900:4;:23;;;;-1:-1:-1;;;;;;40908:13:0;;12311:19;:23;;40908:15;40896:641;;;40944:314;40975:38;;41000:12;;-1:-1:-1;;;;;40975:38:0;;;40992:1;;40975:38;;40992:1;;40975:38;41041:69;41080:1;41084:2;41088:14;;;;;;41104:5;41041:30;:69::i;:::-;41036:174;;41146:40;;-1:-1:-1;;;41146:40:0;;;;;;;;;;;41036:174;41253:3;41237:12;:19;;40944:314;;41339:12;41322:13;;:29;41318:43;;41353:8;;;41318:43;40896:641;;;41402:120;41433:40;;41458:14;;;;;-1:-1:-1;;;;;41433:40:0;;;41450:1;;41433:40;;41450:1;;41433:40;41517:3;41501:12;:19;;41402:120;;40896:641;-1:-1:-1;41551:13:0;:28;41601:60;38186:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;-1:-1:-1;;;;;4048:6:1;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:254::-;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4666:9;4653:23;4643:33;;4695:38;4729:2;4718:9;4714:18;4695:38;:::i;4744:683::-;4839:6;4847;4855;4908:2;4896:9;4887:7;4883:23;4879:32;4876:52;;;4924:1;4921;4914:12;4876:52;4960:9;4947:23;4937:33;;5021:2;5010:9;5006:18;4993:32;-1:-1:-1;;;;;5085:2:1;5077:6;5074:14;5071:34;;;5101:1;5098;5091:12;5071:34;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:55;;5206:1;5203;5196:12;5155:55;5246:2;5233:16;5272:2;5264:6;5261:14;5258:34;;;5288:1;5285;5278:12;5258:34;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:65;;;5362:1;5359;5352:12;5301:65;5393:2;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4744:683;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5432:257;-1:-1:-1;;5432:257:1:o;5928:1527::-;6152:3;6190:6;6184:13;6216:4;6229:51;6273:6;6268:3;6263:2;6255:6;6251:15;6229:51;:::i;:::-;6343:13;;6302:16;;;;6365:55;6343:13;6302:16;6387:15;;;6365:55;:::i;:::-;6509:13;;6442:20;;;6482:1;;6569;6591:18;;;;6644;;;;6671:93;;6749:4;6739:8;6735:19;6723:31;;6671:93;6812:2;6802:8;6799:16;6779:18;6776:40;6773:167;;;-1:-1:-1;;;6839:33:1;;6895:4;6892:1;6885:15;6925:4;6846:3;6913:17;6773:167;6956:18;6983:110;;;;7107:1;7102:328;;;;6949:481;;6983:110;-1:-1:-1;;7018:24:1;;7004:39;;7063:20;;;;-1:-1:-1;6983:110:1;;7102:328;15773:1;15766:14;;;15810:4;15797:18;;7197:1;7211:169;7225:8;7222:1;7219:15;7211:169;;;7307:14;;7292:13;;;7285:37;7350:16;;;;7242:10;;7211:169;;;7215:3;;7411:8;7404:5;7400:20;7393:27;;6949:481;-1:-1:-1;7446:3:1;;5928:1527;-1:-1:-1;;;;;;;;;;;5928:1527:1:o;7668:488::-;-1:-1:-1;;;;;7937:15:1;;;7919:34;;7989:15;;7984:2;7969:18;;7962:43;8036:2;8021:18;;8014:34;;;8084:3;8079:2;8064:18;;8057:31;;;7862:4;;8105:45;;8130:19;;8122:6;8105:45;:::i;:::-;8097:53;7668:488;-1:-1:-1;;;;;;7668:488:1:o;8535:219::-;8684:2;8673:9;8666:21;8647:4;8704:44;8744:2;8733:9;8729:18;8721:6;8704:44;:::i;10294:398::-;10496:2;10478:21;;;10535:2;10515:18;;;10508:30;10574:34;10569:2;10554:18;;10547:62;-1:-1:-1;;;10640:2:1;10625:18;;10618:32;10682:3;10667:19;;10294:398::o;11056:397::-;11258:2;11240:21;;;11297:2;11277:18;;;11270:30;11336:34;11331:2;11316:18;;11309:62;-1:-1:-1;;;11402:2:1;11387:18;;11380:31;11443:3;11428:19;;11056:397::o;12556:356::-;12758:2;12740:21;;;12777:18;;;12770:30;12836:34;12831:2;12816:18;;12809:62;12903:2;12888:18;;12556:356::o;13323:353::-;13525:2;13507:21;;;13564:2;13544:18;;;13537:30;13603:31;13598:2;13583:18;;13576:59;13667:2;13652:18;;13323:353::o;14400:355::-;14602:2;14584:21;;;14641:2;14621:18;;;14614:30;14680:33;14675:2;14660:18;;14653:61;14746:2;14731:18;;14400:355::o;14760:397::-;14962:2;14944:21;;;15001:2;14981:18;;;14974:30;15040:34;15035:2;15020:18;;15013:62;-1:-1:-1;;;15106:2:1;15091:18;;15084:31;15147:3;15132:19;;14760:397::o;15826:128::-;15866:3;15897:1;15893:6;15890:1;15887:13;15884:39;;;15903:18;;:::i;:::-;-1:-1:-1;15939:9:1;;15826:128::o;15959:120::-;15999:1;16025;16015:35;;16030:18;;:::i;:::-;-1:-1:-1;16064:9:1;;15959:120::o;16084:168::-;16124:7;16190:1;16186;16182:6;16178:14;16175:1;16172:21;16167:1;16160:9;16153:17;16149:45;16146:71;;;16197:18;;:::i;:::-;-1:-1:-1;16237:9:1;;16084:168::o;16257:125::-;16297:4;16325:1;16322;16319:8;16316:34;;;16330:18;;:::i;:::-;-1:-1:-1;16367:9:1;;16257:125::o;16387:258::-;16459:1;16469:113;16483:6;16480:1;16477:13;16469:113;;;16559:11;;;16553:18;16540:11;;;16533:39;16505:2;16498:10;16469:113;;;16600:6;16597:1;16594:13;16591:48;;;-1:-1:-1;;16635:1:1;16617:16;;16610:27;16387:258::o;16650:380::-;16729:1;16725:12;;;;16772;;;16793:61;;16847:4;16839:6;16835:17;16825:27;;16793:61;16900:2;16892:6;16889:14;16869:18;16866:38;16863:161;;;16946:10;16941:3;16937:20;16934:1;16927:31;16981:4;16978:1;16971:15;17009:4;17006:1;16999:15;16863:161;;16650:380;;;:::o;17035:135::-;17074:3;-1:-1:-1;;17095:17:1;;17092:43;;;17115:18;;:::i;:::-;-1:-1:-1;17162:1:1;17151:13;;17035:135::o;17175:112::-;17207:1;17233;17223:35;;17238:18;;:::i;:::-;-1:-1:-1;17272:9:1;;17175:112::o;17292:127::-;17353:10;17348:3;17344:20;17341:1;17334:31;17384:4;17381:1;17374:15;17408:4;17405:1;17398:15;17424:127;17485:10;17480:3;17476:20;17473:1;17466:31;17516:4;17513:1;17506:15;17540:4;17537:1;17530:15;17556:127;17617:10;17612:3;17608:20;17605:1;17598:31;17648:4;17645:1;17638:15;17672:4;17669:1;17662:15;17688:127;17749:10;17744:3;17740:20;17737:1;17730:31;17780:4;17777:1;17770:15;17804:4;17801:1;17794:15;17820:131;-1:-1:-1;;;;;;17894:32:1;;17884:43;;17874:71;;17941:1;17938;17931:12

Swarm Source

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