ETH Price: $3,152.84 (+1.07%)
Gas: 2 Gwei

Token

CrypTurtz (TURTZ)
 

Overview

Max Total Supply

423 TURTZ

Holders

232

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
fsmh.eth
Balance
1 TURTZ
0x896962d5bbf05b9850d7c68a17e91b929690f29a
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:
CrypTurtz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-28
*/

// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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



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



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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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



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



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



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



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



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 tokenId);

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



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: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/CrypTurtz.sol


/**

                        @@@@TTTTTTTT@@@@
                    @@@@                @@@@
                @@@@                        @@@@
            @@@@                                @@@@
          @@                                        @@
          @@             *** TURTZ ***              @@
        @@                                            @@
        @@                                            @@
          @@@@@@                                @@@@@@
          @@    @@                            @@    @@
            @@    @@@@      TTTTTTTT       @@@@    @@
              @@      @@@@@@        @@@@@@      @@
                @@@@                        @@@@
                    @@@@@@@@        @@@@@@@@
                            TTTTTTTT                  */

/// @title CrypTurtz
/// @author ccmoret

pragma solidity >=0.7.0 <0.9.0;




// CrypToadz Interface
interface toadzInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function balanceOf(address owner) external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); 
}

contract CrypTurtz is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    uint256 public cost = 0.023 ether;
    uint256 public price = 0.069 ether;
    uint256 public maxSupply = 7025;
    uint256 public maxMintAmount = 10;

    bool public pausedDev = false;
    bool public pausedToadz = true;
    bool public pausedPublic = true;
    bool public revealed = false;

    address public toadzContractAddress = 0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6;
    toadzInterface toadzContract = toadzInterface(toadzContractAddress);

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri)
        ERC721("CrypTurtz", "TURTZ")
    {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

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

    // Private Mint Process (Reserved for Toadz Holders)
    function mintWithOneToad(uint256 _toadId) public payable {
        uint256 supply = totalSupply();
        require(!pausedToadz, "CrypTurtz is not active to mint");
        require(supply <= maxSupply, "All Turtz Claimed");
        require(_toadId > 0, "Out of Range");
        require(cost <= msg.value, "Minimum ETH Not Met");
        require(toadzContract.ownerOf(_toadId) == msg.sender, "Not Your Toad");
        if (_toadId >= 1000000) {
            uint256 newID = SafeMath.div(_toadId, 1000000);
            newID = SafeMath.add(newID, 6969);
            require(!_exists(newID), "This Toad has already been used");
            _safeMint(msg.sender, newID);
        } else {
            require(!_exists(_toadId), "This Toad has already been used");
            _safeMint(msg.sender, _toadId);
        }
    }

    function mintWithToadz(uint256[] memory _toadzId) public payable {
        uint256 supply = totalSupply();
        require(!pausedToadz, "CrypTurtz is not active to mint");
        require(supply <= maxSupply, "All Turtz Claimed");
        require(_toadzId.length > 0, "Not enter any toadz");
        require(cost * _toadzId.length <= msg.value, "Minimum ETH Not Met");
        for (uint256 i = 0; i < _toadzId.length; i++) {
            require(
                toadzContract.ownerOf(_toadzId[i]) == msg.sender,
                "Not Your Toad"
            );
            if (_toadzId[i] >= 1000000) {
                uint256 newID = SafeMath.div(_toadzId[i], 1000000);
                newID = SafeMath.add(newID, 6969);
                if (_exists(newID)) {
                    continue;
                } else {
                    _safeMint(msg.sender, newID);
                }
            } else {
                if (_exists(_toadzId[i])) {
                    continue;
                } else {
                    _safeMint(msg.sender, _toadzId[i]);
                }
            }
        }
    }

    // Public Mint Process
    function mintPublic(uint256 _mintAmount) external payable {
        uint256 supply = totalSupply();
        require(!pausedToadz, "CrypTurtz is not active to mint");
        require(!pausedPublic, "CrypTurtz public minting is not open yet!");
        require(msg.sender == tx.origin, "No contracts please!");
        require(_mintAmount > 0);
        require(
            _mintAmount <= maxMintAmount,
            "Trying to mint too many at a time!"
        );
        require(msg.value >= _mintAmount * price, "Minimum ETH Not Met");
        require(
            supply + _mintAmount <= maxSupply,
            "Minting this amount would exceed supply"
        );

        uint256 i = 0;
        for (uint256 j = 1; j < maxSupply + 1; j++) {
            if (i == _mintAmount) {
                break;
            } else {
                if (!_exists(j) && i < _mintAmount) {
                    _safeMint(msg.sender, j);
                    i++;
                }
            }
        }
    }

    function mintPublicWithTurtzIds(uint256[] memory _toadzId)
        external
        payable
    {
        uint256 supply = totalSupply();
        require(!pausedToadz, "CrypTurtz is not active to mint");
        require(!pausedPublic, "CrypTurtz public minting is not open yet!");
        require(msg.sender == tx.origin, "No contracts please!");
        require(supply <= maxSupply, "All Turtz Claimed");
        require(_toadzId.length > 0, "Not enter any toadz");
        require(
            _toadzId.length <= maxMintAmount,
            "Trying to mint too many at a time!"
        );
        require(price * _toadzId.length <= msg.value, "Minimum ETH Not Met");
        require(
            supply + _toadzId.length <= maxSupply,
            "Minting this amount would exceed supply"
        );
        for (uint256 i = 0; i < _toadzId.length; i++) {
            if (_toadzId[i] >= 1000000) {
                uint256 newID = SafeMath.div(_toadzId[i], 1000000);
                newID = SafeMath.add(newID, 6969);
                if (_exists(newID)) {
                    continue;
                } else {
                    _safeMint(msg.sender, newID);
                }
            } else {
                if (_exists(_toadzId[i])) {
                    continue;
                } else {
                    _safeMint(msg.sender, _toadzId[i]);
                }
            }
        }
    }

    // Only owner

    function reserveTurt(uint256 _turtId) public onlyOwner {
        require(!pausedDev, "Developer minting process paused");
        require(!_exists(_turtId), "Turt already minted");
        _safeMint(msg.sender, _turtId);
    }

    function reserveSpecialTurtz(uint256[] memory _specialId)
        external
        onlyOwner
    {
        require(!pausedDev, "Developer minting process paused");
        for (uint256 i = 0; i < _specialId.length; i++) {
            require(_specialId[i] != 0);
            _safeMint(msg.sender, _specialId[i]);
        }
    }

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

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

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

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

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

    function pauseDev(bool _state) public onlyOwner {
        pausedDev = _state;
    }

    function pauseToadz(bool _state) public onlyOwner {
        pausedToadz = _state;
    }

    function pausePublic(bool _state) public onlyOwner {
        pausedPublic = _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":[{"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":"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":"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_toadzId","type":"uint256[]"}],"name":"mintPublicWithTurtzIds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_toadId","type":"uint256"}],"name":"mintWithOneToad","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_toadzId","type":"uint256[]"}],"name":"mintWithToadz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"pauseDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseToadz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausedDev","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedToadz","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_specialId","type":"uint256[]"}],"name":"reserveSpecialTurtz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_turtId","type":"uint256"}],"name":"reserveTurt","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toadzContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000286565b506651b660cdd58000600e5566f5232269808000600f55611b71601055600a60115560128054771cb1a5e65610aeff2551a50f76a87a7d3fb649c6000101006001600160c01b03199091161790819055601380546001600160a01b0319166401000000009092046001600160a01b0316919091179055348015620000ab57600080fd5b506040516200379138038062003791833981016040819052620000ce91620003e3565b604080518082018252600981526821b93cb82a3ab93a3d60b91b6020808301918252835180850190945260058452642a2aa92a2d60d91b9084015281519192916200011c9160009162000286565b5080516200013290600190602084019062000286565b5050506200014f620001496200016d60201b60201c565b62000171565b6200015a82620001c3565b62000165816200022b565b5050620004a0565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002125760405162461bcd60e51b815260206004820181905260248201526000805160206200377183398151915260448201526064015b60405180910390fd5b80516200022790600b90602084019062000286565b5050565b600a546001600160a01b03163314620002765760405162461bcd60e51b8152602060048201819052602482015260008051602062003771833981519152604482015260640162000209565b80516200022790600d9060208401905b82805462000294906200044d565b90600052602060002090601f016020900481019282620002b8576000855562000303565b82601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b5b8082111562000311576000815560010162000316565b600082601f8301126200033e57600080fd5b81516001600160401b03808211156200035b576200035b6200048a565b604051601f8301601f19908116603f011681019082821181831017156200038657620003866200048a565b81604052838152602092508683858801011115620003a357600080fd5b600091505b83821015620003c75785820183015181830184015290820190620003a8565b83821115620003d95760008385830101525b9695505050505050565b60008060408385031215620003f757600080fd5b82516001600160401b03808211156200040f57600080fd5b6200041d868387016200032c565b935060208501519150808211156200043457600080fd5b5062000443858286016200032c565b9150509250929050565b600181811c908216806200046257607f821691505b602082108114156200048457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6132c180620004b06000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461077b578063e985e9c51461079b578063efd0cbf9146107e4578063f2c4ce1e146107f7578063f2fde38b14610817578063f79c173f1461083757600080fd5b8063b88d4fde146106d0578063c4e09309146106f0578063c668286214610710578063c87b56dd14610725578063d5abeb0114610745578063d630a2931461075b57600080fd5b806391b7f5ed1161011357806391b7f5ed1461063057806395d89b41146106505780639d5c19f414610665578063a035b1fe14610685578063a22cb4651461069b578063a475b5dd146106bb57600080fd5b806370a082311461057e578063715018a61461059e578063730bbbc0146105b35780637e082225146105d25780637f00c7a6146105f25780638da5cb5b1461061257600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104c257806351830227146104e257806355f804b3146105035780636352211e146105235780636469d8581461054357806366db5faa1461056b57600080fd5b80632f745c591461041a5780633ccfd60b1461043a5780633dcaa66b1461044257806342842e0e14610455578063438b63001461047557806344a0d68a146104a257600080fd5b8063107dcf2c11610250578063107dcf2c1461037157806313faede61461038b57806318160ddd146103af578063239c70ae146103c457806323b872dd146103da57806324bb7c26146103fa57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063081c8c4414610327578063095ea7b31461033c5780630de3bcc41461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612c70565b610857565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610882565b6040516102c49190612e7d565b3480156102fb57600080fd5b5061030f61030a366004612cf3565b610914565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b506102e26109a1565b34801561034857600080fd5b5061035c610357366004612b7c565b610a2f565b005b61035c61036c366004612cf3565b610b45565b34801561037d57600080fd5b506012546102b89060ff1681565b34801561039757600080fd5b506103a1600e5481565b6040519081526020016102c4565b3480156103bb57600080fd5b506008546103a1565b3480156103d057600080fd5b506103a160115481565b3480156103e657600080fd5b5061035c6103f5366004612a86565b610dad565b34801561040657600080fd5b506012546102b89062010000900460ff1681565b34801561042657600080fd5b506103a1610435366004612b7c565b610dde565b61035c610e74565b61035c610450366004612ba8565b610ef6565b34801561046157600080fd5b5061035c610470366004612a86565b61116e565b34801561048157600080fd5b50610495610490366004612a13565b611189565b6040516102c49190612e39565b3480156104ae57600080fd5b5061035c6104bd366004612cf3565b61122b565b3480156104ce57600080fd5b506103a16104dd366004612cf3565b61125a565b3480156104ee57600080fd5b506012546102b8906301000000900460ff1681565b34801561050f57600080fd5b5061035c61051e366004612caa565b6112ed565b34801561052f57600080fd5b5061030f61053e366004612cf3565b61132a565b34801561054f57600080fd5b5060125461030f9064010000000090046001600160a01b031681565b61035c610579366004612ba8565b6113a1565b34801561058a57600080fd5b506103a1610599366004612a13565b611614565b3480156105aa57600080fd5b5061035c61169b565b3480156105bf57600080fd5b506012546102b890610100900460ff1681565b3480156105de57600080fd5b5061035c6105ed366004612cf3565b6116d1565b3480156105fe57600080fd5b5061035c61060d366004612cf3565b6117a4565b34801561061e57600080fd5b50600a546001600160a01b031661030f565b34801561063c57600080fd5b5061035c61064b366004612cf3565b6117d3565b34801561065c57600080fd5b506102e2611802565b34801561067157600080fd5b5061035c610680366004612c55565b611811565b34801561069157600080fd5b506103a1600f5481565b3480156106a757600080fd5b5061035c6106b6366004612b47565b61184e565b3480156106c757600080fd5b5061035c611913565b3480156106dc57600080fd5b5061035c6106eb366004612ac7565b611952565b3480156106fc57600080fd5b5061035c61070b366004612ba8565b61198a565b34801561071c57600080fd5b506102e2611a62565b34801561073157600080fd5b506102e2610740366004612cf3565b611a6f565b34801561075157600080fd5b506103a160105481565b34801561076757600080fd5b5061035c610776366004612c55565b611be0565b34801561078757600080fd5b5061035c610796366004612caa565b611c24565b3480156107a757600080fd5b506102b86107b6366004612a4d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61035c6107f2366004612cf3565b611c61565b34801561080357600080fd5b5061035c610812366004612caa565b611df7565b34801561082357600080fd5b5061035c610832366004612a13565b611e34565b34801561084357600080fd5b5061035c610852366004612c55565b611ecc565b60006001600160e01b0319821663780e9d6360e01b148061087c575061087c82611f12565b92915050565b60606000805461089190613188565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90613188565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b600061091f82611f62565b6109855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d80546109ae90613188565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613188565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b505050505081565b6000610a3a8261132a565b9050806001600160a01b0316836001600160a01b03161415610aa85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097c565b336001600160a01b0382161480610ac45750610ac481336107b6565b610b365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097c565b610b408383611f7f565b505050565b6000610b5060085490565b601254909150610100900460ff1615610b7b5760405162461bcd60e51b815260040161097c90612ee2565b601054811115610b9d5760405162461bcd60e51b815260040161097c90612f8d565b60008211610bdc5760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662052616e676560a01b604482015260640161097c565b34600e541115610bfe5760405162461bcd60e51b815260040161097c90612f60565b6013546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a9190612a30565b6001600160a01b031614610cc05760405162461bcd60e51b815260206004820152600d60248201526c139bdd08165bdd5c88151bd859609a1b604482015260640161097c565b620f42408210610d49576000610cd983620f4240611fed565b9050610ce781611b39611ff9565b9050610cf281611f62565b15610d3f5760405162461bcd60e51b815260206004820152601f60248201527f5468697320546f61642068617320616c7265616479206265656e207573656400604482015260640161097c565b610b403382612005565b610d5282611f62565b15610d9f5760405162461bcd60e51b815260206004820152601f60248201527f5468697320546f61642068617320616c7265616479206265656e207573656400604482015260640161097c565b610da93383612005565b5050565b610db7338261201f565b610dd35760405162461bcd60e51b815260040161097c9061302f565b610b40838383612109565b6000610de983611614565b8210610e4b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161097c90612fb8565b604051600090339047908381818185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610ef357600080fd5b50565b6000610f0160085490565b601254909150610100900460ff1615610f2c5760405162461bcd60e51b815260040161097c90612ee2565b60125462010000900460ff1615610f555760405162461bcd60e51b815260040161097c90613080565b333214610f9b5760405162461bcd60e51b81526020600482015260146024820152734e6f20636f6e74726163747320706c656173652160601b604482015260640161097c565b601054811115610fbd5760405162461bcd60e51b815260040161097c90612f8d565b60008251116110045760405162461bcd60e51b81526020600482015260136024820152722737ba1032b73a32b91030b73c903a37b0b23d60691b604482015260640161097c565b601154825111156110275760405162461bcd60e51b815260040161097c90612fed565b348251600f546110379190613126565b11156110555760405162461bcd60e51b815260040161097c90612f60565b601054825161106490836130fa565b11156110825760405162461bcd60e51b815260040161097c90612f19565b60005b8251811015610b4057620f42408382815181106110a4576110a4613234565b60200260200101511061110d5760006110d98483815181106110c8576110c8613234565b6020026020010151620f4240611fed565b90506110e781611b39611ff9565b90506110f281611f62565b156110fd575061115c565b6111073382612005565b5061115c565b61112f83828151811061112257611122613234565b6020026020010151611f62565b156111395761115c565b61115c3384838151811061114f5761114f613234565b6020026020010151612005565b80611166816131c3565b915050611085565b610b4083838360405180602001604052806000815250611952565b6060600061119683611614565b905060008167ffffffffffffffff8111156111b3576111b361324a565b6040519080825280602002602001820160405280156111dc578160200160208202803683370190505b50905060005b82811015611223576111f48582610dde565b82828151811061120657611206613234565b60209081029190910101528061121b816131c3565b9150506111e2565b509392505050565b600a546001600160a01b031633146112555760405162461bcd60e51b815260040161097c90612fb8565b600e55565b600061126560085490565b82106112c85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097c565b600882815481106112db576112db613234565b90600052602060002001549050919050565b600a546001600160a01b031633146113175760405162461bcd60e51b815260040161097c90612fb8565b8051610da990600b90602084019061290d565b6000818152600260205260408120546001600160a01b03168061087c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097c565b60006113ac60085490565b601254909150610100900460ff16156113d75760405162461bcd60e51b815260040161097c90612ee2565b6010548111156113f95760405162461bcd60e51b815260040161097c90612f8d565b60008251116114405760405162461bcd60e51b81526020600482015260136024820152722737ba1032b73a32b91030b73c903a37b0b23d60691b604482015260640161097c565b348251600e546114509190613126565b111561146e5760405162461bcd60e51b815260040161097c90612f60565b60005b8251811015610b4057601354835133916001600160a01b031690636352211e908690859081106114a3576114a3613234565b60200260200101516040518263ffffffff1660e01b81526004016114c991815260200190565b60206040518083038186803b1580156114e157600080fd5b505afa1580156114f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115199190612a30565b6001600160a01b03161461155f5760405162461bcd60e51b815260206004820152600d60248201526c139bdd08165bdd5c88151bd859609a1b604482015260640161097c565b620f424083828151811061157557611575613234565b6020026020010151106115cd5760006115998483815181106110c8576110c8613234565b90506115a781611b39611ff9565b90506115b281611f62565b156115bd5750611602565b6115c73382612005565b50611602565b6115e283828151811061112257611122613234565b156115ec57611602565b6116023384838151811061114f5761114f613234565b8061160c816131c3565b915050611471565b60006001600160a01b03821661167f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116c55760405162461bcd60e51b815260040161097c90612fb8565b6116cf60006122b4565b565b600a546001600160a01b031633146116fb5760405162461bcd60e51b815260040161097c90612fb8565b60125460ff161561174e5760405162461bcd60e51b815260206004820181905260248201527f446576656c6f706572206d696e74696e672070726f6365737320706175736564604482015260640161097c565b61175781611f62565b1561179a5760405162461bcd60e51b8152602060048201526013602482015272151d5c9d08185b1c9958591e481b5a5b9d1959606a1b604482015260640161097c565b610ef33382612005565b600a546001600160a01b031633146117ce5760405162461bcd60e51b815260040161097c90612fb8565b601155565b600a546001600160a01b031633146117fd5760405162461bcd60e51b815260040161097c90612fb8565b600f55565b60606001805461089190613188565b600a546001600160a01b0316331461183b5760405162461bcd60e51b815260040161097c90612fb8565b6012805460ff1916911515919091179055565b6001600160a01b0382163314156118a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461193d5760405162461bcd60e51b815260040161097c90612fb8565b6012805463ff00000019166301000000179055565b61195c338361201f565b6119785760405162461bcd60e51b815260040161097c9061302f565b61198484848484612306565b50505050565b600a546001600160a01b031633146119b45760405162461bcd60e51b815260040161097c90612fb8565b60125460ff1615611a075760405162461bcd60e51b815260206004820181905260248201527f446576656c6f706572206d696e74696e672070726f6365737320706175736564604482015260640161097c565b60005b8151811015610da957818181518110611a2557611a25613234565b602002602001015160001415611a3a57600080fd5b611a503383838151811061114f5761114f613234565b80611a5a816131c3565b915050611a0a565b600c80546109ae90613188565b6060611a7a82611f62565b611ade5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097c565b6012546301000000900460ff16611b8157600d8054611afc90613188565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890613188565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b50505050509050919050565b6000611b8b612339565b90506000815111611bab5760405180602001604052806000815250611bd9565b80611bb584612348565b600c604051602001611bc993929190612d38565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611c0a5760405162461bcd60e51b815260040161097c90612fb8565b601280549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314611c4e5760405162461bcd60e51b815260040161097c90612fb8565b8051610da990600c90602084019061290d565b6000611c6c60085490565b601254909150610100900460ff1615611c975760405162461bcd60e51b815260040161097c90612ee2565b60125462010000900460ff1615611cc05760405162461bcd60e51b815260040161097c90613080565b333214611d065760405162461bcd60e51b81526020600482015260146024820152734e6f20636f6e74726163747320706c656173652160601b604482015260640161097c565b60008211611d1357600080fd5b601154821115611d355760405162461bcd60e51b815260040161097c90612fed565b600f54611d429083613126565b341015611d615760405162461bcd60e51b815260040161097c90612f60565b601054611d6e83836130fa565b1115611d8c5760405162461bcd60e51b815260040161097c90612f19565b600060015b601054611d9f9060016130fa565b8110156119845783821415611db357611984565b611dbc81611f62565b158015611dc857508382105b15611de557611dd73382612005565b81611de1816131c3565b9250505b80611def816131c3565b915050611d91565b600a546001600160a01b03163314611e215760405162461bcd60e51b815260040161097c90612fb8565b8051610da990600d90602084019061290d565b600a546001600160a01b03163314611e5e5760405162461bcd60e51b815260040161097c90612fb8565b6001600160a01b038116611ec35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097c565b610ef3816122b4565b600a546001600160a01b03163314611ef65760405162461bcd60e51b815260040161097c90612fb8565b60128054911515620100000262ff000019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611f4357506001600160e01b03198216635b5e139f60e01b145b8061087c57506301ffc9a760e01b6001600160e01b031983161461087c565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fb48261132a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bd98284613112565b6000611bd982846130fa565b610da9828260405180602001604052806000815250612446565b600061202a82611f62565b61208b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097c565b60006120968361132a565b9050806001600160a01b0316846001600160a01b031614806120d15750836001600160a01b03166120c684610914565b6001600160a01b0316145b8061210157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661211c8261132a565b6001600160a01b0316146121845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097c565b6001600160a01b0382166121e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097c565b6121f1838383612479565b6121fc600082611f7f565b6001600160a01b0383166000908152600360205260408120805460019290612225908490613145565b90915550506001600160a01b03821660009081526003602052604081208054600192906122539084906130fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612311848484612109565b61231d84848484612531565b6119845760405162461bcd60e51b815260040161097c90612e90565b6060600b805461089190613188565b60608161236c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123965780612380816131c3565b915061238f9050600a83613112565b9150612370565b60008167ffffffffffffffff8111156123b1576123b161324a565b6040519080825280601f01601f1916602001820160405280156123db576020820181803683370190505b5090505b8415612101576123f0600183613145565b91506123fd600a866131de565b6124089060306130fa565b60f81b81838151811061241d5761241d613234565b60200101906001600160f81b031916908160001a90535061243f600a86613112565b94506123df565b612450838361263e565b61245d6000848484612531565b610b405760405162461bcd60e51b815260040161097c90612e90565b6001600160a01b0383166124d4576124cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124f7565b816001600160a01b0316836001600160a01b0316146124f7576124f7838261277d565b6001600160a01b03821661250e57610b408161281a565b826001600160a01b0316826001600160a01b031614610b4057610b4082826128c9565b60006001600160a01b0384163b1561263357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612575903390899088908890600401612dfc565b602060405180830381600087803b15801561258f57600080fd5b505af19250505080156125bf575060408051601f3d908101601f191682019092526125bc91810190612c8d565b60015b612619573d8080156125ed576040519150601f19603f3d011682016040523d82523d6000602084013e6125f2565b606091505b5080516126115760405162461bcd60e51b815260040161097c90612e90565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612101565b506001949350505050565b6001600160a01b0382166126945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097c565b61269d81611f62565b156126ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097c565b6126f660008383612479565b6001600160a01b038216600090815260036020526040812080546001929061271f9084906130fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161278a84611614565b6127949190613145565b6000838152600760205260409020549091508082146127e7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061282c90600190613145565b6000838152600960205260408120546008805493945090928490811061285457612854613234565b90600052602060002001549050806008838154811061287557612875613234565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ad576128ad61321e565b6001900381819060005260206000200160009055905550505050565b60006128d483611614565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461291990613188565b90600052602060002090601f01602090048101928261293b5760008555612981565b82601f1061295457805160ff1916838001178555612981565b82800160010185558215612981579182015b82811115612981578251825591602001919060010190612966565b5061298d929150612991565b5090565b5b8082111561298d5760008155600101612992565b600067ffffffffffffffff8311156129c0576129c061324a565b6129d3601f8401601f19166020016130c9565b90508281528383830111156129e757600080fd5b828260208301376000602084830101529392505050565b80358015158114612a0e57600080fd5b919050565b600060208284031215612a2557600080fd5b8135611bd981613260565b600060208284031215612a4257600080fd5b8151611bd981613260565b60008060408385031215612a6057600080fd5b8235612a6b81613260565b91506020830135612a7b81613260565b809150509250929050565b600080600060608486031215612a9b57600080fd5b8335612aa681613260565b92506020840135612ab681613260565b929592945050506040919091013590565b60008060008060808587031215612add57600080fd5b8435612ae881613260565b93506020850135612af881613260565b925060408501359150606085013567ffffffffffffffff811115612b1b57600080fd5b8501601f81018713612b2c57600080fd5b612b3b878235602084016129a6565b91505092959194509250565b60008060408385031215612b5a57600080fd5b8235612b6581613260565b9150612b73602084016129fe565b90509250929050565b60008060408385031215612b8f57600080fd5b8235612b9a81613260565b946020939093013593505050565b60006020808385031215612bbb57600080fd5b823567ffffffffffffffff80821115612bd357600080fd5b818501915085601f830112612be757600080fd5b813581811115612bf957612bf961324a565b8060051b9150612c0a8483016130c9565b8181528481019084860184860187018a1015612c2557600080fd5b600095505b83861015612c48578035835260019590950194918601918601612c2a565b5098975050505050505050565b600060208284031215612c6757600080fd5b611bd9826129fe565b600060208284031215612c8257600080fd5b8135611bd981613275565b600060208284031215612c9f57600080fd5b8151611bd981613275565b600060208284031215612cbc57600080fd5b813567ffffffffffffffff811115612cd357600080fd5b8201601f81018413612ce457600080fd5b612101848235602084016129a6565b600060208284031215612d0557600080fd5b5035919050565b60008151808452612d2481602086016020860161315c565b601f01601f19169290920160200192915050565b600084516020612d4b8285838a0161315c565b855191840191612d5e8184848a0161315c565b8554920191600090600181811c9080831680612d7b57607f831692505b858310811415612d9957634e487b7160e01b85526022600452602485fd5b808015612dad5760018114612dbe57612deb565b60ff19851688528388019550612deb565b60008b81526020902060005b85811015612de35781548a820152908401908801612dca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e2f90830184612d0c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e7157835183529284019291840191600101612e55565b50909695505050505050565b602081526000611bd96020830184612d0c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f43727970547572747a206973206e6f742061637469766520746f206d696e7400604082015260600190565b60208082526027908201527f4d696e74696e67207468697320616d6f756e7420776f756c642065786365656460408201526620737570706c7960c81b606082015260800190565b602080825260139082015272135a5b9a5b5d5b4811551208139bdd0813595d606a1b604082015260600190565b602080825260119082015270105b1b08151d5c9d1e8810db185a5b5959607a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d604082015261652160f01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526029908201527f43727970547572747a207075626c6963206d696e74696e67206973206e6f74206040820152686f70656e207965742160b81b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156130f2576130f261324a565b604052919050565b6000821982111561310d5761310d6131f2565b500190565b60008261312157613121613208565b500490565b6000816000190483118215151615613140576131406131f2565b500290565b600082821015613157576131576131f2565b500390565b60005b8381101561317757818101518382015260200161315f565b838111156119845750506000910152565b600181811c9082168061319c57607f821691505b602082108114156131bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131d7576131d76131f2565b5060010190565b6000826131ed576131ed613208565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ef357600080fd5b6001600160e01b031981168114610ef357600080fdfea26469706673582212205019951fe6fdf3f194569af58ad9b828ce97fd2ee9f85b8eae9ea187d9abf0de64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e697066733a2f2f5858585858582f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d657358766d41327a716a4c57694a6b6e426b397a7a79486e77794b5a74566f6e62673571744b5569446671502f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c806370a082311161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461077b578063e985e9c51461079b578063efd0cbf9146107e4578063f2c4ce1e146107f7578063f2fde38b14610817578063f79c173f1461083757600080fd5b8063b88d4fde146106d0578063c4e09309146106f0578063c668286214610710578063c87b56dd14610725578063d5abeb0114610745578063d630a2931461075b57600080fd5b806391b7f5ed1161011357806391b7f5ed1461063057806395d89b41146106505780639d5c19f414610665578063a035b1fe14610685578063a22cb4651461069b578063a475b5dd146106bb57600080fd5b806370a082311461057e578063715018a61461059e578063730bbbc0146105b35780637e082225146105d25780637f00c7a6146105f25780638da5cb5b1461061257600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104c257806351830227146104e257806355f804b3146105035780636352211e146105235780636469d8581461054357806366db5faa1461056b57600080fd5b80632f745c591461041a5780633ccfd60b1461043a5780633dcaa66b1461044257806342842e0e14610455578063438b63001461047557806344a0d68a146104a257600080fd5b8063107dcf2c11610250578063107dcf2c1461037157806313faede61461038b57806318160ddd146103af578063239c70ae146103c457806323b872dd146103da57806324bb7c26146103fa57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063081c8c4414610327578063095ea7b31461033c5780630de3bcc41461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612c70565b610857565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610882565b6040516102c49190612e7d565b3480156102fb57600080fd5b5061030f61030a366004612cf3565b610914565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b506102e26109a1565b34801561034857600080fd5b5061035c610357366004612b7c565b610a2f565b005b61035c61036c366004612cf3565b610b45565b34801561037d57600080fd5b506012546102b89060ff1681565b34801561039757600080fd5b506103a1600e5481565b6040519081526020016102c4565b3480156103bb57600080fd5b506008546103a1565b3480156103d057600080fd5b506103a160115481565b3480156103e657600080fd5b5061035c6103f5366004612a86565b610dad565b34801561040657600080fd5b506012546102b89062010000900460ff1681565b34801561042657600080fd5b506103a1610435366004612b7c565b610dde565b61035c610e74565b61035c610450366004612ba8565b610ef6565b34801561046157600080fd5b5061035c610470366004612a86565b61116e565b34801561048157600080fd5b50610495610490366004612a13565b611189565b6040516102c49190612e39565b3480156104ae57600080fd5b5061035c6104bd366004612cf3565b61122b565b3480156104ce57600080fd5b506103a16104dd366004612cf3565b61125a565b3480156104ee57600080fd5b506012546102b8906301000000900460ff1681565b34801561050f57600080fd5b5061035c61051e366004612caa565b6112ed565b34801561052f57600080fd5b5061030f61053e366004612cf3565b61132a565b34801561054f57600080fd5b5060125461030f9064010000000090046001600160a01b031681565b61035c610579366004612ba8565b6113a1565b34801561058a57600080fd5b506103a1610599366004612a13565b611614565b3480156105aa57600080fd5b5061035c61169b565b3480156105bf57600080fd5b506012546102b890610100900460ff1681565b3480156105de57600080fd5b5061035c6105ed366004612cf3565b6116d1565b3480156105fe57600080fd5b5061035c61060d366004612cf3565b6117a4565b34801561061e57600080fd5b50600a546001600160a01b031661030f565b34801561063c57600080fd5b5061035c61064b366004612cf3565b6117d3565b34801561065c57600080fd5b506102e2611802565b34801561067157600080fd5b5061035c610680366004612c55565b611811565b34801561069157600080fd5b506103a1600f5481565b3480156106a757600080fd5b5061035c6106b6366004612b47565b61184e565b3480156106c757600080fd5b5061035c611913565b3480156106dc57600080fd5b5061035c6106eb366004612ac7565b611952565b3480156106fc57600080fd5b5061035c61070b366004612ba8565b61198a565b34801561071c57600080fd5b506102e2611a62565b34801561073157600080fd5b506102e2610740366004612cf3565b611a6f565b34801561075157600080fd5b506103a160105481565b34801561076757600080fd5b5061035c610776366004612c55565b611be0565b34801561078757600080fd5b5061035c610796366004612caa565b611c24565b3480156107a757600080fd5b506102b86107b6366004612a4d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61035c6107f2366004612cf3565b611c61565b34801561080357600080fd5b5061035c610812366004612caa565b611df7565b34801561082357600080fd5b5061035c610832366004612a13565b611e34565b34801561084357600080fd5b5061035c610852366004612c55565b611ecc565b60006001600160e01b0319821663780e9d6360e01b148061087c575061087c82611f12565b92915050565b60606000805461089190613188565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90613188565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b600061091f82611f62565b6109855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d80546109ae90613188565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613188565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b505050505081565b6000610a3a8261132a565b9050806001600160a01b0316836001600160a01b03161415610aa85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097c565b336001600160a01b0382161480610ac45750610ac481336107b6565b610b365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097c565b610b408383611f7f565b505050565b6000610b5060085490565b601254909150610100900460ff1615610b7b5760405162461bcd60e51b815260040161097c90612ee2565b601054811115610b9d5760405162461bcd60e51b815260040161097c90612f8d565b60008211610bdc5760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662052616e676560a01b604482015260640161097c565b34600e541115610bfe5760405162461bcd60e51b815260040161097c90612f60565b6013546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a9190612a30565b6001600160a01b031614610cc05760405162461bcd60e51b815260206004820152600d60248201526c139bdd08165bdd5c88151bd859609a1b604482015260640161097c565b620f42408210610d49576000610cd983620f4240611fed565b9050610ce781611b39611ff9565b9050610cf281611f62565b15610d3f5760405162461bcd60e51b815260206004820152601f60248201527f5468697320546f61642068617320616c7265616479206265656e207573656400604482015260640161097c565b610b403382612005565b610d5282611f62565b15610d9f5760405162461bcd60e51b815260206004820152601f60248201527f5468697320546f61642068617320616c7265616479206265656e207573656400604482015260640161097c565b610da93383612005565b5050565b610db7338261201f565b610dd35760405162461bcd60e51b815260040161097c9061302f565b610b40838383612109565b6000610de983611614565b8210610e4b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161097c90612fb8565b604051600090339047908381818185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610ef357600080fd5b50565b6000610f0160085490565b601254909150610100900460ff1615610f2c5760405162461bcd60e51b815260040161097c90612ee2565b60125462010000900460ff1615610f555760405162461bcd60e51b815260040161097c90613080565b333214610f9b5760405162461bcd60e51b81526020600482015260146024820152734e6f20636f6e74726163747320706c656173652160601b604482015260640161097c565b601054811115610fbd5760405162461bcd60e51b815260040161097c90612f8d565b60008251116110045760405162461bcd60e51b81526020600482015260136024820152722737ba1032b73a32b91030b73c903a37b0b23d60691b604482015260640161097c565b601154825111156110275760405162461bcd60e51b815260040161097c90612fed565b348251600f546110379190613126565b11156110555760405162461bcd60e51b815260040161097c90612f60565b601054825161106490836130fa565b11156110825760405162461bcd60e51b815260040161097c90612f19565b60005b8251811015610b4057620f42408382815181106110a4576110a4613234565b60200260200101511061110d5760006110d98483815181106110c8576110c8613234565b6020026020010151620f4240611fed565b90506110e781611b39611ff9565b90506110f281611f62565b156110fd575061115c565b6111073382612005565b5061115c565b61112f83828151811061112257611122613234565b6020026020010151611f62565b156111395761115c565b61115c3384838151811061114f5761114f613234565b6020026020010151612005565b80611166816131c3565b915050611085565b610b4083838360405180602001604052806000815250611952565b6060600061119683611614565b905060008167ffffffffffffffff8111156111b3576111b361324a565b6040519080825280602002602001820160405280156111dc578160200160208202803683370190505b50905060005b82811015611223576111f48582610dde565b82828151811061120657611206613234565b60209081029190910101528061121b816131c3565b9150506111e2565b509392505050565b600a546001600160a01b031633146112555760405162461bcd60e51b815260040161097c90612fb8565b600e55565b600061126560085490565b82106112c85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097c565b600882815481106112db576112db613234565b90600052602060002001549050919050565b600a546001600160a01b031633146113175760405162461bcd60e51b815260040161097c90612fb8565b8051610da990600b90602084019061290d565b6000818152600260205260408120546001600160a01b03168061087c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097c565b60006113ac60085490565b601254909150610100900460ff16156113d75760405162461bcd60e51b815260040161097c90612ee2565b6010548111156113f95760405162461bcd60e51b815260040161097c90612f8d565b60008251116114405760405162461bcd60e51b81526020600482015260136024820152722737ba1032b73a32b91030b73c903a37b0b23d60691b604482015260640161097c565b348251600e546114509190613126565b111561146e5760405162461bcd60e51b815260040161097c90612f60565b60005b8251811015610b4057601354835133916001600160a01b031690636352211e908690859081106114a3576114a3613234565b60200260200101516040518263ffffffff1660e01b81526004016114c991815260200190565b60206040518083038186803b1580156114e157600080fd5b505afa1580156114f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115199190612a30565b6001600160a01b03161461155f5760405162461bcd60e51b815260206004820152600d60248201526c139bdd08165bdd5c88151bd859609a1b604482015260640161097c565b620f424083828151811061157557611575613234565b6020026020010151106115cd5760006115998483815181106110c8576110c8613234565b90506115a781611b39611ff9565b90506115b281611f62565b156115bd5750611602565b6115c73382612005565b50611602565b6115e283828151811061112257611122613234565b156115ec57611602565b6116023384838151811061114f5761114f613234565b8061160c816131c3565b915050611471565b60006001600160a01b03821661167f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116c55760405162461bcd60e51b815260040161097c90612fb8565b6116cf60006122b4565b565b600a546001600160a01b031633146116fb5760405162461bcd60e51b815260040161097c90612fb8565b60125460ff161561174e5760405162461bcd60e51b815260206004820181905260248201527f446576656c6f706572206d696e74696e672070726f6365737320706175736564604482015260640161097c565b61175781611f62565b1561179a5760405162461bcd60e51b8152602060048201526013602482015272151d5c9d08185b1c9958591e481b5a5b9d1959606a1b604482015260640161097c565b610ef33382612005565b600a546001600160a01b031633146117ce5760405162461bcd60e51b815260040161097c90612fb8565b601155565b600a546001600160a01b031633146117fd5760405162461bcd60e51b815260040161097c90612fb8565b600f55565b60606001805461089190613188565b600a546001600160a01b0316331461183b5760405162461bcd60e51b815260040161097c90612fb8565b6012805460ff1916911515919091179055565b6001600160a01b0382163314156118a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461193d5760405162461bcd60e51b815260040161097c90612fb8565b6012805463ff00000019166301000000179055565b61195c338361201f565b6119785760405162461bcd60e51b815260040161097c9061302f565b61198484848484612306565b50505050565b600a546001600160a01b031633146119b45760405162461bcd60e51b815260040161097c90612fb8565b60125460ff1615611a075760405162461bcd60e51b815260206004820181905260248201527f446576656c6f706572206d696e74696e672070726f6365737320706175736564604482015260640161097c565b60005b8151811015610da957818181518110611a2557611a25613234565b602002602001015160001415611a3a57600080fd5b611a503383838151811061114f5761114f613234565b80611a5a816131c3565b915050611a0a565b600c80546109ae90613188565b6060611a7a82611f62565b611ade5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097c565b6012546301000000900460ff16611b8157600d8054611afc90613188565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890613188565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b50505050509050919050565b6000611b8b612339565b90506000815111611bab5760405180602001604052806000815250611bd9565b80611bb584612348565b600c604051602001611bc993929190612d38565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611c0a5760405162461bcd60e51b815260040161097c90612fb8565b601280549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314611c4e5760405162461bcd60e51b815260040161097c90612fb8565b8051610da990600c90602084019061290d565b6000611c6c60085490565b601254909150610100900460ff1615611c975760405162461bcd60e51b815260040161097c90612ee2565b60125462010000900460ff1615611cc05760405162461bcd60e51b815260040161097c90613080565b333214611d065760405162461bcd60e51b81526020600482015260146024820152734e6f20636f6e74726163747320706c656173652160601b604482015260640161097c565b60008211611d1357600080fd5b601154821115611d355760405162461bcd60e51b815260040161097c90612fed565b600f54611d429083613126565b341015611d615760405162461bcd60e51b815260040161097c90612f60565b601054611d6e83836130fa565b1115611d8c5760405162461bcd60e51b815260040161097c90612f19565b600060015b601054611d9f9060016130fa565b8110156119845783821415611db357611984565b611dbc81611f62565b158015611dc857508382105b15611de557611dd73382612005565b81611de1816131c3565b9250505b80611def816131c3565b915050611d91565b600a546001600160a01b03163314611e215760405162461bcd60e51b815260040161097c90612fb8565b8051610da990600d90602084019061290d565b600a546001600160a01b03163314611e5e5760405162461bcd60e51b815260040161097c90612fb8565b6001600160a01b038116611ec35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097c565b610ef3816122b4565b600a546001600160a01b03163314611ef65760405162461bcd60e51b815260040161097c90612fb8565b60128054911515620100000262ff000019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611f4357506001600160e01b03198216635b5e139f60e01b145b8061087c57506301ffc9a760e01b6001600160e01b031983161461087c565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fb48261132a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bd98284613112565b6000611bd982846130fa565b610da9828260405180602001604052806000815250612446565b600061202a82611f62565b61208b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097c565b60006120968361132a565b9050806001600160a01b0316846001600160a01b031614806120d15750836001600160a01b03166120c684610914565b6001600160a01b0316145b8061210157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661211c8261132a565b6001600160a01b0316146121845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097c565b6001600160a01b0382166121e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097c565b6121f1838383612479565b6121fc600082611f7f565b6001600160a01b0383166000908152600360205260408120805460019290612225908490613145565b90915550506001600160a01b03821660009081526003602052604081208054600192906122539084906130fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612311848484612109565b61231d84848484612531565b6119845760405162461bcd60e51b815260040161097c90612e90565b6060600b805461089190613188565b60608161236c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123965780612380816131c3565b915061238f9050600a83613112565b9150612370565b60008167ffffffffffffffff8111156123b1576123b161324a565b6040519080825280601f01601f1916602001820160405280156123db576020820181803683370190505b5090505b8415612101576123f0600183613145565b91506123fd600a866131de565b6124089060306130fa565b60f81b81838151811061241d5761241d613234565b60200101906001600160f81b031916908160001a90535061243f600a86613112565b94506123df565b612450838361263e565b61245d6000848484612531565b610b405760405162461bcd60e51b815260040161097c90612e90565b6001600160a01b0383166124d4576124cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124f7565b816001600160a01b0316836001600160a01b0316146124f7576124f7838261277d565b6001600160a01b03821661250e57610b408161281a565b826001600160a01b0316826001600160a01b031614610b4057610b4082826128c9565b60006001600160a01b0384163b1561263357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612575903390899088908890600401612dfc565b602060405180830381600087803b15801561258f57600080fd5b505af19250505080156125bf575060408051601f3d908101601f191682019092526125bc91810190612c8d565b60015b612619573d8080156125ed576040519150601f19603f3d011682016040523d82523d6000602084013e6125f2565b606091505b5080516126115760405162461bcd60e51b815260040161097c90612e90565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612101565b506001949350505050565b6001600160a01b0382166126945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097c565b61269d81611f62565b156126ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097c565b6126f660008383612479565b6001600160a01b038216600090815260036020526040812080546001929061271f9084906130fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161278a84611614565b6127949190613145565b6000838152600760205260409020549091508082146127e7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061282c90600190613145565b6000838152600960205260408120546008805493945090928490811061285457612854613234565b90600052602060002001549050806008838154811061287557612875613234565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ad576128ad61321e565b6001900381819060005260206000200160009055905550505050565b60006128d483611614565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461291990613188565b90600052602060002090601f01602090048101928261293b5760008555612981565b82601f1061295457805160ff1916838001178555612981565b82800160010185558215612981579182015b82811115612981578251825591602001919060010190612966565b5061298d929150612991565b5090565b5b8082111561298d5760008155600101612992565b600067ffffffffffffffff8311156129c0576129c061324a565b6129d3601f8401601f19166020016130c9565b90508281528383830111156129e757600080fd5b828260208301376000602084830101529392505050565b80358015158114612a0e57600080fd5b919050565b600060208284031215612a2557600080fd5b8135611bd981613260565b600060208284031215612a4257600080fd5b8151611bd981613260565b60008060408385031215612a6057600080fd5b8235612a6b81613260565b91506020830135612a7b81613260565b809150509250929050565b600080600060608486031215612a9b57600080fd5b8335612aa681613260565b92506020840135612ab681613260565b929592945050506040919091013590565b60008060008060808587031215612add57600080fd5b8435612ae881613260565b93506020850135612af881613260565b925060408501359150606085013567ffffffffffffffff811115612b1b57600080fd5b8501601f81018713612b2c57600080fd5b612b3b878235602084016129a6565b91505092959194509250565b60008060408385031215612b5a57600080fd5b8235612b6581613260565b9150612b73602084016129fe565b90509250929050565b60008060408385031215612b8f57600080fd5b8235612b9a81613260565b946020939093013593505050565b60006020808385031215612bbb57600080fd5b823567ffffffffffffffff80821115612bd357600080fd5b818501915085601f830112612be757600080fd5b813581811115612bf957612bf961324a565b8060051b9150612c0a8483016130c9565b8181528481019084860184860187018a1015612c2557600080fd5b600095505b83861015612c48578035835260019590950194918601918601612c2a565b5098975050505050505050565b600060208284031215612c6757600080fd5b611bd9826129fe565b600060208284031215612c8257600080fd5b8135611bd981613275565b600060208284031215612c9f57600080fd5b8151611bd981613275565b600060208284031215612cbc57600080fd5b813567ffffffffffffffff811115612cd357600080fd5b8201601f81018413612ce457600080fd5b612101848235602084016129a6565b600060208284031215612d0557600080fd5b5035919050565b60008151808452612d2481602086016020860161315c565b601f01601f19169290920160200192915050565b600084516020612d4b8285838a0161315c565b855191840191612d5e8184848a0161315c565b8554920191600090600181811c9080831680612d7b57607f831692505b858310811415612d9957634e487b7160e01b85526022600452602485fd5b808015612dad5760018114612dbe57612deb565b60ff19851688528388019550612deb565b60008b81526020902060005b85811015612de35781548a820152908401908801612dca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e2f90830184612d0c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e7157835183529284019291840191600101612e55565b50909695505050505050565b602081526000611bd96020830184612d0c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f43727970547572747a206973206e6f742061637469766520746f206d696e7400604082015260600190565b60208082526027908201527f4d696e74696e67207468697320616d6f756e7420776f756c642065786365656460408201526620737570706c7960c81b606082015260800190565b602080825260139082015272135a5b9a5b5d5b4811551208139bdd0813595d606a1b604082015260600190565b602080825260119082015270105b1b08151d5c9d1e8810db185a5b5959607a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d604082015261652160f01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526029908201527f43727970547572747a207075626c6963206d696e74696e67206973206e6f74206040820152686f70656e207965742160b81b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156130f2576130f261324a565b604052919050565b6000821982111561310d5761310d6131f2565b500190565b60008261312157613121613208565b500490565b6000816000190483118215151615613140576131406131f2565b500290565b600082821015613157576131576131f2565b500390565b60005b8381101561317757818101518382015260200161315f565b838111156119845750506000910152565b600181811c9082168061319c57607f821691505b602082108114156131bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131d7576131d76131f2565b5060010190565b6000826131ed576131ed613208565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ef357600080fd5b6001600160e01b031981168114610ef357600080fdfea26469706673582212205019951fe6fdf3f194569af58ad9b828ce97fd2ee9f85b8eae9ea187d9abf0de64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e697066733a2f2f5858585858582f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d657358766d41327a716a4c57694a6b6e426b397a7a79486e77794b5a74566f6e62673571744b5569446671502f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://XXXXXX/
Arg [1] : _initNotRevealedUri (string): ipfs://QmesXvmA2zqjLWiJknBk9zzyHnwyKZtVonbg5qtKUiDfqP/hidden.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 697066733a2f2f5858585858582f000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [5] : 697066733a2f2f516d657358766d41327a716a4c57694a6b6e426b397a7a7948
Arg [6] : 6e77794b5a74566f6e62673571744b5569446671502f68696464656e2e6a736f
Arg [7] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51303:8579:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43924:224;;;;;;;;;;-1:-1:-1;43924:224:0;;;;;:::i;:::-;;:::i;:::-;;;9189:14:1;;9182:22;9164:41;;9152:2;9137:18;43924:224:0;;;;;;;;31816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33375:221::-;;;;;;;;;;-1:-1:-1;33375:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7850:32:1;;;7832:51;;7820:2;7805:18;33375:221:0;7686:203:1;51457:28:0;;;;;;;;;;;;;:::i;32898:411::-;;;;;;;;;;-1:-1:-1;32898:411:0;;;;;:::i;:::-;;:::i;:::-;;53506:832;;;;;;:::i;:::-;;:::i;51655:29::-;;;;;;;;;;-1:-1:-1;51655:29:0;;;;;;;;51494:33;;;;;;;;;;;;;;;;;;;21517:25:1;;;21505:2;21490:18;51494:33:0;21371:177:1;44564:113:0;;;;;;;;;;-1:-1:-1;44652:10:0;:17;44564:113;;51613:33;;;;;;;;;;;;;;;;34265:339;;;;;;;;;;-1:-1:-1;34265:339:0;;;;;:::i;:::-;;:::i;51728:31::-;;;;;;;;;;-1:-1:-1;51728:31:0;;;;;;;;;;;44232:256;;;;;;;;;;-1:-1:-1;44232:256:0;;;;;:::i;:::-;;:::i;59687:192::-;;;:::i;56544:1438::-;;;;;;:::i;:::-;;:::i;34675:185::-;;;;;;;;;;-1:-1:-1;34675:185:0;;;;;:::i;:::-;;:::i;52317:390::-;;;;;;;;;;-1:-1:-1;52317:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58671:86::-;;;;;;;;;;-1:-1:-1;58671:86:0;;;;;:::i;:::-;;:::i;44754:233::-;;;;;;;;;;-1:-1:-1;44754:233:0;;;;;:::i;:::-;;:::i;51766:28::-;;;;;;;;;;-1:-1:-1;51766:28:0;;;;;;;;;;;59127:104;;;;;;;;;;-1:-1:-1;59127:104:0;;;;;:::i;:::-;;:::i;31510:239::-;;;;;;;;;;-1:-1:-1;31510:239:0;;;;;:::i;:::-;;:::i;51803:80::-;;;;;;;;;;-1:-1:-1;51803:80:0;;;;;;;-1:-1:-1;;;;;51803:80:0;;;54346:1132;;;;;;:::i;:::-;;:::i;31240:208::-;;;;;;;;;;-1:-1:-1;31240:208:0;;;;;:::i;:::-;;:::i;11515:94::-;;;;;;;;;;;;;:::i;51691:30::-;;;;;;;;;;-1:-1:-1;51691:30:0;;;;;;;;;;;58011:230;;;;;;;;;;-1:-1:-1;58011:230:0;;;;;:::i;:::-;;:::i;58863:122::-;;;;;;;;;;-1:-1:-1;58863:122:0;;;;;:::i;:::-;;:::i;10864:87::-;;;;;;;;;;-1:-1:-1;10937:6:0;;-1:-1:-1;;;;;10937:6:0;10864:87;;58765:90;;;;;;;;;;-1:-1:-1;58765:90:0;;;;;:::i;:::-;;:::i;31985:104::-;;;;;;;;;;;;;:::i;59398:85::-;;;;;;;;;;-1:-1:-1;59398:85:0;;;;;:::i;:::-;;:::i;51534:34::-;;;;;;;;;;;;;;;;33668:295;;;;;;;;;;-1:-1:-1;33668:295:0;;;;;:::i;:::-;;:::i;58594:69::-;;;;;;;;;;;;;:::i;34931:328::-;;;;;;;;;;-1:-1:-1;34931:328:0;;;;;:::i;:::-;;:::i;58249:337::-;;;;;;;;;;-1:-1:-1;58249:337:0;;;;;:::i;:::-;;:::i;51413:37::-;;;;;;;;;;;;;:::i;52715:725::-;;;;;;;;;;-1:-1:-1;52715:725:0;;;;;:::i;:::-;;:::i;51575:31::-;;;;;;;;;;;;;;;;59491:89;;;;;;;;;;-1:-1:-1;59491:89:0;;;;;:::i;:::-;;:::i;59239:151::-;;;;;;;;;;-1:-1:-1;59239:151:0;;;;;:::i;:::-;;:::i;34034:164::-;;;;;;;;;;-1:-1:-1;34034:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34155:25:0;;;34131:4;34155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34034:164;55514:1022;;;;;;:::i;:::-;;:::i;58993:126::-;;;;;;;;;;-1:-1:-1;58993:126:0;;;;;:::i;:::-;;:::i;11764:192::-;;;;;;;;;;-1:-1:-1;11764:192:0;;;;;:::i;:::-;;:::i;59588:91::-;;;;;;;;;;-1:-1:-1;59588:91:0;;;;;:::i;:::-;;:::i;43924:224::-;44026:4;-1:-1:-1;;;;;;44050:50:0;;-1:-1:-1;;;44050:50:0;;:90;;;44104:36;44128:11;44104:23;:36::i;:::-;44043:97;43924:224;-1:-1:-1;;43924:224:0:o;31816:100::-;31870:13;31903:5;31896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31816:100;:::o;33375:221::-;33451:7;33479:16;33487:7;33479;:16::i;:::-;33471:73;;;;-1:-1:-1;;;33471:73:0;;16878:2:1;33471:73:0;;;16860:21:1;16917:2;16897:18;;;16890:30;16956:34;16936:18;;;16929:62;-1:-1:-1;;;17007:18:1;;;17000:42;17059:19;;33471:73:0;;;;;;;;;-1:-1:-1;33564:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33564:24:0;;33375:221::o;51457:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32898:411::-;32979:13;32995:23;33010:7;32995:14;:23::i;:::-;32979:39;;33043:5;-1:-1:-1;;;;;33037:11:0;:2;-1:-1:-1;;;;;33037:11:0;;;33029:57;;;;-1:-1:-1;;;33029:57:0;;19588:2:1;33029:57:0;;;19570:21:1;19627:2;19607:18;;;19600:30;19666:34;19646:18;;;19639:62;-1:-1:-1;;;19717:18:1;;;19710:31;19758:19;;33029:57:0;19386:397:1;33029:57:0;9732:10;-1:-1:-1;;;;;33121:21:0;;;;:62;;-1:-1:-1;33146:37:0;33163:5;9732:10;34034:164;:::i;33146:37::-;33099:168;;;;-1:-1:-1;;;33099:168:0;;15271:2:1;33099:168:0;;;15253:21:1;15310:2;15290:18;;;15283:30;15349:34;15329:18;;;15322:62;15420:26;15400:18;;;15393:54;15464:19;;33099:168:0;15069:420:1;33099:168:0;33280:21;33289:2;33293:7;33280:8;:21::i;:::-;32968:341;32898:411;;:::o;53506:832::-;53574:14;53591:13;44652:10;:17;;44564:113;53591:13;53624:11;;53574:30;;-1:-1:-1;53624:11:0;;;;;53623:12;53615:56;;;;-1:-1:-1;;;53615:56:0;;;;;;;:::i;:::-;53700:9;;53690:6;:19;;53682:49;;;;-1:-1:-1;;;53682:49:0;;;;;;;:::i;:::-;53760:1;53750:7;:11;53742:36;;;;-1:-1:-1;;;53742:36:0;;14930:2:1;53742:36:0;;;14912:21:1;14969:2;14949:18;;;14942:30;-1:-1:-1;;;14988:18:1;;;14981:42;15040:18;;53742:36:0;14728:336:1;53742:36:0;53805:9;53797:4;;:17;;53789:49;;;;-1:-1:-1;;;53789:49:0;;;;;;;:::i;:::-;53857:13;;:30;;-1:-1:-1;;;53857:30:0;;;;;21517:25:1;;;53891:10:0;;-1:-1:-1;;;;;53857:13:0;;:21;;21490:18:1;;53857:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53857:44:0;;53849:70;;;;-1:-1:-1;;;53849:70:0;;20821:2:1;53849:70:0;;;20803:21:1;20860:2;20840:18;;;20833:30;-1:-1:-1;;;20879:18:1;;;20872:43;20932:18;;53849:70:0;20619:337:1;53849:70:0;53945:7;53934;:18;53930:401;;53969:13;53985:30;53998:7;54007;53985:12;:30::i;:::-;53969:46;;54038:25;54051:5;54058:4;54038:12;:25::i;:::-;54030:33;;54087:14;54095:5;54087:7;:14::i;:::-;54086:15;54078:59;;;;-1:-1:-1;;;54078:59:0;;9642:2:1;54078:59:0;;;9624:21:1;9681:2;9661:18;;;9654:30;9720:33;9700:18;;;9693:61;9771:18;;54078:59:0;9440:355:1;54078:59:0;54152:28;54162:10;54174:5;54152:9;:28::i;53930:401::-;54222:16;54230:7;54222;:16::i;:::-;54221:17;54213:61;;;;-1:-1:-1;;;54213:61:0;;9642:2:1;54213:61:0;;;9624:21:1;9681:2;9661:18;;;9654:30;9720:33;9700:18;;;9693:61;9771:18;;54213:61:0;9440:355:1;54213:61:0;54289:30;54299:10;54311:7;54289:9;:30::i;:::-;53563:775;53506:832;:::o;34265:339::-;34460:41;9732:10;34493:7;34460:18;:41::i;:::-;34452:103;;;;-1:-1:-1;;;34452:103:0;;;;;;;:::i;:::-;34568:28;34578:4;34584:2;34588:7;34568:9;:28::i;44232:256::-;44329:7;44365:23;44382:5;44365:16;:23::i;:::-;44357:5;:31;44349:87;;;;-1:-1:-1;;;44349:87:0;;10350:2:1;44349:87:0;;;10332:21:1;10389:2;10369:18;;;10362:30;10428:34;10408:18;;;10401:62;-1:-1:-1;;;10479:18:1;;;10472:41;10530:19;;44349:87:0;10148:407:1;44349:87:0;-1:-1:-1;;;;;;44454:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44232:256::o;59687:192::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59762:82:::1;::::0;59744:12:::1;::::0;59770:10:::1;::::0;59808:21:::1;::::0;59744:12;59762:82;59744:12;59762:82;59808:21;59770:10;59762:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59743:101;;;59863:7;59855:16;;;::::0;::::1;;59732:147;59687:192::o:0;56544:1438::-;56654:14;56671:13;44652:10;:17;;44564:113;56671:13;56704:11;;56654:30;;-1:-1:-1;56704:11:0;;;;;56703:12;56695:56;;;;-1:-1:-1;;;56695:56:0;;;;;;;:::i;:::-;56771:12;;;;;;;56770:13;56762:67;;;;-1:-1:-1;;;56762:67:0;;;;;;;:::i;:::-;56848:10;56862:9;56848:23;56840:56;;;;-1:-1:-1;;;56840:56:0;;11541:2:1;56840:56:0;;;11523:21:1;11580:2;11560:18;;;11553:30;-1:-1:-1;;;11599:18:1;;;11592:50;11659:18;;56840:56:0;11339:344:1;56840:56:0;56925:9;;56915:6;:19;;56907:49;;;;-1:-1:-1;;;56907:49:0;;;;;;;:::i;:::-;56993:1;56975:8;:15;:19;56967:51;;;;-1:-1:-1;;;56967:51:0;;10002:2:1;56967:51:0;;;9984:21:1;10041:2;10021:18;;;10014:30;-1:-1:-1;;;10060:18:1;;;10053:49;10119:18;;56967:51:0;9800:343:1;56967:51:0;57070:13;;57051:8;:15;:32;;57029:116;;;;-1:-1:-1;;;57029:116:0;;;;;;;:::i;:::-;57191:9;57172:8;:15;57164:5;;:23;;;;:::i;:::-;:36;;57156:68;;;;-1:-1:-1;;;57156:68:0;;;;;;;:::i;:::-;57285:9;;57266:15;;57257:24;;:6;:24;:::i;:::-;:37;;57235:126;;;;-1:-1:-1;;;57235:126:0;;;;;;;:::i;:::-;57377:9;57372:603;57396:8;:15;57392:1;:19;57372:603;;;57452:7;57437:8;57446:1;57437:11;;;;;;;;:::i;:::-;;;;;;;:22;57433:531;;57480:13;57496:34;57509:8;57518:1;57509:11;;;;;;;;:::i;:::-;;;;;;;57522:7;57496:12;:34::i;:::-;57480:50;;57557:25;57570:5;57577:4;57557:12;:25::i;:::-;57549:33;;57605:14;57613:5;57605:7;:14::i;:::-;57601:148;;;57644:8;;;57601:148;57701:28;57711:10;57723:5;57701:9;:28::i;:::-;57461:303;57433:531;;;57793:20;57801:8;57810:1;57801:11;;;;;;;;:::i;:::-;;;;;;;57793:7;:20::i;:::-;57789:160;;;57838:8;;57789:160;57895:34;57905:10;57917:8;57926:1;57917:11;;;;;;;;:::i;:::-;;;;;;;57895:9;:34::i;:::-;57413:3;;;;:::i;:::-;;;;57372:603;;34675:185;34813:39;34830:4;34836:2;34840:7;34813:39;;;;;;;;;;;;:16;:39::i;52317:390::-;52404:16;52438:23;52464:17;52474:6;52464:9;:17::i;:::-;52438:43;;52492:25;52534:15;52520:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52520:30:0;;52492:58;;52566:9;52561:113;52581:15;52577:1;:19;52561:113;;;52632:30;52652:6;52660:1;52632:19;:30::i;:::-;52618:8;52627:1;52618:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52598:3;;;;:::i;:::-;;;;52561:113;;;-1:-1:-1;52691:8:0;52317:390;-1:-1:-1;;;52317:390:0:o;58671:86::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58734:4:::1;:15:::0;58671:86::o;44754:233::-;44829:7;44865:30;44652:10;:17;;44564:113;44865:30;44857:5;:38;44849:95;;;;-1:-1:-1;;;44849:95:0;;20408:2:1;44849:95:0;;;20390:21:1;20447:2;20427:18;;;20420:30;20486:34;20466:18;;;20459:62;-1:-1:-1;;;20537:18:1;;;20530:42;20589:19;;44849:95:0;20206:408:1;44849:95:0;44962:10;44973:5;44962:17;;;;;;;;:::i;:::-;;;;;;;;;44955:24;;44754:233;;;:::o;59127:104::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59202:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;31510:239::-:0;31582:7;31618:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31618:16:0;31653:19;31645:73;;;;-1:-1:-1;;;31645:73:0;;16107:2:1;31645:73:0;;;16089:21:1;16146:2;16126:18;;;16119:30;16185:34;16165:18;;;16158:62;-1:-1:-1;;;16236:18:1;;;16229:39;16285:19;;31645:73:0;15905:405:1;54346:1132:0;54422:14;54439:13;44652:10;:17;;44564:113;54439:13;54472:11;;54422:30;;-1:-1:-1;54472:11:0;;;;;54471:12;54463:56;;;;-1:-1:-1;;;54463:56:0;;;;;;;:::i;:::-;54548:9;;54538:6;:19;;54530:49;;;;-1:-1:-1;;;54530:49:0;;;;;;;:::i;:::-;54616:1;54598:8;:15;:19;54590:51;;;;-1:-1:-1;;;54590:51:0;;10002:2:1;54590:51:0;;;9984:21:1;10041:2;10021:18;;;10014:30;-1:-1:-1;;;10060:18:1;;;10053:49;10119:18;;54590:51:0;9800:343:1;54590:51:0;54686:9;54667:8;:15;54660:4;;:22;;;;:::i;:::-;:35;;54652:67;;;;-1:-1:-1;;;54652:67:0;;;;;;;:::i;:::-;54735:9;54730:741;54754:8;:15;54750:1;:19;54730:741;;;54817:13;;54839:11;;54855:10;;-1:-1:-1;;;;;54817:13:0;;:21;;54839:8;;54848:1;;54839:11;;;;;;:::i;:::-;;;;;;;54817:34;;;;;;;;;;;;;21517:25:1;;21505:2;21490:18;;21371:177;54817:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54817:48:0;;54791:123;;;;-1:-1:-1;;;54791:123:0;;20821:2:1;54791:123:0;;;20803:21:1;20860:2;20840:18;;;20833:30;-1:-1:-1;;;20879:18:1;;;20872:43;20932:18;;54791:123:0;20619:337:1;54791:123:0;54948:7;54933:8;54942:1;54933:11;;;;;;;;:::i;:::-;;;;;;;:22;54929:531;;54976:13;54992:34;55005:8;55014:1;55005:11;;;;;;;;:::i;54992:34::-;54976:50;;55053:25;55066:5;55073:4;55053:12;:25::i;:::-;55045:33;;55101:14;55109:5;55101:7;:14::i;:::-;55097:148;;;55140:8;;;55097:148;55197:28;55207:10;55219:5;55197:9;:28::i;:::-;54957:303;54929:531;;;55289:20;55297:8;55306:1;55297:11;;;;;;;;:::i;55289:20::-;55285:160;;;55334:8;;55285:160;55391:34;55401:10;55413:8;55422:1;55413:11;;;;;;;;:::i;55391:34::-;54771:3;;;;:::i;:::-;;;;54730:741;;31240:208;31312:7;-1:-1:-1;;;;;31340:19:0;;31332:74;;;;-1:-1:-1;;;31332:74:0;;15696:2:1;31332:74:0;;;15678:21:1;15735:2;15715:18;;;15708:30;15774:34;15754:18;;;15747:62;-1:-1:-1;;;15825:18:1;;;15818:40;15875:19;;31332:74:0;15494:406:1;31332:74:0;-1:-1:-1;;;;;;31424:16:0;;;;;:9;:16;;;;;;;31240:208::o;11515:94::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;11580:21:::1;11598:1;11580:9;:21::i;:::-;11515:94::o:0;58011:230::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58086:9:::1;::::0;::::1;;58085:10;58077:55;;;::::0;-1:-1:-1;;;58077:55:0;;19227:2:1;58077:55:0::1;::::0;::::1;19209:21:1::0;;;19246:18;;;19239:30;19305:34;19285:18;;;19278:62;19357:18;;58077:55:0::1;19025:356:1::0;58077:55:0::1;58152:16;58160:7;58152;:16::i;:::-;58151:17;58143:49;;;::::0;-1:-1:-1;;;58143:49:0;;13062:2:1;58143:49:0::1;::::0;::::1;13044:21:1::0;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:49;13179:18;;58143:49:0::1;12860:343:1::0;58143:49:0::1;58203:30;58213:10;58225:7;58203:9;:30::i;58863:122::-:0;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58944:13:::1;:33:::0;58863:122::o;58765:90::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58830:5:::1;:17:::0;58765:90::o;31985:104::-;32041:13;32074:7;32067:14;;;;;:::i;59398:85::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59457:9:::1;:18:::0;;-1:-1:-1;;59457:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59398:85::o;33668:295::-;-1:-1:-1;;;;;33771:24:0;;9732:10;33771:24;;33763:62;;;;-1:-1:-1;;;33763:62:0;;13815:2:1;33763:62:0;;;13797:21:1;13854:2;13834:18;;;13827:30;13893:27;13873:18;;;13866:55;13938:18;;33763:62:0;13613:349:1;33763:62:0;9732:10;33838:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33838:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33838:53:0;;;;;;;;;;33907:48;;9164:41:1;;;33838:42:0;;9732:10;33907:48;;9137:18:1;33907:48:0;;;;;;;33668:295;;:::o;58594:69::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58640:8:::1;:15:::0;;-1:-1:-1;;58640:15:0::1;::::0;::::1;::::0;;58594:69::o;34931:328::-;35106:41;9732:10;35139:7;35106:18;:41::i;:::-;35098:103;;;;-1:-1:-1;;;35098:103:0;;;;;;;:::i;:::-;35212:39;35226:4;35232:2;35236:7;35245:5;35212:13;:39::i;:::-;34931:328;;;;:::o;58249:337::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58369:9:::1;::::0;::::1;;58368:10;58360:55;;;::::0;-1:-1:-1;;;58360:55:0;;19227:2:1;58360:55:0::1;::::0;::::1;19209:21:1::0;;;19246:18;;;19239:30;19305:34;19285:18;;;19278:62;19357:18;;58360:55:0::1;19025:356:1::0;58360:55:0::1;58431:9;58426:153;58450:10;:17;58446:1;:21;58426:153;;;58497:10;58508:1;58497:13;;;;;;;;:::i;:::-;;;;;;;58514:1;58497:18;;58489:27;;;::::0;::::1;;58531:36;58541:10;58553;58564:1;58553:13;;;;;;;;:::i;58531:36::-;58469:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58426:153;;51413:37:::0;;;;;;;:::i;52715:725::-;52833:13;52886:16;52894:7;52886;:16::i;:::-;52864:113;;;;-1:-1:-1;;;52864:113:0;;18408:2:1;52864:113:0;;;18390:21:1;18447:2;18427:18;;;18420:30;18486:34;18466:18;;;18459:62;-1:-1:-1;;;18537:18:1;;;18530:45;18592:19;;52864:113:0;18206:411:1;52864:113:0;52994:8;;;;;;;52990:71;;53035:14;53028:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52715:725;;;:::o;52990:71::-;53073:28;53104:10;:8;:10::i;:::-;53073:41;;53176:1;53151:14;53145:28;:32;:287;;;;;;;;;;;;;;;;;53269:14;53310:18;:7;:16;:18::i;:::-;53355:13;53226:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53145:287;53125:307;52715:725;-1:-1:-1;;;52715:725:0:o;59491:89::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59552:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;59552:20:0;;::::1;::::0;;;::::1;::::0;;59491:89::o;59239:151::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59349:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;55514:1022::-:0;55583:14;55600:13;44652:10;:17;;44564:113;55600:13;55633:11;;55583:30;;-1:-1:-1;55633:11:0;;;;;55632:12;55624:56;;;;-1:-1:-1;;;55624:56:0;;;;;;;:::i;:::-;55700:12;;;;;;;55699:13;55691:67;;;;-1:-1:-1;;;55691:67:0;;;;;;;:::i;:::-;55777:10;55791:9;55777:23;55769:56;;;;-1:-1:-1;;;55769:56:0;;11541:2:1;55769:56:0;;;11523:21:1;11580:2;11560:18;;;11553:30;-1:-1:-1;;;11599:18:1;;;11592:50;11659:18;;55769:56:0;11339:344:1;55769:56:0;55858:1;55844:11;:15;55836:24;;;;;;55908:13;;55893:11;:28;;55871:112;;;;-1:-1:-1;;;55871:112:0;;;;;;;:::i;:::-;56029:5;;56015:19;;:11;:19;:::i;:::-;56002:9;:32;;55994:64;;;;-1:-1:-1;;;55994:64:0;;;;;;;:::i;:::-;56115:9;;56091:20;56100:11;56091:6;:20;:::i;:::-;:33;;56069:122;;;;-1:-1:-1;;;56069:122:0;;;;;;;:::i;:::-;56204:9;56245:1;56228:301;56252:9;;:13;;56264:1;56252:13;:::i;:::-;56248:1;:17;56228:301;;;56296:11;56291:1;:16;56287:231;;;56328:5;;56287:231;56379:10;56387:1;56379:7;:10::i;:::-;56378:11;:30;;;;;56397:11;56393:1;:15;56378:30;56374:129;;;56433:24;56443:10;56455:1;56433:9;:24::i;:::-;56480:3;;;;:::i;:::-;;;;56374:129;56267:3;;;;:::i;:::-;;;;56228:301;;58993:126;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59079:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11764:192::-:0;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11853:22:0;::::1;11845:73;;;::::0;-1:-1:-1;;;11845:73:0;;11890:2:1;11845:73:0::1;::::0;::::1;11872:21:1::0;11929:2;11909:18;;;11902:30;11968:34;11948:18;;;11941:62;-1:-1:-1;;;12019:18:1;;;12012:36;12065:19;;11845:73:0::1;11688:402:1::0;11845:73:0::1;11929:19;11939:8;11929:9;:19::i;59588:91::-:0;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59650:12:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;59650:21:0;;::::1;::::0;;;::::1;::::0;;59588:91::o;30871:305::-;30973:4;-1:-1:-1;;;;;;31010:40:0;;-1:-1:-1;;;31010:40:0;;:105;;-1:-1:-1;;;;;;;31067:48:0;;-1:-1:-1;;;31067:48:0;31010:105;:158;;;-1:-1:-1;;;;;;;;;;22959:40:0;;;31132:36;22850:157;36769:127;36834:4;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;:30;;;36769:127::o;40751:174::-;40826:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40826:29:0;-1:-1:-1;;;;;40826:29:0;;;;;;;;:24;;40880:23;40826:24;40880:14;:23::i;:::-;-1:-1:-1;;;;;40871:46:0;;;;;;;;;;;40751:174;;:::o;3929:98::-;3987:7;4014:5;4018:1;4014;:5;:::i;2792:98::-;2850:7;2877:5;2881:1;2877;:5;:::i;37753:110::-;37829:26;37839:2;37843:7;37829:26;;;;;;;;;;;;:9;:26::i;37063:348::-;37156:4;37181:16;37189:7;37181;:16::i;:::-;37173:73;;;;-1:-1:-1;;;37173:73:0;;14169:2:1;37173:73:0;;;14151:21:1;14208:2;14188:18;;;14181:30;14247:34;14227:18;;;14220:62;-1:-1:-1;;;14298:18:1;;;14291:42;14350:19;;37173:73:0;13967:408:1;37173:73:0;37257:13;37273:23;37288:7;37273:14;:23::i;:::-;37257:39;;37326:5;-1:-1:-1;;;;;37315:16:0;:7;-1:-1:-1;;;;;37315:16:0;;:51;;;;37359:7;-1:-1:-1;;;;;37335:31:0;:20;37347:7;37335:11;:20::i;:::-;-1:-1:-1;;;;;37335:31:0;;37315:51;:87;;;-1:-1:-1;;;;;;34155:25:0;;;34131:4;34155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37370:32;37307:96;37063:348;-1:-1:-1;;;;37063:348:0:o;40055:578::-;40214:4;-1:-1:-1;;;;;40187:31:0;:23;40202:7;40187:14;:23::i;:::-;-1:-1:-1;;;;;40187:31:0;;40179:85;;;;-1:-1:-1;;;40179:85:0;;17998:2:1;40179:85:0;;;17980:21:1;18037:2;18017:18;;;18010:30;18076:34;18056:18;;;18049:62;-1:-1:-1;;;18127:18:1;;;18120:39;18176:19;;40179:85:0;17796:405:1;40179:85:0;-1:-1:-1;;;;;40283:16:0;;40275:65;;;;-1:-1:-1;;;40275:65:0;;13410:2:1;40275:65:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:34;13468:18;;;13461:62;-1:-1:-1;;;13539:18:1;;;13532:34;13583:19;;40275:65:0;13208:400:1;40275:65:0;40353:39;40374:4;40380:2;40384:7;40353:20;:39::i;:::-;40457:29;40474:1;40478:7;40457:8;:29::i;:::-;-1:-1:-1;;;;;40499:15:0;;;;;;:9;:15;;;;;:20;;40518:1;;40499:15;:20;;40518:1;;40499:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40530:13:0;;;;;;:9;:13;;;;;:18;;40547:1;;40530:13;:18;;40547:1;;40530:18;:::i;:::-;;;;-1:-1:-1;;40559:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40559:21:0;-1:-1:-1;;;;;40559:21:0;;;;;;;;;40598:27;;40559:16;;40598:27;;;;;;;40055:578;;;:::o;11964:173::-;12039:6;;;-1:-1:-1;;;;;12056:17:0;;;-1:-1:-1;;;;;;12056:17:0;;;;;;;12089:40;;12039:6;;;12056:17;12039:6;;12089:40;;12020:16;;12089:40;12009:128;11964:173;:::o;36141:315::-;36298:28;36308:4;36314:2;36318:7;36298:9;:28::i;:::-;36345:48;36368:4;36374:2;36378:7;36387:5;36345:22;:48::i;:::-;36337:111;;;;-1:-1:-1;;;36337:111:0;;;;;;;:::i;52201:108::-;52261:13;52294:7;52287:14;;;;;:::i;7268:723::-;7324:13;7545:10;7541:53;;-1:-1:-1;;7572:10:0;;;;;;;;;;;;-1:-1:-1;;;7572:10:0;;;;;7268:723::o;7541:53::-;7619:5;7604:12;7660:78;7667:9;;7660:78;;7693:8;;;;:::i;:::-;;-1:-1:-1;7716:10:0;;-1:-1:-1;7724:2:0;7716:10;;:::i;:::-;;;7660:78;;;7748:19;7780:6;7770:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7770:17:0;;7748:39;;7798:154;7805:10;;7798:154;;7832:11;7842:1;7832:11;;:::i;:::-;;-1:-1:-1;7901:10:0;7909:2;7901:5;:10;:::i;:::-;7888:24;;:2;:24;:::i;:::-;7875:39;;7858:6;7865;7858:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7858:56:0;;;;;;;;-1:-1:-1;7929:11:0;7938:2;7929:11;;:::i;:::-;;;7798:154;;38090:321;38220:18;38226:2;38230:7;38220:5;:18::i;:::-;38271:54;38302:1;38306:2;38310:7;38319:5;38271:22;:54::i;:::-;38249:154;;;;-1:-1:-1;;;38249:154:0;;;;;;;:::i;45600:589::-;-1:-1:-1;;;;;45806:18:0;;45802:187;;45841:40;45873:7;47016:10;:17;;46989:24;;;;:15;:24;;;;;:44;;;47044:24;;;;;;;;;;;;46912:164;45841:40;45802:187;;;45911:2;-1:-1:-1;;;;;45903:10:0;:4;-1:-1:-1;;;;;45903:10:0;;45899:90;;45930:47;45963:4;45969:7;45930:32;:47::i;:::-;-1:-1:-1;;;;;46003:16:0;;45999:183;;46036:45;46073:7;46036:36;:45::i;45999:183::-;46109:4;-1:-1:-1;;;;;46103:10:0;:2;-1:-1:-1;;;;;46103:10:0;;46099:83;;46130:40;46158:2;46162:7;46130:27;:40::i;41490:799::-;41645:4;-1:-1:-1;;;;;41666:13:0;;13233:20;13281:8;41662:620;;41702:72;;-1:-1:-1;;;41702:72:0;;-1:-1:-1;;;;;41702:36:0;;;;;:72;;9732:10;;41753:4;;41759:7;;41768:5;;41702:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41702:72:0;;;;;;;;-1:-1:-1;;41702:72:0;;;;;;;;;;;;:::i;:::-;;;41698:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41944:13:0;;41940:272;;41987:60;;-1:-1:-1;;;41987:60:0;;;;;;;:::i;41940:272::-;42162:6;42156:13;42147:6;42143:2;42139:15;42132:38;41698:529;-1:-1:-1;;;;;;41825:51:0;-1:-1:-1;;;41825:51:0;;-1:-1:-1;41818:58:0;;41662:620;-1:-1:-1;42266:4:0;41490:799;;;;;;:::o;38747:382::-;-1:-1:-1;;;;;38827:16:0;;38819:61;;;;-1:-1:-1;;;38819:61:0;;16517:2:1;38819:61:0;;;16499:21:1;;;16536:18;;;16529:30;16595:34;16575:18;;;16568:62;16647:18;;38819:61:0;16315:356:1;38819:61:0;38900:16;38908:7;38900;:16::i;:::-;38899:17;38891:58;;;;-1:-1:-1;;;38891:58:0;;12705:2:1;38891:58:0;;;12687:21:1;12744:2;12724:18;;;12717:30;12783;12763:18;;;12756:58;12831:18;;38891:58:0;12503:352:1;38891:58:0;38962:45;38991:1;38995:2;38999:7;38962:20;:45::i;:::-;-1:-1:-1;;;;;39020:13:0;;;;;;:9;:13;;;;;:18;;39037:1;;39020:13;:18;;39037:1;;39020:18;:::i;:::-;;;;-1:-1:-1;;39049:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39049:21:0;-1:-1:-1;;;;;39049:21:0;;;;;;;;39088:33;;39049:16;;;39088:33;;39049:16;;39088:33;38747:382;;:::o;47703:988::-;47969:22;48019:1;47994:22;48011:4;47994:16;:22::i;:::-;:26;;;;:::i;:::-;48031:18;48052:26;;;:17;:26;;;;;;47969:51;;-1:-1:-1;48185:28:0;;;48181:328;;-1:-1:-1;;;;;48252:18:0;;48230:19;48252:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48303:30;;;;;;:44;;;48420:30;;:17;:30;;;;;:43;;;48181:328;-1:-1:-1;48605:26:0;;;;:17;:26;;;;;;;;48598:33;;;-1:-1:-1;;;;;48649:18:0;;;;;:12;:18;;;;;:34;;;;;;;48642:41;47703:988::o;48986:1079::-;49264:10;:17;49239:22;;49264:21;;49284:1;;49264:21;:::i;:::-;49296:18;49317:24;;;:15;:24;;;;;;49690:10;:26;;49239:46;;-1:-1:-1;49317:24:0;;49239:46;;49690:26;;;;;;:::i;:::-;;;;;;;;;49668:48;;49754:11;49729:10;49740;49729:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49834:28;;;:15;:28;;;;;;;:41;;;50006:24;;;;;49999:31;50041:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49057:1008;;;48986:1079;:::o;46490:221::-;46575:14;46592:20;46609:2;46592:16;:20::i;:::-;-1:-1:-1;;;;;46623:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46668:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46490:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;842:251::-;912:6;965:2;953:9;944:7;940:23;936:32;933:52;;;981:1;978;971:12;933:52;1013:9;1007:16;1032:31;1057:5;1032:31;:::i;1098:388::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1282:9;1269:23;1301:31;1326:5;1301:31;:::i;:::-;1351:5;-1:-1:-1;1408:2:1;1393:18;;1380:32;1421:33;1380:32;1421:33;:::i;:::-;1473:7;1463:17;;;1098:388;;;;;:::o;1491:456::-;1568:6;1576;1584;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1692:9;1679:23;1711:31;1736:5;1711:31;:::i;:::-;1761:5;-1:-1:-1;1818:2:1;1803:18;;1790:32;1831:33;1790:32;1831:33;:::i;:::-;1491:456;;1883:7;;-1:-1:-1;;;1937:2:1;1922:18;;;;1909:32;;1491:456::o;1952:794::-;2047:6;2055;2063;2071;2124:3;2112:9;2103:7;2099:23;2095:33;2092:53;;;2141:1;2138;2131:12;2092:53;2180:9;2167:23;2199:31;2224:5;2199:31;:::i;:::-;2249:5;-1:-1:-1;2306:2:1;2291:18;;2278:32;2319:33;2278:32;2319:33;:::i;:::-;2371:7;-1:-1:-1;2425:2:1;2410:18;;2397:32;;-1:-1:-1;2480:2:1;2465:18;;2452:32;2507:18;2496:30;;2493:50;;;2539:1;2536;2529:12;2493:50;2562:22;;2615:4;2607:13;;2603:27;-1:-1:-1;2593:55:1;;2644:1;2641;2634:12;2593:55;2667:73;2732:7;2727:2;2714:16;2709:2;2705;2701:11;2667:73;:::i;:::-;2657:83;;;1952:794;;;;;;;:::o;2751:315::-;2816:6;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:52;;;2893:1;2890;2883:12;2845:52;2932:9;2919:23;2951:31;2976:5;2951:31;:::i;:::-;3001:5;-1:-1:-1;3025:35:1;3056:2;3041:18;;3025:35;:::i;:::-;3015:45;;2751:315;;;;;:::o;3071:::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3255:9;3242:23;3274:31;3299:5;3274:31;:::i;:::-;3324:5;3376:2;3361:18;;;;3348:32;;-1:-1:-1;;;3071:315:1:o;3391:957::-;3475:6;3506:2;3549;3537:9;3528:7;3524:23;3520:32;3517:52;;;3565:1;3562;3555:12;3517:52;3605:9;3592:23;3634:18;3675:2;3667:6;3664:14;3661:34;;;3691:1;3688;3681:12;3661:34;3729:6;3718:9;3714:22;3704:32;;3774:7;3767:4;3763:2;3759:13;3755:27;3745:55;;3796:1;3793;3786:12;3745:55;3832:2;3819:16;3854:2;3850;3847:10;3844:36;;;3860:18;;:::i;:::-;3906:2;3903:1;3899:10;3889:20;;3929:28;3953:2;3949;3945:11;3929:28;:::i;:::-;3991:15;;;4022:12;;;;4054:11;;;4084;;;4080:20;;4077:33;-1:-1:-1;4074:53:1;;;4123:1;4120;4113:12;4074:53;4145:1;4136:10;;4155:163;4169:2;4166:1;4163:9;4155:163;;;4226:17;;4214:30;;4187:1;4180:9;;;;;4264:12;;;;4296;;4155:163;;;-1:-1:-1;4337:5:1;3391:957;-1:-1:-1;;;;;;;;3391:957:1:o;4353:180::-;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4501:26;4517:9;4501:26;:::i;4538:245::-;4596:6;4649:2;4637:9;4628:7;4624:23;4620:32;4617:52;;;4665:1;4662;4655:12;4617:52;4704:9;4691:23;4723:30;4747:5;4723:30;:::i;4788:249::-;4857:6;4910:2;4898:9;4889:7;4885:23;4881:32;4878:52;;;4926:1;4923;4916:12;4878:52;4958:9;4952:16;4977:30;5001:5;4977:30;:::i;5042:450::-;5111:6;5164:2;5152:9;5143:7;5139:23;5135:32;5132:52;;;5180:1;5177;5170:12;5132:52;5220:9;5207:23;5253:18;5245:6;5242:30;5239:50;;;5285:1;5282;5275:12;5239:50;5308:22;;5361:4;5353:13;;5349:27;-1:-1:-1;5339:55:1;;5390:1;5387;5380:12;5339:55;5413:73;5478:7;5473:2;5460:16;5455:2;5451;5447:11;5413:73;:::i;5497:180::-;5556:6;5609:2;5597:9;5588:7;5584:23;5580:32;5577:52;;;5625:1;5622;5615:12;5577:52;-1:-1:-1;5648:23:1;;5497:180;-1:-1:-1;5497:180:1:o;5682:257::-;5723:3;5761:5;5755:12;5788:6;5783:3;5776:19;5804:63;5860:6;5853:4;5848:3;5844:14;5837:4;5830:5;5826:16;5804:63;:::i;:::-;5921:2;5900:15;-1:-1:-1;;5896:29:1;5887:39;;;;5928:4;5883:50;;5682:257;-1:-1:-1;;5682:257:1:o;5944:1527::-;6168:3;6206:6;6200:13;6232:4;6245:51;6289:6;6284:3;6279:2;6271:6;6267:15;6245:51;:::i;:::-;6359:13;;6318:16;;;;6381:55;6359:13;6318:16;6403:15;;;6381:55;:::i;:::-;6525:13;;6458:20;;;6498:1;;6585;6607:18;;;;6660;;;;6687:93;;6765:4;6755:8;6751:19;6739:31;;6687:93;6828:2;6818:8;6815:16;6795:18;6792:40;6789:167;;;-1:-1:-1;;;6855:33:1;;6911:4;6908:1;6901:15;6941:4;6862:3;6929:17;6789:167;6972:18;6999:110;;;;7123:1;7118:328;;;;6965:481;;6999:110;-1:-1:-1;;7034:24:1;;7020:39;;7079:20;;;;-1:-1:-1;6999:110:1;;7118:328;21906:1;21899:14;;;21943:4;21930:18;;7213:1;7227:169;7241:8;7238:1;7235:15;7227:169;;;7323:14;;7308:13;;;7301:37;7366:16;;;;7258:10;;7227:169;;;7231:3;;7427:8;7420:5;7416:20;7409:27;;6965:481;-1:-1:-1;7462:3:1;;5944:1527;-1:-1:-1;;;;;;;;;;;5944:1527:1:o;7894:488::-;-1:-1:-1;;;;;8163:15:1;;;8145:34;;8215:15;;8210:2;8195:18;;8188:43;8262:2;8247:18;;8240:34;;;8310:3;8305:2;8290:18;;8283:31;;;8088:4;;8331:45;;8356:19;;8348:6;8331:45;:::i;:::-;8323:53;7894:488;-1:-1:-1;;;;;;7894:488:1:o;8387:632::-;8558:2;8610:21;;;8680:13;;8583:18;;;8702:22;;;8529:4;;8558:2;8781:15;;;;8755:2;8740:18;;;8529:4;8824:169;8838:6;8835:1;8832:13;8824:169;;;8899:13;;8887:26;;8968:15;;;;8933:12;;;;8860:1;8853:9;8824:169;;;-1:-1:-1;9010:3:1;;8387:632;-1:-1:-1;;;;;;8387:632:1:o;9216:219::-;9365:2;9354:9;9347:21;9328:4;9385:44;9425:2;9414:9;9410:18;9402:6;9385:44;:::i;10560:414::-;10762:2;10744:21;;;10801:2;10781:18;;;10774:30;10840:34;10835:2;10820:18;;10813:62;-1:-1:-1;;;10906:2:1;10891:18;;10884:48;10964:3;10949:19;;10560:414::o;10979:355::-;11181:2;11163:21;;;11220:2;11200:18;;;11193:30;11259:33;11254:2;11239:18;;11232:61;11325:2;11310:18;;10979:355::o;12095:403::-;12297:2;12279:21;;;12336:2;12316:18;;;12309:30;12375:34;12370:2;12355:18;;12348:62;-1:-1:-1;;;12441:2:1;12426:18;;12419:37;12488:3;12473:19;;12095:403::o;14380:343::-;14582:2;14564:21;;;14621:2;14601:18;;;14594:30;-1:-1:-1;;;14655:2:1;14640:18;;14633:49;14714:2;14699:18;;14380:343::o;17089:341::-;17291:2;17273:21;;;17330:2;17310:18;;;17303:30;-1:-1:-1;;;17364:2:1;17349:18;;17342:47;17421:2;17406:18;;17089:341::o;17435:356::-;17637:2;17619:21;;;17656:18;;;17649:30;17715:34;17710:2;17695:18;;17688:62;17782:2;17767:18;;17435:356::o;18622:398::-;18824:2;18806:21;;;18863:2;18843:18;;;18836:30;18902:34;18897:2;18882:18;;18875:62;-1:-1:-1;;;18968:2:1;18953:18;;18946:32;19010:3;18995:19;;18622:398::o;19788:413::-;19990:2;19972:21;;;20029:2;20009:18;;;20002:30;20068:34;20063:2;20048:18;;20041:62;-1:-1:-1;;;20134:2:1;20119:18;;20112:47;20191:3;20176:19;;19788:413::o;20961:405::-;21163:2;21145:21;;;21202:2;21182:18;;;21175:30;21241:34;21236:2;21221:18;;21214:62;-1:-1:-1;;;21307:2:1;21292:18;;21285:39;21356:3;21341:19;;20961:405::o;21553:275::-;21624:2;21618:9;21689:2;21670:13;;-1:-1:-1;;21666:27:1;21654:40;;21724:18;21709:34;;21745:22;;;21706:62;21703:88;;;21771:18;;:::i;:::-;21807:2;21800:22;21553:275;;-1:-1:-1;21553:275:1:o;21959:128::-;21999:3;22030:1;22026:6;22023:1;22020:13;22017:39;;;22036:18;;:::i;:::-;-1:-1:-1;22072:9:1;;21959:128::o;22092:120::-;22132:1;22158;22148:35;;22163:18;;:::i;:::-;-1:-1:-1;22197:9:1;;22092:120::o;22217:168::-;22257:7;22323:1;22319;22315:6;22311:14;22308:1;22305:21;22300:1;22293:9;22286:17;22282:45;22279:71;;;22330:18;;:::i;:::-;-1:-1:-1;22370:9:1;;22217:168::o;22390:125::-;22430:4;22458:1;22455;22452:8;22449:34;;;22463:18;;:::i;:::-;-1:-1:-1;22500:9:1;;22390:125::o;22520:258::-;22592:1;22602:113;22616:6;22613:1;22610:13;22602:113;;;22692:11;;;22686:18;22673:11;;;22666:39;22638:2;22631:10;22602:113;;;22733:6;22730:1;22727:13;22724:48;;;-1:-1:-1;;22768:1:1;22750:16;;22743:27;22520:258::o;22783:380::-;22862:1;22858:12;;;;22905;;;22926:61;;22980:4;22972:6;22968:17;22958:27;;22926:61;23033:2;23025:6;23022:14;23002:18;22999:38;22996:161;;;23079:10;23074:3;23070:20;23067:1;23060:31;23114:4;23111:1;23104:15;23142:4;23139:1;23132:15;22996:161;;22783:380;;;:::o;23168:135::-;23207:3;-1:-1:-1;;23228:17:1;;23225:43;;;23248:18;;:::i;:::-;-1:-1:-1;23295:1:1;23284:13;;23168:135::o;23308:112::-;23340:1;23366;23356:35;;23371:18;;:::i;:::-;-1:-1:-1;23405:9:1;;23308:112::o;23425:127::-;23486:10;23481:3;23477:20;23474:1;23467:31;23517:4;23514:1;23507:15;23541:4;23538:1;23531:15;23557:127;23618:10;23613:3;23609:20;23606:1;23599:31;23649:4;23646:1;23639:15;23673:4;23670:1;23663:15;23689:127;23750:10;23745:3;23741:20;23738:1;23731:31;23781:4;23778:1;23771:15;23805:4;23802:1;23795:15;23821:127;23882:10;23877:3;23873:20;23870:1;23863:31;23913:4;23910:1;23903:15;23937:4;23934:1;23927:15;23953:127;24014:10;24009:3;24005:20;24002:1;23995:31;24045:4;24042:1;24035:15;24069:4;24066:1;24059:15;24085:131;-1:-1:-1;;;;;24160:31:1;;24150:42;;24140:70;;24206:1;24203;24196:12;24221:131;-1:-1:-1;;;;;;24295:32:1;;24285:43;;24275:71;;24342:1;24339;24332:12

Swarm Source

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