ETH Price: $2,630.26 (+0.71%)

Token

Baby Parrot Tree Club (BPTC)
 

Overview

Max Total Supply

1,570 BPTC

Holders

144

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
typeof.eth
Balance
2 BPTC
0xfa6b3df826636eb76e23c1ee38180db3b8f60a86
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:
BabyParrotTreeClub

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-25
*/

// 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/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.10;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 public immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    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);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

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

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;






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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.03 ether;
  uint256 public wlcost = 0.01 ether;
  uint256 public maxSupply = 4444;
  uint256 public WlSupply = 2000;
  uint256 public MaxperWallet = 2;
  uint256 public MaxperWalletWl = 2;
  uint256 public MaxperTxWl = 2;
  uint256 public maxsize = 10 ; // max mint per tx
  bool public paused = true;
  bool public revealed = false;
  bool public preSale = true;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0x7d47dd9d8fd212164c3a9e8d23f89077455d468a3e287590d7f66b9c5ed8dcfd;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Baby Parrot Tree Club", "BPTC", maxsize) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

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

      _safeMint(_msgSender(), tokens);
    
  }

    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable  {
    require(!paused, "BPTC: oops contract is paused");
    require(preSale, "BPTC: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "BPTC: You are not eligible for the presale");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(ownerTokenCount + tokens <= MaxperWalletWl, "BPTC: Max NFT Per Wallet exceeded");
    require(tokens > 0, "BPTC: need to mint at least 1 NFT");
    require(tokens <= maxsize, "BPTC: max mint per Tx exceeded");
    require(supply + tokens <= WlSupply, "BPTC: WL Supply exceeded");
    require(msg.value >= wlcost * tokens, "insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    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 walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  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))
        : "";
  }

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

      function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

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

  function setmaxsize(uint256 _maxsize) public onlyOwner {
    maxsize = _maxsize;
  }

    function setWLMaxpertx(uint256 _maxpertx) public onlyOwner {
    MaxperTxWl = _maxpertx;
  }
  
  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 setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _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 togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","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":[{"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":"maxBatchSize","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":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setWLMaxpertx","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":"uint256","name":"_maxsize","type":"uint256"}],"name":"setmaxsize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6001600090815560075560e0604052600560a081905264173539b7b760d91b60c09081526200003291600a9190620002f7565b50666a94d74f430000600c55662386f26fc10000600d5561115c600e556107d0600f55600260108190556011819055601255600a6013556014805463ffffffff1916620100011790557f7d47dd9d8fd212164c3a9e8d23f89077455d468a3e287590d7f66b9c5ed8dcfd601555348015620000ac57600080fd5b506040516200378c3803806200378c833981016040819052620000cf916200046a565b6040518060400160405280601581526020017f4261627920506172726f74205472656520436c75620000000000000000000000815250604051806040016040528060048152602001634250544360e01b815250601354600081116200018b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b8251620001a0906001906020860190620002f7565b508151620001b6906002906020850190620002f7565b5060805250620001c8905033620001e6565b620001d38262000238565b620001de816200029c565b505062000510565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002835760405162461bcd60e51b815260206004820181905260248201526000805160206200376c833981519152604482015260640162000182565b805162000298906009906020840190620002f7565b5050565b6008546001600160a01b03163314620002e75760405162461bcd60e51b815260206004820181905260248201526000805160206200376c833981519152604482015260640162000182565b80516200029890600b9060208401905b8280546200030590620004d4565b90600052602060002090601f01602090048101928262000329576000855562000374565b82601f106200034457805160ff191683800117855562000374565b8280016001018555821562000374579182015b828111156200037457825182559160200191906001019062000357565b506200038292915062000386565b5090565b5b8082111562000382576000815560010162000387565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003c557600080fd5b81516001600160401b0380821115620003e257620003e26200039d565b604051601f8301601f19908116603f011681019082821181831017156200040d576200040d6200039d565b816040528381526020925086838588010111156200042a57600080fd5b600091505b838210156200044e57858201830151818301840152908201906200042f565b83821115620004605760008385830101525b9695505050505050565b600080604083850312156200047e57600080fd5b82516001600160401b03808211156200049657600080fd5b620004a486838701620003b3565b93506020850151915080821115620004bb57600080fd5b50620004ca85828601620003b3565b9150509250929050565b600181811c90821680620004e957607f821691505b6020821081036200050a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161322b6200054160003960008181610555015281816122e30152818161230d0152612798015261322b6000f3fe6080604052600436106103805760003560e01c80636c0360eb116101d1578063bde0608a11610102578063da3ef23f116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109e3578063f2fde38b14610a03578063f3257cdd14610a23578063fea0e05814610a4357600080fd5b8063da3ef23f1461093a578063e268e4d31461095a578063e985e9c51461097a578063f12f6d5d146109c357600080fd5b8063ca6b7ef5116100dc578063ca6b7ef5146108d8578063d5abeb01146108f8578063d7224ba01461090e578063d8ed370c1461092457600080fd5b8063bde0608a14610883578063c6682862146108a3578063c87b56dd146108b857600080fd5b80638da5cb5b1161016f578063a22cb46511610149578063a22cb46514610818578063a475b5dd14610838578063b88d4fde1461084d578063bd7a19981461086d57600080fd5b80638da5cb5b146107d257806395d89b41146107f0578063a0712d681461080557600080fd5b806370a08231116101ab57806370a082311461075d578063715018a61461077d5780637cb647591461079257806383a076be146107b257600080fd5b80636c0360eb1461071c5780636c2d3c4f146107315780636c6e927e1461074757600080fd5b80632913daa0116102b657806344a0d68a1161025457806355f804b31161022357806355f804b3146106a25780635a7adf7f146106c25780635c975abb146106e25780636352211e146106fc57600080fd5b806344a0d68a14610623578063458c4f9e146106435780634f6ccce714610663578063518302271461068357600080fd5b806333bc1c5c1161029057806333bc1c5c146105ad5780633ccfd60b146105ce57806342842e0e146105d6578063438b6300146105f657600080fd5b80632913daa0146105435780632eb4a7ab146105775780632f745c591461058d57600080fd5b8063095ea7b311610323578063149835a0116102fd578063149835a0146104ce57806318160ddd146104ee5780631866756c1461050357806323b872dd1461052357600080fd5b8063095ea7b3146104825780630bddb613146104a257806313faede6146104b857600080fd5b8063036e4cb51161035f578063036e4cb51461040057806306fdde0314610413578063081812fc14610435578063081c8c441461046d57600080fd5b806277ec051461038557806301ffc9a7146103ae57806302329a29146103de575b600080fd5b34801561039157600080fd5b5061039b60115481565b6040519081526020015b60405180910390f35b3480156103ba57600080fd5b506103ce6103c9366004612a5c565b610a63565b60405190151581526020016103a5565b3480156103ea57600080fd5b506103fe6103f9366004612a8e565b610ad0565b005b6103fe61040e366004612aa9565b610b16565b34801561041f57600080fd5b50610428610e0a565b6040516103a59190612b80565b34801561044157600080fd5b50610455610450366004612b93565b610e9c565b6040516001600160a01b0390911681526020016103a5565b34801561047957600080fd5b50610428610f27565b34801561048e57600080fd5b506103fe61049d366004612bc3565b610fb5565b3480156104ae57600080fd5b5061039b600f5481565b3480156104c457600080fd5b5061039b600c5481565b3480156104da57600080fd5b506103fe6104e9366004612b93565b6110cc565b3480156104fa57600080fd5b5061039b6110fb565b34801561050f57600080fd5b506103fe61051e366004612b93565b611111565b34801561052f57600080fd5b506103fe61053e366004612bed565b611140565b34801561054f57600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058357600080fd5b5061039b60155481565b34801561059957600080fd5b5061039b6105a8366004612bc3565b61114b565b3480156105b957600080fd5b506014546103ce906301000000900460ff1681565b6103fe6112c1565b3480156105e257600080fd5b506103fe6105f1366004612bed565b611343565b34801561060257600080fd5b50610616610611366004612c29565b61135e565b6040516103a59190612c44565b34801561062f57600080fd5b506103fe61063e366004612b93565b611400565b34801561064f57600080fd5b506103fe61065e366004612b93565b61142f565b34801561066f57600080fd5b5061039b61067e366004612b93565b61145e565b34801561068f57600080fd5b506014546103ce90610100900460ff1681565b3480156106ae57600080fd5b506103fe6106bd366004612d14565b6114c6565b3480156106ce57600080fd5b506014546103ce9062010000900460ff1681565b3480156106ee57600080fd5b506014546103ce9060ff1681565b34801561070857600080fd5b50610455610717366004612b93565b611507565b34801561072857600080fd5b50610428611519565b34801561073d57600080fd5b5061039b600d5481565b34801561075357600080fd5b5061039b60135481565b34801561076957600080fd5b5061039b610778366004612c29565b611526565b34801561078957600080fd5b506103fe6115b7565b34801561079e57600080fd5b506103fe6107ad366004612b93565b6115ed565b3480156107be57600080fd5b506103fe6107cd366004612d5d565b61161c565b3480156107de57600080fd5b506008546001600160a01b0316610455565b3480156107fc57600080fd5b50610428611701565b6103fe610813366004612b93565b611710565b34801561082457600080fd5b506103fe610833366004612d89565b611935565b34801561084457600080fd5b506103fe6119f9565b34801561085957600080fd5b506103fe610868366004612db3565b611a34565b34801561087957600080fd5b5061039b60105481565b34801561088f57600080fd5b506103fe61089e366004612b93565b611a6d565b3480156108af57600080fd5b50610428611a9c565b3480156108c457600080fd5b506104286108d3366004612b93565b611aa9565b3480156108e457600080fd5b506103fe6108f3366004612b93565b611c20565b34801561090457600080fd5b5061039b600e5481565b34801561091a57600080fd5b5061039b60075481565b34801561093057600080fd5b5061039b60125481565b34801561094657600080fd5b506103fe610955366004612d14565b611c4f565b34801561096657600080fd5b506103fe610975366004612b93565b611c8c565b34801561098657600080fd5b506103ce610995366004612e2f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109cf57600080fd5b506103fe6109de366004612b93565b611cbb565b3480156109ef57600080fd5b506103fe6109fe366004612d14565b611cea565b348015610a0f57600080fd5b506103fe610a1e366004612c29565b611d27565b348015610a2f57600080fd5b506103fe610a3e366004612a8e565b611dbf565b348015610a4f57600080fd5b506103fe610a5e366004612a8e565b611e07565b60006001600160e01b031982166380ac58cd60e01b1480610a9457506001600160e01b03198216635b5e139f60e01b145b80610aaf57506001600160e01b0319821663780e9d6360e01b145b80610aca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612e59565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610b695760405162461bcd60e51b815260206004820152601d60248201527f425054433a206f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b60145462010000900460ff16610bc15760405162461bcd60e51b815260206004820181905260248201527f425054433a2050726573616c65204861736e27742073746172746564207965746044820152606401610afa565b610c36828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611e4d565b610c955760405162461bcd60e51b815260206004820152602a60248201527f425054433a20596f7520617265206e6f7420656c696769626c6520666f72207460448201526968652070726573616c6560b01b6064820152608401610afa565b6000610c9f6110fb565b90506000610cac33611526565b601154909150610cbc8683612ea4565b1115610cda5760405162461bcd60e51b8152600401610afa90612ebc565b60008511610cfa5760405162461bcd60e51b8152600401610afa90612efd565b601354851115610d4c5760405162461bcd60e51b815260206004820152601e60248201527f425054433a206d6178206d696e742070657220547820657863656564656400006044820152606401610afa565b600f54610d598684612ea4565b1115610da75760405162461bcd60e51b815260206004820152601860248201527f425054433a20574c20537570706c7920657863656564656400000000000000006044820152606401610afa565b84600d54610db59190612f3e565b341015610df95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610afa565b610e033386611e63565b5050505050565b606060018054610e1990612f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4590612f5d565b8015610e925780601f10610e6757610100808354040283529160200191610e92565b820191906000526020600020905b815481529060010190602001808311610e7557829003601f168201915b5050505050905090565b6000610ea9826000541190565b610f0b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610afa565b506000908152600560205260409020546001600160a01b031690565b600b8054610f3490612f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6090612f5d565b8015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b505050505081565b6000610fc082611507565b9050806001600160a01b0316836001600160a01b03160361102e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610afa565b336001600160a01b038216148061104a575061104a8133610995565b6110bc5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610afa565b6110c7838383611e7d565b505050565b6008546001600160a01b031633146110f65760405162461bcd60e51b8152600401610afa90612e59565b600e55565b6000600160005461110c9190612f97565b905090565b6008546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610afa90612e59565b601255565b6110c7838383611ed9565b600061115683611526565b82106111af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610afa565b60006111b96110fb565b905060008060005b83811015611261576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561121457805192505b876001600160a01b0316836001600160a01b03160361124e5786840361124057509350610aca92505050565b8361124a81612fae565b9450505b508061125981612fae565b9150506111c1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610afa565b6008546001600160a01b031633146112eb5760405162461bcd60e51b8152600401610afa90612e59565b604051600090339047908381818185875af1925050503d806000811461132d576040519150601f19603f3d011682016040523d82523d6000602084013e611332565b606091505b505090508061134057600080fd5b50565b6110c783838360405180602001604052806000815250611a34565b6060600061136b83611526565b905060008167ffffffffffffffff81111561138857611388612c88565b6040519080825280602002602001820160405280156113b1578160200160208202803683370190505b50905060005b828110156113f8576113c9858261114b565b8282815181106113db576113db612fc7565b6020908102919091010152806113f081612fae565b9150506113b7565b509392505050565b6008546001600160a01b0316331461142a5760405162461bcd60e51b8152600401610afa90612e59565b600c55565b6008546001600160a01b031633146114595760405162461bcd60e51b8152600401610afa90612e59565b600f55565b60006114686110fb565b82106114c25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610afa565b5090565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610afa90612e59565b80516115039060099060208401906129b6565b5050565b600061151282612261565b5192915050565b60098054610f3490612f5d565b60006001600160a01b0382166115925760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610afa565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115e15760405162461bcd60e51b8152600401610afa90612e59565b6115eb600061240b565b565b6008546001600160a01b031633146116175760405162461bcd60e51b8152600401610afa90612e59565b601555565b6008546001600160a01b031633146116465760405162461bcd60e51b8152600401610afa90612e59565b600082116116965760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610afa565b60006116a06110fb565b600e549091506116b08483612ea4565b11156116f75760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610afa565b6110c78284611e63565b606060028054610e1990612f5d565b60145460ff16156117635760405162461bcd60e51b815260206004820152601d60248201527f425054433a206f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b6014546301000000900460ff166117bc5760405162461bcd60e51b815260206004820152601d60248201527f425054433a2053616c65204861736e27742073746172746564207965740000006044820152606401610afa565b60006117c66110fb565b905060006117d333611526565b9050600083116117f55760405162461bcd60e51b8152600401610afa90612efd565b6013548311156118555760405162461bcd60e51b815260206004820152602560248201527f425054433a206d6178206d696e7420616d6f756e742070657220747820657863604482015264195959195960da1b6064820152608401610afa565b600e546118628484612ea4565b11156118a35760405162461bcd60e51b815260206004820152601060248201526f10941510ce8815d94814dbdb191bdd5d60821b6044820152606401610afa565b6010546118b08483612ea4565b11156118ce5760405162461bcd60e51b8152600401610afa90612ebc565b82600c546118dc9190612f3e565b34101561192b5760405162461bcd60e51b815260206004820152601860248201527f425054433a20696e73756666696369656e742066756e647300000000000000006044820152606401610afa565b6110c73384611e63565b336001600160a01b0383160361198d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610afa565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611a235760405162461bcd60e51b8152600401610afa90612e59565b6014805461ff001916610100179055565b611a3f848484611ed9565b611a4b8484848461245d565b611a675760405162461bcd60e51b8152600401610afa90612fdd565b50505050565b6008546001600160a01b03163314611a975760405162461bcd60e51b8152600401610afa90612e59565b601155565b600a8054610f3490612f5d565b6060611ab6826000541190565b611b1b5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610afa565b601454610100900460ff161515600003611bc157600b8054611b3c90612f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6890612f5d565b8015611bb55780601f10611b8a57610100808354040283529160200191611bb5565b820191906000526020600020905b815481529060010190602001808311611b9857829003601f168201915b50505050509050919050565b6000611bcb61255f565b90506000815111611beb5760405180602001604052806000815250611c19565b80611bf58461256e565b600a604051602001611c0993929190613030565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611c4a5760405162461bcd60e51b8152600401610afa90612e59565b601355565b6008546001600160a01b03163314611c795760405162461bcd60e51b8152600401610afa90612e59565b805161150390600a9060208401906129b6565b6008546001600160a01b03163314611cb65760405162461bcd60e51b8152600401610afa90612e59565b601055565b6008546001600160a01b03163314611ce55760405162461bcd60e51b8152600401610afa90612e59565b600d55565b6008546001600160a01b03163314611d145760405162461bcd60e51b8152600401610afa90612e59565b805161150390600b9060208401906129b6565b6008546001600160a01b03163314611d515760405162461bcd60e51b8152600401610afa90612e59565b6001600160a01b038116611db65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6113408161240b565b6008546001600160a01b03163314611de95760405162461bcd60e51b8152600401610afa90612e59565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314611e315760405162461bcd60e51b8152600401610afa90612e59565b60148054911515620100000262ff000019909216919091179055565b600082611e5a858461266f565b14949350505050565b6115038282604051806020016040528060008152506126db565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ee482612261565b80519091506000906001600160a01b0316336001600160a01b03161480611f1b575033611f1084610e9c565b6001600160a01b0316145b80611f2d57508151611f2d9033610995565b905080611f975760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610afa565b846001600160a01b031682600001516001600160a01b03161461200b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610afa565b6001600160a01b03841661206f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610afa565b61207f6000848460000151611e7d565b6001600160a01b03851660009081526004602052604081208054600192906120b19084906001600160801b03166130f3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926120fd9185911661311b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612185846001612ea4565b6000818152600360205260409020549091506001600160a01b0316612217576121af816000541190565b156122175760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612280826000541190565b6122df5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610afa565b60007f00000000000000000000000000000000000000000000000000000000000000008310612340576123327f000000000000000000000000000000000000000000000000000000000000000084612f97565b61233d906001612ea4565b90505b825b8181106123aa576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561239757949350505050565b50806123a281613146565b915050612342565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610afa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561255357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124a190339089908890889060040161315d565b6020604051808303816000875af19250505080156124dc575060408051601f3d908101601f191682019092526124d99181019061319a565b60015b612539573d80801561250a576040519150601f19603f3d011682016040523d82523d6000602084013e61250f565b606091505b5080516000036125315760405162461bcd60e51b8152600401610afa90612fdd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612557565b5060015b949350505050565b606060098054610e1990612f5d565b6060816000036125955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125bf57806125a981612fae565b91506125b89050600a836131cd565b9150612599565b60008167ffffffffffffffff8111156125da576125da612c88565b6040519080825280601f01601f191660200182016040528015612604576020820181803683370190505b5090505b841561255757612619600183612f97565b9150612626600a866131e1565b612631906030612ea4565b60f81b81838151811061264657612646612fc7565b60200101906001600160f81b031916908160001a905350612668600a866131cd565b9450612608565b600081815b84518110156113f857600085828151811061269157612691612fc7565b602002602001015190508083116126b757600083815260208290526040902092506126c8565b600081815260208490526040902092505b50806126d381612fae565b915050612674565b6000546001600160a01b03841661273e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610afa565b612749816000541190565b156127965760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610afa565b7f00000000000000000000000000000000000000000000000000000000000000008311156128115760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610afa565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061286d90879061311b565b6001600160801b0316815260200185836020015161288b919061311b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129ab5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461296f600088848861245d565b61298b5760405162461bcd60e51b8152600401610afa90612fdd565b8161299581612fae565b92505080806129a390612fae565b915050612922565b506000819055612259565b8280546129c290612f5d565b90600052602060002090601f0160209004810192826129e45760008555612a2a565b82601f106129fd57805160ff1916838001178555612a2a565b82800160010185558215612a2a579182015b82811115612a2a578251825591602001919060010190612a0f565b506114c29291505b808211156114c25760008155600101612a32565b6001600160e01b03198116811461134057600080fd5b600060208284031215612a6e57600080fd5b8135611c1981612a46565b80358015158114612a8957600080fd5b919050565b600060208284031215612aa057600080fd5b611c1982612a79565b600080600060408486031215612abe57600080fd5b83359250602084013567ffffffffffffffff80821115612add57600080fd5b818601915086601f830112612af157600080fd5b813581811115612b0057600080fd5b8760208260051b8501011115612b1557600080fd5b6020830194508093505050509250925092565b60005b83811015612b43578181015183820152602001612b2b565b83811115611a675750506000910152565b60008151808452612b6c816020860160208601612b28565b601f01601f19169290920160200192915050565b602081526000611c196020830184612b54565b600060208284031215612ba557600080fd5b5035919050565b80356001600160a01b0381168114612a8957600080fd5b60008060408385031215612bd657600080fd5b612bdf83612bac565b946020939093013593505050565b600080600060608486031215612c0257600080fd5b612c0b84612bac565b9250612c1960208501612bac565b9150604084013590509250925092565b600060208284031215612c3b57600080fd5b611c1982612bac565b6020808252825182820181905260009190848201906040850190845b81811015612c7c57835183529284019291840191600101612c60565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612cb957612cb9612c88565b604051601f8501601f19908116603f01168101908282118183101715612ce157612ce1612c88565b81604052809350858152868686011115612cfa57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612d2657600080fd5b813567ffffffffffffffff811115612d3d57600080fd5b8201601f81018413612d4e57600080fd5b61255784823560208401612c9e565b60008060408385031215612d7057600080fd5b82359150612d8060208401612bac565b90509250929050565b60008060408385031215612d9c57600080fd5b612da583612bac565b9150612d8060208401612a79565b60008060008060808587031215612dc957600080fd5b612dd285612bac565b9350612de060208601612bac565b925060408501359150606085013567ffffffffffffffff811115612e0357600080fd5b8501601f81018713612e1457600080fd5b612e2387823560208401612c9e565b91505092959194509250565b60008060408385031215612e4257600080fd5b612e4b83612bac565b9150612d8060208401612bac565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eb757612eb7612e8e565b500190565b60208082526021908201527f425054433a204d6178204e4654205065722057616c6c657420657863656564656040820152601960fa1b606082015260800190565b60208082526021908201527f425054433a206e65656420746f206d696e74206174206c656173742031204e466040820152601560fa1b606082015260800190565b6000816000190483118215151615612f5857612f58612e8e565b500290565b600181811c90821680612f7157607f821691505b602082108103612f9157634e487b7160e01b600052602260045260246000fd5b50919050565b600082821015612fa957612fa9612e8e565b500390565b600060018201612fc057612fc0612e8e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206130438285838a01612b28565b8551918401916130568184848a01612b28565b8554920191600090600181811c908083168061307357607f831692505b858310810361309057634e487b7160e01b85526022600452602485fd5b8080156130a457600181146130b5576130e2565b60ff198516885283880195506130e2565b60008b81526020902060005b858110156130da5781548a8201529084019088016130c1565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b038381169083168181101561311357613113612e8e565b039392505050565b60006001600160801b0380831681851680830382111561313d5761313d612e8e565b01949350505050565b60008161315557613155612e8e565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061319090830184612b54565b9695505050505050565b6000602082840312156131ac57600080fd5b8151611c1981612a46565b634e487b7160e01b600052601260045260246000fd5b6000826131dc576131dc6131b7565b500490565b6000826131f0576131f06131b7565b50069056fea2646970667358221220d894b1e747f10ecdccad237b7827088743bc83ca2bbb2fabb50e28cd0189c0a164736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55465939565462786443365166586f455a376f654834783164796b35326375747858416338563867434165652f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d55433173795a71633946734b37624a74724143466d7661564e6b747045664c5478766548704a6170634d38482f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103805760003560e01c80636c0360eb116101d1578063bde0608a11610102578063da3ef23f116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109e3578063f2fde38b14610a03578063f3257cdd14610a23578063fea0e05814610a4357600080fd5b8063da3ef23f1461093a578063e268e4d31461095a578063e985e9c51461097a578063f12f6d5d146109c357600080fd5b8063ca6b7ef5116100dc578063ca6b7ef5146108d8578063d5abeb01146108f8578063d7224ba01461090e578063d8ed370c1461092457600080fd5b8063bde0608a14610883578063c6682862146108a3578063c87b56dd146108b857600080fd5b80638da5cb5b1161016f578063a22cb46511610149578063a22cb46514610818578063a475b5dd14610838578063b88d4fde1461084d578063bd7a19981461086d57600080fd5b80638da5cb5b146107d257806395d89b41146107f0578063a0712d681461080557600080fd5b806370a08231116101ab57806370a082311461075d578063715018a61461077d5780637cb647591461079257806383a076be146107b257600080fd5b80636c0360eb1461071c5780636c2d3c4f146107315780636c6e927e1461074757600080fd5b80632913daa0116102b657806344a0d68a1161025457806355f804b31161022357806355f804b3146106a25780635a7adf7f146106c25780635c975abb146106e25780636352211e146106fc57600080fd5b806344a0d68a14610623578063458c4f9e146106435780634f6ccce714610663578063518302271461068357600080fd5b806333bc1c5c1161029057806333bc1c5c146105ad5780633ccfd60b146105ce57806342842e0e146105d6578063438b6300146105f657600080fd5b80632913daa0146105435780632eb4a7ab146105775780632f745c591461058d57600080fd5b8063095ea7b311610323578063149835a0116102fd578063149835a0146104ce57806318160ddd146104ee5780631866756c1461050357806323b872dd1461052357600080fd5b8063095ea7b3146104825780630bddb613146104a257806313faede6146104b857600080fd5b8063036e4cb51161035f578063036e4cb51461040057806306fdde0314610413578063081812fc14610435578063081c8c441461046d57600080fd5b806277ec051461038557806301ffc9a7146103ae57806302329a29146103de575b600080fd5b34801561039157600080fd5b5061039b60115481565b6040519081526020015b60405180910390f35b3480156103ba57600080fd5b506103ce6103c9366004612a5c565b610a63565b60405190151581526020016103a5565b3480156103ea57600080fd5b506103fe6103f9366004612a8e565b610ad0565b005b6103fe61040e366004612aa9565b610b16565b34801561041f57600080fd5b50610428610e0a565b6040516103a59190612b80565b34801561044157600080fd5b50610455610450366004612b93565b610e9c565b6040516001600160a01b0390911681526020016103a5565b34801561047957600080fd5b50610428610f27565b34801561048e57600080fd5b506103fe61049d366004612bc3565b610fb5565b3480156104ae57600080fd5b5061039b600f5481565b3480156104c457600080fd5b5061039b600c5481565b3480156104da57600080fd5b506103fe6104e9366004612b93565b6110cc565b3480156104fa57600080fd5b5061039b6110fb565b34801561050f57600080fd5b506103fe61051e366004612b93565b611111565b34801561052f57600080fd5b506103fe61053e366004612bed565b611140565b34801561054f57600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561058357600080fd5b5061039b60155481565b34801561059957600080fd5b5061039b6105a8366004612bc3565b61114b565b3480156105b957600080fd5b506014546103ce906301000000900460ff1681565b6103fe6112c1565b3480156105e257600080fd5b506103fe6105f1366004612bed565b611343565b34801561060257600080fd5b50610616610611366004612c29565b61135e565b6040516103a59190612c44565b34801561062f57600080fd5b506103fe61063e366004612b93565b611400565b34801561064f57600080fd5b506103fe61065e366004612b93565b61142f565b34801561066f57600080fd5b5061039b61067e366004612b93565b61145e565b34801561068f57600080fd5b506014546103ce90610100900460ff1681565b3480156106ae57600080fd5b506103fe6106bd366004612d14565b6114c6565b3480156106ce57600080fd5b506014546103ce9062010000900460ff1681565b3480156106ee57600080fd5b506014546103ce9060ff1681565b34801561070857600080fd5b50610455610717366004612b93565b611507565b34801561072857600080fd5b50610428611519565b34801561073d57600080fd5b5061039b600d5481565b34801561075357600080fd5b5061039b60135481565b34801561076957600080fd5b5061039b610778366004612c29565b611526565b34801561078957600080fd5b506103fe6115b7565b34801561079e57600080fd5b506103fe6107ad366004612b93565b6115ed565b3480156107be57600080fd5b506103fe6107cd366004612d5d565b61161c565b3480156107de57600080fd5b506008546001600160a01b0316610455565b3480156107fc57600080fd5b50610428611701565b6103fe610813366004612b93565b611710565b34801561082457600080fd5b506103fe610833366004612d89565b611935565b34801561084457600080fd5b506103fe6119f9565b34801561085957600080fd5b506103fe610868366004612db3565b611a34565b34801561087957600080fd5b5061039b60105481565b34801561088f57600080fd5b506103fe61089e366004612b93565b611a6d565b3480156108af57600080fd5b50610428611a9c565b3480156108c457600080fd5b506104286108d3366004612b93565b611aa9565b3480156108e457600080fd5b506103fe6108f3366004612b93565b611c20565b34801561090457600080fd5b5061039b600e5481565b34801561091a57600080fd5b5061039b60075481565b34801561093057600080fd5b5061039b60125481565b34801561094657600080fd5b506103fe610955366004612d14565b611c4f565b34801561096657600080fd5b506103fe610975366004612b93565b611c8c565b34801561098657600080fd5b506103ce610995366004612e2f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109cf57600080fd5b506103fe6109de366004612b93565b611cbb565b3480156109ef57600080fd5b506103fe6109fe366004612d14565b611cea565b348015610a0f57600080fd5b506103fe610a1e366004612c29565b611d27565b348015610a2f57600080fd5b506103fe610a3e366004612a8e565b611dbf565b348015610a4f57600080fd5b506103fe610a5e366004612a8e565b611e07565b60006001600160e01b031982166380ac58cd60e01b1480610a9457506001600160e01b03198216635b5e139f60e01b145b80610aaf57506001600160e01b0319821663780e9d6360e01b145b80610aca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612e59565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610b695760405162461bcd60e51b815260206004820152601d60248201527f425054433a206f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b60145462010000900460ff16610bc15760405162461bcd60e51b815260206004820181905260248201527f425054433a2050726573616c65204861736e27742073746172746564207965746044820152606401610afa565b610c36828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611e4d565b610c955760405162461bcd60e51b815260206004820152602a60248201527f425054433a20596f7520617265206e6f7420656c696769626c6520666f72207460448201526968652070726573616c6560b01b6064820152608401610afa565b6000610c9f6110fb565b90506000610cac33611526565b601154909150610cbc8683612ea4565b1115610cda5760405162461bcd60e51b8152600401610afa90612ebc565b60008511610cfa5760405162461bcd60e51b8152600401610afa90612efd565b601354851115610d4c5760405162461bcd60e51b815260206004820152601e60248201527f425054433a206d6178206d696e742070657220547820657863656564656400006044820152606401610afa565b600f54610d598684612ea4565b1115610da75760405162461bcd60e51b815260206004820152601860248201527f425054433a20574c20537570706c7920657863656564656400000000000000006044820152606401610afa565b84600d54610db59190612f3e565b341015610df95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610afa565b610e033386611e63565b5050505050565b606060018054610e1990612f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4590612f5d565b8015610e925780601f10610e6757610100808354040283529160200191610e92565b820191906000526020600020905b815481529060010190602001808311610e7557829003601f168201915b5050505050905090565b6000610ea9826000541190565b610f0b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610afa565b506000908152600560205260409020546001600160a01b031690565b600b8054610f3490612f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6090612f5d565b8015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b505050505081565b6000610fc082611507565b9050806001600160a01b0316836001600160a01b03160361102e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610afa565b336001600160a01b038216148061104a575061104a8133610995565b6110bc5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610afa565b6110c7838383611e7d565b505050565b6008546001600160a01b031633146110f65760405162461bcd60e51b8152600401610afa90612e59565b600e55565b6000600160005461110c9190612f97565b905090565b6008546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610afa90612e59565b601255565b6110c7838383611ed9565b600061115683611526565b82106111af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610afa565b60006111b96110fb565b905060008060005b83811015611261576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561121457805192505b876001600160a01b0316836001600160a01b03160361124e5786840361124057509350610aca92505050565b8361124a81612fae565b9450505b508061125981612fae565b9150506111c1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610afa565b6008546001600160a01b031633146112eb5760405162461bcd60e51b8152600401610afa90612e59565b604051600090339047908381818185875af1925050503d806000811461132d576040519150601f19603f3d011682016040523d82523d6000602084013e611332565b606091505b505090508061134057600080fd5b50565b6110c783838360405180602001604052806000815250611a34565b6060600061136b83611526565b905060008167ffffffffffffffff81111561138857611388612c88565b6040519080825280602002602001820160405280156113b1578160200160208202803683370190505b50905060005b828110156113f8576113c9858261114b565b8282815181106113db576113db612fc7565b6020908102919091010152806113f081612fae565b9150506113b7565b509392505050565b6008546001600160a01b0316331461142a5760405162461bcd60e51b8152600401610afa90612e59565b600c55565b6008546001600160a01b031633146114595760405162461bcd60e51b8152600401610afa90612e59565b600f55565b60006114686110fb565b82106114c25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610afa565b5090565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610afa90612e59565b80516115039060099060208401906129b6565b5050565b600061151282612261565b5192915050565b60098054610f3490612f5d565b60006001600160a01b0382166115925760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610afa565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115e15760405162461bcd60e51b8152600401610afa90612e59565b6115eb600061240b565b565b6008546001600160a01b031633146116175760405162461bcd60e51b8152600401610afa90612e59565b601555565b6008546001600160a01b031633146116465760405162461bcd60e51b8152600401610afa90612e59565b600082116116965760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610afa565b60006116a06110fb565b600e549091506116b08483612ea4565b11156116f75760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610afa565b6110c78284611e63565b606060028054610e1990612f5d565b60145460ff16156117635760405162461bcd60e51b815260206004820152601d60248201527f425054433a206f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b6014546301000000900460ff166117bc5760405162461bcd60e51b815260206004820152601d60248201527f425054433a2053616c65204861736e27742073746172746564207965740000006044820152606401610afa565b60006117c66110fb565b905060006117d333611526565b9050600083116117f55760405162461bcd60e51b8152600401610afa90612efd565b6013548311156118555760405162461bcd60e51b815260206004820152602560248201527f425054433a206d6178206d696e7420616d6f756e742070657220747820657863604482015264195959195960da1b6064820152608401610afa565b600e546118628484612ea4565b11156118a35760405162461bcd60e51b815260206004820152601060248201526f10941510ce8815d94814dbdb191bdd5d60821b6044820152606401610afa565b6010546118b08483612ea4565b11156118ce5760405162461bcd60e51b8152600401610afa90612ebc565b82600c546118dc9190612f3e565b34101561192b5760405162461bcd60e51b815260206004820152601860248201527f425054433a20696e73756666696369656e742066756e647300000000000000006044820152606401610afa565b6110c73384611e63565b336001600160a01b0383160361198d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610afa565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611a235760405162461bcd60e51b8152600401610afa90612e59565b6014805461ff001916610100179055565b611a3f848484611ed9565b611a4b8484848461245d565b611a675760405162461bcd60e51b8152600401610afa90612fdd565b50505050565b6008546001600160a01b03163314611a975760405162461bcd60e51b8152600401610afa90612e59565b601155565b600a8054610f3490612f5d565b6060611ab6826000541190565b611b1b5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610afa565b601454610100900460ff161515600003611bc157600b8054611b3c90612f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6890612f5d565b8015611bb55780601f10611b8a57610100808354040283529160200191611bb5565b820191906000526020600020905b815481529060010190602001808311611b9857829003601f168201915b50505050509050919050565b6000611bcb61255f565b90506000815111611beb5760405180602001604052806000815250611c19565b80611bf58461256e565b600a604051602001611c0993929190613030565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611c4a5760405162461bcd60e51b8152600401610afa90612e59565b601355565b6008546001600160a01b03163314611c795760405162461bcd60e51b8152600401610afa90612e59565b805161150390600a9060208401906129b6565b6008546001600160a01b03163314611cb65760405162461bcd60e51b8152600401610afa90612e59565b601055565b6008546001600160a01b03163314611ce55760405162461bcd60e51b8152600401610afa90612e59565b600d55565b6008546001600160a01b03163314611d145760405162461bcd60e51b8152600401610afa90612e59565b805161150390600b9060208401906129b6565b6008546001600160a01b03163314611d515760405162461bcd60e51b8152600401610afa90612e59565b6001600160a01b038116611db65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6113408161240b565b6008546001600160a01b03163314611de95760405162461bcd60e51b8152600401610afa90612e59565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314611e315760405162461bcd60e51b8152600401610afa90612e59565b60148054911515620100000262ff000019909216919091179055565b600082611e5a858461266f565b14949350505050565b6115038282604051806020016040528060008152506126db565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ee482612261565b80519091506000906001600160a01b0316336001600160a01b03161480611f1b575033611f1084610e9c565b6001600160a01b0316145b80611f2d57508151611f2d9033610995565b905080611f975760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610afa565b846001600160a01b031682600001516001600160a01b03161461200b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610afa565b6001600160a01b03841661206f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610afa565b61207f6000848460000151611e7d565b6001600160a01b03851660009081526004602052604081208054600192906120b19084906001600160801b03166130f3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926120fd9185911661311b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612185846001612ea4565b6000818152600360205260409020549091506001600160a01b0316612217576121af816000541190565b156122175760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612280826000541190565b6122df5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610afa565b60007f000000000000000000000000000000000000000000000000000000000000000a8310612340576123327f000000000000000000000000000000000000000000000000000000000000000a84612f97565b61233d906001612ea4565b90505b825b8181106123aa576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561239757949350505050565b50806123a281613146565b915050612342565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610afa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561255357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124a190339089908890889060040161315d565b6020604051808303816000875af19250505080156124dc575060408051601f3d908101601f191682019092526124d99181019061319a565b60015b612539573d80801561250a576040519150601f19603f3d011682016040523d82523d6000602084013e61250f565b606091505b5080516000036125315760405162461bcd60e51b8152600401610afa90612fdd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612557565b5060015b949350505050565b606060098054610e1990612f5d565b6060816000036125955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125bf57806125a981612fae565b91506125b89050600a836131cd565b9150612599565b60008167ffffffffffffffff8111156125da576125da612c88565b6040519080825280601f01601f191660200182016040528015612604576020820181803683370190505b5090505b841561255757612619600183612f97565b9150612626600a866131e1565b612631906030612ea4565b60f81b81838151811061264657612646612fc7565b60200101906001600160f81b031916908160001a905350612668600a866131cd565b9450612608565b600081815b84518110156113f857600085828151811061269157612691612fc7565b602002602001015190508083116126b757600083815260208290526040902092506126c8565b600081815260208490526040902092505b50806126d381612fae565b915050612674565b6000546001600160a01b03841661273e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610afa565b612749816000541190565b156127965760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610afa565b7f000000000000000000000000000000000000000000000000000000000000000a8311156128115760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610afa565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061286d90879061311b565b6001600160801b0316815260200185836020015161288b919061311b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129ab5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461296f600088848861245d565b61298b5760405162461bcd60e51b8152600401610afa90612fdd565b8161299581612fae565b92505080806129a390612fae565b915050612922565b506000819055612259565b8280546129c290612f5d565b90600052602060002090601f0160209004810192826129e45760008555612a2a565b82601f106129fd57805160ff1916838001178555612a2a565b82800160010185558215612a2a579182015b82811115612a2a578251825591602001919060010190612a0f565b506114c29291505b808211156114c25760008155600101612a32565b6001600160e01b03198116811461134057600080fd5b600060208284031215612a6e57600080fd5b8135611c1981612a46565b80358015158114612a8957600080fd5b919050565b600060208284031215612aa057600080fd5b611c1982612a79565b600080600060408486031215612abe57600080fd5b83359250602084013567ffffffffffffffff80821115612add57600080fd5b818601915086601f830112612af157600080fd5b813581811115612b0057600080fd5b8760208260051b8501011115612b1557600080fd5b6020830194508093505050509250925092565b60005b83811015612b43578181015183820152602001612b2b565b83811115611a675750506000910152565b60008151808452612b6c816020860160208601612b28565b601f01601f19169290920160200192915050565b602081526000611c196020830184612b54565b600060208284031215612ba557600080fd5b5035919050565b80356001600160a01b0381168114612a8957600080fd5b60008060408385031215612bd657600080fd5b612bdf83612bac565b946020939093013593505050565b600080600060608486031215612c0257600080fd5b612c0b84612bac565b9250612c1960208501612bac565b9150604084013590509250925092565b600060208284031215612c3b57600080fd5b611c1982612bac565b6020808252825182820181905260009190848201906040850190845b81811015612c7c57835183529284019291840191600101612c60565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612cb957612cb9612c88565b604051601f8501601f19908116603f01168101908282118183101715612ce157612ce1612c88565b81604052809350858152868686011115612cfa57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612d2657600080fd5b813567ffffffffffffffff811115612d3d57600080fd5b8201601f81018413612d4e57600080fd5b61255784823560208401612c9e565b60008060408385031215612d7057600080fd5b82359150612d8060208401612bac565b90509250929050565b60008060408385031215612d9c57600080fd5b612da583612bac565b9150612d8060208401612a79565b60008060008060808587031215612dc957600080fd5b612dd285612bac565b9350612de060208601612bac565b925060408501359150606085013567ffffffffffffffff811115612e0357600080fd5b8501601f81018713612e1457600080fd5b612e2387823560208401612c9e565b91505092959194509250565b60008060408385031215612e4257600080fd5b612e4b83612bac565b9150612d8060208401612bac565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eb757612eb7612e8e565b500190565b60208082526021908201527f425054433a204d6178204e4654205065722057616c6c657420657863656564656040820152601960fa1b606082015260800190565b60208082526021908201527f425054433a206e65656420746f206d696e74206174206c656173742031204e466040820152601560fa1b606082015260800190565b6000816000190483118215151615612f5857612f58612e8e565b500290565b600181811c90821680612f7157607f821691505b602082108103612f9157634e487b7160e01b600052602260045260246000fd5b50919050565b600082821015612fa957612fa9612e8e565b500390565b600060018201612fc057612fc0612e8e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206130438285838a01612b28565b8551918401916130568184848a01612b28565b8554920191600090600181811c908083168061307357607f831692505b858310810361309057634e487b7160e01b85526022600452602485fd5b8080156130a457600181146130b5576130e2565b60ff198516885283880195506130e2565b60008b81526020902060005b858110156130da5781548a8201529084019088016130c1565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b038381169083168181101561311357613113612e8e565b039392505050565b60006001600160801b0380831681851680830382111561313d5761313d612e8e565b01949350505050565b60008161315557613155612e8e565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061319090830184612b54565b9695505050505050565b6000602082840312156131ac57600080fd5b8151611c1981612a46565b634e487b7160e01b600052601260045260246000fd5b6000826131dc576131dc6131b7565b500490565b6000826131f0576131f06131b7565b50069056fea2646970667358221220d894b1e747f10ecdccad237b7827088743bc83ca2bbb2fabb50e28cd0189c0a164736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55465939565462786443365166586f455a376f654834783164796b35326375747858416338563867434165652f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d55433173795a71633946734b37624a74724143466d7661564e6b747045664c5478766548704a6170634d38482f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmUFY9VTbxdC6QfXoEZ7oeH4x1dyk52cutxXAc8V8gCAee/
Arg [1] : _initNotRevealedUri (string): ipfs://QmUC1syZqc9FsK7bJtrACFmvaVNktpEfLTxveHpJapcM8H/Hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d55465939565462786443365166586f455a376f65483478
Arg [4] : 3164796b35326375747858416338563867434165652f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d55433173795a71633946734b37624a74724143466d7661
Arg [7] : 564e6b747045664c5478766548704a6170634d38482f48696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48936:5663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49305:33;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;49305:33:0;;;;;;;;36562:370;;;;;;;;;;-1:-1:-1;36562:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36562:370:0;582:187:1;54150:73:0;;;;;;;;;;-1:-1:-1;54150:73:0;;;;;:::i;:::-;;:::i;:::-;;50702:855;;;;;;:::i;:::-;;:::i;38288:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39813:204::-;;;;;;;;;;-1:-1:-1;39813:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2912:32:1;;;2894:51;;2882:2;2867:18;39813:204:0;2748:203:1;49089:28:0;;;;;;;;;;;;;:::i;39376:379::-;;;;;;;;;;-1:-1:-1;39376:379:0;;;;;:::i;:::-;;:::i;49234:30::-;;;;;;;;;;;;;;;;49122:32;;;;;;;;;;;;;;;;53590:94;;;;;;;;;;-1:-1:-1;53590:94:0;;;;;:::i;:::-;;:::i;35122:98::-;;;;;;;;;;;;;:::i;53304:94::-;;;;;;;;;;-1:-1:-1;53304:94:0;;;;;:::i;:::-;;:::i;40663:142::-;;;;;;;;;;-1:-1:-1;40663:142:0;;;;;:::i;:::-;;:::i;34000:37::-;;;;;;;;;;;;;;;49558:94;;;;;;;;;;;;;;;;35754:744;;;;;;;;;;-1:-1:-1;35754:744:0;;;;;:::i;:::-;;:::i;49523:30::-;;;;;;;;;;-1:-1:-1;49523:30:0;;;;;;;;;;;54438:158;;;:::i;40868:157::-;;;;;;;;;;-1:-1:-1;40868:157:0;;;;;:::i;:::-;;:::i;51945:348::-;;;;;;;;;;-1:-1:-1;51945:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53406:80::-;;;;;;;;;;-1:-1:-1;53406:80:0;;;;;:::i;:::-;;:::i;53692:92::-;;;;;;;;;;-1:-1:-1;53692:92:0;;;;;:::i;:::-;;:::i;35289:177::-;;;;;;;;;;-1:-1:-1;35289:177:0;;;;;:::i;:::-;;:::i;49459:28::-;;;;;;;;;;-1:-1:-1;49459:28:0;;;;;;;;;;;53790:98;;;;;;;;;;-1:-1:-1;53790:98:0;;;;;:::i;:::-;;:::i;49492:26::-;;;;;;;;;;-1:-1:-1;49492:26:0;;;;;;;;;;;49429:25;;;;;;;;;;-1:-1:-1;49429:25:0;;;;;;;;38111:118;;;;;;;;;;-1:-1:-1;38111:118:0;;;;;:::i;:::-;;:::i;49021:21::-;;;;;;;;;;;;;:::i;49159:34::-;;;;;;;;;;;;;;;;49377:27;;;;;;;;;;;;;;;;36988:211;;;;;;;;;;-1:-1:-1;36988:211:0;;;;;:::i;:::-;;:::i;14146:103::-;;;;;;;;;;;;;:::i;52894:106::-;;;;;;;;;;-1:-1:-1;52894:106:0;;;;;:::i;:::-;;:::i;51626:305::-;;;;;;;;;;-1:-1:-1;51626:305:0;;;;;:::i;:::-;;:::i;13495:87::-;;;;;;;;;;-1:-1:-1;13568:6:0;;-1:-1:-1;;;;;13568:6:0;13495:87;;38443:98;;;;;;;;;;;;;:::i;50023:671::-;;;;;;:::i;:::-;;:::i;40081:274::-;;;;;;;;;;-1:-1:-1;40081:274:0;;;;;:::i;:::-;;:::i;52819:65::-;;;;;;;;;;;;;:::i;41088:311::-;;;;;;;;;;-1:-1:-1;41088:311:0;;;;;:::i;:::-;;:::i;49269:31::-;;;;;;;;;;;;;;;;53108:96;;;;;;;;;;-1:-1:-1;53108:96:0;;;;;:::i;:::-;;:::i;49047:37::-;;;;;;;;;;;;;:::i;52299:498::-;;;;;;;;;;-1:-1:-1;52299:498:0;;;;;:::i;:::-;;:::i;53210:86::-;;;;;;;;;;-1:-1:-1;53210:86:0;;;;;:::i;:::-;;:::i;49198:31::-;;;;;;;;;;;;;;;;45419:43;;;;;;;;;;;;;;;;49343:29;;;;;;;;;;;;;;;;53894:122;;;;;;;;;;-1:-1:-1;53894:122:0;;;;;:::i;:::-;;:::i;53008:92::-;;;;;;;;;;-1:-1:-1;53008:92:0;;;;;:::i;:::-;;:::i;40418:186::-;;;;;;;;;;-1:-1:-1;40418:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40563:25:0;;;40540:4;40563:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40418:186;53494:88;;;;;;;;;;-1:-1:-1;53494:88:0;;;;;:::i;:::-;;:::i;54024:120::-;;;;;;;;;;-1:-1:-1;54024:120:0;;;;;:::i;:::-;;:::i;14404:201::-;;;;;;;;;;-1:-1:-1;14404:201:0;;;;;:::i;:::-;;:::i;54331:96::-;;;;;;;;;;-1:-1:-1;54331:96:0;;;;;:::i;:::-;;:::i;54233:90::-;;;;;;;;;;-1:-1:-1;54233:90:0;;;;;:::i;:::-;;:::i;36562:370::-;36689:4;-1:-1:-1;;;;;;36719:40:0;;-1:-1:-1;;;36719:40:0;;:99;;-1:-1:-1;;;;;;;36770:48:0;;-1:-1:-1;;;36770:48:0;36719:99;:160;;;-1:-1:-1;;;;;;;36829:50:0;;-1:-1:-1;;;36829:50:0;36719:160;:207;;;-1:-1:-1;;;;;;;;;;26388:40:0;;;36890:36;36705:221;36562:370;-1:-1:-1;;36562:370:0:o;54150:73::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;;;;;;;;;54202:6:::1;:15:::0;;-1:-1:-1;;54202:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54150:73::o;50702:855::-;50803:6;;;;50802:7;50794:49;;;;-1:-1:-1;;;50794:49:0;;8164:2:1;50794:49:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:31;8222:18;;;8215:59;8291:18;;50794:49:0;7962:353:1;50794:49:0;50858:7;;;;;;;50850:52;;;;-1:-1:-1;;;50850:52:0;;8522:2:1;50850:52:0;;;8504:21:1;;;8541:18;;;8534:30;8600:34;8580:18;;;8573:62;8652:18;;50850:52:0;8320:356:1;50850:52:0;50917:84;50936:11;;50917:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50949:10:0;;50971:28;;-1:-1:-1;;50988:10:0;8830:2:1;8826:15;8822:53;50971:28:0;;;8810:66:1;50949:10:0;;-1:-1:-1;8892:12:1;;;-1:-1:-1;50971:28:0;;;;;;;;;;;;50961:39;;;;;;50917:18;:84::i;:::-;50909:139;;;;-1:-1:-1;;;50909:139:0;;9117:2:1;50909:139:0;;;9099:21:1;9156:2;9136:18;;;9129:30;9195:34;9175:18;;;9168:62;-1:-1:-1;;;9246:18:1;;;9239:40;9296:19;;50909:139:0;8915:406:1;50909:139:0;51055:14;51072:13;:11;:13::i;:::-;51055:30;-1:-1:-1;51092:23:0;51118;12299:10;36988:211;:::i;51118:23::-;51184:14;;51092:49;;-1:-1:-1;51156:24:0;51174:6;51092:49;51156:24;:::i;:::-;:42;;51148:88;;;;-1:-1:-1;;;51148:88:0;;;;;;;:::i;:::-;51260:1;51251:6;:10;51243:56;;;;-1:-1:-1;;;51243:56:0;;;;;;;:::i;:::-;51324:7;;51314:6;:17;;51306:60;;;;-1:-1:-1;;;51306:60:0;;10597:2:1;51306:60:0;;;10579:21:1;10636:2;10616:18;;;10609:30;10675:32;10655:18;;;10648:60;10725:18;;51306:60:0;10395:354:1;51306:60:0;51400:8;;51381:15;51390:6;51381;:15;:::i;:::-;:27;;51373:64;;;;-1:-1:-1;;;51373:64:0;;10956:2:1;51373:64:0;;;10938:21:1;10995:2;10975:18;;;10968:30;11034:26;11014:18;;;11007:54;11078:18;;51373:64:0;10754:348:1;51373:64:0;51474:6;51465;;:15;;;;:::i;:::-;51452:9;:28;;51444:59;;;;-1:-1:-1;;;51444:59:0;;11482:2:1;51444:59:0;;;11464:21:1;11521:2;11501:18;;;11494:30;-1:-1:-1;;;11540:18:1;;;11533:48;11598:18;;51444:59:0;11280:342:1;51444:59:0;51514:31;12299:10;51538:6;51514:9;:31::i;:::-;50787:770;;50702:855;;;:::o;38288:94::-;38342:13;38371:5;38364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38288:94;:::o;39813:204::-;39881:7;39905:16;39913:7;41695:4;41725:12;-1:-1:-1;41715:22:0;41638:105;39905:16;39897:74;;;;-1:-1:-1;;;39897:74:0;;12214:2:1;39897:74:0;;;12196:21:1;12253:2;12233:18;;;12226:30;12292:34;12272:18;;;12265:62;-1:-1:-1;;;12343:18:1;;;12336:43;12396:19;;39897:74:0;12012:409:1;39897:74:0;-1:-1:-1;39987:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39987:24:0;;39813:204::o;49089:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39376:379::-;39445:13;39461:24;39477:7;39461:15;:24::i;:::-;39445:40;;39506:5;-1:-1:-1;;;;;39500:11:0;:2;-1:-1:-1;;;;;39500:11:0;;39492:58;;;;-1:-1:-1;;;39492:58:0;;12628:2:1;39492:58:0;;;12610:21:1;12667:2;12647:18;;;12640:30;12706:34;12686:18;;;12679:62;-1:-1:-1;;;12757:18:1;;;12750:32;12799:19;;39492:58:0;12426:398:1;39492:58:0;12299:10;-1:-1:-1;;;;;39575:21:0;;;;:62;;-1:-1:-1;39600:37:0;39617:5;12299:10;40418:186;:::i;39600:37::-;39559:153;;;;-1:-1:-1;;;39559:153:0;;13031:2:1;39559:153:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:34;13089:18;;;13082:62;13180:27;13160:18;;;13153:55;13225:19;;39559:153:0;12829:421:1;39559:153:0;39721:28;39730:2;39734:7;39743:5;39721:8;:28::i;:::-;39438:317;39376:379;;:::o;53590:94::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53656:9:::1;:22:::0;53590:94::o;35122:98::-;35175:7;35213:1;35198:12;;:16;;;;:::i;:::-;35191:23;;35122:98;:::o;53304:94::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53370:10:::1;:22:::0;53304:94::o;40663:142::-;40771:28;40781:4;40787:2;40791:7;40771:9;:28::i;35754:744::-;35863:7;35898:16;35908:5;35898:9;:16::i;:::-;35890:5;:24;35882:71;;;;-1:-1:-1;;;35882:71:0;;13587:2:1;35882:71:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:32;13758:19;;35882:71:0;13385:398:1;35882:71:0;35960:22;35985:13;:11;:13::i;:::-;35960:38;;36005:19;36035:25;36085:9;36080:350;36104:14;36100:1;:18;36080:350;;;36134:31;36168:14;;;:11;:14;;;;;;;;;36134:48;;;;;;;;;-1:-1:-1;;;;;36134:48:0;;;;;-1:-1:-1;;;36134:48:0;;;;;;;;;;;;36195:28;36191:89;;36256:14;;;-1:-1:-1;36191:89:0;36313:5;-1:-1:-1;;;;;36292:26:0;:17;-1:-1:-1;;;;;36292:26:0;;36288:135;;36350:5;36335:11;:20;36331:59;;-1:-1:-1;36377:1:0;-1:-1:-1;36370:8:0;;-1:-1:-1;;;36370:8:0;36331:59;36400:13;;;;:::i;:::-;;;;36288:135;-1:-1:-1;36120:3:0;;;;:::i;:::-;;;;36080:350;;;-1:-1:-1;36436:56:0;;-1:-1:-1;;;36436:56:0;;14130:2:1;36436:56:0;;;14112:21:1;14169:2;14149:18;;;14142:30;14208:34;14188:18;;;14181:62;-1:-1:-1;;;14259:18:1;;;14252:44;14313:19;;36436:56:0;13928:410:1;54438:158:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54509:58:::1;::::0;54491:12:::1;::::0;54517:10:::1;::::0;54541:21:::1;::::0;54491:12;54509:58;54491:12;54509:58;54541:21;54517:10;54509:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54490:77;;;54582:7;54574:16;;;::::0;::::1;;54483:113;54438:158::o:0;40868:157::-;40980:39;40997:4;41003:2;41007:7;40980:39;;;;;;;;;;;;:16;:39::i;51945:348::-;52020:16;52048:23;52074:17;52084:6;52074:9;:17::i;:::-;52048:43;;52098:25;52140:15;52126:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52126:30:0;;52098:58;;52168:9;52163:103;52183:15;52179:1;:19;52163:103;;;52228:30;52248:6;52256:1;52228:19;:30::i;:::-;52214:8;52223:1;52214:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52200:3;;;;:::i;:::-;;;;52163:103;;;-1:-1:-1;52279:8:0;51945:348;-1:-1:-1;;;51945:348:0:o;53406:80::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53465:4:::1;:15:::0;53406:80::o;53692:92::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53757:8:::1;:21:::0;53692:92::o;35289:177::-;35356:7;35388:13;:11;:13::i;:::-;35380:5;:21;35372:69;;;;-1:-1:-1;;;35372:69:0;;14887:2:1;35372:69:0;;;14869:21:1;14926:2;14906:18;;;14899:30;14965:34;14945:18;;;14938:62;-1:-1:-1;;;15016:18:1;;;15009:33;15059:19;;35372:69:0;14685:399:1;35372:69:0;-1:-1:-1;35455:5:0;35289:177::o;53790:98::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53861:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53790:98:::0;:::o;38111:118::-;38175:7;38198:20;38210:7;38198:11;:20::i;:::-;:25;;38111:118;-1:-1:-1;;38111:118:0:o;49021:21::-;;;;;;;:::i;36988:211::-;37052:7;-1:-1:-1;;;;;37076:19:0;;37068:75;;;;-1:-1:-1;;;37068:75:0;;15291:2:1;37068:75:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:41;15471:19;;37068:75:0;15089:407:1;37068:75:0;-1:-1:-1;;;;;;37165:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37165:27:0;;36988:211::o;14146:103::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;14211:30:::1;14238:1;14211:18;:30::i;:::-;14146:103::o:0;52894:106::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;52968:10:::1;:24:::0;52894:106::o;51626:305::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;51728:1:::1;51714:11;:15;51706:55;;;::::0;-1:-1:-1;;;51706:55:0;;15703:2:1;51706:55:0::1;::::0;::::1;15685:21:1::0;15742:2;15722:18;;;15715:30;15781:29;15761:18;;;15754:57;15828:18;;51706:55:0::1;15501:351:1::0;51706:55:0::1;51768:14;51785:13;:11;:13::i;:::-;51837:9;::::0;51768:30;;-1:-1:-1;51813:20:0::1;51822:11:::0;51768:30;51813:20:::1;:::i;:::-;:33;;51805:68;;;::::0;-1:-1:-1;;;51805:68:0;;16059:2:1;51805:68:0::1;::::0;::::1;16041:21:1::0;16098:2;16078:18;;;16071:30;-1:-1:-1;;;16117:18:1;;;16110:52;16179:18;;51805:68:0::1;15857:346:1::0;51805:68:0::1;51884:35;51894:11;51907;51884:9;:35::i;38443:98::-:0;38499:13;38528:7;38521:14;;;;;:::i;50023:671::-;50084:6;;;;50083:7;50075:49;;;;-1:-1:-1;;;50075:49:0;;8164:2:1;50075:49:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:31;8222:18;;;8215:59;8291:18;;50075:49:0;7962:353:1;50075:49:0;50139:10;;;;;;;50131:52;;;;-1:-1:-1;;;50131:52:0;;16410:2:1;50131:52:0;;;16392:21:1;16449:2;16429:18;;;16422:30;16488:31;16468:18;;;16461:59;16537:18;;50131:52:0;16208:353:1;50131:52:0;50190:14;50207:13;:11;:13::i;:::-;50190:30;-1:-1:-1;50227:23:0;50253;12299:10;36988:211;:::i;50253:23::-;50227:49;;50300:1;50291:6;:10;50283:56;;;;-1:-1:-1;;;50283:56:0;;;;;;;:::i;:::-;50364:7;;50354:6;:17;;50346:67;;;;-1:-1:-1;;;50346:67:0;;16768:2:1;50346:67:0;;;16750:21:1;16807:2;16787:18;;;16780:30;16846:34;16826:18;;;16819:62;-1:-1:-1;;;16897:18:1;;;16890:35;16942:19;;50346:67:0;16566:401:1;50346:67:0;50447:9;;50428:15;50437:6;50428;:15;:::i;:::-;:28;;50420:57;;;;-1:-1:-1;;;50420:57:0;;17174:2:1;50420:57:0;;;17156:21:1;17213:2;17193:18;;;17186:30;-1:-1:-1;;;17232:18:1;;;17225:46;17288:18;;50420:57:0;16972:340:1;50420:57:0;50520:12;;50492:24;50510:6;50492:15;:24;:::i;:::-;:40;;50484:86;;;;-1:-1:-1;;;50484:86:0;;;;;;;:::i;:::-;50605:6;50598:4;;:13;;;;:::i;:::-;50585:9;:26;;50577:63;;;;-1:-1:-1;;;50577:63:0;;17519:2:1;50577:63:0;;;17501:21:1;17558:2;17538:18;;;17531:30;17597:26;17577:18;;;17570:54;17641:18;;50577:63:0;17317:348:1;50577:63:0;50651:31;12299:10;50675:6;50651:9;:31::i;40081:274::-;12299:10;-1:-1:-1;;;;;40172:24:0;;;40164:63;;;;-1:-1:-1;;;40164:63:0;;17872:2:1;40164:63:0;;;17854:21:1;17911:2;17891:18;;;17884:30;17950:28;17930:18;;;17923:56;17996:18;;40164:63:0;17670:350:1;40164:63:0;12299:10;40236:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40236:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40236:53:0;;;;;;;;;;40301:48;;722:41:1;;;40236:42:0;;12299:10;40301:48;;695:18:1;40301:48:0;;;;;;;40081:274;;:::o;52819:65::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;52863:8:::1;:15:::0;;-1:-1:-1;;52863:15:0::1;;;::::0;;52819:65::o;41088:311::-;41225:28;41235:4;41241:2;41245:7;41225:9;:28::i;:::-;41276:48;41299:4;41305:2;41309:7;41318:5;41276:22;:48::i;:::-;41260:133;;;;-1:-1:-1;;;41260:133:0;;;;;;;:::i;:::-;41088:311;;;;:::o;53108:96::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53175:14:::1;:23:::0;53108:96::o;49047:37::-;;;;;;;:::i;52299:498::-;52397:13;52438:16;52446:7;41695:4;41725:12;-1:-1:-1;41715:22:0;41638:105;52438:16;52422:98;;;;-1:-1:-1;;;52422:98:0;;18647:2:1;52422:98:0;;;18629:21:1;18686:2;18666:18;;;18659:30;18725:34;18705:18;;;18698:62;-1:-1:-1;;;18776:18:1;;;18769:46;18832:19;;52422:98:0;18445:412:1;52422:98:0;52536:8;;;;;;;:17;;52548:5;52536:17;52533:62;;52573:14;52566:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52299:498;;;:::o;52533:62::-;52603:28;52634:10;:8;:10::i;:::-;52603:41;;52689:1;52664:14;52658:28;:32;:133;;;;;;;;;;;;;;;;;52726:14;52742:18;:7;:16;:18::i;:::-;52762:13;52709:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52658:133;52651:140;52299:498;-1:-1:-1;;;52299:498:0:o;53210:86::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53272:7:::1;:18:::0;53210:86::o;53894:122::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53977:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;53008:92::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53073:12:::1;:21:::0;53008:92::o;53494:88::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;53557:6:::1;:19:::0;53494:88::o;54024:120::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54106:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14404:201::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14493:22:0;::::1;14485:73;;;::::0;-1:-1:-1;;;14485:73:0;;20722:2:1;14485:73:0::1;::::0;::::1;20704:21:1::0;20761:2;20741:18;;;20734:30;20800:34;20780:18;;;20773:62;-1:-1:-1;;;20851:18:1;;;20844:36;20897:19;;14485:73:0::1;20520:402:1::0;14485:73:0::1;14569:28;14588:8;14569:18;:28::i;54331:96::-:0;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54400:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54400:19:0;;::::1;::::0;;;::::1;::::0;;54331:96::o;54233:90::-;13568:6;;-1:-1:-1;;;;;13568:6:0;12299:10;13715:23;13707:68;;;;-1:-1:-1;;;13707:68:0;;;;;;;:::i;:::-;54299:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54299:16:0;;::::1;::::0;;;::::1;::::0;;54233:90::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;41749:98::-;41814:27;41824:2;41828:8;41814:27;;;;;;;;;;;;:9;:27::i;45241:172::-;45338:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45338:29:0;-1:-1:-1;;;;;45338:29:0;;;;;;;;;45379:28;;45338:24;;45379:28;;;;;;;45241:172;;;:::o;43606:1529::-;43703:35;43741:20;43753:7;43741:11;:20::i;:::-;43812:18;;43703:58;;-1:-1:-1;43770:22:0;;-1:-1:-1;;;;;43796:34:0;12299:10;-1:-1:-1;;;;;43796:34:0;;:81;;;-1:-1:-1;12299:10:0;43841:20;43853:7;43841:11;:20::i;:::-;-1:-1:-1;;;;;43841:36:0;;43796:81;:142;;;-1:-1:-1;43905:18:0;;43888:50;;12299:10;40418:186;:::i;43888:50::-;43770:169;;43964:17;43948:101;;;;-1:-1:-1;;;43948:101:0;;21129:2:1;43948:101:0;;;21111:21:1;21168:2;21148:18;;;21141:30;21207:34;21187:18;;;21180:62;-1:-1:-1;;;21258:18:1;;;21251:48;21316:19;;43948:101:0;20927:414:1;43948:101:0;44096:4;-1:-1:-1;;;;;44074:26:0;:13;:18;;;-1:-1:-1;;;;;44074:26:0;;44058:98;;;;-1:-1:-1;;;44058:98:0;;21548:2:1;44058:98:0;;;21530:21:1;21587:2;21567:18;;;21560:30;21626:34;21606:18;;;21599:62;-1:-1:-1;;;21677:18:1;;;21670:36;21723:19;;44058:98:0;21346:402:1;44058:98:0;-1:-1:-1;;;;;44171:16:0;;44163:66;;;;-1:-1:-1;;;44163:66:0;;21955:2:1;44163:66:0;;;21937:21:1;21994:2;21974:18;;;21967:30;22033:34;22013:18;;;22006:62;-1:-1:-1;;;22084:18:1;;;22077:35;22129:19;;44163:66:0;21753:401:1;44163:66:0;44338:49;44355:1;44359:7;44368:13;:18;;;44338:8;:49::i;:::-;-1:-1:-1;;;;;44396:18:0;;;;;;:12;:18;;;;;:31;;44426:1;;44396:18;:31;;44426:1;;-1:-1:-1;;;;;44396:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44396:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44434:16:0;;-1:-1:-1;44434:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44434:16:0;;:29;;-1:-1:-1;;44434:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44434:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44493:43:0;;;;;;;;-1:-1:-1;;;;;44493:43:0;;;;;;44519:15;44493:43;;;;;;;;;-1:-1:-1;44470:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44470:66:0;-1:-1:-1;;;;;;44470:66:0;;;;;;;;;;;44786:11;44482:7;-1:-1:-1;44786:11:0;:::i;:::-;44849:1;44808:24;;;:11;:24;;;;;:29;44764:33;;-1:-1:-1;;;;;;44808:29:0;44804:236;;44866:20;44874:11;41695:4;41725:12;-1:-1:-1;41715:22:0;41638:105;44866:20;44862:171;;;44926:97;;;;;;;;44953:18;;-1:-1:-1;;;;;44926:97:0;;;;;;44984:28;;;;44926:97;;;;;;;;;;-1:-1:-1;44899:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;44899:124:0;-1:-1:-1;;;;;;44899:124:0;;;;;;;;;;;;44862:171;45072:7;45068:2;-1:-1:-1;;;;;45053:27:0;45062:4;-1:-1:-1;;;;;45053:27:0;;;;;;;;;;;45087:42;43696:1439;;;43606:1529;;;:::o;37451:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;37568:16:0;37576:7;41695:4;41725:12;-1:-1:-1;41715:22:0;41638:105;37568:16;37560:71;;;;-1:-1:-1;;;37560:71:0;;22870:2:1;37560:71:0;;;22852:21:1;22909:2;22889:18;;;22882:30;22948:34;22928:18;;;22921:62;-1:-1:-1;;;22999:18:1;;;22992:40;23049:19;;37560:71:0;22668:406:1;37560:71:0;37640:26;37688:12;37677:7;:23;37673:93;;37732:22;37742:12;37732:7;:22;:::i;:::-;:26;;37757:1;37732:26;:::i;:::-;37711:47;;37673:93;37794:7;37774:212;37811:18;37803:4;:26;37774:212;;37848:31;37882:17;;;:11;:17;;;;;;;;;37848:51;;;;;;;;;-1:-1:-1;;;;;37848:51:0;;;;;-1:-1:-1;;;37848:51:0;;;;;;;;;;;;37912:28;37908:71;;37960:9;37451:606;-1:-1:-1;;;;37451:606:0:o;37908:71::-;-1:-1:-1;37831:6:0;;;;:::i;:::-;;;;37774:212;;;-1:-1:-1;37994:57:0;;-1:-1:-1;;;37994:57:0;;23422:2:1;37994:57:0;;;23404:21:1;23461:2;23441:18;;;23434:30;23500:34;23480:18;;;23473:62;-1:-1:-1;;;23551:18:1;;;23544:45;23606:19;;37994:57:0;23220:411:1;14765:191:0;14858:6;;;-1:-1:-1;;;;;14875:17:0;;;-1:-1:-1;;;;;;14875:17:0;;;;;;;14908:40;;14858:6;;;14875:17;14858:6;;14908:40;;14839:16;;14908:40;14828:128;14765:191;:::o;46952:690::-;47089:4;-1:-1:-1;;;;;47106:13:0;;16491:19;:23;47102:535;;47145:72;;-1:-1:-1;;;47145:72:0;;-1:-1:-1;;;;;47145:36:0;;;;;:72;;12299:10;;47196:4;;47202:7;;47211:5;;47145:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47145:72:0;;;;;;;;-1:-1:-1;;47145:72:0;;;;;;;;;;;;:::i;:::-;;;47132:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47376:6;:13;47393:1;47376:18;47372:215;;47409:61;;-1:-1:-1;;;47409:61:0;;;;;;;:::i;47372:215::-;47555:6;47549:13;47540:6;47536:2;47532:15;47525:38;47132:464;-1:-1:-1;;;;;;47267:55:0;-1:-1:-1;;;47267:55:0;;-1:-1:-1;47260:62:0;;47102:535;-1:-1:-1;47625:4:0;47102:535;46952:690;;;;;;:::o;49902:102::-;49962:13;49991:7;49984:14;;;;;:::i;9781:723::-;9837:13;10058:5;10067:1;10058:10;10054:53;;-1:-1:-1;;10085:10:0;;;;;;;;;;;;-1:-1:-1;;;10085:10:0;;;;;9781:723::o;10054:53::-;10132:5;10117:12;10173:78;10180:9;;10173:78;;10206:8;;;;:::i;:::-;;-1:-1:-1;10229:10:0;;-1:-1:-1;10237:2:0;10229:10;;:::i;:::-;;;10173:78;;;10261:19;10293:6;10283:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10283:17:0;;10261:39;;10311:154;10318:10;;10311:154;;10345:11;10355:1;10345:11;;:::i;:::-;;-1:-1:-1;10414:10:0;10422:2;10414:5;:10;:::i;:::-;10401:24;;:2;:24;:::i;:::-;10388:39;;10371:6;10378;10371:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10371:56:0;;;;;;;;-1:-1:-1;10442:11:0;10451:2;10442:11;;:::i;:::-;;;10311:154;;1475:675;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;42102:1272;42207:20;42230:12;-1:-1:-1;;;;;42257:16:0;;42249:62;;;;-1:-1:-1;;;42249:62:0;;24960:2:1;42249:62:0;;;24942:21:1;24999:2;24979:18;;;24972:30;25038:34;25018:18;;;25011:62;-1:-1:-1;;;25089:18:1;;;25082:31;25130:19;;42249:62:0;24758:397:1;42249:62:0;42448:21;42456:12;41695:4;41725:12;-1:-1:-1;41715:22:0;41638:105;42448:21;42447:22;42439:64;;;;-1:-1:-1;;;42439:64:0;;25362:2:1;42439:64:0;;;25344:21:1;25401:2;25381:18;;;25374:30;25440:31;25420:18;;;25413:59;25489:18;;42439:64:0;25160:353:1;42439:64:0;42530:12;42518:8;:24;;42510:71;;;;-1:-1:-1;;;42510:71:0;;25720:2:1;42510:71:0;;;25702:21:1;25759:2;25739:18;;;25732:30;25798:34;25778:18;;;25771:62;-1:-1:-1;;;25849:18:1;;;25842:32;25891:19;;42510:71:0;25518:398:1;42510:71:0;-1:-1:-1;;;;;42693:16:0;;42660:30;42693:16;;;:12;:16;;;;;;;;;42660:49;;;;;;;;;-1:-1:-1;;;;;42660:49:0;;;;;-1:-1:-1;;;42660:49:0;;;;;;;;;;;42735:119;;;;;;;;42755:19;;42660:49;;42735:119;;;42755:39;;42785:8;;42755:39;:::i;:::-;-1:-1:-1;;;;;42735:119:0;;;;;42838:8;42803:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;42735:119:0;;;;;;-1:-1:-1;;;;;42716:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;42716:138:0;;;;;;;;;;;;42889:43;;;;;;;;;;;42915:15;42889:43;;;;;;;;42861:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;42861:71:0;-1:-1:-1;;;;;;42861:71:0;;;;;;;;;;;;;;;;;;42873:12;;42985:281;43009:8;43005:1;:12;42985:281;;;43038:38;;43063:12;;-1:-1:-1;;;;;43038:38:0;;;43055:1;;43038:38;;43055:1;;43038:38;43103:59;43134:1;43138:2;43142:12;43156:5;43103:22;:59::i;:::-;43085:150;;;;-1:-1:-1;;;43085:150:0;;;;;;;:::i;:::-;43244:14;;;;:::i;:::-;;;;43019:3;;;;;:::i;:::-;;;;42985:281;;;-1:-1:-1;43274:12:0;:27;;;43308:60;41088:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:683::-;1219:6;1227;1235;1288:2;1276:9;1267:7;1263:23;1259:32;1256:52;;;1304:1;1301;1294:12;1256:52;1340:9;1327:23;1317:33;;1401:2;1390:9;1386:18;1373:32;1424:18;1465:2;1457:6;1454:14;1451:34;;;1481:1;1478;1471:12;1451:34;1519:6;1508:9;1504:22;1494:32;;1564:7;1557:4;1553:2;1549:13;1545:27;1535:55;;1586:1;1583;1576:12;1535:55;1626:2;1613:16;1652:2;1644:6;1641:14;1638:34;;;1668:1;1665;1658:12;1638:34;1721:7;1716:2;1706:6;1703:1;1699:14;1695:2;1691:23;1687:32;1684:45;1681:65;;;1742:1;1739;1732:12;1681:65;1773:2;1769;1765:11;1755:21;;1795:6;1785:16;;;;;1124:683;;;;;:::o;1812:258::-;1884:1;1894:113;1908:6;1905:1;1902:13;1894:113;;;1984:11;;;1978:18;1965:11;;;1958:39;1930:2;1923:10;1894:113;;;2025:6;2022:1;2019:13;2016:48;;;-1:-1:-1;;2060:1:1;2042:16;;2035:27;1812:258::o;2075:::-;2117:3;2155:5;2149:12;2182:6;2177:3;2170:19;2198:63;2254:6;2247:4;2242:3;2238:14;2231:4;2224:5;2220:16;2198:63;:::i;:::-;2315:2;2294:15;-1:-1:-1;;2290:29:1;2281:39;;;;2322:4;2277:50;;2075:258;-1:-1:-1;;2075:258:1:o;2338:220::-;2487:2;2476:9;2469:21;2450:4;2507:45;2548:2;2537:9;2533:18;2525:6;2507:45;:::i;2563:180::-;2622:6;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;-1:-1:-1;2714:23:1;;2563:180;-1:-1:-1;2563:180:1:o;2956:173::-;3024:20;;-1:-1:-1;;;;;3073:31:1;;3063:42;;3053:70;;3119:1;3116;3109:12;3134:254;3202:6;3210;3263:2;3251:9;3242:7;3238:23;3234:32;3231:52;;;3279:1;3276;3269:12;3231:52;3302:29;3321:9;3302:29;:::i;:::-;3292:39;3378:2;3363:18;;;;3350:32;;-1:-1:-1;;;3134:254:1:o;3393:328::-;3470:6;3478;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3578:29;3597:9;3578:29;:::i;:::-;3568:39;;3626:38;3660:2;3649:9;3645:18;3626:38;:::i;:::-;3616:48;;3711:2;3700:9;3696:18;3683:32;3673:42;;3393:328;;;;;:::o;3908:186::-;3967:6;4020:2;4008:9;3999:7;3995:23;3991:32;3988:52;;;4036:1;4033;4026:12;3988:52;4059:29;4078:9;4059:29;:::i;4099:632::-;4270:2;4322:21;;;4392:13;;4295:18;;;4414:22;;;4241:4;;4270:2;4493:15;;;;4467:2;4452:18;;;4241:4;4536:169;4550:6;4547:1;4544:13;4536:169;;;4611:13;;4599:26;;4680:15;;;;4645:12;;;;4572:1;4565:9;4536:169;;;-1:-1:-1;4722:3:1;;4099:632;-1:-1:-1;;;;;;4099:632:1:o;4736:127::-;4797:10;4792:3;4788:20;4785:1;4778:31;4828:4;4825:1;4818:15;4852:4;4849:1;4842:15;4868:632;4933:5;4963:18;5004:2;4996:6;4993:14;4990:40;;;5010:18;;:::i;:::-;5085:2;5079:9;5053:2;5139:15;;-1:-1:-1;;5135:24:1;;;5161:2;5131:33;5127:42;5115:55;;;5185:18;;;5205:22;;;5182:46;5179:72;;;5231:18;;:::i;:::-;5271:10;5267:2;5260:22;5300:6;5291:15;;5330:6;5322;5315:22;5370:3;5361:6;5356:3;5352:16;5349:25;5346:45;;;5387:1;5384;5377:12;5346:45;5437:6;5432:3;5425:4;5417:6;5413:17;5400:44;5492:1;5485:4;5476:6;5468;5464:19;5460:30;5453:41;;;;4868:632;;;;;:::o;5505:451::-;5574:6;5627:2;5615:9;5606:7;5602:23;5598:32;5595:52;;;5643:1;5640;5633:12;5595:52;5683:9;5670:23;5716:18;5708:6;5705:30;5702:50;;;5748:1;5745;5738:12;5702:50;5771:22;;5824:4;5816:13;;5812:27;-1:-1:-1;5802:55:1;;5853:1;5850;5843:12;5802:55;5876:74;5942:7;5937:2;5924:16;5919:2;5915;5911:11;5876:74;:::i;6146:254::-;6214:6;6222;6275:2;6263:9;6254:7;6250:23;6246:32;6243:52;;;6291:1;6288;6281:12;6243:52;6327:9;6314:23;6304:33;;6356:38;6390:2;6379:9;6375:18;6356:38;:::i;:::-;6346:48;;6146:254;;;;;:::o;6405:::-;6470:6;6478;6531:2;6519:9;6510:7;6506:23;6502:32;6499:52;;;6547:1;6544;6537:12;6499:52;6570:29;6589:9;6570:29;:::i;:::-;6560:39;;6618:35;6649:2;6638:9;6634:18;6618:35;:::i;6664:667::-;6759:6;6767;6775;6783;6836:3;6824:9;6815:7;6811:23;6807:33;6804:53;;;6853:1;6850;6843:12;6804:53;6876:29;6895:9;6876:29;:::i;:::-;6866:39;;6924:38;6958:2;6947:9;6943:18;6924:38;:::i;:::-;6914:48;;7009:2;6998:9;6994:18;6981:32;6971:42;;7064:2;7053:9;7049:18;7036:32;7091:18;7083:6;7080:30;7077:50;;;7123:1;7120;7113:12;7077:50;7146:22;;7199:4;7191:13;;7187:27;-1:-1:-1;7177:55:1;;7228:1;7225;7218:12;7177:55;7251:74;7317:7;7312:2;7299:16;7294:2;7290;7286:11;7251:74;:::i;:::-;7241:84;;;6664:667;;;;;;;:::o;7336:260::-;7404:6;7412;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;7504:29;7523:9;7504:29;:::i;:::-;7494:39;;7552:38;7586:2;7575:9;7571:18;7552:38;:::i;7601:356::-;7803:2;7785:21;;;7822:18;;;7815:30;7881:34;7876:2;7861:18;;7854:62;7948:2;7933:18;;7601:356::o;9326:127::-;9387:10;9382:3;9378:20;9375:1;9368:31;9418:4;9415:1;9408:15;9442:4;9439:1;9432:15;9458:128;9498:3;9529:1;9525:6;9522:1;9519:13;9516:39;;;9535:18;;:::i;:::-;-1:-1:-1;9571:9:1;;9458:128::o;9591:397::-;9793:2;9775:21;;;9832:2;9812:18;;;9805:30;9871:34;9866:2;9851:18;;9844:62;-1:-1:-1;;;9937:2:1;9922:18;;9915:31;9978:3;9963:19;;9591:397::o;9993:::-;10195:2;10177:21;;;10234:2;10214:18;;;10207:30;10273:34;10268:2;10253:18;;10246:62;-1:-1:-1;;;10339:2:1;10324:18;;10317:31;10380:3;10365:19;;9993:397::o;11107:168::-;11147:7;11213:1;11209;11205:6;11201:14;11198:1;11195:21;11190:1;11183:9;11176:17;11172:45;11169:71;;;11220:18;;:::i;:::-;-1:-1:-1;11260:9:1;;11107:168::o;11627:380::-;11706:1;11702:12;;;;11749;;;11770:61;;11824:4;11816:6;11812:17;11802:27;;11770:61;11877:2;11869:6;11866:14;11846:18;11843:38;11840:161;;11923:10;11918:3;11914:20;11911:1;11904:31;11958:4;11955:1;11948:15;11986:4;11983:1;11976:15;11840:161;;11627:380;;;:::o;13255:125::-;13295:4;13323:1;13320;13317:8;13314:34;;;13328:18;;:::i;:::-;-1:-1:-1;13365:9:1;;13255:125::o;13788:135::-;13827:3;13848:17;;;13845:43;;13868:18;;:::i;:::-;-1:-1:-1;13915:1:1;13904:13;;13788:135::o;14553:127::-;14614:10;14609:3;14605:20;14602:1;14595:31;14645:4;14642:1;14635:15;14669:4;14666:1;14659:15;18025:415;18227:2;18209:21;;;18266:2;18246:18;;;18239:30;18305:34;18300:2;18285:18;;18278:62;-1:-1:-1;;;18371:2:1;18356:18;;18349:49;18430:3;18415:19;;18025:415::o;18988:1527::-;19212:3;19250:6;19244:13;19276:4;19289:51;19333:6;19328:3;19323:2;19315:6;19311:15;19289:51;:::i;:::-;19403:13;;19362:16;;;;19425:55;19403:13;19362:16;19447:15;;;19425:55;:::i;:::-;19569:13;;19502:20;;;19542:1;;19629;19651:18;;;;19704;;;;19731:93;;19809:4;19799:8;19795:19;19783:31;;19731:93;19872:2;19862:8;19859:16;19839:18;19836:40;19833:167;;-1:-1:-1;;;19899:33:1;;19955:4;19952:1;19945:15;19985:4;19906:3;19973:17;19833:167;20016:18;20043:110;;;;20167:1;20162:328;;;;20009:481;;20043:110;-1:-1:-1;;20078:24:1;;20064:39;;20123:20;;;;-1:-1:-1;20043:110:1;;20162:328;18935:1;18928:14;;;18972:4;18959:18;;20257:1;20271:169;20285:8;20282:1;20279:15;20271:169;;;20367:14;;20352:13;;;20345:37;20410:16;;;;20302:10;;20271:169;;;20275:3;;20471:8;20464:5;20460:20;20453:27;;20009:481;-1:-1:-1;20506:3:1;;18988:1527;-1:-1:-1;;;;;;;;;;;18988:1527:1:o;22159:246::-;22199:4;-1:-1:-1;;;;;22312:10:1;;;;22282;;22334:12;;;22331:38;;;22349:18;;:::i;:::-;22386:13;;22159:246;-1:-1:-1;;;22159:246:1:o;22410:253::-;22450:3;-1:-1:-1;;;;;22539:2:1;22536:1;22532:10;22569:2;22566:1;22562:10;22600:3;22596:2;22592:12;22587:3;22584:21;22581:47;;;22608:18;;:::i;:::-;22644:13;;22410:253;-1:-1:-1;;;;22410:253:1:o;23079:136::-;23118:3;23146:5;23136:39;;23155:18;;:::i;:::-;-1:-1:-1;;;23191:18:1;;23079:136::o;23636:489::-;-1:-1:-1;;;;;23905:15:1;;;23887:34;;23957:15;;23952:2;23937:18;;23930:43;24004:2;23989:18;;23982:34;;;24052:3;24047:2;24032:18;;24025:31;;;23830:4;;24073:46;;24099:19;;24091:6;24073:46;:::i;:::-;24065:54;23636:489;-1:-1:-1;;;;;;23636:489:1:o;24130:249::-;24199:6;24252:2;24240:9;24231:7;24227:23;24223:32;24220:52;;;24268:1;24265;24258:12;24220:52;24300:9;24294:16;24319:30;24343:5;24319:30;:::i;24384:127::-;24445:10;24440:3;24436:20;24433:1;24426:31;24476:4;24473:1;24466:15;24500:4;24497:1;24490:15;24516:120;24556:1;24582;24572:35;;24587:18;;:::i;:::-;-1:-1:-1;24621:9:1;;24516:120::o;24641:112::-;24673:1;24699;24689:35;;24704:18;;:::i;:::-;-1:-1:-1;24738:9:1;;24641:112::o

Swarm Source

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