ETH Price: $2,520.64 (-0.88%)

Token

Feral Cat Club (FCC)
 

Overview

Max Total Supply

70 FCC

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ds0uz.eth
Balance
1 FCC
0xaCDEcf79986Db9d509e4F3FF6D55EBa2f4acBcb0
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:
FeralCatClubERC721

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-23
*/

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


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

// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


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

// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// 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 (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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

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

pragma solidity ^0.8.0;

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

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

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


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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/FeralCatClubERC721.sol

pragma solidity >=0.7.0 <0.9.0;


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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 7300;
  bool public paused = false;

  // decaying mint constants
  uint public decayIntervals = 8;
  uint public decayIntervalLength = 15 seconds;
  uint public incrementDecayIntervalEveryXNFTs = 50;
  uint public lastMintTime = block.timestamp;
  uint256 public mintPriceIncrease = 0.05 ether;
  uint256 public lastMintPrice = 0;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function info() public view returns(uint, uint, uint, uint) {
    return (decayIntervals, lastMintTime, mintPrice(), totalSupply());
  }

  function mintPrice() 
    public 
    view 
    returns (uint256) 
  {
    if (lastMintTime == 0) {return mintPriceIncrease;} // return zero because it's the first mint

    uint256 priceBeforeDecay = lastMintPrice + mintPriceIncrease;
    uint256 elapsedSeconds = block.timestamp - lastMintTime;
    uint256 elapsedIntervals = elapsedSeconds / 15;
    
    if (elapsedIntervals > decayIntervals) {return 0;} // return zero because mint price has fully decayed
    uint256 priceReduction = priceBeforeDecay * elapsedIntervals / decayIntervals;
    uint256 price = priceBeforeDecay - priceReduction;

    return price;
  }

  function mint(uint _requestTokenId) public payable {
    uint tokenId = totalSupply() + 1; 
    require(!paused, 'mint paused');
    require(tokenId == _requestTokenId, 'tokenId does not match requestTokenId');
    require(msg.value >= mintPrice(), 'mint price not high enough');

    _safeMint(msg.sender, tokenId);

    lastMintTime = block.timestamp;
    lastMintPrice = msg.value;
    if ((tokenId + 1) % incrementDecayIntervalEveryXNFTs == 0) {
      decayIntervals++;
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  function togglePaused() public onlyOwner {
    paused = !paused;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decayIntervalLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decayIntervals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incrementDecayIntervalEveryXNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"info","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"lastMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requestTokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceIncrease","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002ee565b50611c84600d556000600e60006101000a81548160ff0219169083151502179055506008600f55600f60105560326011554260125566b1a2bc2ec500006013556000601455348015620000a357600080fd5b5060405162004746380380620047468339818101604052810190620000c9919062000410565b82828160009080519060200190620000e3929190620002ee565b508060019080519060200190620000fc929190620002ee565b5050506200011f620001136200013960201b60201c565b6200014160201b60201c565b62000130816200020760201b60201c565b505050620006a4565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200023360201b60201c565b80600b90805190602001906200022f929190620002ee565b5050565b620002436200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000269620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b990620004d8565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fc90620005a0565b90600052602060002090601f0160209004810192826200032057600085556200036c565b82601f106200033b57805160ff19168380011785556200036c565b828001600101855582156200036c579182015b828111156200036b5782518255916020019190600101906200034e565b5b5090506200037b91906200037f565b5090565b5b808211156200039a57600081600090555060010162000380565b5090565b6000620003b5620003af8462000523565b620004fa565b905082815260208101848484011115620003ce57600080fd5b620003db8482856200056a565b509392505050565b600082601f830112620003f557600080fd5b8151620004078482602086016200039e565b91505092915050565b6000806000606084860312156200042657600080fd5b600084015167ffffffffffffffff8111156200044157600080fd5b6200044f86828701620003e3565b935050602084015167ffffffffffffffff8111156200046d57600080fd5b6200047b86828701620003e3565b925050604084015167ffffffffffffffff8111156200049957600080fd5b620004a786828701620003e3565b9150509250925092565b6000620004c060208362000559565b9150620004cd826200067b565b602082019050919050565b60006020820190508181036000830152620004f381620004b1565b9050919050565b60006200050662000519565b9050620005148282620005d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054157620005406200063b565b5b6200054c826200066a565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058a5780820151818401526020810190506200056d565b838111156200059a576000848401525b50505050565b60006002820490506001821680620005b957607f821691505b60208210811415620005d057620005cf6200060c565b5b50919050565b620005e1826200066a565b810181811067ffffffffffffffff821117156200060357620006026200063b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61409280620006b46000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063a5ed7cb2116100a0578063c66828621161006f578063c668286214610766578063c87b56dd14610791578063d5abeb01146107ce578063e985e9c5146107f9578063f2fde38b146108365761020f565b8063a5ed7cb2146106bc578063a73510a0146106e7578063a77178ca14610712578063b88d4fde1461073d5761020f565b80638da5cb5b116100e75780638da5cb5b146105f657806395d89b41146106215780639d4635201461064c578063a0712d6814610677578063a22cb465146106935761020f565b80636c0360eb1461054c57806370a0823114610577578063715018a6146105b45780638205d633146105cb5761020f565b8063370158ea1161019b5780634f6ccce71161016a5780634f6ccce71461045357806355f804b3146104905780635c975abb146104b95780636352211e146104e45780636817c76c146105215761020f565b8063370158ea146103b55780633ccfd60b146103e357806342842e0e146103ed578063438b6300146104165761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d578063241349b3146103365780632f745c591461036157806336566f061461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d7a565b61085f565b6040516102489190613395565b60405180910390f35b34801561025d57600080fd5b506102666108d9565b60405161027391906133b0565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e0d565b61096b565b6040516102b0919061330c565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612d3e565b6109b1565b005b3480156102ee57600080fd5b506102f7610ac9565b6040516103049190613632565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612c38565b610ad6565b005b34801561034257600080fd5b5061034b610b36565b6040516103589190613632565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612d3e565b610b3c565b6040516103959190613632565b60405180910390f35b3480156103aa57600080fd5b506103b3610be1565b005b3480156103c157600080fd5b506103ca610c15565b6040516103da949392919061364d565b60405180910390f35b6103eb610c3f565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612c38565b610cc7565b005b34801561042257600080fd5b5061043d60048036038101906104389190612bd3565b610ce7565b60405161044a9190613373565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612e0d565b610de1565b6040516104879190613632565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612dcc565b610e78565b005b3480156104c557600080fd5b506104ce610e9a565b6040516104db9190613395565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612e0d565b610ead565b604051610518919061330c565b60405180910390f35b34801561052d57600080fd5b50610536610f5f565b6040516105439190613632565b60405180910390f35b34801561055857600080fd5b50610561610ffb565b60405161056e91906133b0565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190612bd3565b611089565b6040516105ab9190613632565b60405180910390f35b3480156105c057600080fd5b506105c9611141565b005b3480156105d757600080fd5b506105e0611155565b6040516105ed9190613632565b60405180910390f35b34801561060257600080fd5b5061060b61115b565b604051610618919061330c565b60405180910390f35b34801561062d57600080fd5b50610636611185565b60405161064391906133b0565b60405180910390f35b34801561065857600080fd5b50610661611217565b60405161066e9190613632565b60405180910390f35b610691600480360381019061068c9190612e0d565b61121d565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d02565b611368565b005b3480156106c857600080fd5b506106d161137e565b6040516106de9190613632565b60405180910390f35b3480156106f357600080fd5b506106fc611384565b6040516107099190613632565b60405180910390f35b34801561071e57600080fd5b5061072761138a565b6040516107349190613632565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612c87565b611390565b005b34801561077257600080fd5b5061077b6113f2565b60405161078891906133b0565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612e0d565b611480565b6040516107c591906133b0565b60405180910390f35b3480156107da57600080fd5b506107e361152a565b6040516107f09190613632565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612bfc565b611530565b60405161082d9190613395565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612bd3565b6115c4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257506108d182611648565b5b9050919050565b6060600080546108e890613980565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613980565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b60006109768261172a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bc82610ead565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906135b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4c611775565b73ffffffffffffffffffffffffffffffffffffffff161480610a7b5750610a7a81610a75611775565b611530565b5b610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613512565b60405180910390fd5b610ac4838361177d565b505050565b6000600880549050905090565b610ae7610ae1611775565b82611836565b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613612565b60405180910390fd5b610b318383836118cb565b505050565b600f5481565b6000610b4783611089565b8210610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f906133d2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610be9611b32565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600080600080600f54601254610c29610f5f565b610c31610ac9565b935093509350935090919293565b610c47611b32565b6000610c5161115b565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c74906132f7565b60006040518083038185875af1925050503d8060008114610cb1576040519150601f19603f3d011682016040523d82523d6000602084013e610cb6565b606091505b5050905080610cc457600080fd5b50565b610ce283838360405180602001604052806000815250611390565b505050565b60606000610cf483611089565b905060008167ffffffffffffffff811115610d38577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d665781602001602082028036833780820191505090505b50905060005b82811015610dd657610d7e8582610b3c565b828281518110610db7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610dce906139e3565b915050610d6c565b508092505050919050565b6000610deb610ac9565b8210610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e23906135f2565b60405180910390fd5b60088281548110610e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e80611b32565b80600b9080519060200190610e969291906129f7565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613592565b60405180910390fd5b80915050919050565b6000806012541415610f75576013549050610ff8565b6000601354601454610f8791906137b5565b9050600060125442610f999190613896565b90506000600f82610faa919061380b565b9050600f54811115610fc25760009350505050610ff8565b6000600f548285610fd3919061383c565b610fdd919061380b565b905060008185610fed9190613896565b905080955050505050505b90565b600b805461100890613980565b80601f016020809104026020016040519081016040528092919081815260200182805461103490613980565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906134f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611149611b32565b6111536000611bb0565b565b60135481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461119490613980565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090613980565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b5050505050905090565b60125481565b60006001611229610ac9565b61123391906137b5565b9050600e60009054906101000a900460ff1615611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906134b2565b60405180910390fd5b8181146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906135d2565b60405180910390fd5b6112cf610f5f565b341015611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906134d2565b60405180910390fd5b61131b3382611c76565b4260128190555034601481905550600060115460018361133b91906137b5565b6113459190613a2c565b141561136457600f600081548092919061135e906139e3565b91905055505b5050565b61137a611373611775565b8383611c94565b5050565b60115481565b60105481565b60145481565b6113a161139b611775565b83611836565b6113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613612565b60405180910390fd5b6113ec84848484611e01565b50505050565b600c80546113ff90613980565b80601f016020809104026020016040519081016040528092919081815260200182805461142b90613980565b80156114785780601f1061144d57610100808354040283529160200191611478565b820191906000526020600020905b81548152906001019060200180831161145b57829003601f168201915b505050505081565b606061148b82611e5d565b6114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190613572565b60405180910390fd5b60006114d4611ec9565b905060008151116114f45760405180602001604052806000815250611522565b806114fe84611f5b565b600c604051602001611512939291906132c6565b6040516020818303038152906040525b915050919050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cc611b32565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390613412565b60405180910390fd5b61164581611bb0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061171357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611723575061172282612108565b5b9050919050565b61173381611e5d565b611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613592565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117f083610ead565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061184283610ead565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188457506118838185611530565b5b806118c257508373ffffffffffffffffffffffffffffffffffffffff166118aa8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118eb82610ead565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613432565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613472565b60405180910390fd5b6119bc838383612172565b6119c760008261177d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a179190613896565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6e91906137b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b2d838383612286565b505050565b611b3a611775565b73ffffffffffffffffffffffffffffffffffffffff16611b5861115b565b73ffffffffffffffffffffffffffffffffffffffff1614611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613552565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c9082826040518060200160405280600081525061228b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613492565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611df49190613395565b60405180910390a3505050565b611e0c8484846118cb565b611e18848484846122e6565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e906133f2565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611ed890613980565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0490613980565b8015611f515780601f10611f2657610100808354040283529160200191611f51565b820191906000526020600020905b815481529060010190602001808311611f3457829003601f168201915b5050505050905090565b60606000821415611fa3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612103565b600082905060005b60008214611fd5578080611fbe906139e3565b915050600a82611fce919061380b565b9150611fab565b60008167ffffffffffffffff811115612017577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120495781602001600182028036833780820191505090505b5090505b600085146120fc576001826120629190613896565b9150600a856120719190613a2c565b603061207d91906137b5565b60f81b8183815181106120b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f5919061380b565b945061204d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61217d83838361247d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c0576121bb81612482565b6121ff565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121fe576121fd83826124cb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122425761223d81612638565b612281565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122805761227f828261277b565b5b5b505050565b505050565b61229583836127fa565b6122a260008484846122e6565b6122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d8906133f2565b60405180910390fd5b505050565b60006123078473ffffffffffffffffffffffffffffffffffffffff166129d4565b15612470578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612330611775565b8786866040518563ffffffff1660e01b81526004016123529493929190613327565b602060405180830381600087803b15801561236c57600080fd5b505af192505050801561239d57506040513d601f19601f8201168201806040525081019061239a9190612da3565b60015b612420573d80600081146123cd576040519150601f19603f3d011682016040523d82523d6000602084013e6123d2565b606091505b50600081511415612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906133f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612475565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124d884611089565b6124e29190613896565b90506000600760008481526020019081526020016000205490508181146125c7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061264c9190613896565b90506000600960008481526020019081526020016000205490506000600883815481106126a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106126ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061275f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061278683611089565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190613532565b60405180910390fd5b61287381611e5d565b156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90613452565b60405180910390fd5b6128bf60008383612172565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290f91906137b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129d060008383612286565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a0390613980565b90600052602060002090601f016020900481019282612a255760008555612a6c565b82601f10612a3e57805160ff1916838001178555612a6c565b82800160010185558215612a6c579182015b82811115612a6b578251825591602001919060010190612a50565b5b509050612a799190612a7d565b5090565b5b80821115612a96576000816000905550600101612a7e565b5090565b6000612aad612aa8846136b7565b613692565b905082815260208101848484011115612ac557600080fd5b612ad084828561393e565b509392505050565b6000612aeb612ae6846136e8565b613692565b905082815260208101848484011115612b0357600080fd5b612b0e84828561393e565b509392505050565b600081359050612b2581614000565b92915050565b600081359050612b3a81614017565b92915050565b600081359050612b4f8161402e565b92915050565b600081519050612b648161402e565b92915050565b600082601f830112612b7b57600080fd5b8135612b8b848260208601612a9a565b91505092915050565b600082601f830112612ba557600080fd5b8135612bb5848260208601612ad8565b91505092915050565b600081359050612bcd81614045565b92915050565b600060208284031215612be557600080fd5b6000612bf384828501612b16565b91505092915050565b60008060408385031215612c0f57600080fd5b6000612c1d85828601612b16565b9250506020612c2e85828601612b16565b9150509250929050565b600080600060608486031215612c4d57600080fd5b6000612c5b86828701612b16565b9350506020612c6c86828701612b16565b9250506040612c7d86828701612bbe565b9150509250925092565b60008060008060808587031215612c9d57600080fd5b6000612cab87828801612b16565b9450506020612cbc87828801612b16565b9350506040612ccd87828801612bbe565b925050606085013567ffffffffffffffff811115612cea57600080fd5b612cf687828801612b6a565b91505092959194509250565b60008060408385031215612d1557600080fd5b6000612d2385828601612b16565b9250506020612d3485828601612b2b565b9150509250929050565b60008060408385031215612d5157600080fd5b6000612d5f85828601612b16565b9250506020612d7085828601612bbe565b9150509250929050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612b40565b91505092915050565b600060208284031215612db557600080fd5b6000612dc384828501612b55565b91505092915050565b600060208284031215612dde57600080fd5b600082013567ffffffffffffffff811115612df857600080fd5b612e0484828501612b94565b91505092915050565b600060208284031215612e1f57600080fd5b6000612e2d84828501612bbe565b91505092915050565b6000612e4283836132a8565b60208301905092915050565b612e57816138ca565b82525050565b6000612e688261373e565b612e72818561376c565b9350612e7d83613719565b8060005b83811015612eae578151612e958882612e36565b9750612ea08361375f565b925050600181019050612e81565b5085935050505092915050565b612ec4816138dc565b82525050565b6000612ed582613749565b612edf818561377d565b9350612eef81856020860161394d565b612ef881613b19565b840191505092915050565b6000612f0e82613754565b612f188185613799565b9350612f2881856020860161394d565b612f3181613b19565b840191505092915050565b6000612f4782613754565b612f5181856137aa565b9350612f6181856020860161394d565b80840191505092915050565b60008154612f7a81613980565b612f8481866137aa565b94506001821660008114612f9f5760018114612fb057612fe3565b60ff19831686528186019350612fe3565b612fb985613729565b60005b83811015612fdb57815481890152600182019150602081019050612fbc565b838801955050505b50505092915050565b6000612ff9602b83613799565b915061300482613b2a565b604082019050919050565b600061301c603283613799565b915061302782613b79565b604082019050919050565b600061303f602683613799565b915061304a82613bc8565b604082019050919050565b6000613062602583613799565b915061306d82613c17565b604082019050919050565b6000613085601c83613799565b915061309082613c66565b602082019050919050565b60006130a8602483613799565b91506130b382613c8f565b604082019050919050565b60006130cb601983613799565b91506130d682613cde565b602082019050919050565b60006130ee600b83613799565b91506130f982613d07565b602082019050919050565b6000613111601a83613799565b915061311c82613d30565b602082019050919050565b6000613134602983613799565b915061313f82613d59565b604082019050919050565b6000613157603e83613799565b915061316282613da8565b604082019050919050565b600061317a602083613799565b915061318582613df7565b602082019050919050565b600061319d602083613799565b91506131a882613e20565b602082019050919050565b60006131c0602f83613799565b91506131cb82613e49565b604082019050919050565b60006131e3601883613799565b91506131ee82613e98565b602082019050919050565b6000613206602183613799565b915061321182613ec1565b604082019050919050565b6000613229602583613799565b915061323482613f10565b604082019050919050565b600061324c60008361378e565b915061325782613f5f565b600082019050919050565b600061326f602c83613799565b915061327a82613f62565b604082019050919050565b6000613292602e83613799565b915061329d82613fb1565b604082019050919050565b6132b181613934565b82525050565b6132c081613934565b82525050565b60006132d28286612f3c565b91506132de8285612f3c565b91506132ea8284612f6d565b9150819050949350505050565b60006133028261323f565b9150819050919050565b60006020820190506133216000830184612e4e565b92915050565b600060808201905061333c6000830187612e4e565b6133496020830186612e4e565b61335660408301856132b7565b81810360608301526133688184612eca565b905095945050505050565b6000602082019050818103600083015261338d8184612e5d565b905092915050565b60006020820190506133aa6000830184612ebb565b92915050565b600060208201905081810360008301526133ca8184612f03565b905092915050565b600060208201905081810360008301526133eb81612fec565b9050919050565b6000602082019050818103600083015261340b8161300f565b9050919050565b6000602082019050818103600083015261342b81613032565b9050919050565b6000602082019050818103600083015261344b81613055565b9050919050565b6000602082019050818103600083015261346b81613078565b9050919050565b6000602082019050818103600083015261348b8161309b565b9050919050565b600060208201905081810360008301526134ab816130be565b9050919050565b600060208201905081810360008301526134cb816130e1565b9050919050565b600060208201905081810360008301526134eb81613104565b9050919050565b6000602082019050818103600083015261350b81613127565b9050919050565b6000602082019050818103600083015261352b8161314a565b9050919050565b6000602082019050818103600083015261354b8161316d565b9050919050565b6000602082019050818103600083015261356b81613190565b9050919050565b6000602082019050818103600083015261358b816131b3565b9050919050565b600060208201905081810360008301526135ab816131d6565b9050919050565b600060208201905081810360008301526135cb816131f9565b9050919050565b600060208201905081810360008301526135eb8161321c565b9050919050565b6000602082019050818103600083015261360b81613262565b9050919050565b6000602082019050818103600083015261362b81613285565b9050919050565b600060208201905061364760008301846132b7565b92915050565b600060808201905061366260008301876132b7565b61366f60208301866132b7565b61367c60408301856132b7565b61368960608301846132b7565b95945050505050565b600061369c6136ad565b90506136a882826139b2565b919050565b6000604051905090565b600067ffffffffffffffff8211156136d2576136d1613aea565b5b6136db82613b19565b9050602081019050919050565b600067ffffffffffffffff82111561370357613702613aea565b5b61370c82613b19565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137c082613934565b91506137cb83613934565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613800576137ff613a5d565b5b828201905092915050565b600061381682613934565b915061382183613934565b92508261383157613830613a8c565b5b828204905092915050565b600061384782613934565b915061385283613934565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561388b5761388a613a5d565b5b828202905092915050565b60006138a182613934565b91506138ac83613934565b9250828210156138bf576138be613a5d565b5b828203905092915050565b60006138d582613914565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561396b578082015181840152602081019050613950565b8381111561397a576000848401525b50505050565b6000600282049050600182168061399857607f821691505b602082108114156139ac576139ab613abb565b5b50919050565b6139bb82613b19565b810181811067ffffffffffffffff821117156139da576139d9613aea565b5b80604052505050565b60006139ee82613934565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a2157613a20613a5d565b5b600182019050919050565b6000613a3782613934565b9150613a4283613934565b925082613a5257613a51613a8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e7420706175736564000000000000000000000000000000000000000000600082015250565b7f6d696e74207072696365206e6f74206869676820656e6f756768000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6b656e496420646f6573206e6f74206d617463682072657175657374546f60008201527f6b656e4964000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b614009816138ca565b811461401457600080fd5b50565b614020816138dc565b811461402b57600080fd5b50565b614037816138e8565b811461404257600080fd5b50565b61404e81613934565b811461405957600080fd5b5056fea2646970667358221220d45e5b9e5bb21b9bc6f3164ca138d0af2c53e27c36b4ad2de44bfb08b23a316e64736f6c63430008030033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e466572616c2043617420436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000346434300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5067574742327359706d464d617137415447527274414733356341456d5754554e766a7a7a4e59636b7948792f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063a5ed7cb2116100a0578063c66828621161006f578063c668286214610766578063c87b56dd14610791578063d5abeb01146107ce578063e985e9c5146107f9578063f2fde38b146108365761020f565b8063a5ed7cb2146106bc578063a73510a0146106e7578063a77178ca14610712578063b88d4fde1461073d5761020f565b80638da5cb5b116100e75780638da5cb5b146105f657806395d89b41146106215780639d4635201461064c578063a0712d6814610677578063a22cb465146106935761020f565b80636c0360eb1461054c57806370a0823114610577578063715018a6146105b45780638205d633146105cb5761020f565b8063370158ea1161019b5780634f6ccce71161016a5780634f6ccce71461045357806355f804b3146104905780635c975abb146104b95780636352211e146104e45780636817c76c146105215761020f565b8063370158ea146103b55780633ccfd60b146103e357806342842e0e146103ed578063438b6300146104165761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d578063241349b3146103365780632f745c591461036157806336566f061461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d7a565b61085f565b6040516102489190613395565b60405180910390f35b34801561025d57600080fd5b506102666108d9565b60405161027391906133b0565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e0d565b61096b565b6040516102b0919061330c565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612d3e565b6109b1565b005b3480156102ee57600080fd5b506102f7610ac9565b6040516103049190613632565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612c38565b610ad6565b005b34801561034257600080fd5b5061034b610b36565b6040516103589190613632565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612d3e565b610b3c565b6040516103959190613632565b60405180910390f35b3480156103aa57600080fd5b506103b3610be1565b005b3480156103c157600080fd5b506103ca610c15565b6040516103da949392919061364d565b60405180910390f35b6103eb610c3f565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612c38565b610cc7565b005b34801561042257600080fd5b5061043d60048036038101906104389190612bd3565b610ce7565b60405161044a9190613373565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612e0d565b610de1565b6040516104879190613632565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612dcc565b610e78565b005b3480156104c557600080fd5b506104ce610e9a565b6040516104db9190613395565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612e0d565b610ead565b604051610518919061330c565b60405180910390f35b34801561052d57600080fd5b50610536610f5f565b6040516105439190613632565b60405180910390f35b34801561055857600080fd5b50610561610ffb565b60405161056e91906133b0565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190612bd3565b611089565b6040516105ab9190613632565b60405180910390f35b3480156105c057600080fd5b506105c9611141565b005b3480156105d757600080fd5b506105e0611155565b6040516105ed9190613632565b60405180910390f35b34801561060257600080fd5b5061060b61115b565b604051610618919061330c565b60405180910390f35b34801561062d57600080fd5b50610636611185565b60405161064391906133b0565b60405180910390f35b34801561065857600080fd5b50610661611217565b60405161066e9190613632565b60405180910390f35b610691600480360381019061068c9190612e0d565b61121d565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d02565b611368565b005b3480156106c857600080fd5b506106d161137e565b6040516106de9190613632565b60405180910390f35b3480156106f357600080fd5b506106fc611384565b6040516107099190613632565b60405180910390f35b34801561071e57600080fd5b5061072761138a565b6040516107349190613632565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612c87565b611390565b005b34801561077257600080fd5b5061077b6113f2565b60405161078891906133b0565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612e0d565b611480565b6040516107c591906133b0565b60405180910390f35b3480156107da57600080fd5b506107e361152a565b6040516107f09190613632565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612bfc565b611530565b60405161082d9190613395565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612bd3565b6115c4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257506108d182611648565b5b9050919050565b6060600080546108e890613980565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613980565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b60006109768261172a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bc82610ead565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a24906135b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4c611775565b73ffffffffffffffffffffffffffffffffffffffff161480610a7b5750610a7a81610a75611775565b611530565b5b610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613512565b60405180910390fd5b610ac4838361177d565b505050565b6000600880549050905090565b610ae7610ae1611775565b82611836565b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613612565b60405180910390fd5b610b318383836118cb565b505050565b600f5481565b6000610b4783611089565b8210610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f906133d2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610be9611b32565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600080600080600f54601254610c29610f5f565b610c31610ac9565b935093509350935090919293565b610c47611b32565b6000610c5161115b565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c74906132f7565b60006040518083038185875af1925050503d8060008114610cb1576040519150601f19603f3d011682016040523d82523d6000602084013e610cb6565b606091505b5050905080610cc457600080fd5b50565b610ce283838360405180602001604052806000815250611390565b505050565b60606000610cf483611089565b905060008167ffffffffffffffff811115610d38577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d665781602001602082028036833780820191505090505b50905060005b82811015610dd657610d7e8582610b3c565b828281518110610db7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610dce906139e3565b915050610d6c565b508092505050919050565b6000610deb610ac9565b8210610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e23906135f2565b60405180910390fd5b60088281548110610e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e80611b32565b80600b9080519060200190610e969291906129f7565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613592565b60405180910390fd5b80915050919050565b6000806012541415610f75576013549050610ff8565b6000601354601454610f8791906137b5565b9050600060125442610f999190613896565b90506000600f82610faa919061380b565b9050600f54811115610fc25760009350505050610ff8565b6000600f548285610fd3919061383c565b610fdd919061380b565b905060008185610fed9190613896565b905080955050505050505b90565b600b805461100890613980565b80601f016020809104026020016040519081016040528092919081815260200182805461103490613980565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906134f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611149611b32565b6111536000611bb0565b565b60135481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461119490613980565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090613980565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b5050505050905090565b60125481565b60006001611229610ac9565b61123391906137b5565b9050600e60009054906101000a900460ff1615611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906134b2565b60405180910390fd5b8181146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906135d2565b60405180910390fd5b6112cf610f5f565b341015611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906134d2565b60405180910390fd5b61131b3382611c76565b4260128190555034601481905550600060115460018361133b91906137b5565b6113459190613a2c565b141561136457600f600081548092919061135e906139e3565b91905055505b5050565b61137a611373611775565b8383611c94565b5050565b60115481565b60105481565b60145481565b6113a161139b611775565b83611836565b6113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613612565b60405180910390fd5b6113ec84848484611e01565b50505050565b600c80546113ff90613980565b80601f016020809104026020016040519081016040528092919081815260200182805461142b90613980565b80156114785780601f1061144d57610100808354040283529160200191611478565b820191906000526020600020905b81548152906001019060200180831161145b57829003601f168201915b505050505081565b606061148b82611e5d565b6114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190613572565b60405180910390fd5b60006114d4611ec9565b905060008151116114f45760405180602001604052806000815250611522565b806114fe84611f5b565b600c604051602001611512939291906132c6565b6040516020818303038152906040525b915050919050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cc611b32565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163390613412565b60405180910390fd5b61164581611bb0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061171357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611723575061172282612108565b5b9050919050565b61173381611e5d565b611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613592565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117f083610ead565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061184283610ead565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188457506118838185611530565b5b806118c257508373ffffffffffffffffffffffffffffffffffffffff166118aa8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118eb82610ead565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613432565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613472565b60405180910390fd5b6119bc838383612172565b6119c760008261177d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a179190613896565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6e91906137b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b2d838383612286565b505050565b611b3a611775565b73ffffffffffffffffffffffffffffffffffffffff16611b5861115b565b73ffffffffffffffffffffffffffffffffffffffff1614611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613552565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c9082826040518060200160405280600081525061228b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613492565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611df49190613395565b60405180910390a3505050565b611e0c8484846118cb565b611e18848484846122e6565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e906133f2565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611ed890613980565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0490613980565b8015611f515780601f10611f2657610100808354040283529160200191611f51565b820191906000526020600020905b815481529060010190602001808311611f3457829003601f168201915b5050505050905090565b60606000821415611fa3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612103565b600082905060005b60008214611fd5578080611fbe906139e3565b915050600a82611fce919061380b565b9150611fab565b60008167ffffffffffffffff811115612017577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120495781602001600182028036833780820191505090505b5090505b600085146120fc576001826120629190613896565b9150600a856120719190613a2c565b603061207d91906137b5565b60f81b8183815181106120b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120f5919061380b565b945061204d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61217d83838361247d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c0576121bb81612482565b6121ff565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121fe576121fd83826124cb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122425761223d81612638565b612281565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122805761227f828261277b565b5b5b505050565b505050565b61229583836127fa565b6122a260008484846122e6565b6122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d8906133f2565b60405180910390fd5b505050565b60006123078473ffffffffffffffffffffffffffffffffffffffff166129d4565b15612470578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612330611775565b8786866040518563ffffffff1660e01b81526004016123529493929190613327565b602060405180830381600087803b15801561236c57600080fd5b505af192505050801561239d57506040513d601f19601f8201168201806040525081019061239a9190612da3565b60015b612420573d80600081146123cd576040519150601f19603f3d011682016040523d82523d6000602084013e6123d2565b606091505b50600081511415612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906133f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612475565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124d884611089565b6124e29190613896565b90506000600760008481526020019081526020016000205490508181146125c7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061264c9190613896565b90506000600960008481526020019081526020016000205490506000600883815481106126a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106126ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061275f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061278683611089565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190613532565b60405180910390fd5b61287381611e5d565b156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90613452565b60405180910390fd5b6128bf60008383612172565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290f91906137b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129d060008383612286565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a0390613980565b90600052602060002090601f016020900481019282612a255760008555612a6c565b82601f10612a3e57805160ff1916838001178555612a6c565b82800160010185558215612a6c579182015b82811115612a6b578251825591602001919060010190612a50565b5b509050612a799190612a7d565b5090565b5b80821115612a96576000816000905550600101612a7e565b5090565b6000612aad612aa8846136b7565b613692565b905082815260208101848484011115612ac557600080fd5b612ad084828561393e565b509392505050565b6000612aeb612ae6846136e8565b613692565b905082815260208101848484011115612b0357600080fd5b612b0e84828561393e565b509392505050565b600081359050612b2581614000565b92915050565b600081359050612b3a81614017565b92915050565b600081359050612b4f8161402e565b92915050565b600081519050612b648161402e565b92915050565b600082601f830112612b7b57600080fd5b8135612b8b848260208601612a9a565b91505092915050565b600082601f830112612ba557600080fd5b8135612bb5848260208601612ad8565b91505092915050565b600081359050612bcd81614045565b92915050565b600060208284031215612be557600080fd5b6000612bf384828501612b16565b91505092915050565b60008060408385031215612c0f57600080fd5b6000612c1d85828601612b16565b9250506020612c2e85828601612b16565b9150509250929050565b600080600060608486031215612c4d57600080fd5b6000612c5b86828701612b16565b9350506020612c6c86828701612b16565b9250506040612c7d86828701612bbe565b9150509250925092565b60008060008060808587031215612c9d57600080fd5b6000612cab87828801612b16565b9450506020612cbc87828801612b16565b9350506040612ccd87828801612bbe565b925050606085013567ffffffffffffffff811115612cea57600080fd5b612cf687828801612b6a565b91505092959194509250565b60008060408385031215612d1557600080fd5b6000612d2385828601612b16565b9250506020612d3485828601612b2b565b9150509250929050565b60008060408385031215612d5157600080fd5b6000612d5f85828601612b16565b9250506020612d7085828601612bbe565b9150509250929050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612b40565b91505092915050565b600060208284031215612db557600080fd5b6000612dc384828501612b55565b91505092915050565b600060208284031215612dde57600080fd5b600082013567ffffffffffffffff811115612df857600080fd5b612e0484828501612b94565b91505092915050565b600060208284031215612e1f57600080fd5b6000612e2d84828501612bbe565b91505092915050565b6000612e4283836132a8565b60208301905092915050565b612e57816138ca565b82525050565b6000612e688261373e565b612e72818561376c565b9350612e7d83613719565b8060005b83811015612eae578151612e958882612e36565b9750612ea08361375f565b925050600181019050612e81565b5085935050505092915050565b612ec4816138dc565b82525050565b6000612ed582613749565b612edf818561377d565b9350612eef81856020860161394d565b612ef881613b19565b840191505092915050565b6000612f0e82613754565b612f188185613799565b9350612f2881856020860161394d565b612f3181613b19565b840191505092915050565b6000612f4782613754565b612f5181856137aa565b9350612f6181856020860161394d565b80840191505092915050565b60008154612f7a81613980565b612f8481866137aa565b94506001821660008114612f9f5760018114612fb057612fe3565b60ff19831686528186019350612fe3565b612fb985613729565b60005b83811015612fdb57815481890152600182019150602081019050612fbc565b838801955050505b50505092915050565b6000612ff9602b83613799565b915061300482613b2a565b604082019050919050565b600061301c603283613799565b915061302782613b79565b604082019050919050565b600061303f602683613799565b915061304a82613bc8565b604082019050919050565b6000613062602583613799565b915061306d82613c17565b604082019050919050565b6000613085601c83613799565b915061309082613c66565b602082019050919050565b60006130a8602483613799565b91506130b382613c8f565b604082019050919050565b60006130cb601983613799565b91506130d682613cde565b602082019050919050565b60006130ee600b83613799565b91506130f982613d07565b602082019050919050565b6000613111601a83613799565b915061311c82613d30565b602082019050919050565b6000613134602983613799565b915061313f82613d59565b604082019050919050565b6000613157603e83613799565b915061316282613da8565b604082019050919050565b600061317a602083613799565b915061318582613df7565b602082019050919050565b600061319d602083613799565b91506131a882613e20565b602082019050919050565b60006131c0602f83613799565b91506131cb82613e49565b604082019050919050565b60006131e3601883613799565b91506131ee82613e98565b602082019050919050565b6000613206602183613799565b915061321182613ec1565b604082019050919050565b6000613229602583613799565b915061323482613f10565b604082019050919050565b600061324c60008361378e565b915061325782613f5f565b600082019050919050565b600061326f602c83613799565b915061327a82613f62565b604082019050919050565b6000613292602e83613799565b915061329d82613fb1565b604082019050919050565b6132b181613934565b82525050565b6132c081613934565b82525050565b60006132d28286612f3c565b91506132de8285612f3c565b91506132ea8284612f6d565b9150819050949350505050565b60006133028261323f565b9150819050919050565b60006020820190506133216000830184612e4e565b92915050565b600060808201905061333c6000830187612e4e565b6133496020830186612e4e565b61335660408301856132b7565b81810360608301526133688184612eca565b905095945050505050565b6000602082019050818103600083015261338d8184612e5d565b905092915050565b60006020820190506133aa6000830184612ebb565b92915050565b600060208201905081810360008301526133ca8184612f03565b905092915050565b600060208201905081810360008301526133eb81612fec565b9050919050565b6000602082019050818103600083015261340b8161300f565b9050919050565b6000602082019050818103600083015261342b81613032565b9050919050565b6000602082019050818103600083015261344b81613055565b9050919050565b6000602082019050818103600083015261346b81613078565b9050919050565b6000602082019050818103600083015261348b8161309b565b9050919050565b600060208201905081810360008301526134ab816130be565b9050919050565b600060208201905081810360008301526134cb816130e1565b9050919050565b600060208201905081810360008301526134eb81613104565b9050919050565b6000602082019050818103600083015261350b81613127565b9050919050565b6000602082019050818103600083015261352b8161314a565b9050919050565b6000602082019050818103600083015261354b8161316d565b9050919050565b6000602082019050818103600083015261356b81613190565b9050919050565b6000602082019050818103600083015261358b816131b3565b9050919050565b600060208201905081810360008301526135ab816131d6565b9050919050565b600060208201905081810360008301526135cb816131f9565b9050919050565b600060208201905081810360008301526135eb8161321c565b9050919050565b6000602082019050818103600083015261360b81613262565b9050919050565b6000602082019050818103600083015261362b81613285565b9050919050565b600060208201905061364760008301846132b7565b92915050565b600060808201905061366260008301876132b7565b61366f60208301866132b7565b61367c60408301856132b7565b61368960608301846132b7565b95945050505050565b600061369c6136ad565b90506136a882826139b2565b919050565b6000604051905090565b600067ffffffffffffffff8211156136d2576136d1613aea565b5b6136db82613b19565b9050602081019050919050565b600067ffffffffffffffff82111561370357613702613aea565b5b61370c82613b19565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137c082613934565b91506137cb83613934565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613800576137ff613a5d565b5b828201905092915050565b600061381682613934565b915061382183613934565b92508261383157613830613a8c565b5b828204905092915050565b600061384782613934565b915061385283613934565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561388b5761388a613a5d565b5b828202905092915050565b60006138a182613934565b91506138ac83613934565b9250828210156138bf576138be613a5d565b5b828203905092915050565b60006138d582613914565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561396b578082015181840152602081019050613950565b8381111561397a576000848401525b50505050565b6000600282049050600182168061399857607f821691505b602082108114156139ac576139ab613abb565b5b50919050565b6139bb82613b19565b810181811067ffffffffffffffff821117156139da576139d9613aea565b5b80604052505050565b60006139ee82613934565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a2157613a20613a5d565b5b600182019050919050565b6000613a3782613934565b9150613a4283613934565b925082613a5257613a51613a8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e7420706175736564000000000000000000000000000000000000000000600082015250565b7f6d696e74207072696365206e6f74206869676820656e6f756768000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6b656e496420646f6573206e6f74206d617463682072657175657374546f60008201527f6b656e4964000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b614009816138ca565b811461401457600080fd5b50565b614020816138dc565b811461402b57600080fd5b50565b614037816138e8565b811461404257600080fd5b50565b61404e81613934565b811461405957600080fd5b5056fea2646970667358221220d45e5b9e5bb21b9bc6f3164ca138d0af2c53e27c36b4ad2de44bfb08b23a316e64736f6c63430008030033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e466572616c2043617420436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000346434300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5067574742327359706d464d617137415447527274414733356341456d5754554e766a7a7a4e59636b7948792f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Feral Cat Club
Arg [1] : _symbol (string): FCC
Arg [2] : _initBaseURI (string): ipfs://QmPgWGB2sYpmFMaq7ATGRrtAG35cAEmWTUNvjzzNYckyHy/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 466572616c2043617420436c7562000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4643430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5067574742327359706d464d6171374154475272744147
Arg [9] : 33356341456d5754554e766a7a7a4e59636b7948792f00000000000000000000


Deployed Bytecode Sourcemap

46395:3258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37460:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23106:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24619:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24136:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38100:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25319:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46656:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37768:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49428:70;;;;;;;;;;;;;:::i;:::-;;47236:138;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;49505:145;;;:::i;:::-;;25726:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48525:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38290:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49324:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46593:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22817:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47380:637;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46489:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22548:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45495:103;;;;;;;;;;;;;:::i;:::-;;46841:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44847:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23275:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46794:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48023:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24862:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46740:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46691:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46891:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25982:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46515:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48879:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46557:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25088:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45753:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37460:224;37562:4;37601:35;37586:50;;;:11;:50;;;;:90;;;;37640:36;37664:11;37640:23;:36::i;:::-;37586:90;37579:97;;37460:224;;;:::o;23106:100::-;23160:13;23193:5;23186:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:100;:::o;24619:171::-;24695:7;24715:23;24730:7;24715:14;:23::i;:::-;24758:15;:24;24774:7;24758:24;;;;;;;;;;;;;;;;;;;;;24751:31;;24619:171;;;:::o;24136:417::-;24217:13;24233:23;24248:7;24233:14;:23::i;:::-;24217:39;;24281:5;24275:11;;:2;:11;;;;24267:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24375:5;24359:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24384:37;24401:5;24408:12;:10;:12::i;:::-;24384:16;:37::i;:::-;24359:62;24337:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;24524:21;24533:2;24537:7;24524:8;:21::i;:::-;24136:417;;;:::o;38100:113::-;38161:7;38188:10;:17;;;;38181:24;;38100:113;:::o;25319:336::-;25514:41;25533:12;:10;:12::i;:::-;25547:7;25514:18;:41::i;:::-;25506:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25619:28;25629:4;25635:2;25639:7;25619:9;:28::i;:::-;25319:336;;;:::o;46656:30::-;;;;:::o;37768:256::-;37865:7;37901:23;37918:5;37901:16;:23::i;:::-;37893:5;:31;37885:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37990:12;:19;38003:5;37990:19;;;;;;;;;;;;;;;:26;38010:5;37990:26;;;;;;;;;;;;37983:33;;37768:256;;;;:::o;49428:70::-;44733:13;:11;:13::i;:::-;49486:6:::1;;;;;;;;;;;49485:7;49476:6;;:16;;;;;;;;;;;;;;;;;;49428:70::o:0;47236:138::-;47272:4;47278;47284;47290;47311:14;;47327:12;;47341:11;:9;:11::i;:::-;47354:13;:11;:13::i;:::-;47303:65;;;;;;;;47236:138;;;;:::o;49505:145::-;44733:13;:11;:13::i;:::-;49558:7:::1;49579;:5;:7::i;:::-;49571:21;;49600;49571:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49557:69;;;49641:2;49633:11;;;::::0;::::1;;44757:1;49505:145::o:0;25726:185::-;25864:39;25881:4;25887:2;25891:7;25864:39;;;;;;;;;;;;:16;:39::i;:::-;25726:185;;;:::o;48525:348::-;48600:16;48628:23;48654:17;48664:6;48654:9;:17::i;:::-;48628:43;;48678:25;48720:15;48706:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48678:58;;48748:9;48743:103;48763:15;48759:1;:19;48743:103;;;48808:30;48828:6;48836:1;48808:19;:30::i;:::-;48794:8;48803:1;48794:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;48780:3;;;;;:::i;:::-;;;;48743:103;;;;48859:8;48852:15;;;;48525:348;;;:::o;38290:233::-;38365:7;38401:30;:28;:30::i;:::-;38393:5;:38;38385:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38498:10;38509:5;38498:17;;;;;;;;;;;;;;;;;;;;;;;;38491:24;;38290:233;;;:::o;49324:98::-;44733:13;:11;:13::i;:::-;49405:11:::1;49395:7;:21;;;;;;;;;;;;:::i;:::-;;49324:98:::0;:::o;46593:26::-;;;;;;;;;;;;;:::o;22817:222::-;22889:7;22909:13;22925:7;:16;22933:7;22925:16;;;;;;;;;;;;;;;;;;;;;22909:32;;22977:1;22960:19;;:5;:19;;;;22952:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;23026:5;23019:12;;;22817:222;;;:::o;47380:637::-;47440:7;47480:1;47464:12;;:17;47460:50;;;47491:17;;47484:24;;;;47460:50;47561:24;47604:17;;47588:13;;:33;;;;:::i;:::-;47561:60;;47628:22;47671:12;;47653:15;:30;;;;:::i;:::-;47628:55;;47690:24;47734:2;47717:14;:19;;;;:::i;:::-;47690:46;;47772:14;;47753:16;:33;47749:50;;;47796:1;47789:8;;;;;;;47749:50;47857:22;47920:14;;47901:16;47882;:35;;;;:::i;:::-;:52;;;;:::i;:::-;47857:77;;47941:13;47976:14;47957:16;:33;;;;:::i;:::-;47941:49;;48006:5;47999:12;;;;;;;47380:637;;:::o;46489:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22548:207::-;22620:7;22665:1;22648:19;;:5;:19;;;;22640:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22731:9;:16;22741:5;22731:16;;;;;;;;;;;;;;;;22724:23;;22548:207;;;:::o;45495:103::-;44733:13;:11;:13::i;:::-;45560:30:::1;45587:1;45560:18;:30::i;:::-;45495:103::o:0;46841:45::-;;;;:::o;44847:87::-;44893:7;44920:6;;;;;;;;;;;44913:13;;44847:87;:::o;23275:104::-;23331:13;23364:7;23357:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23275:104;:::o;46794:42::-;;;;:::o;48023:496::-;48081:12;48112:1;48096:13;:11;:13::i;:::-;:17;;;;:::i;:::-;48081:32;;48130:6;;;;;;;;;;;48129:7;48121:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;48178:15;48167:7;:26;48159:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48263:11;:9;:11::i;:::-;48250:9;:24;;48242:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48314:30;48324:10;48336:7;48314:9;:30::i;:::-;48368:15;48353:12;:30;;;;48406:9;48390:13;:25;;;;48478:1;48442:32;;48437:1;48427:7;:11;;;;:::i;:::-;48426:48;;;;:::i;:::-;:53;48422:92;;;48490:14;;:16;;;;;;;;;:::i;:::-;;;;;;48422:92;48023:496;;:::o;24862:155::-;24957:52;24976:12;:10;:12::i;:::-;24990:8;25000;24957:18;:52::i;:::-;24862:155;;:::o;46740:49::-;;;;:::o;46691:44::-;;;;:::o;46891:32::-;;;;:::o;25982:323::-;26156:41;26175:12;:10;:12::i;:::-;26189:7;26156:18;:41::i;:::-;26148:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26259:38;26273:4;26279:2;26283:7;26292:4;26259:13;:38::i;:::-;25982:323;;;;:::o;46515:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48879:423::-;48977:13;49018:16;49026:7;49018;:16::i;:::-;49002:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;49108:28;49139:10;:8;:10::i;:::-;49108:41;;49194:1;49169:14;49163:28;:32;:133;;;;;;;;;;;;;;;;;49231:14;49247:18;:7;:16;:18::i;:::-;49267:13;49214:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49163:133;49156:140;;;48879:423;;;:::o;46557:31::-;;;;:::o;25088:164::-;25185:4;25209:18;:25;25228:5;25209:25;;;;;;;;;;;;;;;:35;25235:8;25209:35;;;;;;;;;;;;;;;;;;;;;;;;;25202:42;;25088:164;;;;:::o;45753:201::-;44733:13;:11;:13::i;:::-;45862:1:::1;45842:22;;:8;:22;;;;45834:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45918:28;45937:8;45918:18;:28::i;:::-;45753:201:::0;:::o;22179:305::-;22281:4;22333:25;22318:40;;;:11;:40;;;;:105;;;;22390:33;22375:48;;;:11;:48;;;;22318:105;:158;;;;22440:36;22464:11;22440:23;:36::i;:::-;22318:158;22298:178;;22179:305;;;:::o;32594:135::-;32676:16;32684:7;32676;:16::i;:::-;32668:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;32594:135;:::o;17018:98::-;17071:7;17098:10;17091:17;;17018:98;:::o;31873:174::-;31975:2;31948:15;:24;31964:7;31948:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32031:7;32027:2;31993:46;;32002:23;32017:7;32002:14;:23::i;:::-;31993:46;;;;;;;;;;;;31873:174;;:::o;28106:264::-;28199:4;28216:13;28232:23;28247:7;28232:14;:23::i;:::-;28216:39;;28285:5;28274:16;;:7;:16;;;:52;;;;28294:32;28311:5;28318:7;28294:16;:32::i;:::-;28274:52;:87;;;;28354:7;28330:31;;:20;28342:7;28330:11;:20::i;:::-;:31;;;28274:87;28266:96;;;28106:264;;;;:::o;31129:625::-;31288:4;31261:31;;:23;31276:7;31261:14;:23::i;:::-;:31;;;31253:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31367:1;31353:16;;:2;:16;;;;31345:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31423:39;31444:4;31450:2;31454:7;31423:20;:39::i;:::-;31527:29;31544:1;31548:7;31527:8;:29::i;:::-;31588:1;31569:9;:15;31579:4;31569:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31617:1;31600:9;:13;31610:2;31600:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31648:2;31629:7;:16;31637:7;31629:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31687:7;31683:2;31668:27;;31677:4;31668:27;;;;;;;;;;;;31708:38;31728:4;31734:2;31738:7;31708:19;:38::i;:::-;31129:625;;;:::o;45012:132::-;45087:12;:10;:12::i;:::-;45076:23;;:7;:5;:7::i;:::-;:23;;;45068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45012:132::o;46114:191::-;46188:16;46207:6;;;;;;;;;;;46188:25;;46233:8;46224:6;;:17;;;;;;;;;;;;;;;;;;46288:8;46257:40;;46278:8;46257:40;;;;;;;;;;;;46114:191;;:::o;28712:110::-;28788:26;28798:2;28802:7;28788:26;;;;;;;;;;;;:9;:26::i;:::-;28712:110;;:::o;32190:315::-;32345:8;32336:17;;:5;:17;;;;32328:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32432:8;32394:18;:25;32413:5;32394:25;;;;;;;;;;;;;;;:35;32420:8;32394:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32478:8;32456:41;;32471:5;32456:41;;;32488:8;32456:41;;;;;;:::i;:::-;;;;;;;;32190:315;;;:::o;27186:313::-;27342:28;27352:4;27358:2;27362:7;27342:9;:28::i;:::-;27389:47;27412:4;27418:2;27422:7;27431:4;27389:22;:47::i;:::-;27381:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27186:313;;;;:::o;27812:127::-;27877:4;27929:1;27901:30;;:7;:16;27909:7;27901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27894:37;;27812:127;;;:::o;47115:102::-;47175:13;47204:7;47197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47115:102;:::o;17668:723::-;17724:13;17954:1;17945:5;:10;17941:53;;;17972:10;;;;;;;;;;;;;;;;;;;;;17941:53;18004:12;18019:5;18004:20;;18035:14;18060:78;18075:1;18067:4;:9;18060:78;;18093:8;;;;;:::i;:::-;;;;18124:2;18116:10;;;;;:::i;:::-;;;18060:78;;;18148:19;18180:6;18170:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18148:39;;18198:154;18214:1;18205:5;:10;18198:154;;18242:1;18232:11;;;;;:::i;:::-;;;18309:2;18301:5;:10;;;;:::i;:::-;18288:2;:24;;;;:::i;:::-;18275:39;;18258:6;18265;18258:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18338:2;18329:11;;;;;:::i;:::-;;;18198:154;;;18376:6;18362:21;;;;;17668:723;;;;:::o;20604:157::-;20689:4;20728:25;20713:40;;;:11;:40;;;;20706:47;;20604:157;;;:::o;39136:589::-;39280:45;39307:4;39313:2;39317:7;39280:26;:45::i;:::-;39358:1;39342:18;;:4;:18;;;39338:187;;;39377:40;39409:7;39377:31;:40::i;:::-;39338:187;;;39447:2;39439:10;;:4;:10;;;39435:90;;39466:47;39499:4;39505:7;39466:32;:47::i;:::-;39435:90;39338:187;39553:1;39539:16;;:2;:16;;;39535:183;;;39572:45;39609:7;39572:36;:45::i;:::-;39535:183;;;39645:4;39639:10;;:2;:10;;;39635:83;;39666:40;39694:2;39698:7;39666:27;:40::i;:::-;39635:83;39535:183;39136:589;;;:::o;35229:125::-;;;;:::o;29049:319::-;29178:18;29184:2;29188:7;29178:5;:18::i;:::-;29229:53;29260:1;29264:2;29268:7;29277:4;29229:22;:53::i;:::-;29207:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;29049:319;;;:::o;33293:853::-;33447:4;33468:15;:2;:13;;;:15::i;:::-;33464:675;;;33520:2;33504:36;;;33541:12;:10;:12::i;:::-;33555:4;33561:7;33570:4;33504:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33500:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33762:1;33745:6;:13;:18;33741:328;;;33788:60;;;;;;;;;;:::i;:::-;;;;;;;;33741:328;34019:6;34013:13;34004:6;34000:2;33996:15;33989:38;33500:584;33636:41;;;33626:51;;;:6;:51;;;;33619:58;;;;;33464:675;34123:4;34116:11;;33293:853;;;;;;;:::o;34718:126::-;;;;:::o;40448:164::-;40552:10;:17;;;;40525:15;:24;40541:7;40525:24;;;;;;;;;;;:44;;;;40580:10;40596:7;40580:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40448:164;:::o;41239:988::-;41505:22;41555:1;41530:22;41547:4;41530:16;:22::i;:::-;:26;;;;:::i;:::-;41505:51;;41567:18;41588:17;:26;41606:7;41588:26;;;;;;;;;;;;41567:47;;41735:14;41721:10;:28;41717:328;;41766:19;41788:12;:18;41801:4;41788:18;;;;;;;;;;;;;;;:34;41807:14;41788:34;;;;;;;;;;;;41766:56;;41872:11;41839:12;:18;41852:4;41839:18;;;;;;;;;;;;;;;:30;41858:10;41839:30;;;;;;;;;;;:44;;;;41989:10;41956:17;:30;41974:11;41956:30;;;;;;;;;;;:43;;;;41717:328;;42141:17;:26;42159:7;42141:26;;;;;;;;;;;42134:33;;;42185:12;:18;42198:4;42185:18;;;;;;;;;;;;;;;:34;42204:14;42185:34;;;;;;;;;;;42178:41;;;41239:988;;;;:::o;42522:1079::-;42775:22;42820:1;42800:10;:17;;;;:21;;;;:::i;:::-;42775:46;;42832:18;42853:15;:24;42869:7;42853:24;;;;;;;;;;;;42832:45;;43204:19;43226:10;43237:14;43226:26;;;;;;;;;;;;;;;;;;;;;;;;43204:48;;43290:11;43265:10;43276;43265:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;43401:10;43370:15;:28;43386:11;43370:28;;;;;;;;;;;:41;;;;43542:15;:24;43558:7;43542:24;;;;;;;;;;;43535:31;;;43577:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42522:1079;;;;:::o;40026:221::-;40111:14;40128:20;40145:2;40128:16;:20::i;:::-;40111:37;;40186:7;40159:12;:16;40172:2;40159:16;;;;;;;;;;;;;;;:24;40176:6;40159:24;;;;;;;;;;;:34;;;;40233:6;40204:17;:26;40222:7;40204:26;;;;;;;;;;;:35;;;;40026:221;;;:::o;29704:439::-;29798:1;29784:16;;:2;:16;;;;29776:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29857:16;29865:7;29857;:16::i;:::-;29856:17;29848:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29919:45;29948:1;29952:2;29956:7;29919:20;:45::i;:::-;29994:1;29977:9;:13;29987:2;29977:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30025:2;30006:7;:16;30014:7;30006:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30070:7;30066:2;30045:33;;30062:1;30045:33;;;;;;;;;;;;30091:44;30119:1;30123:2;30127:7;30091:19;:44::i;:::-;29704:439;;:::o;9013:326::-;9073:4;9330:1;9308:7;:19;;;:23;9301:30;;9013:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:179::-;;6176:46;6218:3;6210:6;6176:46;:::i;:::-;6254:4;6249:3;6245:14;6231:28;;6166:99;;;;:::o;6271:118::-;6358:24;6376:5;6358:24;:::i;:::-;6353:3;6346:37;6336:53;;:::o;6425:732::-;;6573:54;6621:5;6573:54;:::i;:::-;6643:86;6722:6;6717:3;6643:86;:::i;:::-;6636:93;;6753:56;6803:5;6753:56;:::i;:::-;6832:7;6863:1;6848:284;6873:6;6870:1;6867:13;6848:284;;;6949:6;6943:13;6976:63;7035:3;7020:13;6976:63;:::i;:::-;6969:70;;7062:60;7115:6;7062:60;:::i;:::-;7052:70;;6908:224;6895:1;6892;6888:9;6883:14;;6848:284;;;6852:14;7148:3;7141:10;;6549:608;;;;;;;:::o;7163:109::-;7244:21;7259:5;7244:21;:::i;:::-;7239:3;7232:34;7222:50;;:::o;7278:360::-;;7392:38;7424:5;7392:38;:::i;:::-;7446:70;7509:6;7504:3;7446:70;:::i;:::-;7439:77;;7525:52;7570:6;7565:3;7558:4;7551:5;7547:16;7525:52;:::i;:::-;7602:29;7624:6;7602:29;:::i;:::-;7597:3;7593:39;7586:46;;7368:270;;;;;:::o;7644:364::-;;7760:39;7793:5;7760:39;:::i;:::-;7815:71;7879:6;7874:3;7815:71;:::i;:::-;7808:78;;7895:52;7940:6;7935:3;7928:4;7921:5;7917:16;7895:52;:::i;:::-;7972:29;7994:6;7972:29;:::i;:::-;7967:3;7963:39;7956:46;;7736:272;;;;;:::o;8014:377::-;;8148:39;8181:5;8148:39;:::i;:::-;8203:89;8285:6;8280:3;8203:89;:::i;:::-;8196:96;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:6;8373:3;8369:16;8362:23;;8124:267;;;;;:::o;8421:845::-;;8561:5;8555:12;8590:36;8616:9;8590:36;:::i;:::-;8642:89;8724:6;8719:3;8642:89;:::i;:::-;8635:96;;8762:1;8751:9;8747:17;8778:1;8773:137;;;;8924:1;8919:341;;;;8740:520;;8773:137;8857:4;8853:9;8842;8838:25;8833:3;8826:38;8893:6;8888:3;8884:16;8877:23;;8773:137;;8919:341;8986:38;9018:5;8986:38;:::i;:::-;9046:1;9060:154;9074:6;9071:1;9068:13;9060:154;;;9148:7;9142:14;9138:1;9133:3;9129:11;9122:35;9198:1;9189:7;9185:15;9174:26;;9096:4;9093:1;9089:12;9084:17;;9060:154;;;9243:6;9238:3;9234:16;9227:23;;8926:334;;8740:520;;8528:738;;;;;;:::o;9272:366::-;;9435:67;9499:2;9494:3;9435:67;:::i;:::-;9428:74;;9511:93;9600:3;9511:93;:::i;:::-;9629:2;9624:3;9620:12;9613:19;;9418:220;;;:::o;9644:366::-;;9807:67;9871:2;9866:3;9807:67;:::i;:::-;9800:74;;9883:93;9972:3;9883:93;:::i;:::-;10001:2;9996:3;9992:12;9985:19;;9790:220;;;:::o;10016:366::-;;10179:67;10243:2;10238:3;10179:67;:::i;:::-;10172:74;;10255:93;10344:3;10255:93;:::i;:::-;10373:2;10368:3;10364:12;10357:19;;10162:220;;;:::o;10388:366::-;;10551:67;10615:2;10610:3;10551:67;:::i;:::-;10544:74;;10627:93;10716:3;10627:93;:::i;:::-;10745:2;10740:3;10736:12;10729:19;;10534:220;;;:::o;10760:366::-;;10923:67;10987:2;10982:3;10923:67;:::i;:::-;10916:74;;10999:93;11088:3;10999:93;:::i;:::-;11117:2;11112:3;11108:12;11101:19;;10906:220;;;:::o;11132:366::-;;11295:67;11359:2;11354:3;11295:67;:::i;:::-;11288:74;;11371:93;11460:3;11371:93;:::i;:::-;11489:2;11484:3;11480:12;11473:19;;11278:220;;;:::o;11504:366::-;;11667:67;11731:2;11726:3;11667:67;:::i;:::-;11660:74;;11743:93;11832:3;11743:93;:::i;:::-;11861:2;11856:3;11852:12;11845:19;;11650:220;;;:::o;11876:366::-;;12039:67;12103:2;12098:3;12039:67;:::i;:::-;12032:74;;12115:93;12204:3;12115:93;:::i;:::-;12233:2;12228:3;12224:12;12217:19;;12022:220;;;:::o;12248:366::-;;12411:67;12475:2;12470:3;12411:67;:::i;:::-;12404:74;;12487:93;12576:3;12487:93;:::i;:::-;12605:2;12600:3;12596:12;12589:19;;12394:220;;;:::o;12620:366::-;;12783:67;12847:2;12842:3;12783:67;:::i;:::-;12776:74;;12859:93;12948:3;12859:93;:::i;:::-;12977:2;12972:3;12968:12;12961:19;;12766:220;;;:::o;12992:366::-;;13155:67;13219:2;13214:3;13155:67;:::i;:::-;13148:74;;13231:93;13320:3;13231:93;:::i;:::-;13349:2;13344:3;13340:12;13333:19;;13138:220;;;:::o;13364:366::-;;13527:67;13591:2;13586:3;13527:67;:::i;:::-;13520:74;;13603:93;13692:3;13603:93;:::i;:::-;13721:2;13716:3;13712:12;13705:19;;13510:220;;;:::o;13736:366::-;;13899:67;13963:2;13958:3;13899:67;:::i;:::-;13892:74;;13975:93;14064:3;13975:93;:::i;:::-;14093:2;14088:3;14084:12;14077:19;;13882:220;;;:::o;14108:366::-;;14271:67;14335:2;14330:3;14271:67;:::i;:::-;14264:74;;14347:93;14436:3;14347:93;:::i;:::-;14465:2;14460:3;14456:12;14449:19;;14254:220;;;:::o;14480:366::-;;14643:67;14707:2;14702:3;14643:67;:::i;:::-;14636:74;;14719:93;14808:3;14719:93;:::i;:::-;14837:2;14832:3;14828:12;14821:19;;14626:220;;;:::o;14852:366::-;;15015:67;15079:2;15074:3;15015:67;:::i;:::-;15008:74;;15091:93;15180:3;15091:93;:::i;:::-;15209:2;15204:3;15200:12;15193:19;;14998:220;;;:::o;15224:366::-;;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15463:93;15552:3;15463:93;:::i;:::-;15581:2;15576:3;15572:12;15565:19;;15370:220;;;:::o;15596:398::-;;15776:83;15857:1;15852:3;15776:83;:::i;:::-;15769:90;;15868:93;15957:3;15868:93;:::i;:::-;15986:1;15981:3;15977:11;15970:18;;15759:235;;;:::o;16000:366::-;;16163:67;16227:2;16222:3;16163:67;:::i;:::-;16156:74;;16239:93;16328:3;16239:93;:::i;:::-;16357:2;16352:3;16348:12;16341:19;;16146:220;;;:::o;16372:366::-;;16535:67;16599:2;16594:3;16535:67;:::i;:::-;16528:74;;16611:93;16700:3;16611:93;:::i;:::-;16729:2;16724:3;16720:12;16713:19;;16518:220;;;:::o;16744:108::-;16821:24;16839:5;16821:24;:::i;:::-;16816:3;16809:37;16799:53;;:::o;16858:118::-;16945:24;16963:5;16945:24;:::i;:::-;16940:3;16933:37;16923:53;;:::o;16982:589::-;;17229:95;17320:3;17311:6;17229:95;:::i;:::-;17222:102;;17341:95;17432:3;17423:6;17341:95;:::i;:::-;17334:102;;17453:92;17541:3;17532:6;17453:92;:::i;:::-;17446:99;;17562:3;17555:10;;17211:360;;;;;;:::o;17577:379::-;;17783:147;17926:3;17783:147;:::i;:::-;17776:154;;17947:3;17940:10;;17765:191;;;:::o;17962:222::-;;18093:2;18082:9;18078:18;18070:26;;18106:71;18174:1;18163:9;18159:17;18150:6;18106:71;:::i;:::-;18060:124;;;;:::o;18190:640::-;;18423:3;18412:9;18408:19;18400:27;;18437:71;18505:1;18494:9;18490:17;18481:6;18437:71;:::i;:::-;18518:72;18586:2;18575:9;18571:18;18562:6;18518:72;:::i;:::-;18600;18668:2;18657:9;18653:18;18644:6;18600:72;:::i;:::-;18719:9;18713:4;18709:20;18704:2;18693:9;18689:18;18682:48;18747:76;18818:4;18809:6;18747:76;:::i;:::-;18739:84;;18390:440;;;;;;;:::o;18836:373::-;;19017:2;19006:9;19002:18;18994:26;;19066:9;19060:4;19056:20;19052:1;19041:9;19037:17;19030:47;19094:108;19197:4;19188:6;19094:108;:::i;:::-;19086:116;;18984:225;;;;:::o;19215:210::-;;19340:2;19329:9;19325:18;19317:26;;19353:65;19415:1;19404:9;19400:17;19391:6;19353:65;:::i;:::-;19307:118;;;;:::o;19431:313::-;;19582:2;19571:9;19567:18;19559:26;;19631:9;19625:4;19621:20;19617:1;19606:9;19602:17;19595:47;19659:78;19732:4;19723:6;19659:78;:::i;:::-;19651:86;;19549:195;;;;:::o;19750:419::-;;19954:2;19943:9;19939:18;19931:26;;20003:9;19997:4;19993:20;19989:1;19978:9;19974:17;19967:47;20031:131;20157:4;20031:131;:::i;:::-;20023:139;;19921:248;;;:::o;20175:419::-;;20379:2;20368:9;20364:18;20356:26;;20428:9;20422:4;20418:20;20414:1;20403:9;20399:17;20392:47;20456:131;20582:4;20456:131;:::i;:::-;20448:139;;20346:248;;;:::o;20600:419::-;;20804:2;20793:9;20789:18;20781:26;;20853:9;20847:4;20843:20;20839:1;20828:9;20824:17;20817:47;20881:131;21007:4;20881:131;:::i;:::-;20873:139;;20771:248;;;:::o;21025:419::-;;21229:2;21218:9;21214:18;21206:26;;21278:9;21272:4;21268:20;21264:1;21253:9;21249:17;21242:47;21306:131;21432:4;21306:131;:::i;:::-;21298:139;;21196:248;;;:::o;21450:419::-;;21654:2;21643:9;21639:18;21631:26;;21703:9;21697:4;21693:20;21689:1;21678:9;21674:17;21667:47;21731:131;21857:4;21731:131;:::i;:::-;21723:139;;21621:248;;;:::o;21875:419::-;;22079:2;22068:9;22064:18;22056:26;;22128:9;22122:4;22118:20;22114:1;22103:9;22099:17;22092:47;22156:131;22282:4;22156:131;:::i;:::-;22148:139;;22046:248;;;:::o;22300:419::-;;22504:2;22493:9;22489:18;22481:26;;22553:9;22547:4;22543:20;22539:1;22528:9;22524:17;22517:47;22581:131;22707:4;22581:131;:::i;:::-;22573:139;;22471:248;;;:::o;22725:419::-;;22929:2;22918:9;22914:18;22906:26;;22978:9;22972:4;22968:20;22964:1;22953:9;22949:17;22942:47;23006:131;23132:4;23006:131;:::i;:::-;22998:139;;22896:248;;;:::o;23150:419::-;;23354:2;23343:9;23339:18;23331:26;;23403:9;23397:4;23393:20;23389:1;23378:9;23374:17;23367:47;23431:131;23557:4;23431:131;:::i;:::-;23423:139;;23321:248;;;:::o;23575:419::-;;23779:2;23768:9;23764:18;23756:26;;23828:9;23822:4;23818:20;23814:1;23803:9;23799:17;23792:47;23856:131;23982:4;23856:131;:::i;:::-;23848:139;;23746:248;;;:::o;24000:419::-;;24204:2;24193:9;24189:18;24181:26;;24253:9;24247:4;24243:20;24239:1;24228:9;24224:17;24217:47;24281:131;24407:4;24281:131;:::i;:::-;24273:139;;24171:248;;;:::o;24425:419::-;;24629:2;24618:9;24614:18;24606:26;;24678:9;24672:4;24668:20;24664:1;24653:9;24649:17;24642:47;24706:131;24832:4;24706:131;:::i;:::-;24698:139;;24596:248;;;:::o;24850:419::-;;25054:2;25043:9;25039:18;25031:26;;25103:9;25097:4;25093:20;25089:1;25078:9;25074:17;25067:47;25131:131;25257:4;25131:131;:::i;:::-;25123:139;;25021:248;;;:::o;25275:419::-;;25479:2;25468:9;25464:18;25456:26;;25528:9;25522:4;25518:20;25514:1;25503:9;25499:17;25492:47;25556:131;25682:4;25556:131;:::i;:::-;25548:139;;25446:248;;;:::o;25700:419::-;;25904:2;25893:9;25889:18;25881:26;;25953:9;25947:4;25943:20;25939:1;25928:9;25924:17;25917:47;25981:131;26107:4;25981:131;:::i;:::-;25973:139;;25871:248;;;:::o;26125:419::-;;26329:2;26318:9;26314:18;26306:26;;26378:9;26372:4;26368:20;26364:1;26353:9;26349:17;26342:47;26406:131;26532:4;26406:131;:::i;:::-;26398:139;;26296:248;;;:::o;26550:419::-;;26754:2;26743:9;26739:18;26731:26;;26803:9;26797:4;26793:20;26789:1;26778:9;26774:17;26767:47;26831:131;26957:4;26831:131;:::i;:::-;26823:139;;26721:248;;;:::o;26975:419::-;;27179:2;27168:9;27164:18;27156:26;;27228:9;27222:4;27218:20;27214:1;27203:9;27199:17;27192:47;27256:131;27382:4;27256:131;:::i;:::-;27248:139;;27146:248;;;:::o;27400:419::-;;27604:2;27593:9;27589:18;27581:26;;27653:9;27647:4;27643:20;27639:1;27628:9;27624:17;27617:47;27681:131;27807:4;27681:131;:::i;:::-;27673:139;;27571:248;;;:::o;27825:222::-;;27956:2;27945:9;27941:18;27933:26;;27969:71;28037:1;28026:9;28022:17;28013:6;27969:71;:::i;:::-;27923:124;;;;:::o;28053:553::-;;28268:3;28257:9;28253:19;28245:27;;28282:71;28350:1;28339:9;28335:17;28326:6;28282:71;:::i;:::-;28363:72;28431:2;28420:9;28416:18;28407:6;28363:72;:::i;:::-;28445;28513:2;28502:9;28498:18;28489:6;28445:72;:::i;:::-;28527;28595:2;28584:9;28580:18;28571:6;28527:72;:::i;:::-;28235:371;;;;;;;:::o;28612:129::-;;28673:20;;:::i;:::-;28663:30;;28702:33;28730:4;28722:6;28702:33;:::i;:::-;28653:88;;;:::o;28747:75::-;;28813:2;28807:9;28797:19;;28787:35;:::o;28828:307::-;;28979:18;28971:6;28968:30;28965:2;;;29001:18;;:::i;:::-;28965:2;29039:29;29061:6;29039:29;:::i;:::-;29031:37;;29123:4;29117;29113:15;29105:23;;28894:241;;;:::o;29141:308::-;;29293:18;29285:6;29282:30;29279:2;;;29315:18;;:::i;:::-;29279:2;29353:29;29375:6;29353:29;:::i;:::-;29345:37;;29437:4;29431;29427:15;29419:23;;29208:241;;;:::o;29455:132::-;;29545:3;29537:11;;29575:4;29570:3;29566:14;29558:22;;29527:60;;;:::o;29593:141::-;;29665:3;29657:11;;29688:3;29685:1;29678:14;29722:4;29719:1;29709:18;29701:26;;29647:87;;;:::o;29740:114::-;;29841:5;29835:12;29825:22;;29814:40;;;:::o;29860:98::-;;29945:5;29939:12;29929:22;;29918:40;;;:::o;29964:99::-;;30050:5;30044:12;30034:22;;30023:40;;;:::o;30069:113::-;;30171:4;30166:3;30162:14;30154:22;;30144:38;;;:::o;30188:184::-;;30321:6;30316:3;30309:19;30361:4;30356:3;30352:14;30337:29;;30299:73;;;;:::o;30378:168::-;;30495:6;30490:3;30483:19;30535:4;30530:3;30526:14;30511:29;;30473:73;;;;:::o;30552:147::-;;30690:3;30675:18;;30665:34;;;;:::o;30705:169::-;;30823:6;30818:3;30811:19;30863:4;30858:3;30854:14;30839:29;;30801:73;;;;:::o;30880:148::-;;31019:3;31004:18;;30994:34;;;;:::o;31034:305::-;;31093:20;31111:1;31093:20;:::i;:::-;31088:25;;31127:20;31145:1;31127:20;:::i;:::-;31122:25;;31281:1;31213:66;31209:74;31206:1;31203:81;31200:2;;;31287:18;;:::i;:::-;31200:2;31331:1;31328;31324:9;31317:16;;31078:261;;;;:::o;31345:185::-;;31402:20;31420:1;31402:20;:::i;:::-;31397:25;;31436:20;31454:1;31436:20;:::i;:::-;31431:25;;31475:1;31465:2;;31480:18;;:::i;:::-;31465:2;31522:1;31519;31515:9;31510:14;;31387:143;;;;:::o;31536:348::-;;31599:20;31617:1;31599:20;:::i;:::-;31594:25;;31633:20;31651:1;31633:20;:::i;:::-;31628:25;;31821:1;31753:66;31749:74;31746:1;31743:81;31738:1;31731:9;31724:17;31720:105;31717:2;;;31828:18;;:::i;:::-;31717:2;31876:1;31873;31869:9;31858:20;;31584:300;;;;:::o;31890:191::-;;31950:20;31968:1;31950:20;:::i;:::-;31945:25;;31984:20;32002:1;31984:20;:::i;:::-;31979:25;;32023:1;32020;32017:8;32014:2;;;32028:18;;:::i;:::-;32014:2;32073:1;32070;32066:9;32058:17;;31935:146;;;;:::o;32087:96::-;;32153:24;32171:5;32153:24;:::i;:::-;32142:35;;32132:51;;;:::o;32189:90::-;;32266:5;32259:13;32252:21;32241:32;;32231:48;;;:::o;32285:149::-;;32361:66;32354:5;32350:78;32339:89;;32329:105;;;:::o;32440:126::-;;32517:42;32510:5;32506:54;32495:65;;32485:81;;;:::o;32572:77::-;;32638:5;32627:16;;32617:32;;;:::o;32655:154::-;32739:6;32734:3;32729;32716:30;32801:1;32792:6;32787:3;32783:16;32776:27;32706:103;;;:::o;32815:307::-;32883:1;32893:113;32907:6;32904:1;32901:13;32893:113;;;32992:1;32987:3;32983:11;32977:18;32973:1;32968:3;32964:11;32957:39;32929:2;32926:1;32922:10;32917:15;;32893:113;;;33024:6;33021:1;33018:13;33015:2;;;33104:1;33095:6;33090:3;33086:16;33079:27;33015:2;32864:258;;;;:::o;33128:320::-;;33209:1;33203:4;33199:12;33189:22;;33256:1;33250:4;33246:12;33277:18;33267:2;;33333:4;33325:6;33321:17;33311:27;;33267:2;33395;33387:6;33384:14;33364:18;33361:38;33358:2;;;33414:18;;:::i;:::-;33358:2;33179:269;;;;:::o;33454:281::-;33537:27;33559:4;33537:27;:::i;:::-;33529:6;33525:40;33667:6;33655:10;33652:22;33631:18;33619:10;33616:34;33613:62;33610:2;;;33678:18;;:::i;:::-;33610:2;33718:10;33714:2;33707:22;33497:238;;;:::o;33741:233::-;;33803:24;33821:5;33803:24;:::i;:::-;33794:33;;33849:66;33842:5;33839:77;33836:2;;;33919:18;;:::i;:::-;33836:2;33966:1;33959:5;33955:13;33948:20;;33784:190;;;:::o;33980:176::-;;34029:20;34047:1;34029:20;:::i;:::-;34024:25;;34063:20;34081:1;34063:20;:::i;:::-;34058:25;;34102:1;34092:2;;34107:18;;:::i;:::-;34092:2;34148:1;34145;34141:9;34136:14;;34014:142;;;;:::o;34162:180::-;34210:77;34207:1;34200:88;34307:4;34304:1;34297:15;34331:4;34328:1;34321:15;34348:180;34396:77;34393:1;34386:88;34493:4;34490:1;34483:15;34517:4;34514:1;34507:15;34534:180;34582:77;34579:1;34572:88;34679:4;34676:1;34669:15;34703:4;34700:1;34693:15;34720:180;34768:77;34765:1;34758:88;34865:4;34862:1;34855:15;34889:4;34886:1;34879:15;34906:102;;34998:2;34994:7;34989:2;34982:5;34978:14;34974:28;34964:38;;34954:54;;;:::o;35014:230::-;35154:34;35150:1;35142:6;35138:14;35131:58;35223:13;35218:2;35210:6;35206:15;35199:38;35120:124;:::o;35250:237::-;35390:34;35386:1;35378:6;35374:14;35367:58;35459:20;35454:2;35446:6;35442:15;35435:45;35356:131;:::o;35493:225::-;35633:34;35629:1;35621:6;35617:14;35610:58;35702:8;35697:2;35689:6;35685:15;35678:33;35599:119;:::o;35724:224::-;35864:34;35860:1;35852:6;35848:14;35841:58;35933:7;35928:2;35920:6;35916:15;35909:32;35830:118;:::o;35954:178::-;36094:30;36090:1;36082:6;36078:14;36071:54;36060:72;:::o;36138:223::-;36278:34;36274:1;36266:6;36262:14;36255:58;36347:6;36342:2;36334:6;36330:15;36323:31;36244:117;:::o;36367:175::-;36507:27;36503:1;36495:6;36491:14;36484:51;36473:69;:::o;36548:161::-;36688:13;36684:1;36676:6;36672:14;36665:37;36654:55;:::o;36715:176::-;36855:28;36851:1;36843:6;36839:14;36832:52;36821:70;:::o;36897:228::-;37037:34;37033:1;37025:6;37021:14;37014:58;37106:11;37101:2;37093:6;37089:15;37082:36;37003:122;:::o;37131:249::-;37271:34;37267:1;37259:6;37255:14;37248:58;37340:32;37335:2;37327:6;37323:15;37316:57;37237:143;:::o;37386:182::-;37526:34;37522:1;37514:6;37510:14;37503:58;37492:76;:::o;37574:182::-;37714:34;37710:1;37702:6;37698:14;37691:58;37680:76;:::o;37762:234::-;37902:34;37898:1;37890:6;37886:14;37879:58;37971:17;37966:2;37958:6;37954:15;37947:42;37868:128;:::o;38002:174::-;38142:26;38138:1;38130:6;38126:14;38119:50;38108:68;:::o;38182:220::-;38322:34;38318:1;38310:6;38306:14;38299:58;38391:3;38386:2;38378:6;38374:15;38367:28;38288:114;:::o;38408:224::-;38548:34;38544:1;38536:6;38532:14;38525:58;38617:7;38612:2;38604:6;38600:15;38593:32;38514:118;:::o;38638:114::-;38744:8;:::o;38758:231::-;38898:34;38894:1;38886:6;38882:14;38875:58;38967:14;38962:2;38954:6;38950:15;38943:39;38864:125;:::o;38995:233::-;39135:34;39131:1;39123:6;39119:14;39112:58;39204:16;39199:2;39191:6;39187:15;39180:41;39101:127;:::o;39234:122::-;39307:24;39325:5;39307:24;:::i;:::-;39300:5;39297:35;39287:2;;39346:1;39343;39336:12;39287:2;39277:79;:::o;39362:116::-;39432:21;39447:5;39432:21;:::i;:::-;39425:5;39422:32;39412:2;;39468:1;39465;39458:12;39412:2;39402:76;:::o;39484:120::-;39556:23;39573:5;39556:23;:::i;:::-;39549:5;39546:34;39536:2;;39594:1;39591;39584:12;39536:2;39526:78;:::o;39610:122::-;39683:24;39701:5;39683:24;:::i;:::-;39676:5;39673:35;39663:2;;39722:1;39719;39712:12;39663:2;39653:79;:::o

Swarm Source

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