ETH Price: $3,383.46 (-1.57%)
Gas: 1 Gwei

Token

Eternal Klay Pets (PETS)
 

Overview

Max Total Supply

10,000 PETS

Holders

227

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
svj.eth
Balance
3 PETS
0xc320e4ef78095f9ed0a44f457b2c47f57c2b8bda
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:
NFTArtGenPresaleReveal

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-22
*/

// Sources flattened with hardhat v2.8.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

// "SPDX-License-Identifier: UNLICENSED"


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/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (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/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/NFTArtGen.sol


pragma solidity ^0.8.4;



// 
// Built by https://nft-generator.art
// 
contract NFTArtGen is ERC721, Ownable {
    string internal baseUri;

    uint256 public cost = 0.05 ether;
    uint32 public maxPerMint = 5;
    uint32 public maxPerWallet = 20;
    uint32 public supply = 0;
    uint32 public totalSupply = 0;
    bool public open = false;
    mapping(address => uint256) internal addressMintedMap;

    uint32 private commission = 49; // 4.9%
    address private author = 0x460Fd5059E7301680fA53E63bbBF7272E643e89C;

    constructor(
        string memory _uri,
        string memory _name,
        string memory _symbol,
        uint32 _totalSupply,
        uint256 _cost,
        bool _open
    ) ERC721(_name, _symbol) {
        baseUri = _uri;
        totalSupply = _totalSupply;
        cost = _cost;
        open = _open;
    }

    // ------ Author Only ------

    function setCommission(uint32 _commision) public {
        require(msg.sender == author, "Incorrect Address");
        commission = _commision;
    }

    // ------ Owner Only ------

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

    function setOpen(bool _open) public onlyOwner {
        open = _open;
    }

    function setMaxPerWallet(uint32 _max) public onlyOwner {
        maxPerWallet = _max;
    }

    function setMaxPerMint(uint32 _max) public onlyOwner {
        maxPerMint = _max;
    }

    function airdrop(address[] calldata to) public onlyOwner {
        for (uint32 i = 0; i < to.length; i++) {
            require(1 + supply <= totalSupply, "Limit reached");
            _safeMint(to[i], ++supply, "");
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    // ------ Mint! ------

    function mint(uint32 count) external payable preMintChecks(count) {
        require(open == true, "Mint not open");
        performMint(count);
    }

    function performMint(uint32 count) internal {
        for (uint32 i = 0; i < count; i++) {
            _safeMint(msg.sender, ++supply, "");
        }
        
        addressMintedMap[msg.sender] += count;

        (bool success, ) = payable(author).call{
            value: (msg.value * commission) / 1000
        }("");
        require(success);
    }

    // ------ Read ------

    // ------ Modifiers ------

    modifier preMintChecks(uint32 count) {
        require(count > 0, "Mint at least one.");
        require(count < maxPerMint + 1, "Max mint reached.");
        require(msg.value >= cost * count, "Not enough fund.");
        require(supply + count < totalSupply + 1, "Mint sold out");
        require(
            addressMintedMap[msg.sender] + count <= maxPerWallet,
            "Max total mint reached"
        );
        _;
    }
}


// File contracts/utils/Revealable.sol


pragma solidity ^0.8.4;

abstract contract Revealable is NFTArtGen {
    bool public revealed = false;
    string internal uriNotRevealed;

    function setUnrevealedURI(string memory _uri) public onlyOwner {
        uriNotRevealed = _uri;
    }

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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


// File contracts/utils/Presaleable.sol


pragma solidity ^0.8.4;


abstract contract Presaleable is NFTArtGen {
    bool public presaleOpen = false;
    bytes32 private merkleRoot;

    function setPresaleOpen(bool _open) public onlyOwner {
        presaleOpen = _open;
    }

    function setPreSaleAddresses(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    function presaleMint(uint32 count, bytes32[] calldata proof)
        external
        payable
        preMintChecks(count)
    {
        require(presaleOpen, "Presale not open");
        require(merkleRoot != "", "Presale not ready");
        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Not a presale member"
        );

        performMint(count);
    }
}


// File contracts/extensions/PresaleReveal.sol


pragma solidity ^0.8.4;



contract NFTArtGenPresaleReveal is NFTArtGen, Revealable, Presaleable {
    constructor(
        string memory _uri,
        string memory _name,
        string memory _symbol,
        uint32 _totalSupply,
        uint256 _cost,
        bool _open
    ) NFTArtGen(_uri, _name, _symbol, _totalSupply, _cost, _open) {}

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_tokenId <= supply, "Not minted yet");
        if (revealed == false) {
            return string(
                abi.encodePacked(uriNotRevealed, Strings.toString(_tokenId), ".json")
            );
        }

        return
            string(
                abi.encodePacked(baseUri, Strings.toString(_tokenId), ".json")
            );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint32","name":"_totalSupply","type":"uint32"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"bool","name":"_open","type":"bool"}],"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[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_commision","type":"uint32"}],"name":"setCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPreSaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setPresaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266b1a2bc2ec50000600855600980546001600160881b031916641400000005179055600b80546001600160c81b03191677460fd5059e7301680fa53e63bbbf7272e643e89c00000031179055600d805460ff191690553480156200006757600080fd5b5060405162002c9338038062002c938339810160408190526200008a9162000313565b85858585858584848160009080519060200190620000aa929190620001a4565b508051620000c0906001906020840190620001a4565b505050620000dd620000d76200014e60201b60201c565b62000152565b8551620000f2906007906020890190620001a4565b5060098054600893909355901515600160801b0260ff60801b1963ffffffff9094166c01000000000000000000000000029390931664ffffffffff60601b1990921691909117919091179055506200042b975050505050505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b290620003d8565b90600052602060002090601f016020900481019282620001d6576000855562000221565b82601f10620001f157805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022157825182559160200191906001019062000204565b506200022f92915062000233565b5090565b5b808211156200022f576000815560010162000234565b805180151581146200025b57600080fd5b919050565b600082601f83011262000271578081fd5b81516001600160401b03808211156200028e576200028e62000415565b604051601f8301601f19908116603f01168101908282118183101715620002b957620002b962000415565b81604052838152602092508683858801011115620002d5578485fd5b8491505b83821015620002f85785820183015181830184015290820190620002d9565b838211156200030957848385830101525b9695505050505050565b60008060008060008060c087890312156200032c578182fd5b86516001600160401b038082111562000343578384fd5b620003518a838b0162000260565b9750602089015191508082111562000367578384fd5b620003758a838b0162000260565b965060408901519150808211156200038b578384fd5b506200039a89828a0162000260565b945050606087015163ffffffff81168114620003b4578283fd5b60808801519093509150620003cc60a088016200024a565b90509295509295509295565b600181811c90821680620003ed57607f821691505b602082108114156200040f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612858806200043b6000396000f3fe60806040526004361061021a5760003560e01c80636fdca5e011610123578063a71bbebe116100ab578063f2fde38b1161006f578063f2fde38b14610642578063f5b9662114610662578063f8048d8f14610682578063fcfff16f146106a2578063fe2c7fee146106c357600080fd5b8063a71bbebe1461058c578063b88d4fde1461059f578063bee6348a146105bf578063c87b56dd146105d9578063e985e9c5146105f957600080fd5b80638da5cb5b116100f25780638da5cb5b1461050457806395d89b41146105225780639e5666cd14610537578063a22cb46514610557578063a475b5dd1461057757600080fd5b80636fdca5e01461048f57806370a08231146104af578063715018a6146104cf578063729ad39e146104e457600080fd5b806323b872dd116101a657806344a0d68a1161017557806344a0d68a146103ec578063453c23101461040c578063507e094f14610431578063518302271461044e5780636352211e1461046f57600080fd5b806323b872dd146103845780633006b543146103a45780633ccfd60b146103c457806342842e0e146103cc57600080fd5b8063081812fc116101ed578063081812fc146102c4578063092501a0146102fc578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057600080fd5b806301ffc9a71461021f5780630364d22a14610254578063047fc9aa1461026957806306fdde03146102a2575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612373565b6106e3565b60405190151581526020015b60405180910390f35b61026761026236600461240b565b610735565b005b34801561027557600080fd5b5060095461028d90600160401b900463ffffffff1681565b60405163ffffffff909116815260200161024b565b3480156102ae57600080fd5b506102b7610a83565b60405161024b919061259b565b3480156102d057600080fd5b506102e46102df36600461235b565b610b15565b6040516001600160a01b03909116815260200161024b565b34801561030857600080fd5b506102676103173660046123f1565b610baa565b34801561032857600080fd5b506102676103373660046122d8565b610c1c565b34801561034857600080fd5b5061035260085481565b60405190815260200161024b565b34801561036c57600080fd5b5060095461028d90600160601b900463ffffffff1681565b34801561039057600080fd5b5061026761039f3660046121fb565b610d32565b3480156103b057600080fd5b506102676103bf3660046123f1565b610d63565b610267610db5565b3480156103d857600080fd5b506102676103e73660046121fb565b610e37565b3480156103f857600080fd5b5061026761040736600461235b565b610e52565b34801561041857600080fd5b5060095461028d90640100000000900463ffffffff1681565b34801561043d57600080fd5b5060095461028d9063ffffffff1681565b34801561045a57600080fd5b50600b5461023f90600160c01b900460ff1681565b34801561047b57600080fd5b506102e461048a36600461235b565b610e81565b34801561049b57600080fd5b506102676104aa366004612341565b610ef8565b3480156104bb57600080fd5b506103526104ca3660046121a8565b610f40565b3480156104db57600080fd5b50610267610fc7565b3480156104f057600080fd5b506102676104ff366004612301565b610ffd565b34801561051057600080fd5b506006546001600160a01b03166102e4565b34801561052e57600080fd5b506102b7611147565b34801561054357600080fd5b5061026761055236600461235b565b611156565b34801561056357600080fd5b506102676105723660046122af565b611185565b34801561058357600080fd5b50610267611194565b61026761059a3660046123f1565b6111d3565b3480156105ab57600080fd5b506102676105ba366004612236565b611424565b3480156105cb57600080fd5b50600d5461023f9060ff1681565b3480156105e557600080fd5b506102b76105f436600461235b565b611456565b34801561060557600080fd5b5061023f6106143660046121c9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064e57600080fd5b5061026761065d3660046121a8565b6114f7565b34801561066e57600080fd5b5061026761067d366004612341565b61158f565b34801561068e57600080fd5b5061026761069d3660046123f1565b6115cc565b3480156106ae57600080fd5b5060095461023f90600160801b900460ff1681565b3480156106cf57600080fd5b506102676106de3660046123ab565b611612565b60006001600160e01b031982166380ac58cd60e01b148061071457506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b8260008163ffffffff16116107865760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b60448201526064015b60405180910390fd5b60095461079a9063ffffffff16600161269e565b63ffffffff168163ffffffff16106107e85760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161077d565b8063ffffffff166008546107fc91906126da565b34101561083e5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161077d565b60095461085990600160601b900463ffffffff16600161269e565b60095463ffffffff91821691610879918491600160401b9091041661269e565b63ffffffff16106108bc5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161077d565b600954336000908152600a602052604090205463ffffffff6401000000009092048216916108ed9190841690612686565b11156109345760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161077d565b600d5460ff166109795760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b604482015260640161077d565b600e546109bc5760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b604482015260640161077d565b610a3183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b16602082015290925060340190506040516020818303038152906040528051906020012061164f565b610a745760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b604482015260640161077d565b610a7d84611665565b50505050565b606060008054610a929061273c565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe9061273c565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b8e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077d565b506000908152600460205260409020546001600160a01b031690565b600b5464010000000090046001600160a01b03163314610c005760405162461bcd60e51b8152602060048201526011602482015270496e636f7272656374204164647265737360781b604482015260640161077d565b600b805463ffffffff191663ffffffff92909216919091179055565b6000610c2782610e81565b9050806001600160a01b0316836001600160a01b03161415610c955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077d565b336001600160a01b0382161480610cb15750610cb18133610614565b610d235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077d565b610d2d8383611760565b505050565b610d3c33826117ce565b610d585760405162461bcd60e51b815260040161077d90612635565b610d2d8383836118c5565b6006546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161077d90612600565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6006546001600160a01b03163314610ddf5760405162461bcd60e51b815260040161077d90612600565b604051600090339047908381818185875af1925050503d8060008114610e21576040519150601f19603f3d011682016040523d82523d6000602084013e610e26565b606091505b5050905080610e3457600080fd5b50565b610d2d83838360405180602001604052806000815250611424565b6006546001600160a01b03163314610e7c5760405162461bcd60e51b815260040161077d90612600565b600855565b6000818152600260205260408120546001600160a01b03168061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077d565b6006546001600160a01b03163314610f225760405162461bcd60e51b815260040161077d90612600565b60098054911515600160801b0260ff60801b19909216919091179055565b60006001600160a01b038216610fab5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ff15760405162461bcd60e51b815260040161077d90612600565b610ffb6000611a65565b565b6006546001600160a01b031633146110275760405162461bcd60e51b815260040161077d90612600565b60005b63ffffffff8116821115610d2d5760095463ffffffff600160601b820481169161105e91600160401b90910416600161269e565b63ffffffff1611156110a25760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161077d565b61113583838363ffffffff168181106110cb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110e091906121a8565b600980546008906110fd90600160401b900463ffffffff16612792565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff1660405180602001604052806000815250611ab7565b8061113f81612792565b91505061102a565b606060018054610a929061273c565b6006546001600160a01b031633146111805760405162461bcd60e51b815260040161077d90612600565b600e55565b611190338383611aea565b5050565b6006546001600160a01b031633146111be5760405162461bcd60e51b815260040161077d90612600565b600b805460ff60c01b1916600160c01b179055565b8060008163ffffffff161161121f5760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b604482015260640161077d565b6009546112339063ffffffff16600161269e565b63ffffffff168163ffffffff16106112815760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161077d565b8063ffffffff1660085461129591906126da565b3410156112d75760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161077d565b6009546112f290600160601b900463ffffffff16600161269e565b60095463ffffffff91821691611312918491600160401b9091041661269e565b63ffffffff16106113555760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161077d565b600954336000908152600a602052604090205463ffffffff6401000000009092048216916113869190841690612686565b11156113cd5760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161077d565b600954600160801b900460ff16151560011461141b5760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b604482015260640161077d565b61119082611665565b61142e33836117ce565b61144a5760405162461bcd60e51b815260040161077d90612635565b610a7d84848484611bb9565b600954606090600160401b900463ffffffff168211156114a95760405162461bcd60e51b815260206004820152600e60248201526d139bdd081b5a5b9d1959081e595d60921b604482015260640161077d565b600b54600160c01b900460ff166114ec57600c6114c583611bec565b6040516020016114d69291906124a4565b6040516020818303038152906040529050919050565b60076114c583611bec565b6006546001600160a01b031633146115215760405162461bcd60e51b815260040161077d90612600565b6001600160a01b0381166115865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077d565b610e3481611a65565b6006546001600160a01b031633146115b95760405162461bcd60e51b815260040161077d90612600565b600d805460ff1916911515919091179055565b6006546001600160a01b031633146115f65760405162461bcd60e51b815260040161077d90612600565b6009805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b0316331461163c5760405162461bcd60e51b815260040161077d90612600565b805161119090600c90602084019061200f565b60008261165c8584611d06565b14949350505050565b60005b8163ffffffff168163ffffffff1610156116b05761169e336009600881819054906101000a900463ffffffff166110fd90612792565b806116a881612792565b915050611668565b50336000908152600a60205260408120805463ffffffff841692906116d6908490612686565b9091555050600b546000906001600160a01b03640100000000820416906103e8906117079063ffffffff16346126da565b61171191906126c6565b604051600081818185875af1925050503d806000811461174d576040519150601f19603f3d011682016040523d82523d6000602084013e611752565b606091505b505090508061119057600080fd5b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179582610e81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077d565b600061185283610e81565b9050806001600160a01b0316846001600160a01b0316148061188d5750836001600160a01b031661188284610b15565b6001600160a01b0316145b806118bd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118d882610e81565b6001600160a01b0316146119405760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161077d565b6001600160a01b0382166119a25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077d565b6119ad600082611760565b6001600160a01b03831660009081526003602052604081208054600192906119d69084906126f9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a04908490612686565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ac18383611dc0565b611ace6000848484611f02565b610d2d5760405162461bcd60e51b815260040161077d906125ae565b816001600160a01b0316836001600160a01b03161415611b4c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bc48484846118c5565b611bd084848484611f02565b610a7d5760405162461bcd60e51b815260040161077d906125ae565b606081611c105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c3a5780611c2481612777565b9150611c339050600a836126c6565b9150611c14565b60008167ffffffffffffffff811115611c6357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c8d576020820181803683370190505b5090505b84156118bd57611ca26001836126f9565b9150611caf600a866127b6565b611cba906030612686565b60f81b818381518110611cdd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cff600a866126c6565b9450611c91565b600081815b8451811015611db8576000858281518110611d3657634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611d78576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611da5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611db081612777565b915050611d0b565b509392505050565b6001600160a01b038216611e165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077d565b6000818152600260205260409020546001600160a01b031615611e7b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077d565b6001600160a01b0382166000908152600360205260408120805460019290611ea4908490612686565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561200457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f4690339089908890889060040161255e565b602060405180830381600087803b158015611f6057600080fd5b505af1925050508015611f90575060408051601f3d908101601f19168201909252611f8d9181019061238f565b60015b611fea573d808015611fbe576040519150601f19603f3d011682016040523d82523d6000602084013e611fc3565b606091505b508051611fe25760405162461bcd60e51b815260040161077d906125ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118bd565b506001949350505050565b82805461201b9061273c565b90600052602060002090601f01602090048101928261203d5760008555612083565b82601f1061205657805160ff1916838001178555612083565b82800160010185558215612083579182015b82811115612083578251825591602001919060010190612068565b5061208f929150612093565b5090565b5b8082111561208f5760008155600101612094565b600067ffffffffffffffff808411156120c3576120c36127f6565b604051601f8501601f19908116603f011681019082821181831017156120eb576120eb6127f6565b8160405280935085815286868601111561210457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461213557600080fd5b919050565b60008083601f84011261214b578081fd5b50813567ffffffffffffffff811115612162578182fd5b6020830191508360208260051b850101111561217d57600080fd5b9250929050565b8035801515811461213557600080fd5b803563ffffffff8116811461213557600080fd5b6000602082840312156121b9578081fd5b6121c28261211e565b9392505050565b600080604083850312156121db578081fd5b6121e48361211e565b91506121f26020840161211e565b90509250929050565b60008060006060848603121561220f578081fd5b6122188461211e565b92506122266020850161211e565b9150604084013590509250925092565b6000806000806080858703121561224b578081fd5b6122548561211e565b93506122626020860161211e565b925060408501359150606085013567ffffffffffffffff811115612284578182fd5b8501601f81018713612294578182fd5b6122a3878235602084016120a8565b91505092959194509250565b600080604083850312156122c1578182fd5b6122ca8361211e565b91506121f260208401612184565b600080604083850312156122ea578182fd5b6122f38361211e565b946020939093013593505050565b60008060208385031215612313578182fd5b823567ffffffffffffffff811115612329578283fd5b6123358582860161213a565b90969095509350505050565b600060208284031215612352578081fd5b6121c282612184565b60006020828403121561236c578081fd5b5035919050565b600060208284031215612384578081fd5b81356121c28161280c565b6000602082840312156123a0578081fd5b81516121c28161280c565b6000602082840312156123bc578081fd5b813567ffffffffffffffff8111156123d2578182fd5b8201601f810184136123e2578182fd5b6118bd848235602084016120a8565b600060208284031215612402578081fd5b6121c282612194565b60008060006040848603121561241f578081fd5b61242884612194565b9250602084013567ffffffffffffffff811115612443578182fd5b61244f8682870161213a565b9497909650939450505050565b60008151808452612474816020860160208601612710565b601f01601f19169290920160200192915050565b6000815161249a818560208601612710565b9290920192915050565b600080845482600182811c9150808316806124c057607f831692505b60208084108214156124e057634e487b7160e01b87526022600452602487fd5b8180156124f4576001811461250557612531565b60ff19861689528489019650612531565b60008b815260209020885b868110156125295781548b820152908501908301612510565b505084890196505b5050505050506125556125448286612488565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125919083018461245c565b9695505050505050565b6020815260006121c2602083018461245c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612699576126996127ca565b500190565b600063ffffffff8083168185168083038211156126bd576126bd6127ca565b01949350505050565b6000826126d5576126d56127e0565b500490565b60008160001904831182151516156126f4576126f46127ca565b500290565b60008282101561270b5761270b6127ca565b500390565b60005b8381101561272b578181015183820152602001612713565b83811115610a7d5750506000910152565b600181811c9082168061275057607f821691505b6020821081141561277157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561278b5761278b6127ca565b5060010190565b600063ffffffff808316818114156127ac576127ac6127ca565b6001019392505050565b6000826127c5576127c56127e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3457600080fdfea2646970667358221220150350ae84a226bd35e1918cbf5b5b2961a568d265627b53eac5603b968d0dac64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962663775657a35336b68667a757177377776373270376e67366e37773770706a6a6a356f6f72796e7237363763796d7075646a342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011457465726e616c204b6c6179205065747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045045545300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636fdca5e011610123578063a71bbebe116100ab578063f2fde38b1161006f578063f2fde38b14610642578063f5b9662114610662578063f8048d8f14610682578063fcfff16f146106a2578063fe2c7fee146106c357600080fd5b8063a71bbebe1461058c578063b88d4fde1461059f578063bee6348a146105bf578063c87b56dd146105d9578063e985e9c5146105f957600080fd5b80638da5cb5b116100f25780638da5cb5b1461050457806395d89b41146105225780639e5666cd14610537578063a22cb46514610557578063a475b5dd1461057757600080fd5b80636fdca5e01461048f57806370a08231146104af578063715018a6146104cf578063729ad39e146104e457600080fd5b806323b872dd116101a657806344a0d68a1161017557806344a0d68a146103ec578063453c23101461040c578063507e094f14610431578063518302271461044e5780636352211e1461046f57600080fd5b806323b872dd146103845780633006b543146103a45780633ccfd60b146103c457806342842e0e146103cc57600080fd5b8063081812fc116101ed578063081812fc146102c4578063092501a0146102fc578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057600080fd5b806301ffc9a71461021f5780630364d22a14610254578063047fc9aa1461026957806306fdde03146102a2575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612373565b6106e3565b60405190151581526020015b60405180910390f35b61026761026236600461240b565b610735565b005b34801561027557600080fd5b5060095461028d90600160401b900463ffffffff1681565b60405163ffffffff909116815260200161024b565b3480156102ae57600080fd5b506102b7610a83565b60405161024b919061259b565b3480156102d057600080fd5b506102e46102df36600461235b565b610b15565b6040516001600160a01b03909116815260200161024b565b34801561030857600080fd5b506102676103173660046123f1565b610baa565b34801561032857600080fd5b506102676103373660046122d8565b610c1c565b34801561034857600080fd5b5061035260085481565b60405190815260200161024b565b34801561036c57600080fd5b5060095461028d90600160601b900463ffffffff1681565b34801561039057600080fd5b5061026761039f3660046121fb565b610d32565b3480156103b057600080fd5b506102676103bf3660046123f1565b610d63565b610267610db5565b3480156103d857600080fd5b506102676103e73660046121fb565b610e37565b3480156103f857600080fd5b5061026761040736600461235b565b610e52565b34801561041857600080fd5b5060095461028d90640100000000900463ffffffff1681565b34801561043d57600080fd5b5060095461028d9063ffffffff1681565b34801561045a57600080fd5b50600b5461023f90600160c01b900460ff1681565b34801561047b57600080fd5b506102e461048a36600461235b565b610e81565b34801561049b57600080fd5b506102676104aa366004612341565b610ef8565b3480156104bb57600080fd5b506103526104ca3660046121a8565b610f40565b3480156104db57600080fd5b50610267610fc7565b3480156104f057600080fd5b506102676104ff366004612301565b610ffd565b34801561051057600080fd5b506006546001600160a01b03166102e4565b34801561052e57600080fd5b506102b7611147565b34801561054357600080fd5b5061026761055236600461235b565b611156565b34801561056357600080fd5b506102676105723660046122af565b611185565b34801561058357600080fd5b50610267611194565b61026761059a3660046123f1565b6111d3565b3480156105ab57600080fd5b506102676105ba366004612236565b611424565b3480156105cb57600080fd5b50600d5461023f9060ff1681565b3480156105e557600080fd5b506102b76105f436600461235b565b611456565b34801561060557600080fd5b5061023f6106143660046121c9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064e57600080fd5b5061026761065d3660046121a8565b6114f7565b34801561066e57600080fd5b5061026761067d366004612341565b61158f565b34801561068e57600080fd5b5061026761069d3660046123f1565b6115cc565b3480156106ae57600080fd5b5060095461023f90600160801b900460ff1681565b3480156106cf57600080fd5b506102676106de3660046123ab565b611612565b60006001600160e01b031982166380ac58cd60e01b148061071457506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b8260008163ffffffff16116107865760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b60448201526064015b60405180910390fd5b60095461079a9063ffffffff16600161269e565b63ffffffff168163ffffffff16106107e85760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161077d565b8063ffffffff166008546107fc91906126da565b34101561083e5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161077d565b60095461085990600160601b900463ffffffff16600161269e565b60095463ffffffff91821691610879918491600160401b9091041661269e565b63ffffffff16106108bc5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161077d565b600954336000908152600a602052604090205463ffffffff6401000000009092048216916108ed9190841690612686565b11156109345760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161077d565b600d5460ff166109795760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b604482015260640161077d565b600e546109bc5760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b604482015260640161077d565b610a3183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b16602082015290925060340190506040516020818303038152906040528051906020012061164f565b610a745760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b604482015260640161077d565b610a7d84611665565b50505050565b606060008054610a929061273c565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe9061273c565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b8e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077d565b506000908152600460205260409020546001600160a01b031690565b600b5464010000000090046001600160a01b03163314610c005760405162461bcd60e51b8152602060048201526011602482015270496e636f7272656374204164647265737360781b604482015260640161077d565b600b805463ffffffff191663ffffffff92909216919091179055565b6000610c2782610e81565b9050806001600160a01b0316836001600160a01b03161415610c955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077d565b336001600160a01b0382161480610cb15750610cb18133610614565b610d235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077d565b610d2d8383611760565b505050565b610d3c33826117ce565b610d585760405162461bcd60e51b815260040161077d90612635565b610d2d8383836118c5565b6006546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161077d90612600565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6006546001600160a01b03163314610ddf5760405162461bcd60e51b815260040161077d90612600565b604051600090339047908381818185875af1925050503d8060008114610e21576040519150601f19603f3d011682016040523d82523d6000602084013e610e26565b606091505b5050905080610e3457600080fd5b50565b610d2d83838360405180602001604052806000815250611424565b6006546001600160a01b03163314610e7c5760405162461bcd60e51b815260040161077d90612600565b600855565b6000818152600260205260408120546001600160a01b03168061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077d565b6006546001600160a01b03163314610f225760405162461bcd60e51b815260040161077d90612600565b60098054911515600160801b0260ff60801b19909216919091179055565b60006001600160a01b038216610fab5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ff15760405162461bcd60e51b815260040161077d90612600565b610ffb6000611a65565b565b6006546001600160a01b031633146110275760405162461bcd60e51b815260040161077d90612600565b60005b63ffffffff8116821115610d2d5760095463ffffffff600160601b820481169161105e91600160401b90910416600161269e565b63ffffffff1611156110a25760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161077d565b61113583838363ffffffff168181106110cb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110e091906121a8565b600980546008906110fd90600160401b900463ffffffff16612792565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff1660405180602001604052806000815250611ab7565b8061113f81612792565b91505061102a565b606060018054610a929061273c565b6006546001600160a01b031633146111805760405162461bcd60e51b815260040161077d90612600565b600e55565b611190338383611aea565b5050565b6006546001600160a01b031633146111be5760405162461bcd60e51b815260040161077d90612600565b600b805460ff60c01b1916600160c01b179055565b8060008163ffffffff161161121f5760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b604482015260640161077d565b6009546112339063ffffffff16600161269e565b63ffffffff168163ffffffff16106112815760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b604482015260640161077d565b8063ffffffff1660085461129591906126da565b3410156112d75760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b604482015260640161077d565b6009546112f290600160601b900463ffffffff16600161269e565b60095463ffffffff91821691611312918491600160401b9091041661269e565b63ffffffff16106113555760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b604482015260640161077d565b600954336000908152600a602052604090205463ffffffff6401000000009092048216916113869190841690612686565b11156113cd5760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b604482015260640161077d565b600954600160801b900460ff16151560011461141b5760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b604482015260640161077d565b61119082611665565b61142e33836117ce565b61144a5760405162461bcd60e51b815260040161077d90612635565b610a7d84848484611bb9565b600954606090600160401b900463ffffffff168211156114a95760405162461bcd60e51b815260206004820152600e60248201526d139bdd081b5a5b9d1959081e595d60921b604482015260640161077d565b600b54600160c01b900460ff166114ec57600c6114c583611bec565b6040516020016114d69291906124a4565b6040516020818303038152906040529050919050565b60076114c583611bec565b6006546001600160a01b031633146115215760405162461bcd60e51b815260040161077d90612600565b6001600160a01b0381166115865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077d565b610e3481611a65565b6006546001600160a01b031633146115b95760405162461bcd60e51b815260040161077d90612600565b600d805460ff1916911515919091179055565b6006546001600160a01b031633146115f65760405162461bcd60e51b815260040161077d90612600565b6009805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b0316331461163c5760405162461bcd60e51b815260040161077d90612600565b805161119090600c90602084019061200f565b60008261165c8584611d06565b14949350505050565b60005b8163ffffffff168163ffffffff1610156116b05761169e336009600881819054906101000a900463ffffffff166110fd90612792565b806116a881612792565b915050611668565b50336000908152600a60205260408120805463ffffffff841692906116d6908490612686565b9091555050600b546000906001600160a01b03640100000000820416906103e8906117079063ffffffff16346126da565b61171191906126c6565b604051600081818185875af1925050503d806000811461174d576040519150601f19603f3d011682016040523d82523d6000602084013e611752565b606091505b505090508061119057600080fd5b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179582610e81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077d565b600061185283610e81565b9050806001600160a01b0316846001600160a01b0316148061188d5750836001600160a01b031661188284610b15565b6001600160a01b0316145b806118bd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118d882610e81565b6001600160a01b0316146119405760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161077d565b6001600160a01b0382166119a25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077d565b6119ad600082611760565b6001600160a01b03831660009081526003602052604081208054600192906119d69084906126f9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a04908490612686565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ac18383611dc0565b611ace6000848484611f02565b610d2d5760405162461bcd60e51b815260040161077d906125ae565b816001600160a01b0316836001600160a01b03161415611b4c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bc48484846118c5565b611bd084848484611f02565b610a7d5760405162461bcd60e51b815260040161077d906125ae565b606081611c105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c3a5780611c2481612777565b9150611c339050600a836126c6565b9150611c14565b60008167ffffffffffffffff811115611c6357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c8d576020820181803683370190505b5090505b84156118bd57611ca26001836126f9565b9150611caf600a866127b6565b611cba906030612686565b60f81b818381518110611cdd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cff600a866126c6565b9450611c91565b600081815b8451811015611db8576000858281518110611d3657634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611d78576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611da5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611db081612777565b915050611d0b565b509392505050565b6001600160a01b038216611e165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077d565b6000818152600260205260409020546001600160a01b031615611e7b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077d565b6001600160a01b0382166000908152600360205260408120805460019290611ea4908490612686565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561200457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f4690339089908890889060040161255e565b602060405180830381600087803b158015611f6057600080fd5b505af1925050508015611f90575060408051601f3d908101601f19168201909252611f8d9181019061238f565b60015b611fea573d808015611fbe576040519150601f19603f3d011682016040523d82523d6000602084013e611fc3565b606091505b508051611fe25760405162461bcd60e51b815260040161077d906125ae565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118bd565b506001949350505050565b82805461201b9061273c565b90600052602060002090601f01602090048101928261203d5760008555612083565b82601f1061205657805160ff1916838001178555612083565b82800160010185558215612083579182015b82811115612083578251825591602001919060010190612068565b5061208f929150612093565b5090565b5b8082111561208f5760008155600101612094565b600067ffffffffffffffff808411156120c3576120c36127f6565b604051601f8501601f19908116603f011681019082821181831017156120eb576120eb6127f6565b8160405280935085815286868601111561210457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461213557600080fd5b919050565b60008083601f84011261214b578081fd5b50813567ffffffffffffffff811115612162578182fd5b6020830191508360208260051b850101111561217d57600080fd5b9250929050565b8035801515811461213557600080fd5b803563ffffffff8116811461213557600080fd5b6000602082840312156121b9578081fd5b6121c28261211e565b9392505050565b600080604083850312156121db578081fd5b6121e48361211e565b91506121f26020840161211e565b90509250929050565b60008060006060848603121561220f578081fd5b6122188461211e565b92506122266020850161211e565b9150604084013590509250925092565b6000806000806080858703121561224b578081fd5b6122548561211e565b93506122626020860161211e565b925060408501359150606085013567ffffffffffffffff811115612284578182fd5b8501601f81018713612294578182fd5b6122a3878235602084016120a8565b91505092959194509250565b600080604083850312156122c1578182fd5b6122ca8361211e565b91506121f260208401612184565b600080604083850312156122ea578182fd5b6122f38361211e565b946020939093013593505050565b60008060208385031215612313578182fd5b823567ffffffffffffffff811115612329578283fd5b6123358582860161213a565b90969095509350505050565b600060208284031215612352578081fd5b6121c282612184565b60006020828403121561236c578081fd5b5035919050565b600060208284031215612384578081fd5b81356121c28161280c565b6000602082840312156123a0578081fd5b81516121c28161280c565b6000602082840312156123bc578081fd5b813567ffffffffffffffff8111156123d2578182fd5b8201601f810184136123e2578182fd5b6118bd848235602084016120a8565b600060208284031215612402578081fd5b6121c282612194565b60008060006040848603121561241f578081fd5b61242884612194565b9250602084013567ffffffffffffffff811115612443578182fd5b61244f8682870161213a565b9497909650939450505050565b60008151808452612474816020860160208601612710565b601f01601f19169290920160200192915050565b6000815161249a818560208601612710565b9290920192915050565b600080845482600182811c9150808316806124c057607f831692505b60208084108214156124e057634e487b7160e01b87526022600452602487fd5b8180156124f4576001811461250557612531565b60ff19861689528489019650612531565b60008b815260209020885b868110156125295781548b820152908501908301612510565b505084890196505b5050505050506125556125448286612488565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125919083018461245c565b9695505050505050565b6020815260006121c2602083018461245c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612699576126996127ca565b500190565b600063ffffffff8083168185168083038211156126bd576126bd6127ca565b01949350505050565b6000826126d5576126d56127e0565b500490565b60008160001904831182151516156126f4576126f46127ca565b500290565b60008282101561270b5761270b6127ca565b500390565b60005b8381101561272b578181015183820152602001612713565b83811115610a7d5750506000910152565b600181811c9082168061275057607f821691505b6020821081141561277157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561278b5761278b6127ca565b5060010190565b600063ffffffff808316818114156127ac576127ac6127ca565b6001019392505050565b6000826127c5576127c56127e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3457600080fdfea2646970667358221220150350ae84a226bd35e1918cbf5b5b2961a568d265627b53eac5603b968d0dac64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962663775657a35336b68667a757177377776373270376e67366e37773770706a6a6a356f6f72796e7237363763796d7075646a342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011457465726e616c204b6c6179205065747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045045545300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeibf7uez53khfzuqw7wv72p7ng6n7w7ppjjj5oorynr767cympudj4/
Arg [1] : _name (string): Eternal Klay Pets
Arg [2] : _symbol (string): PETS
Arg [3] : _totalSupply (uint32): 10000
Arg [4] : _cost (uint256): 25000000000000000
Arg [5] : _open (bool): False

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000058d15e17628000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [7] : 697066733a2f2f6261667962656962663775657a35336b68667a757177377776
Arg [8] : 373270376e67366e37773770706a6a6a356f6f72796e7237363763796d707564
Arg [9] : 6a342f0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [11] : 457465726e616c204b6c61792050657473000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 5045545300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42934:832:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21366:305;;;;;;;;;;-1:-1:-1;21366:305:0;;;;;:::i;:::-;;:::i;:::-;;;9846:14:1;;9839:22;9821:41;;9809:2;9794:18;21366:305:0;;;;;;;;42339:503;;;;;;:::i;:::-;;:::i;:::-;;36648:24;;;;;;;;;;-1:-1:-1;36648:24:0;;;;-1:-1:-1;;;36648:24:0;;;;;;;;;20563:10:1;20551:23;;;20533:42;;20521:2;20506:18;36648:24:0;20488:93:1;22311:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23870:221::-;;;;;;;;;;-1:-1:-1;23870:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9144:32:1;;;9126:51;;9114:2;9099:18;23870:221:0;9081:102:1;37297:152:0;;;;;;;;;;-1:-1:-1;37297:152:0;;;;;:::i;:::-;;:::i;23393:411::-;;;;;;;;;;-1:-1:-1;23393:411:0;;;;;:::i;:::-;;:::i;36536:32::-;;;;;;;;;;;;;;;;;;;20353:25:1;;;20341:2;20326:18;36536:32:0;20308:76:1;36679:29:0;;;;;;;;;;-1:-1:-1;36679:29:0;;;;-1:-1:-1;;;36679:29:0;;;;;;24620:339;;;;;;;;;;-1:-1:-1;24620:339:0;;;;;:::i;:::-;;:::i;37665:93::-;;;;;;;;;;-1:-1:-1;37665:93:0;;;;;:::i;:::-;;:::i;38108:192::-;;;:::i;25030:185::-;;;;;;;;;;-1:-1:-1;25030:185:0;;;;;:::i;:::-;;:::i;37492:80::-;;;;;;;;;;-1:-1:-1;37492:80:0;;;;;:::i;:::-;;:::i;36610:31::-;;;;;;;;;;-1:-1:-1;36610:31:0;;;;;;;;;;;36575:28;;;;;;;;;;-1:-1:-1;36575:28:0;;;;;;;;39502;;;;;;;;;;-1:-1:-1;39502:28:0;;;;-1:-1:-1;;;39502:28:0;;;;;;22005:239;;;;;;;;;;-1:-1:-1;22005:239:0;;;;;:::i;:::-;;:::i;37580:77::-;;;;;;;;;;-1:-1:-1;37580:77:0;;;;;:::i;:::-;;:::i;21735:208::-;;;;;;;;;;-1:-1:-1;21735:208:0;;;;;:::i;:::-;;:::i;35523:103::-;;;;;;;;;;;;;:::i;37863:237::-;;;;;;;;;;-1:-1:-1;37863:237:0;;;;;:::i;:::-;;:::i;34872:87::-;;;;;;;;;;-1:-1:-1;34945:6:0;;-1:-1:-1;;;;;34945:6:0;34872:87;;22480:104;;;;;;;;;;;;;:::i;42235:96::-;;;;;;;;;;-1:-1:-1;42235:96:0;;;;;:::i;:::-;;:::i;24163:155::-;;;;;;;;;;-1:-1:-1;24163:155:0;;;;;:::i;:::-;;:::i;39687:69::-;;;;;;;;;;;;;:::i;38338:152::-;;;;;;:::i;:::-;;:::i;25286:328::-;;;;;;;;;;-1:-1:-1;25286:328:0;;;;;:::i;:::-;;:::i;42063:31::-;;;;;;;;;;-1:-1:-1;42063:31:0;;;;;;;;43266:497;;;;;;;;;;-1:-1:-1;43266:497:0;;;;;:::i;:::-;;:::i;24389:164::-;;;;;;;;;;-1:-1:-1;24389:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24510:25:0;;;24486:4;24510:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24389:164;35781:201;;;;;;;;;;-1:-1:-1;35781:201:0;;;;;:::i;:::-;;:::i;42136:91::-;;;;;;;;;;-1:-1:-1;42136:91:0;;;;;:::i;:::-;;:::i;37766:89::-;;;;;;;;;;-1:-1:-1;37766:89:0;;;;;:::i;:::-;;:::i;36715:24::-;;;;;;;;;;-1:-1:-1;36715:24:0;;;;-1:-1:-1;;;36715:24:0;;;;;;39576:103;;;;;;;;;;-1:-1:-1;39576:103:0;;;;;:::i;:::-;;:::i;21366:305::-;21468:4;-1:-1:-1;;;;;;21505:40:0;;-1:-1:-1;;;21505:40:0;;:105;;-1:-1:-1;;;;;;;21562:48:0;;-1:-1:-1;;;21562:48:0;21505:105;:158;;;-1:-1:-1;;;;;;;;;;19915:40:0;;;21627:36;21485:178;21366:305;-1:-1:-1;;21366:305:0:o;42339:503::-;42458:5;38997:1;38989:5;:9;;;38981:40;;;;-1:-1:-1;;;38981:40:0;;20062:2:1;38981:40:0;;;20044:21:1;20101:2;20081:18;;;20074:30;-1:-1:-1;;;20120:18:1;;;20113:48;20178:18;;38981:40:0;;;;;;;;;39048:10;;:14;;:10;;;:14;:::i;:::-;39040:22;;:5;:22;;;39032:52;;;;-1:-1:-1;;;39032:52:0;;19716:2:1;39032:52:0;;;19698:21:1;19755:2;19735:18;;;19728:30;-1:-1:-1;;;19774:18:1;;;19767:47;19831:18;;39032:52:0;19688:167:1;39032:52:0;39123:5;39116:12;;:4;;:12;;;;:::i;:::-;39103:9;:25;;39095:54;;;;-1:-1:-1;;;39095:54:0;;19371:2:1;39095:54:0;;;19353:21:1;19410:2;19390:18;;;19383:30;-1:-1:-1;;;19429:18:1;;;19422:46;19485:18;;39095:54:0;19343:166:1;39095:54:0;39185:11;;:15;;-1:-1:-1;;;39185:11:0;;;;39199:1;39185:15;:::i;:::-;39168:6;;:32;;;;;:14;;39177:5;;-1:-1:-1;;;39168:6:0;;;;:14;:::i;:::-;:32;;;39160:58;;;;-1:-1:-1;;;39160:58:0;;17176:2:1;39160:58:0;;;17158:21:1;17215:2;17195:18;;;17188:30;-1:-1:-1;;;17234:18:1;;;17227:43;17287:18;;39160:58:0;17148:163:1;39160:58:0;39291:12;;39268:10;39251:28;;;;:16;:28;;;;;;39291:12;;;;;;;;39251:36;;;;;;;:::i;:::-;:52;;39229:124;;;;-1:-1:-1;;;39229:124:0;;12520:2:1;39229:124:0;;;12502:21:1;12559:2;12539:18;;;12532:30;-1:-1:-1;;;12578:18:1;;;12571:52;12640:18;;39229:124:0;12492:172:1;39229:124:0;42489:11:::1;::::0;::::1;;42481:40;;;::::0;-1:-1:-1;;;42481:40:0;;18262:2:1;42481:40:0::1;::::0;::::1;18244:21:1::0;18301:2;18281:18;;;18274:30;-1:-1:-1;;;18320:18:1;;;18313:46;18376:18;;42481:40:0::1;18234:166:1::0;42481:40:0::1;42540:10;::::0;42532:46:::1;;;::::0;-1:-1:-1;;;42532:46:0;;10299:2:1;42532:46:0::1;::::0;::::1;10281:21:1::0;10338:2;10318:18;;;10311:30;-1:-1:-1;;;10357:18:1;;;10350:47;10414:18;;42532:46:0::1;10271:167:1::0;42532:46:0::1;42611:144;42648:5;;42611:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;42672:10:0::1;::::0;42711:28:::1;::::0;-1:-1:-1;;42728:10:0::1;7123:2:1::0;7119:15;7115:53;42711:28:0::1;::::0;::::1;7103:66:1::0;42672:10:0;;-1:-1:-1;7185:12:1;;;-1:-1:-1;42711:28:0::1;;;;;;;;;;;;42701:39;;;;;;42611:18;:144::i;:::-;42589:214;;;::::0;-1:-1:-1;;;42589:214:0;;12171:2:1;42589:214:0::1;::::0;::::1;12153:21:1::0;12210:2;12190:18;;;12183:30;-1:-1:-1;;;12229:18:1;;;12222:50;12289:18;;42589:214:0::1;12143:170:1::0;42589:214:0::1;42816:18;42828:5;42816:11;:18::i;:::-;42339:503:::0;;;;:::o;22311:100::-;22365:13;22398:5;22391:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22311:100;:::o;23870:221::-;23946:7;27213:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27213:16:0;23966:73;;;;-1:-1:-1;;;23966:73:0;;15992:2:1;23966:73:0;;;15974:21:1;16031:2;16011:18;;;16004:30;16070:34;16050:18;;;16043:62;-1:-1:-1;;;16121:18:1;;;16114:42;16173:19;;23966:73:0;15964:234:1;23966:73:0;-1:-1:-1;24059:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24059:24:0;;23870:221::o;37297:152::-;37379:6;;;;;-1:-1:-1;;;;;37379:6:0;37365:10;:20;37357:50;;;;-1:-1:-1;;;37357:50:0;;19025:2:1;37357:50:0;;;19007:21:1;19064:2;19044:18;;;19037:30;-1:-1:-1;;;19083:18:1;;;19076:47;19140:18;;37357:50:0;18997:167:1;37357:50:0;37418:10;:23;;-1:-1:-1;;37418:23:0;;;;;;;;;;;;37297:152::o;23393:411::-;23474:13;23490:23;23505:7;23490:14;:23::i;:::-;23474:39;;23538:5;-1:-1:-1;;;;;23532:11:0;:2;-1:-1:-1;;;;;23532:11:0;;;23524:57;;;;-1:-1:-1;;;23524:57:0;;17518:2:1;23524:57:0;;;17500:21:1;17557:2;17537:18;;;17530:30;17596:34;17576:18;;;17569:62;-1:-1:-1;;;17647:18:1;;;17640:31;17688:19;;23524:57:0;17490:223:1;23524:57:0;16673:10;-1:-1:-1;;;;;23616:21:0;;;;:62;;-1:-1:-1;23641:37:0;23658:5;16673:10;24389:164;:::i;23641:37::-;23594:168;;;;-1:-1:-1;;;23594:168:0;;14385:2:1;23594:168:0;;;14367:21:1;14424:2;14404:18;;;14397:30;14463:34;14443:18;;;14436:62;14534:26;14514:18;;;14507:54;14578:19;;23594:168:0;14357:246:1;23594:168:0;23775:21;23784:2;23788:7;23775:8;:21::i;:::-;23393:411;;;:::o;24620:339::-;24815:41;16673:10;24848:7;24815:18;:41::i;:::-;24807:103;;;;-1:-1:-1;;;24807:103:0;;;;;;;:::i;:::-;24923:28;24933:4;24939:2;24943:7;24923:9;:28::i;37665:93::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;37731:12:::1;:19:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;37731:19:0;;::::1;::::0;;;::::1;::::0;;37665:93::o;38108:192::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;38183:82:::1;::::0;38165:12:::1;::::0;38191:10:::1;::::0;38229:21:::1;::::0;38165:12;38183:82;38165:12;38183:82;38229:21;38191:10;38183:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38164:101;;;38284:7;38276:16;;;::::0;::::1;;35163:1;38108:192::o:0;25030:185::-;25168:39;25185:4;25191:2;25195:7;25168:39;;;;;;;;;;;;:16;:39::i;37492:80::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;37552:4:::1;:12:::0;37492:80::o;22005:239::-;22077:7;22113:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22113:16:0;22148:19;22140:73;;;;-1:-1:-1;;;22140:73:0;;15221:2:1;22140:73:0;;;15203:21:1;15260:2;15240:18;;;15233:30;15299:34;15279:18;;;15272:62;-1:-1:-1;;;15350:18:1;;;15343:39;15399:19;;22140:73:0;15193:231:1;37580:77:0;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;37637:4:::1;:12:::0;;;::::1;;-1:-1:-1::0;;;37637:12:0::1;-1:-1:-1::0;;;;37637:12:0;;::::1;::::0;;;::::1;::::0;;37580:77::o;21735:208::-;21807:7;-1:-1:-1;;;;;21835:19:0;;21827:74;;;;-1:-1:-1;;;21827:74:0;;14810:2:1;21827:74:0;;;14792:21:1;14849:2;14829:18;;;14822:30;14888:34;14868:18;;;14861:62;-1:-1:-1;;;14939:18:1;;;14932:40;14989:19;;21827:74:0;14782:232:1;21827:74:0;-1:-1:-1;;;;;;21919:16:0;;;;;:9;:16;;;;;;;21735:208::o;35523:103::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;35588:30:::1;35615:1;35588:18;:30::i;:::-;35523:103::o:0;37863:237::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;37936:8:::1;37931:162;37950:13;::::0;::::1;::::0;-1:-1:-1;37931:162:0::1;;;38007:11;::::0;::::1;-1:-1:-1::0;;;38007:11:0;::::1;::::0;::::1;::::0;37993:10:::1;::::0;-1:-1:-1;;;37997:6:0;;::::1;;37993:1;:10;:::i;:::-;:25;;;;37985:51;;;::::0;-1:-1:-1;;;37985:51:0;;13630:2:1;37985:51:0::1;::::0;::::1;13612:21:1::0;13669:2;13649:18;;;13642:30;-1:-1:-1;;;13688:18:1;;;13681:43;13741:18;;37985:51:0::1;13602:163:1::0;37985:51:0::1;38051:30;38061:2;;38064:1;38061:5;;;;;;;-1:-1:-1::0;;;38061:5:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38070:6;38068:8:::0;;38070:6:::1;::::0;38068:8:::1;::::0;-1:-1:-1;;;38068:8:0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;38051:30;;;;;;;;;;;;;::::0;:9:::1;:30::i;:::-;37965:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37931:162;;22480:104:::0;22536:13;22569:7;22562:14;;;;;:::i;42235:96::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;42306:10:::1;:17:::0;42235:96::o;24163:155::-;24258:52;16673:10;24291:8;24301;24258:18;:52::i;:::-;24163:155;;:::o;39687:69::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;39733:8:::1;:15:::0;;-1:-1:-1;;;;39733:15:0::1;-1:-1:-1::0;;;39733:15:0::1;::::0;;39687:69::o;38338:152::-;38397:5;38997:1;38989:5;:9;;;38981:40;;;;-1:-1:-1;;;38981:40:0;;20062:2:1;38981:40:0;;;20044:21:1;20101:2;20081:18;;;20074:30;-1:-1:-1;;;20120:18:1;;;20113:48;20178:18;;38981:40:0;20034:168:1;38981:40:0;39048:10;;:14;;:10;;;:14;:::i;:::-;39040:22;;:5;:22;;;39032:52;;;;-1:-1:-1;;;39032:52:0;;19716:2:1;39032:52:0;;;19698:21:1;19755:2;19735:18;;;19728:30;-1:-1:-1;;;19774:18:1;;;19767:47;19831:18;;39032:52:0;19688:167:1;39032:52:0;39123:5;39116:12;;:4;;:12;;;;:::i;:::-;39103:9;:25;;39095:54;;;;-1:-1:-1;;;39095:54:0;;19371:2:1;39095:54:0;;;19353:21:1;19410:2;19390:18;;;19383:30;-1:-1:-1;;;19429:18:1;;;19422:46;19485:18;;39095:54:0;19343:166:1;39095:54:0;39185:11;;:15;;-1:-1:-1;;;39185:11:0;;;;39199:1;39185:15;:::i;:::-;39168:6;;:32;;;;;:14;;39177:5;;-1:-1:-1;;;39168:6:0;;;;:14;:::i;:::-;:32;;;39160:58;;;;-1:-1:-1;;;39160:58:0;;17176:2:1;39160:58:0;;;17158:21:1;17215:2;17195:18;;;17188:30;-1:-1:-1;;;17234:18:1;;;17227:43;17287:18;;39160:58:0;17148:163:1;39160:58:0;39291:12;;39268:10;39251:28;;;;:16;:28;;;;;;39291:12;;;;;;;;39251:36;;;;;;;:::i;:::-;:52;;39229:124;;;;-1:-1:-1;;;39229:124:0;;12520:2:1;39229:124:0;;;12502:21:1;12559:2;12539:18;;;12532:30;-1:-1:-1;;;12578:18:1;;;12571:52;12640:18;;39229:124:0;12492:172:1;39229:124:0;38423:4:::1;::::0;-1:-1:-1;;;38423:4:0;::::1;;;:12;;38431:4;38423:12;38415:38;;;::::0;-1:-1:-1;;;38415:38:0;;17920:2:1;38415:38:0::1;::::0;::::1;17902:21:1::0;17959:2;17939:18;;;17932:30;-1:-1:-1;;;17978:18:1;;;17971:43;18031:18;;38415:38:0::1;17892:163:1::0;38415:38:0::1;38464:18;38476:5;38464:11;:18::i;25286:328::-:0;25461:41;16673:10;25494:7;25461:18;:41::i;:::-;25453:103;;;;-1:-1:-1;;;25453:103:0;;;;;;;:::i;:::-;25567:39;25581:4;25587:2;25591:7;25600:5;25567:13;:39::i;43266:497::-;43419:6;;43368:13;;-1:-1:-1;;;43419:6:0;;;;43407:18;;;43399:45;;;;-1:-1:-1;;;43399:45:0;;11064:2:1;43399:45:0;;;11046:21:1;11103:2;11083:18;;;11076:30;-1:-1:-1;;;11122:18:1;;;11115:44;11176:18;;43399:45:0;11036:164:1;43399:45:0;43459:8;;-1:-1:-1;;;43459:8:0;;;;43455:166;;43542:14;43558:26;43575:8;43558:16;:26::i;:::-;43525:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43493:116;;43266:497;;;:::o;43455:166::-;43695:7;43704:26;43721:8;43704:16;:26::i;35781:201::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35870:22:0;::::1;35862:73;;;::::0;-1:-1:-1;;;35862:73:0;;11407:2:1;35862:73:0::1;::::0;::::1;11389:21:1::0;11446:2;11426:18;;;11419:30;11485:34;11465:18;;;11458:62;-1:-1:-1;;;11536:18:1;;;11529:36;11582:19;;35862:73:0::1;11379:228:1::0;35862:73:0::1;35946:28;35965:8;35946:18;:28::i;42136:91::-:0;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;42200:11:::1;:19:::0;;-1:-1:-1;;42200:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42136:91::o;37766:89::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;37830:10:::1;:17:::0;;-1:-1:-1;;37830:17:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37766:89::o;39576:103::-;34945:6;;-1:-1:-1;;;;;34945:6:0;16673:10;35092:23;35084:68;;;;-1:-1:-1;;;35084:68:0;;;;;;;:::i;:::-;39650:21;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;40677:190::-:0;40802:4;40855;40826:25;40839:5;40846:4;40826:12;:25::i;:::-;:33;;40677:190;-1:-1:-1;;;;40677:190:0:o;38498:364::-;38558:8;38553:97;38576:5;38572:9;;:1;:9;;;38553:97;;;38603:35;38613:10;38627:6;;38625:8;;;;;;;;;;;;;;:::i;38603:35::-;38583:3;;;;:::i;:::-;;;;38553:97;;;-1:-1:-1;38687:10:0;38670:28;;;;:16;:28;;;;;:37;;;;;;:28;:37;;;;;:::i;:::-;;;;-1:-1:-1;;38747:6:0;;38721:12;;-1:-1:-1;;;;;38747:6:0;;;;;38808:4;;38782:22;;38794:10;;38782:9;:22;:::i;:::-;38781:31;;;;:::i;:::-;38739:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38720:107;;;38846:7;38838:16;;;;;31106:174;31181:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31181:29:0;-1:-1:-1;;;;;31181:29:0;;;;;;;;:24;;31235:23;31181:24;31235:14;:23::i;:::-;-1:-1:-1;;;;;31226:46:0;;;;;;;;;;;31106:174;;:::o;27418:348::-;27511:4;27213:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27213:16:0;27528:73;;;;-1:-1:-1;;;27528:73:0;;13972:2:1;27528:73:0;;;13954:21:1;14011:2;13991:18;;;13984:30;14050:34;14030:18;;;14023:62;-1:-1:-1;;;14101:18:1;;;14094:42;14153:19;;27528:73:0;13944:234:1;27528:73:0;27612:13;27628:23;27643:7;27628:14;:23::i;:::-;27612:39;;27681:5;-1:-1:-1;;;;;27670:16:0;:7;-1:-1:-1;;;;;27670:16:0;;:51;;;;27714:7;-1:-1:-1;;;;;27690:31:0;:20;27702:7;27690:11;:20::i;:::-;-1:-1:-1;;;;;27690:31:0;;27670:51;:87;;;-1:-1:-1;;;;;;24510:25:0;;;24486:4;24510:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27725:32;27662:96;27418:348;-1:-1:-1;;;;27418:348:0:o;30410:578::-;30569:4;-1:-1:-1;;;;;30542:31:0;:23;30557:7;30542:14;:23::i;:::-;-1:-1:-1;;;;;30542:31:0;;30534:85;;;;-1:-1:-1;;;30534:85:0;;16766:2:1;30534:85:0;;;16748:21:1;16805:2;16785:18;;;16778:30;16844:34;16824:18;;;16817:62;-1:-1:-1;;;16895:18:1;;;16888:39;16944:19;;30534:85:0;16738:231:1;30534:85:0;-1:-1:-1;;;;;30638:16:0;;30630:65;;;;-1:-1:-1;;;30630:65:0;;12871:2:1;30630:65:0;;;12853:21:1;12910:2;12890:18;;;12883:30;12949:34;12929:18;;;12922:62;-1:-1:-1;;;13000:18:1;;;12993:34;13044:19;;30630:65:0;12843:226:1;30630:65:0;30812:29;30829:1;30833:7;30812:8;:29::i;:::-;-1:-1:-1;;;;;30854:15:0;;;;;;:9;:15;;;;;:20;;30873:1;;30854:15;:20;;30873:1;;30854:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30885:13:0;;;;;;:9;:13;;;;;:18;;30902:1;;30885:13;:18;;30902:1;;30885:18;:::i;:::-;;;;-1:-1:-1;;30914:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30914:21:0;-1:-1:-1;;;;;30914:21:0;;;;;;;;;30953:27;;30914:16;;30953:27;;;;;;;30410:578;;;:::o;36142:191::-;36235:6;;;-1:-1:-1;;;;;36252:17:0;;;-1:-1:-1;;;;;;36252:17:0;;;;;;;36285:40;;36235:6;;;36252:17;36235:6;;36285:40;;36216:16;;36285:40;36142:191;;:::o;28445:321::-;28575:18;28581:2;28585:7;28575:5;:18::i;:::-;28626:54;28657:1;28661:2;28665:7;28674:5;28626:22;:54::i;:::-;28604:154;;;;-1:-1:-1;;;28604:154:0;;;;;;;:::i;31422:315::-;31577:8;-1:-1:-1;;;;;31568:17:0;:5;-1:-1:-1;;;;;31568:17:0;;;31560:55;;;;-1:-1:-1;;;31560:55:0;;13276:2:1;31560:55:0;;;13258:21:1;13315:2;13295:18;;;13288:30;13354:27;13334:18;;;13327:55;13399:18;;31560:55:0;13248:175:1;31560:55:0;-1:-1:-1;;;;;31626:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31626:46:0;;;;;;;;;;31688:41;;9821::1;;;31688::0;;9794:18:1;31688:41:0;;;;;;;31422:315;;;:::o;26496:::-;26653:28;26663:4;26669:2;26673:7;26653:9;:28::i;:::-;26700:48;26723:4;26729:2;26733:7;26742:5;26700:22;:48::i;:::-;26692:111;;;;-1:-1:-1;;;26692:111:0;;;;;;;:::i;17178:723::-;17234:13;17455:10;17451:53;;-1:-1:-1;;17482:10:0;;;;;;;;;;;;-1:-1:-1;;;17482:10:0;;;;;17178:723::o;17451:53::-;17529:5;17514:12;17570:78;17577:9;;17570:78;;17603:8;;;;:::i;:::-;;-1:-1:-1;17626:10:0;;-1:-1:-1;17634:2:0;17626:10;;:::i;:::-;;;17570:78;;;17658:19;17690:6;17680:17;;;;;;-1:-1:-1;;;17680:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17680:17:0;;17658:39;;17708:154;17715:10;;17708:154;;17742:11;17752:1;17742:11;;:::i;:::-;;-1:-1:-1;17811:10:0;17819:2;17811:5;:10;:::i;:::-;17798:24;;:2;:24;:::i;:::-;17785:39;;17768:6;17775;17768:14;;;;;;-1:-1:-1;;;17768:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17768:56:0;;;;;;;;-1:-1:-1;17839:11:0;17848:2;17839:11;;:::i;:::-;;;17708:154;;41229:701;41312:7;41355:4;41312:7;41370:523;41394:5;:12;41390:1;:16;41370:523;;;41428:20;41451:5;41457:1;41451:8;;;;;;-1:-1:-1;;;41451:8:0;;;;;;;;;;;;;;;41428:31;;41494:12;41478;:28;41474:408;;41631:44;;;;;;7365:19:1;;;7400:12;;;7393:28;;;7437:12;;41631:44:0;;;;;;;;;;;;41621:55;;;;;;41606:70;;41474:408;;;41821:44;;;;;;7365:19:1;;;7400:12;;;7393:28;;;7437:12;;41821:44:0;;;;;;;;;;;;41811:55;;;;;;41796:70;;41474:408;-1:-1:-1;41408:3:0;;;;:::i;:::-;;;;41370:523;;;-1:-1:-1;41910:12:0;41229:701;-1:-1:-1;;;41229:701:0:o;29102:382::-;-1:-1:-1;;;;;29182:16:0;;29174:61;;;;-1:-1:-1;;;29174:61:0;;15631:2:1;29174:61:0;;;15613:21:1;;;15650:18;;;15643:30;15709:34;15689:18;;;15682:62;15761:18;;29174:61:0;15603:182:1;29174:61:0;27189:4;27213:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27213:16:0;:30;29246:58;;;;-1:-1:-1;;;29246:58:0;;11814:2:1;29246:58:0;;;11796:21:1;11853:2;11833:18;;;11826:30;11892;11872:18;;;11865:58;11940:18;;29246:58:0;11786:178:1;29246:58:0;-1:-1:-1;;;;;29375:13:0;;;;;;:9;:13;;;;;:18;;29392:1;;29375:13;:18;;29392:1;;29375:18;:::i;:::-;;;;-1:-1:-1;;29404:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29404:21:0;-1:-1:-1;;;;;29404:21:0;;;;;;;;29443:33;;29404:16;;;29443:33;;29404:16;;29443:33;29102:382;;:::o;32302:799::-;32457:4;-1:-1:-1;;;;;32478:13:0;;8900:20;8948:8;32474:620;;32514:72;;-1:-1:-1;;;32514:72:0;;-1:-1:-1;;;;;32514:36:0;;;;;:72;;16673:10;;32565:4;;32571:7;;32580:5;;32514:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32514:72:0;;;;;;;;-1:-1:-1;;32514:72:0;;;;;;;;;;;;:::i;:::-;;;32510:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32756:13:0;;32752:272;;32799:60;;-1:-1:-1;;;32799:60:0;;;;;;;:::i;32752:272::-;32974:6;32968:13;32959:6;32955:2;32951:15;32944:38;32510:529;-1:-1:-1;;;;;;32637:51:0;-1:-1:-1;;;32637:51:0;;-1:-1:-1;32630:58:0;;32474:620;-1:-1:-1;33078:4:0;32302:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:1;;1049:18;1038:30;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1146:2;912:307;;;;;:::o;1224:160::-;1289:20;;1345:13;;1338:21;1328:32;;1318:2;;1374:1;1371;1364:12;1389:163;1456:20;;1516:10;1505:22;;1495:33;;1485:2;;1542:1;1539;1532:12;1557:196;1616:6;1669:2;1657:9;1648:7;1644:23;1640:32;1637:2;;;1690:6;1682;1675:22;1637:2;1718:29;1737:9;1718:29;:::i;:::-;1708:39;1627:126;-1:-1:-1;;;1627:126:1:o;1758:270::-;1826:6;1834;1887:2;1875:9;1866:7;1862:23;1858:32;1855:2;;;1908:6;1900;1893:22;1855:2;1936:29;1955:9;1936:29;:::i;:::-;1926:39;;1984:38;2018:2;2007:9;2003:18;1984:38;:::i;:::-;1974:48;;1845:183;;;;;:::o;2033:338::-;2110:6;2118;2126;2179:2;2167:9;2158:7;2154:23;2150:32;2147:2;;;2200:6;2192;2185:22;2147:2;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2276:38;2310:2;2299:9;2295:18;2276:38;:::i;:::-;2266:48;;2361:2;2350:9;2346:18;2333:32;2323:42;;2137:234;;;;;:::o;2376:696::-;2471:6;2479;2487;2495;2548:3;2536:9;2527:7;2523:23;2519:33;2516:2;;;2570:6;2562;2555:22;2516:2;2598:29;2617:9;2598:29;:::i;:::-;2588:39;;2646:38;2680:2;2669:9;2665:18;2646:38;:::i;:::-;2636:48;;2731:2;2720:9;2716:18;2703:32;2693:42;;2786:2;2775:9;2771:18;2758:32;2813:18;2805:6;2802:30;2799:2;;;2850:6;2842;2835:22;2799:2;2878:22;;2931:4;2923:13;;2919:27;-1:-1:-1;2909:2:1;;2965:6;2957;2950:22;2909:2;2993:73;3058:7;3053:2;3040:16;3035:2;3031;3027:11;2993:73;:::i;:::-;2983:83;;;2506:566;;;;;;;:::o;3077:264::-;3142:6;3150;3203:2;3191:9;3182:7;3178:23;3174:32;3171:2;;;3224:6;3216;3209:22;3171:2;3252:29;3271:9;3252:29;:::i;:::-;3242:39;;3300:35;3331:2;3320:9;3316:18;3300:35;:::i;3346:264::-;3414:6;3422;3475:2;3463:9;3454:7;3450:23;3446:32;3443:2;;;3496:6;3488;3481:22;3443:2;3524:29;3543:9;3524:29;:::i;:::-;3514:39;3600:2;3585:18;;;;3572:32;;-1:-1:-1;;;3433:177:1:o;3615:457::-;3701:6;3709;3762:2;3750:9;3741:7;3737:23;3733:32;3730:2;;;3783:6;3775;3768:22;3730:2;3828:9;3815:23;3861:18;3853:6;3850:30;3847:2;;;3898:6;3890;3883:22;3847:2;3942:70;4004:7;3995:6;3984:9;3980:22;3942:70;:::i;:::-;4031:8;;3916:96;;-1:-1:-1;3720:352:1;-1:-1:-1;;;;3720:352:1:o;4077:190::-;4133:6;4186:2;4174:9;4165:7;4161:23;4157:32;4154:2;;;4207:6;4199;4192:22;4154:2;4235:26;4251:9;4235:26;:::i;4272:190::-;4331:6;4384:2;4372:9;4363:7;4359:23;4355:32;4352:2;;;4405:6;4397;4390:22;4352:2;-1:-1:-1;4433:23:1;;4342:120;-1:-1:-1;4342:120:1:o;4467:255::-;4525:6;4578:2;4566:9;4557:7;4553:23;4549:32;4546:2;;;4599:6;4591;4584:22;4546:2;4643:9;4630:23;4662:30;4686:5;4662:30;:::i;4727:259::-;4796:6;4849:2;4837:9;4828:7;4824:23;4820:32;4817:2;;;4870:6;4862;4855:22;4817:2;4907:9;4901:16;4926:30;4950:5;4926:30;:::i;4991:480::-;5060:6;5113:2;5101:9;5092:7;5088:23;5084:32;5081:2;;;5134:6;5126;5119:22;5081:2;5179:9;5166:23;5212:18;5204:6;5201:30;5198:2;;;5249:6;5241;5234:22;5198:2;5277:22;;5330:4;5322:13;;5318:27;-1:-1:-1;5308:2:1;;5364:6;5356;5349:22;5308:2;5392:73;5457:7;5452:2;5439:16;5434:2;5430;5426:11;5392:73;:::i;5671:194::-;5729:6;5782:2;5770:9;5761:7;5757:23;5753:32;5750:2;;;5803:6;5795;5788:22;5750:2;5831:28;5849:9;5831:28;:::i;5870:529::-;5964:6;5972;5980;6033:2;6021:9;6012:7;6008:23;6004:32;6001:2;;;6054:6;6046;6039:22;6001:2;6082:28;6100:9;6082:28;:::i;:::-;6072:38;;6161:2;6150:9;6146:18;6133:32;6188:18;6180:6;6177:30;6174:2;;;6225:6;6217;6210:22;6174:2;6269:70;6331:7;6322:6;6311:9;6307:22;6269:70;:::i;:::-;5991:408;;6358:8;;-1:-1:-1;6243:96:1;;-1:-1:-1;;;;5991:408:1:o;6404:257::-;6445:3;6483:5;6477:12;6510:6;6505:3;6498:19;6526:63;6582:6;6575:4;6570:3;6566:14;6559:4;6552:5;6548:16;6526:63;:::i;:::-;6643:2;6622:15;-1:-1:-1;;6618:29:1;6609:39;;;;6650:4;6605:50;;6453:208;-1:-1:-1;;6453:208:1:o;6666:185::-;6708:3;6746:5;6740:12;6761:52;6806:6;6801:3;6794:4;6787:5;6783:16;6761:52;:::i;:::-;6829:16;;;;;6716:135;-1:-1:-1;;6716:135:1:o;7460:1305::-;7737:3;7766;7801:6;7795:13;7831:3;7853:1;7881:9;7877:2;7873:18;7863:28;;7941:2;7930:9;7926:18;7963;7953:2;;8007:4;7999:6;7995:17;7985:27;;7953:2;8033;8081;8073:6;8070:14;8050:18;8047:38;8044:2;;;-1:-1:-1;;;8108:33:1;;8164:4;8161:1;8154:15;8194:4;8115:3;8182:17;8044:2;8225:18;8252:104;;;;8370:1;8365:322;;;;8218:469;;8252:104;-1:-1:-1;;8285:24:1;;8273:37;;8330:16;;;;-1:-1:-1;8252:104:1;;8365:322;20633:4;20652:17;;;20702:4;20686:21;;8460:3;8476:165;8490:6;8487:1;8484:13;8476:165;;;8568:14;;8555:11;;;8548:35;8611:16;;;;8505:10;;8476:165;;;8480:3;;8670:6;8665:3;8661:16;8654:23;;8218:469;;;;;;;8703:56;8728:30;8754:3;8746:6;8728:30;:::i;:::-;-1:-1:-1;;;6916:20:1;;6961:1;6952:11;;6906:63;8703:56;8696:63;7745:1020;-1:-1:-1;;;;;7745:1020:1:o;9188:488::-;-1:-1:-1;;;;;9457:15:1;;;9439:34;;9509:15;;9504:2;9489:18;;9482:43;9556:2;9541:18;;9534:34;;;9604:3;9599:2;9584:18;;9577:31;;;9382:4;;9625:45;;9650:19;;9642:6;9625:45;:::i;:::-;9617:53;9391:285;-1:-1:-1;;;;;;9391:285:1:o;9873:219::-;10022:2;10011:9;10004:21;9985:4;10042:44;10082:2;10071:9;10067:18;10059:6;10042:44;:::i;10443:414::-;10645:2;10627:21;;;10684:2;10664:18;;;10657:30;10723:34;10718:2;10703:18;;10696:62;-1:-1:-1;;;10789:2:1;10774:18;;10767:48;10847:3;10832:19;;10617:240::o;16203:356::-;16405:2;16387:21;;;16424:18;;;16417:30;16483:34;16478:2;16463:18;;16456:62;16550:2;16535:18;;16377:182::o;18405:413::-;18607:2;18589:21;;;18646:2;18626:18;;;18619:30;18685:34;18680:2;18665:18;;18658:62;-1:-1:-1;;;18751:2:1;18736:18;;18729:47;18808:3;18793:19;;18579:239::o;20718:128::-;20758:3;20789:1;20785:6;20782:1;20779:13;20776:2;;;20795:18;;:::i;:::-;-1:-1:-1;20831:9:1;;20766:80::o;20851:228::-;20890:3;20918:10;20955:2;20952:1;20948:10;20985:2;20982:1;20978:10;21016:3;21012:2;21008:12;21003:3;21000:21;20997:2;;;21024:18;;:::i;:::-;21060:13;;20898:181;-1:-1:-1;;;;20898:181:1:o;21084:120::-;21124:1;21150;21140:2;;21155:18;;:::i;:::-;-1:-1:-1;21189:9:1;;21130:74::o;21209:168::-;21249:7;21315:1;21311;21307:6;21303:14;21300:1;21297:21;21292:1;21285:9;21278:17;21274:45;21271:2;;;21322:18;;:::i;:::-;-1:-1:-1;21362:9:1;;21261:116::o;21382:125::-;21422:4;21450:1;21447;21444:8;21441:2;;;21455:18;;:::i;:::-;-1:-1:-1;21492:9:1;;21431:76::o;21512:258::-;21584:1;21594:113;21608:6;21605:1;21602:13;21594:113;;;21684:11;;;21678:18;21665:11;;;21658:39;21630:2;21623:10;21594:113;;;21725:6;21722:1;21719:13;21716:2;;;-1:-1:-1;;21760:1:1;21742:16;;21735:27;21565:205::o;21775:380::-;21854:1;21850:12;;;;21897;;;21918:2;;21972:4;21964:6;21960:17;21950:27;;21918:2;22025;22017:6;22014:14;21994:18;21991:38;21988:2;;;22071:10;22066:3;22062:20;22059:1;22052:31;22106:4;22103:1;22096:15;22134:4;22131:1;22124:15;21988:2;;21830:325;;;:::o;22160:135::-;22199:3;-1:-1:-1;;22220:17:1;;22217:2;;;22240:18;;:::i;:::-;-1:-1:-1;22287:1:1;22276:13;;22207:88::o;22300:201::-;22338:3;22366:10;22411:2;22404:5;22400:14;22438:2;22429:7;22426:15;22423:2;;;22444:18;;:::i;:::-;22493:1;22480:15;;22346:155;-1:-1:-1;;;22346:155:1:o;22506:112::-;22538:1;22564;22554:2;;22569:18;;:::i;:::-;-1:-1:-1;22603:9:1;;22544:74::o;22623:127::-;22684:10;22679:3;22675:20;22672:1;22665:31;22715:4;22712:1;22705:15;22739:4;22736:1;22729:15;22755:127;22816:10;22811:3;22807:20;22804:1;22797:31;22847:4;22844:1;22837:15;22871:4;22868:1;22861:15;22887:127;22948:10;22943:3;22939:20;22936:1;22929:31;22979:4;22976:1;22969:15;23003:4;23000:1;22993:15;23019:131;-1:-1:-1;;;;;;23093:32:1;;23083:43;;23073:2;;23140:1;23137;23130:12

Swarm Source

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