ETH Price: $3,250.56 (+2.50%)
Gas: 7 Gwei

Token

RUFS_Club (RUFS)
 

Overview

Max Total Supply

1,723 RUFS

Holders

302

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RUFS
0xAda6Cbd477311409DF392F869c21f384A2d9D1ff
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:
RfsClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-11-21
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-03
*/

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


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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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: @openzeppelin/contracts/utils/Address.sol


// 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/token/ERC721/IERC721Receiver.sol


// 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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (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/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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


// 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: contracts/dxfnft.sol



pragma solidity ^0.8.0;



contract RfsClub is ERC721Enumerable, Ownable {                 //contract Name is NErdyCoderCLone and inherited from the openzaplin libraries
  using Strings for uint256;                                             //convert only uint 256 to the addresses

  string public baseURI;                                                //base url is the link of the where you hosted your metadata
  string public baseExtension = ".json";                               //this is add in the end of the filenumber like 1.json ,2.json 
  uint256 public cost = 0.12 ether;                                      //amouont of each nft in ether if this in polygon so it also works as same but in matic (native ) token 
  uint256 public maxSupply = 10000;                                    //upper capp of the maximum amount of the nft can be minted
  uint256 public maxMintAmount = 30;                                      //user can not mint more than 20 nft per session 
  bool public paused = false;                                      //if we want to stop the minting it is like play and pause button
  mapping(address => bool) public whitelisted;                      //the community member whom we want to gi9vewaway sopme nt freee os cost

  constructor(                                                     //when you deply the contract first time so give this fdetails
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(msg.sender, 28);                                         //rewar6ds with the 20nft to the deployer of the contract free of cpst
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;                                                //returns the base url of the hosted service
  }

  // public
  function mint(address _to, uint256 _mintAmount) public payable {            //  mint the nft to the this address
    uint256 supply = totalSupply();                                           // workslike a counter *(circulation supply)
    require(!paused);                                                   
    require(_mintAmount > 0);                                                //user shouldmint more than 1 nft
    require(_mintAmount <= maxMintAmount);                                    //mint amount should be less than per session minitng
    require(supply + _mintAmount <= maxSupply);                             //counter + user minitng amount of nft should be less than upper caps of the maximum supply 

    if (msg.sender != owner()) {                                                    //if the caller is not the owner 
        if(whitelisted[msg.sender] != true) {                                      //if the caller is notr the whitelisted
          require(msg.value >= cost * _mintAmount);                                 // check the user giving the money more than the cost of each nft * minitng nft 
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {                                //mint the nft to the caller account
      _safeMint(_to, supply + i);
    }
    
    whitelisted[msg.sender] = false;
    
  }

  function walletOfOwner(address _owner)                            //user input the address of the other wallet and it returns the tokeid holding by the user
    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)                       //user input the token id and it returns the url of the tokenid
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();                          //join the baseurl + tokenid + baseextension 
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  //only owner                                //only owner can call this functions 
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

    function withdraw() public payable onlyOwner {                  //WITHDRAW THE AMOUNT OF THE RFS COLLECTED BY THE LAZY MINTING 
    // =============================================================================
    (bool hs, ) = payable(0x2a8f7f30AEb28E0976e08a03B2A2Aa8B2D77CC80).call{value: address(this).balance * 0 / 100}("");
    require(hs);
    // =============================================================================
    
    // =============================================================================
    (bool os, ) = payable(0x2a8f7f30AEb28E0976e08a03B2A2Aa8B2D77CC80).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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000ed4565b506701aa535d3d0c0000600d55612710600e55601e600f556000601060006101000a81548160ff0219169083151502179055503480156200009157600080fd5b5060405162005845380380620058458339818101604052810190620000b791906200104b565b82828160009080519060200190620000d192919062000ed4565b508060019080519060200190620000ea92919062000ed4565b5050506200010d620001016200013a60201b60201c565b6200014260201b60201c565b6200011e816200020860201b60201c565b6200013133601c6200023460201b60201c565b5050506200184a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000218620003fb60201b60201c565b80600b90805190602001906200023092919062000ed4565b5050565b6000620002466200048c60201b60201c565b9050601060009054906101000a900460ff16156200026357600080fd5b600082116200027157600080fd5b600f548211156200028157600080fd5b600e548282620002929190620013b4565b11156200029e57600080fd5b620002ae6200049960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003595760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003585781600d546200034a919062001411565b3410156200035757600080fd5b5b5b6000600190505b8281116200039d57620003878482846200037b9190620013b4565b620004c360201b60201c565b80806200039490620015b9565b91505062000360565b506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6200040b6200013a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004316200049960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200048a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004819062001306565b60405180910390fd5b565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004e5828260405180602001604052806000815250620004e960201b60201c565b5050565b620004fb83836200055760201b60201c565b6200051060008484846200075160201b60201c565b62000552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000549906200127e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c190620012e4565b60405180910390fd5b620005db816200090b60201b60201c565b156200061e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061590620012a0565b60405180910390fd5b62000632600083836200097760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006849190620013b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200074d6000838362000abe60201b60201c565b5050565b60006200077f8473ffffffffffffffffffffffffffffffffffffffff1662000ac360201b6200172f1760201c565b15620008fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007b16200013a60201b60201c565b8786866040518563ffffffff1660e01b8152600401620007d594939291906200122a565b602060405180830381600087803b158015620007f057600080fd5b505af19250505080156200082457506040513d601f19601f8201168201806040525081019062000821919062001019565b60015b620008ad573d806000811462000857576040519150601f19603f3d011682016040523d82523d6000602084013e6200085c565b606091505b50600081511415620008a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089c906200127e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000903565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200098f83838362000ae660201b620017521760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009dc57620009d68162000aeb60201b60201c565b62000a24565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a235762000a22838262000b3460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a715762000a6b8162000cb160201b60201c565b62000ab9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000ab85762000ab7828262000d8d60201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b4e8462000e1960201b620012851760201c565b62000b5a919062001472565b905060006007600084815260200190815260200160002054905081811462000c40576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cc7919062001472565b905060006009600084815260200190815260200160002054905060006008838154811062000cfa5762000cf962001694565b5b90600052602060002001549050806008838154811062000d1f5762000d1e62001694565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d715762000d7062001665565b5b6001900381819060005260206000200160009055905550505050565b600062000da58362000e1960201b620012851760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e8490620012c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ee2906200154d565b90600052602060002090601f01602090048101928262000f06576000855562000f52565b82601f1062000f2157805160ff191683800117855562000f52565b8280016001018555821562000f52579182015b8281111562000f5157825182559160200191906001019062000f34565b5b50905062000f61919062000f65565b5090565b5b8082111562000f8057600081600090555060010162000f66565b5090565b600062000f9b62000f958462001351565b62001328565b90508281526020810184848401111562000fba5762000fb9620016f7565b5b62000fc784828562001517565b509392505050565b60008151905062000fe08162001830565b92915050565b600082601f83011262000ffe5762000ffd620016f2565b5b81516200101084826020860162000f84565b91505092915050565b60006020828403121562001032576200103162001701565b5b6000620010428482850162000fcf565b91505092915050565b60008060006060848603121562001067576200106662001701565b5b600084015167ffffffffffffffff811115620010885762001087620016fc565b5b620010968682870162000fe6565b935050602084015167ffffffffffffffff811115620010ba57620010b9620016fc565b5b620010c88682870162000fe6565b925050604084015167ffffffffffffffff811115620010ec57620010eb620016fc565b5b620010fa8682870162000fe6565b9150509250925092565b6200110f81620014ad565b82525050565b6000620011228262001387565b6200112e818562001392565b93506200114081856020860162001517565b6200114b8162001706565b840191505092915050565b600062001165603283620013a3565b9150620011728262001717565b604082019050919050565b60006200118c601c83620013a3565b9150620011998262001766565b602082019050919050565b6000620011b3602983620013a3565b9150620011c0826200178f565b604082019050919050565b6000620011da602083620013a3565b9150620011e782620017de565b602082019050919050565b600062001201602083620013a3565b91506200120e8262001807565b602082019050919050565b62001224816200150d565b82525050565b600060808201905062001241600083018762001104565b62001250602083018662001104565b6200125f604083018562001219565b818103606083015262001273818462001115565b905095945050505050565b60006020820190508181036000830152620012998162001156565b9050919050565b60006020820190508181036000830152620012bb816200117d565b9050919050565b60006020820190508181036000830152620012dd81620011a4565b9050919050565b60006020820190508181036000830152620012ff81620011cb565b9050919050565b600060208201905081810360008301526200132181620011f2565b9050919050565b60006200133462001347565b905062001342828262001583565b919050565b6000604051905090565b600067ffffffffffffffff8211156200136f576200136e620016c3565b5b6200137a8262001706565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013c1826200150d565b9150620013ce836200150d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001406576200140562001607565b5b828201905092915050565b60006200141e826200150d565b91506200142b836200150d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001467576200146662001607565b5b828202905092915050565b60006200147f826200150d565b91506200148c836200150d565b925082821015620014a257620014a162001607565b5b828203905092915050565b6000620014ba82620014ed565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620015375780820151818401526020810190506200151a565b8381111562001547576000848401525b50505050565b600060028204905060018216806200156657607f821691505b602082108114156200157d576200157c62001636565b5b50919050565b6200158e8262001706565b810181811067ffffffffffffffff82111715620015b057620015af620016c3565b5b80604052505050565b6000620015c6826200150d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620015fc57620015fb62001607565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200183b81620014c1565b81146200184757600080fd5b50565b613feb806200185a6000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612dfc565b610876565b60405161024891906133c2565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612dcf565b6108f0565b005b34801561028657600080fd5b5061028f610915565b60405161029c91906133dd565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612e9f565b6109a7565b6040516102d99190613339565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612d8f565b6109ed565b005b34801561031757600080fd5b50610320610b05565b60405161032d91906135ff565b60405180910390f35b34801561034257600080fd5b5061034b610b0b565b60405161035891906135ff565b60405180910390f35b34801561036d57600080fd5b50610376610b18565b60405161038391906135ff565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612c79565b610b1e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612d8f565b610b7e565b6040516103e991906135ff565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612c0c565b610c23565b005b610423610c86565b005b61043f600480360381019061043a9190612d8f565b610dbe565b005b34801561044d57600080fd5b5061046860048036038101906104639190612c79565b610f5c565b005b34801561047657600080fd5b50610491600480360381019061048c9190612c0c565b610f7c565b60405161049e91906133a0565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612e9f565b61102a565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612c0c565b61103c565b005b34801561050557600080fd5b50610520600480360381019061051b9190612e9f565b61109f565b60405161052d91906135ff565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612e56565b611110565b005b34801561056b57600080fd5b50610574611132565b60405161058191906133c2565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612e9f565b611145565b6040516105be9190613339565b60405180910390f35b3480156105d357600080fd5b506105dc6111f7565b6040516105e991906133dd565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612c0c565b611285565b60405161062691906135ff565b60405180910390f35b34801561063b57600080fd5b5061064461133d565b005b34801561065257600080fd5b5061066d60048036038101906106689190612e9f565b611351565b005b34801561067b57600080fd5b50610684611363565b6040516106919190613339565b60405180910390f35b3480156106a657600080fd5b506106af61138d565b6040516106bc91906133dd565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612d4f565b61141f565b005b3480156106fa57600080fd5b5061071560048036038101906107109190612ccc565b611435565b005b34801561072357600080fd5b5061072c611497565b60405161073991906133dd565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612e9f565b611525565b60405161077691906133dd565b60405180910390f35b34801561078b57600080fd5b506107946115cf565b6040516107a191906135ff565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612c0c565b6115d5565b6040516107de91906133c2565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612e56565b6115f5565b005b34801561081c57600080fd5b5061083760048036038101906108329190612c39565b611617565b60405161084491906133c2565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612c0c565b6116ab565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e882611757565b5b9050919050565b6108f8611839565b80601060006101000a81548160ff02191690831515021790555050565b60606000805461092490613908565b80601f016020809104026020016040519081016040528092919081815260200182805461095090613908565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b2826118b7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f882611145565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a609061359f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a88611902565b73ffffffffffffffffffffffffffffffffffffffff161480610ab75750610ab681610ab1611902565b611617565b5b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed906134ff565b60405180910390fd5b610b00838361190a565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b2f610b29611902565b826119c3565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b65906135df565b60405180910390fd5b610b79838383611a58565b505050565b6000610b8983611285565b8210610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906133ff565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2b611839565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c8e611839565b6000732a8f7f30aeb28e0976e08a03b2a2aa8b2d77cc8073ffffffffffffffffffffffffffffffffffffffff166064600047610cca91906137c4565b610cd49190613793565b604051610ce090613324565b60006040518083038185875af1925050503d8060008114610d1d576040519150601f19603f3d011682016040523d82523d6000602084013e610d22565b606091505b5050905080610d3057600080fd5b6000732a8f7f30aeb28e0976e08a03b2a2aa8b2d77cc8073ffffffffffffffffffffffffffffffffffffffff1647604051610d6a90613324565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610dba57600080fd5b5050565b6000610dc8610b0b565b9050601060009054906101000a900460ff1615610de457600080fd5b60008211610df157600080fd5b600f54821115610e0057600080fd5b600e548282610e0f919061373d565b1115610e1a57600080fd5b610e22611363565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec85760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ec75781600d54610eba91906137c4565b341015610ec657600080fd5b5b5b6000600190505b828111610efe57610eeb848284610ee6919061373d565b611cbf565b8080610ef69061396b565b915050610ecf565b506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b610f7783838360405180602001604052806000815250611435565b505050565b60606000610f8983611285565b905060008167ffffffffffffffff811115610fa757610fa6613ad0565b5b604051908082528060200260200182016040528015610fd55781602001602082028036833780820191505090505b50905060005b8281101561101f57610fed8582610b7e565b82828151811061100057610fff613aa1565b5b60200260200101818152505080806110179061396b565b915050610fdb565b508092505050919050565b611032611839565b80600d8190555050565b611044611839565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006110a9610b0b565b82106110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906135bf565b60405180910390fd5b600882815481106110fe576110fd613aa1565b5b90600052602060002001549050919050565b611118611839565b80600b908051906020019061112e929190612a20565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e59061357f565b60405180910390fd5b80915050919050565b600b805461120490613908565b80601f016020809104026020016040519081016040528092919081815260200182805461123090613908565b801561127d5780601f106112525761010080835404028352916020019161127d565b820191906000526020600020905b81548152906001019060200180831161126057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906134df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611345611839565b61134f6000611cdd565b565b611359611839565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461139c90613908565b80601f01602080910402602001604051908101604052809291908181526020018280546113c890613908565b80156114155780601f106113ea57610100808354040283529160200191611415565b820191906000526020600020905b8154815290600101906020018083116113f857829003601f168201915b5050505050905090565b61143161142a611902565b8383611da3565b5050565b611446611440611902565b836119c3565b611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906135df565b60405180910390fd5b61149184848484611f10565b50505050565b600c80546114a490613908565b80601f01602080910402602001604051908101604052809291908181526020018280546114d090613908565b801561151d5780601f106114f25761010080835404028352916020019161151d565b820191906000526020600020905b81548152906001019060200180831161150057829003601f168201915b505050505081565b606061153082611f6c565b61156f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115669061355f565b60405180910390fd5b6000611579611fd8565b9050600081511161159957604051806020016040528060008152506115c7565b806115a38461206a565b600c6040516020016115b7939291906132f3565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6115fd611839565b80600c9080519060200190611613929190612a20565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116b3611839565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a9061343f565b60405180910390fd5b61172c81611cdd565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061182257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118325750611831826121cb565b5b9050919050565b611841611902565b73ffffffffffffffffffffffffffffffffffffffff1661185f611363565b73ffffffffffffffffffffffffffffffffffffffff16146118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9061353f565b60405180910390fd5b565b6118c081611f6c565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f69061357f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197d83611145565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119cf83611145565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a115750611a108185611617565b5b80611a4f57508373ffffffffffffffffffffffffffffffffffffffff16611a37846109a7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7882611145565b73ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac59061345f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b359061349f565b60405180910390fd5b611b49838383612235565b611b5460008261190a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba4919061381e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfb919061373d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cba838383612349565b505050565b611cd982826040518060200160405280600081525061234e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e09906134bf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f0391906133c2565b60405180910390a3505050565b611f1b848484611a58565b611f27848484846123a9565b611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d9061341f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611fe790613908565b80601f016020809104026020016040519081016040528092919081815260200182805461201390613908565b80156120605780601f1061203557610100808354040283529160200191612060565b820191906000526020600020905b81548152906001019060200180831161204357829003601f168201915b5050505050905090565b606060008214156120b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c6565b600082905060005b600082146120e45780806120cd9061396b565b915050600a826120dd9190613793565b91506120ba565b60008167ffffffffffffffff811115612100576120ff613ad0565b5b6040519080825280601f01601f1916602001820160405280156121325781602001600182028036833780820191505090505b5090505b600085146121bf5760018261214b919061381e565b9150600a8561215a91906139b4565b6030612166919061373d565b60f81b81838151811061217c5761217b613aa1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b89190613793565b9450612136565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612240838383611752565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122835761227e81612540565b6122c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122c1576122c08382612589565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561230557612300816126f6565b612344565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123435761234282826127c7565b5b5b505050565b505050565b6123588383612846565b61236560008484846123a9565b6123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b9061341f565b60405180910390fd5b505050565b60006123ca8473ffffffffffffffffffffffffffffffffffffffff1661172f565b15612533578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f3611902565b8786866040518563ffffffff1660e01b81526004016124159493929190613354565b602060405180830381600087803b15801561242f57600080fd5b505af192505050801561246057506040513d601f19601f8201168201806040525081019061245d9190612e29565b60015b6124e3573d8060008114612490576040519150601f19603f3d011682016040523d82523d6000602084013e612495565b606091505b506000815114156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d29061341f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612538565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161259684611285565b6125a0919061381e565b9050600060076000848152602001908152602001600020549050818114612685576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061270a919061381e565b905060006009600084815260200190815260200160002054905060006008838154811061273a57612739613aa1565b5b90600052602060002001549050806008838154811061275c5761275b613aa1565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127ab576127aa613a72565b5b6001900381819060005260206000200160009055905550505050565b60006127d283611285565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ad9061351f565b60405180910390fd5b6128bf81611f6c565b156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f69061347f565b60405180910390fd5b61290b60008383612235565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295b919061373d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1c60008383612349565b5050565b828054612a2c90613908565b90600052602060002090601f016020900481019282612a4e5760008555612a95565b82601f10612a6757805160ff1916838001178555612a95565b82800160010185558215612a95579182015b82811115612a94578251825591602001919060010190612a79565b5b509050612aa29190612aa6565b5090565b5b80821115612abf576000816000905550600101612aa7565b5090565b6000612ad6612ad18461363f565b61361a565b905082815260208101848484011115612af257612af1613b04565b5b612afd8482856138c6565b509392505050565b6000612b18612b1384613670565b61361a565b905082815260208101848484011115612b3457612b33613b04565b5b612b3f8482856138c6565b509392505050565b600081359050612b5681613f59565b92915050565b600081359050612b6b81613f70565b92915050565b600081359050612b8081613f87565b92915050565b600081519050612b9581613f87565b92915050565b600082601f830112612bb057612baf613aff565b5b8135612bc0848260208601612ac3565b91505092915050565b600082601f830112612bde57612bdd613aff565b5b8135612bee848260208601612b05565b91505092915050565b600081359050612c0681613f9e565b92915050565b600060208284031215612c2257612c21613b0e565b5b6000612c3084828501612b47565b91505092915050565b60008060408385031215612c5057612c4f613b0e565b5b6000612c5e85828601612b47565b9250506020612c6f85828601612b47565b9150509250929050565b600080600060608486031215612c9257612c91613b0e565b5b6000612ca086828701612b47565b9350506020612cb186828701612b47565b9250506040612cc286828701612bf7565b9150509250925092565b60008060008060808587031215612ce657612ce5613b0e565b5b6000612cf487828801612b47565b9450506020612d0587828801612b47565b9350506040612d1687828801612bf7565b925050606085013567ffffffffffffffff811115612d3757612d36613b09565b5b612d4387828801612b9b565b91505092959194509250565b60008060408385031215612d6657612d65613b0e565b5b6000612d7485828601612b47565b9250506020612d8585828601612b5c565b9150509250929050565b60008060408385031215612da657612da5613b0e565b5b6000612db485828601612b47565b9250506020612dc585828601612bf7565b9150509250929050565b600060208284031215612de557612de4613b0e565b5b6000612df384828501612b5c565b91505092915050565b600060208284031215612e1257612e11613b0e565b5b6000612e2084828501612b71565b91505092915050565b600060208284031215612e3f57612e3e613b0e565b5b6000612e4d84828501612b86565b91505092915050565b600060208284031215612e6c57612e6b613b0e565b5b600082013567ffffffffffffffff811115612e8a57612e89613b09565b5b612e9684828501612bc9565b91505092915050565b600060208284031215612eb557612eb4613b0e565b5b6000612ec384828501612bf7565b91505092915050565b6000612ed883836132d5565b60208301905092915050565b612eed81613852565b82525050565b6000612efe826136c6565b612f0881856136f4565b9350612f13836136a1565b8060005b83811015612f44578151612f2b8882612ecc565b9750612f36836136e7565b925050600181019050612f17565b5085935050505092915050565b612f5a81613864565b82525050565b6000612f6b826136d1565b612f758185613705565b9350612f858185602086016138d5565b612f8e81613b13565b840191505092915050565b6000612fa4826136dc565b612fae8185613721565b9350612fbe8185602086016138d5565b612fc781613b13565b840191505092915050565b6000612fdd826136dc565b612fe78185613732565b9350612ff78185602086016138d5565b80840191505092915050565b6000815461301081613908565b61301a8186613732565b94506001821660008114613035576001811461304657613079565b60ff19831686528186019350613079565b61304f856136b1565b60005b8381101561307157815481890152600182019150602081019050613052565b838801955050505b50505092915050565b600061308f602b83613721565b915061309a82613b24565b604082019050919050565b60006130b2603283613721565b91506130bd82613b73565b604082019050919050565b60006130d5602683613721565b91506130e082613bc2565b604082019050919050565b60006130f8602583613721565b915061310382613c11565b604082019050919050565b600061311b601c83613721565b915061312682613c60565b602082019050919050565b600061313e602483613721565b915061314982613c89565b604082019050919050565b6000613161601983613721565b915061316c82613cd8565b602082019050919050565b6000613184602983613721565b915061318f82613d01565b604082019050919050565b60006131a7603e83613721565b91506131b282613d50565b604082019050919050565b60006131ca602083613721565b91506131d582613d9f565b602082019050919050565b60006131ed602083613721565b91506131f882613dc8565b602082019050919050565b6000613210602f83613721565b915061321b82613df1565b604082019050919050565b6000613233601883613721565b915061323e82613e40565b602082019050919050565b6000613256602183613721565b915061326182613e69565b604082019050919050565b6000613279600083613716565b915061328482613eb8565b600082019050919050565b600061329c602c83613721565b91506132a782613ebb565b604082019050919050565b60006132bf602e83613721565b91506132ca82613f0a565b604082019050919050565b6132de816138bc565b82525050565b6132ed816138bc565b82525050565b60006132ff8286612fd2565b915061330b8285612fd2565b91506133178284613003565b9150819050949350505050565b600061332f8261326c565b9150819050919050565b600060208201905061334e6000830184612ee4565b92915050565b60006080820190506133696000830187612ee4565b6133766020830186612ee4565b61338360408301856132e4565b81810360608301526133958184612f60565b905095945050505050565b600060208201905081810360008301526133ba8184612ef3565b905092915050565b60006020820190506133d76000830184612f51565b92915050565b600060208201905081810360008301526133f78184612f99565b905092915050565b6000602082019050818103600083015261341881613082565b9050919050565b60006020820190508181036000830152613438816130a5565b9050919050565b60006020820190508181036000830152613458816130c8565b9050919050565b60006020820190508181036000830152613478816130eb565b9050919050565b600060208201905081810360008301526134988161310e565b9050919050565b600060208201905081810360008301526134b881613131565b9050919050565b600060208201905081810360008301526134d881613154565b9050919050565b600060208201905081810360008301526134f881613177565b9050919050565b600060208201905081810360008301526135188161319a565b9050919050565b60006020820190508181036000830152613538816131bd565b9050919050565b60006020820190508181036000830152613558816131e0565b9050919050565b6000602082019050818103600083015261357881613203565b9050919050565b6000602082019050818103600083015261359881613226565b9050919050565b600060208201905081810360008301526135b881613249565b9050919050565b600060208201905081810360008301526135d88161328f565b9050919050565b600060208201905081810360008301526135f8816132b2565b9050919050565b600060208201905061361460008301846132e4565b92915050565b6000613624613635565b9050613630828261393a565b919050565b6000604051905090565b600067ffffffffffffffff82111561365a57613659613ad0565b5b61366382613b13565b9050602081019050919050565b600067ffffffffffffffff82111561368b5761368a613ad0565b5b61369482613b13565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613748826138bc565b9150613753836138bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613788576137876139e5565b5b828201905092915050565b600061379e826138bc565b91506137a9836138bc565b9250826137b9576137b8613a14565b5b828204905092915050565b60006137cf826138bc565b91506137da836138bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613813576138126139e5565b5b828202905092915050565b6000613829826138bc565b9150613834836138bc565b925082821015613847576138466139e5565b5b828203905092915050565b600061385d8261389c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f35780820151818401526020810190506138d8565b83811115613902576000848401525b50505050565b6000600282049050600182168061392057607f821691505b6020821081141561393457613933613a43565b5b50919050565b61394382613b13565b810181811067ffffffffffffffff8211171561396257613961613ad0565b5b80604052505050565b6000613976826138bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a9576139a86139e5565b5b600182019050919050565b60006139bf826138bc565b91506139ca836138bc565b9250826139da576139d9613a14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613f6281613852565b8114613f6d57600080fd5b50565b613f7981613864565b8114613f8457600080fd5b50565b613f9081613870565b8114613f9b57600080fd5b50565b613fa7816138bc565b8114613fb257600080fd5b5056fea26469706673582212209de6c65aafe0e1054b4bf0477a508159fe56e0ef76ed726e62039e577c855e4164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009525546535f436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045255465300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6164732e676f6f676c652e636f6d2f696e746c2f72755f435a2f686f6d652f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612dfc565b610876565b60405161024891906133c2565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612dcf565b6108f0565b005b34801561028657600080fd5b5061028f610915565b60405161029c91906133dd565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612e9f565b6109a7565b6040516102d99190613339565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612d8f565b6109ed565b005b34801561031757600080fd5b50610320610b05565b60405161032d91906135ff565b60405180910390f35b34801561034257600080fd5b5061034b610b0b565b60405161035891906135ff565b60405180910390f35b34801561036d57600080fd5b50610376610b18565b60405161038391906135ff565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612c79565b610b1e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612d8f565b610b7e565b6040516103e991906135ff565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612c0c565b610c23565b005b610423610c86565b005b61043f600480360381019061043a9190612d8f565b610dbe565b005b34801561044d57600080fd5b5061046860048036038101906104639190612c79565b610f5c565b005b34801561047657600080fd5b50610491600480360381019061048c9190612c0c565b610f7c565b60405161049e91906133a0565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612e9f565b61102a565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612c0c565b61103c565b005b34801561050557600080fd5b50610520600480360381019061051b9190612e9f565b61109f565b60405161052d91906135ff565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612e56565b611110565b005b34801561056b57600080fd5b50610574611132565b60405161058191906133c2565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612e9f565b611145565b6040516105be9190613339565b60405180910390f35b3480156105d357600080fd5b506105dc6111f7565b6040516105e991906133dd565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612c0c565b611285565b60405161062691906135ff565b60405180910390f35b34801561063b57600080fd5b5061064461133d565b005b34801561065257600080fd5b5061066d60048036038101906106689190612e9f565b611351565b005b34801561067b57600080fd5b50610684611363565b6040516106919190613339565b60405180910390f35b3480156106a657600080fd5b506106af61138d565b6040516106bc91906133dd565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612d4f565b61141f565b005b3480156106fa57600080fd5b5061071560048036038101906107109190612ccc565b611435565b005b34801561072357600080fd5b5061072c611497565b60405161073991906133dd565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612e9f565b611525565b60405161077691906133dd565b60405180910390f35b34801561078b57600080fd5b506107946115cf565b6040516107a191906135ff565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612c0c565b6115d5565b6040516107de91906133c2565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612e56565b6115f5565b005b34801561081c57600080fd5b5061083760048036038101906108329190612c39565b611617565b60405161084491906133c2565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612c0c565b6116ab565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e882611757565b5b9050919050565b6108f8611839565b80601060006101000a81548160ff02191690831515021790555050565b60606000805461092490613908565b80601f016020809104026020016040519081016040528092919081815260200182805461095090613908565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b2826118b7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f882611145565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a609061359f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a88611902565b73ffffffffffffffffffffffffffffffffffffffff161480610ab75750610ab681610ab1611902565b611617565b5b610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed906134ff565b60405180910390fd5b610b00838361190a565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b2f610b29611902565b826119c3565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b65906135df565b60405180910390fd5b610b79838383611a58565b505050565b6000610b8983611285565b8210610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906133ff565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2b611839565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c8e611839565b6000732a8f7f30aeb28e0976e08a03b2a2aa8b2d77cc8073ffffffffffffffffffffffffffffffffffffffff166064600047610cca91906137c4565b610cd49190613793565b604051610ce090613324565b60006040518083038185875af1925050503d8060008114610d1d576040519150601f19603f3d011682016040523d82523d6000602084013e610d22565b606091505b5050905080610d3057600080fd5b6000732a8f7f30aeb28e0976e08a03b2a2aa8b2d77cc8073ffffffffffffffffffffffffffffffffffffffff1647604051610d6a90613324565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610dba57600080fd5b5050565b6000610dc8610b0b565b9050601060009054906101000a900460ff1615610de457600080fd5b60008211610df157600080fd5b600f54821115610e0057600080fd5b600e548282610e0f919061373d565b1115610e1a57600080fd5b610e22611363565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec85760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ec75781600d54610eba91906137c4565b341015610ec657600080fd5b5b5b6000600190505b828111610efe57610eeb848284610ee6919061373d565b611cbf565b8080610ef69061396b565b915050610ecf565b506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b610f7783838360405180602001604052806000815250611435565b505050565b60606000610f8983611285565b905060008167ffffffffffffffff811115610fa757610fa6613ad0565b5b604051908082528060200260200182016040528015610fd55781602001602082028036833780820191505090505b50905060005b8281101561101f57610fed8582610b7e565b82828151811061100057610fff613aa1565b5b60200260200101818152505080806110179061396b565b915050610fdb565b508092505050919050565b611032611839565b80600d8190555050565b611044611839565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006110a9610b0b565b82106110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906135bf565b60405180910390fd5b600882815481106110fe576110fd613aa1565b5b90600052602060002001549050919050565b611118611839565b80600b908051906020019061112e929190612a20565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e59061357f565b60405180910390fd5b80915050919050565b600b805461120490613908565b80601f016020809104026020016040519081016040528092919081815260200182805461123090613908565b801561127d5780601f106112525761010080835404028352916020019161127d565b820191906000526020600020905b81548152906001019060200180831161126057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906134df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611345611839565b61134f6000611cdd565b565b611359611839565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461139c90613908565b80601f01602080910402602001604051908101604052809291908181526020018280546113c890613908565b80156114155780601f106113ea57610100808354040283529160200191611415565b820191906000526020600020905b8154815290600101906020018083116113f857829003601f168201915b5050505050905090565b61143161142a611902565b8383611da3565b5050565b611446611440611902565b836119c3565b611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906135df565b60405180910390fd5b61149184848484611f10565b50505050565b600c80546114a490613908565b80601f01602080910402602001604051908101604052809291908181526020018280546114d090613908565b801561151d5780601f106114f25761010080835404028352916020019161151d565b820191906000526020600020905b81548152906001019060200180831161150057829003601f168201915b505050505081565b606061153082611f6c565b61156f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115669061355f565b60405180910390fd5b6000611579611fd8565b9050600081511161159957604051806020016040528060008152506115c7565b806115a38461206a565b600c6040516020016115b7939291906132f3565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6115fd611839565b80600c9080519060200190611613929190612a20565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116b3611839565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a9061343f565b60405180910390fd5b61172c81611cdd565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061182257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118325750611831826121cb565b5b9050919050565b611841611902565b73ffffffffffffffffffffffffffffffffffffffff1661185f611363565b73ffffffffffffffffffffffffffffffffffffffff16146118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9061353f565b60405180910390fd5b565b6118c081611f6c565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f69061357f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197d83611145565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119cf83611145565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a115750611a108185611617565b5b80611a4f57508373ffffffffffffffffffffffffffffffffffffffff16611a37846109a7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7882611145565b73ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac59061345f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b359061349f565b60405180910390fd5b611b49838383612235565b611b5460008261190a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba4919061381e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfb919061373d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cba838383612349565b505050565b611cd982826040518060200160405280600081525061234e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e09906134bf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f0391906133c2565b60405180910390a3505050565b611f1b848484611a58565b611f27848484846123a9565b611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d9061341f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611fe790613908565b80601f016020809104026020016040519081016040528092919081815260200182805461201390613908565b80156120605780601f1061203557610100808354040283529160200191612060565b820191906000526020600020905b81548152906001019060200180831161204357829003601f168201915b5050505050905090565b606060008214156120b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c6565b600082905060005b600082146120e45780806120cd9061396b565b915050600a826120dd9190613793565b91506120ba565b60008167ffffffffffffffff811115612100576120ff613ad0565b5b6040519080825280601f01601f1916602001820160405280156121325781602001600182028036833780820191505090505b5090505b600085146121bf5760018261214b919061381e565b9150600a8561215a91906139b4565b6030612166919061373d565b60f81b81838151811061217c5761217b613aa1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b89190613793565b9450612136565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612240838383611752565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122835761227e81612540565b6122c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122c1576122c08382612589565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561230557612300816126f6565b612344565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123435761234282826127c7565b5b5b505050565b505050565b6123588383612846565b61236560008484846123a9565b6123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b9061341f565b60405180910390fd5b505050565b60006123ca8473ffffffffffffffffffffffffffffffffffffffff1661172f565b15612533578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f3611902565b8786866040518563ffffffff1660e01b81526004016124159493929190613354565b602060405180830381600087803b15801561242f57600080fd5b505af192505050801561246057506040513d601f19601f8201168201806040525081019061245d9190612e29565b60015b6124e3573d8060008114612490576040519150601f19603f3d011682016040523d82523d6000602084013e612495565b606091505b506000815114156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d29061341f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612538565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161259684611285565b6125a0919061381e565b9050600060076000848152602001908152602001600020549050818114612685576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061270a919061381e565b905060006009600084815260200190815260200160002054905060006008838154811061273a57612739613aa1565b5b90600052602060002001549050806008838154811061275c5761275b613aa1565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127ab576127aa613a72565b5b6001900381819060005260206000200160009055905550505050565b60006127d283611285565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ad9061351f565b60405180910390fd5b6128bf81611f6c565b156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f69061347f565b60405180910390fd5b61290b60008383612235565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295b919061373d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1c60008383612349565b5050565b828054612a2c90613908565b90600052602060002090601f016020900481019282612a4e5760008555612a95565b82601f10612a6757805160ff1916838001178555612a95565b82800160010185558215612a95579182015b82811115612a94578251825591602001919060010190612a79565b5b509050612aa29190612aa6565b5090565b5b80821115612abf576000816000905550600101612aa7565b5090565b6000612ad6612ad18461363f565b61361a565b905082815260208101848484011115612af257612af1613b04565b5b612afd8482856138c6565b509392505050565b6000612b18612b1384613670565b61361a565b905082815260208101848484011115612b3457612b33613b04565b5b612b3f8482856138c6565b509392505050565b600081359050612b5681613f59565b92915050565b600081359050612b6b81613f70565b92915050565b600081359050612b8081613f87565b92915050565b600081519050612b9581613f87565b92915050565b600082601f830112612bb057612baf613aff565b5b8135612bc0848260208601612ac3565b91505092915050565b600082601f830112612bde57612bdd613aff565b5b8135612bee848260208601612b05565b91505092915050565b600081359050612c0681613f9e565b92915050565b600060208284031215612c2257612c21613b0e565b5b6000612c3084828501612b47565b91505092915050565b60008060408385031215612c5057612c4f613b0e565b5b6000612c5e85828601612b47565b9250506020612c6f85828601612b47565b9150509250929050565b600080600060608486031215612c9257612c91613b0e565b5b6000612ca086828701612b47565b9350506020612cb186828701612b47565b9250506040612cc286828701612bf7565b9150509250925092565b60008060008060808587031215612ce657612ce5613b0e565b5b6000612cf487828801612b47565b9450506020612d0587828801612b47565b9350506040612d1687828801612bf7565b925050606085013567ffffffffffffffff811115612d3757612d36613b09565b5b612d4387828801612b9b565b91505092959194509250565b60008060408385031215612d6657612d65613b0e565b5b6000612d7485828601612b47565b9250506020612d8585828601612b5c565b9150509250929050565b60008060408385031215612da657612da5613b0e565b5b6000612db485828601612b47565b9250506020612dc585828601612bf7565b9150509250929050565b600060208284031215612de557612de4613b0e565b5b6000612df384828501612b5c565b91505092915050565b600060208284031215612e1257612e11613b0e565b5b6000612e2084828501612b71565b91505092915050565b600060208284031215612e3f57612e3e613b0e565b5b6000612e4d84828501612b86565b91505092915050565b600060208284031215612e6c57612e6b613b0e565b5b600082013567ffffffffffffffff811115612e8a57612e89613b09565b5b612e9684828501612bc9565b91505092915050565b600060208284031215612eb557612eb4613b0e565b5b6000612ec384828501612bf7565b91505092915050565b6000612ed883836132d5565b60208301905092915050565b612eed81613852565b82525050565b6000612efe826136c6565b612f0881856136f4565b9350612f13836136a1565b8060005b83811015612f44578151612f2b8882612ecc565b9750612f36836136e7565b925050600181019050612f17565b5085935050505092915050565b612f5a81613864565b82525050565b6000612f6b826136d1565b612f758185613705565b9350612f858185602086016138d5565b612f8e81613b13565b840191505092915050565b6000612fa4826136dc565b612fae8185613721565b9350612fbe8185602086016138d5565b612fc781613b13565b840191505092915050565b6000612fdd826136dc565b612fe78185613732565b9350612ff78185602086016138d5565b80840191505092915050565b6000815461301081613908565b61301a8186613732565b94506001821660008114613035576001811461304657613079565b60ff19831686528186019350613079565b61304f856136b1565b60005b8381101561307157815481890152600182019150602081019050613052565b838801955050505b50505092915050565b600061308f602b83613721565b915061309a82613b24565b604082019050919050565b60006130b2603283613721565b91506130bd82613b73565b604082019050919050565b60006130d5602683613721565b91506130e082613bc2565b604082019050919050565b60006130f8602583613721565b915061310382613c11565b604082019050919050565b600061311b601c83613721565b915061312682613c60565b602082019050919050565b600061313e602483613721565b915061314982613c89565b604082019050919050565b6000613161601983613721565b915061316c82613cd8565b602082019050919050565b6000613184602983613721565b915061318f82613d01565b604082019050919050565b60006131a7603e83613721565b91506131b282613d50565b604082019050919050565b60006131ca602083613721565b91506131d582613d9f565b602082019050919050565b60006131ed602083613721565b91506131f882613dc8565b602082019050919050565b6000613210602f83613721565b915061321b82613df1565b604082019050919050565b6000613233601883613721565b915061323e82613e40565b602082019050919050565b6000613256602183613721565b915061326182613e69565b604082019050919050565b6000613279600083613716565b915061328482613eb8565b600082019050919050565b600061329c602c83613721565b91506132a782613ebb565b604082019050919050565b60006132bf602e83613721565b91506132ca82613f0a565b604082019050919050565b6132de816138bc565b82525050565b6132ed816138bc565b82525050565b60006132ff8286612fd2565b915061330b8285612fd2565b91506133178284613003565b9150819050949350505050565b600061332f8261326c565b9150819050919050565b600060208201905061334e6000830184612ee4565b92915050565b60006080820190506133696000830187612ee4565b6133766020830186612ee4565b61338360408301856132e4565b81810360608301526133958184612f60565b905095945050505050565b600060208201905081810360008301526133ba8184612ef3565b905092915050565b60006020820190506133d76000830184612f51565b92915050565b600060208201905081810360008301526133f78184612f99565b905092915050565b6000602082019050818103600083015261341881613082565b9050919050565b60006020820190508181036000830152613438816130a5565b9050919050565b60006020820190508181036000830152613458816130c8565b9050919050565b60006020820190508181036000830152613478816130eb565b9050919050565b600060208201905081810360008301526134988161310e565b9050919050565b600060208201905081810360008301526134b881613131565b9050919050565b600060208201905081810360008301526134d881613154565b9050919050565b600060208201905081810360008301526134f881613177565b9050919050565b600060208201905081810360008301526135188161319a565b9050919050565b60006020820190508181036000830152613538816131bd565b9050919050565b60006020820190508181036000830152613558816131e0565b9050919050565b6000602082019050818103600083015261357881613203565b9050919050565b6000602082019050818103600083015261359881613226565b9050919050565b600060208201905081810360008301526135b881613249565b9050919050565b600060208201905081810360008301526135d88161328f565b9050919050565b600060208201905081810360008301526135f8816132b2565b9050919050565b600060208201905061361460008301846132e4565b92915050565b6000613624613635565b9050613630828261393a565b919050565b6000604051905090565b600067ffffffffffffffff82111561365a57613659613ad0565b5b61366382613b13565b9050602081019050919050565b600067ffffffffffffffff82111561368b5761368a613ad0565b5b61369482613b13565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613748826138bc565b9150613753836138bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613788576137876139e5565b5b828201905092915050565b600061379e826138bc565b91506137a9836138bc565b9250826137b9576137b8613a14565b5b828204905092915050565b60006137cf826138bc565b91506137da836138bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613813576138126139e5565b5b828202905092915050565b6000613829826138bc565b9150613834836138bc565b925082821015613847576138466139e5565b5b828203905092915050565b600061385d8261389c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f35780820151818401526020810190506138d8565b83811115613902576000848401525b50505050565b6000600282049050600182168061392057607f821691505b6020821081141561393457613933613a43565b5b50919050565b61394382613b13565b810181811067ffffffffffffffff8211171561396257613961613ad0565b5b80604052505050565b6000613976826138bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a9576139a86139e5565b5b600182019050919050565b60006139bf826138bc565b91506139ca836138bc565b9250826139da576139d9613a14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b613f6281613852565b8114613f6d57600080fd5b50565b613f7981613864565b8114613f8457600080fd5b50565b613f9081613870565b8114613f9b57600080fd5b50565b613fa7816138bc565b8114613fb257600080fd5b5056fea26469706673582212209de6c65aafe0e1054b4bf0477a508159fe56e0ef76ed726e62039e577c855e4164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009525546535f436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045255465300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6164732e676f6f676c652e636f6d2f696e746c2f72755f435a2f686f6d652f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RUFS_Club
Arg [1] : _symbol (string): RUFS
Arg [2] : _initBaseURI (string): https://ads.google.com/intl/ru_CZ/home/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 525546535f436c75620000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5255465300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [8] : 68747470733a2f2f6164732e676f6f676c652e636f6d2f696e746c2f72755f43
Arg [9] : 5a2f686f6d652f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46368:5898:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40152:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51226:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26886:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28399:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27916:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46901:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40792:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47212:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29099:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40460:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51405:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51513:750;;;:::i;:::-;;48266:1371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29506:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49643:466;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50786:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51305:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40982:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50994:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47337:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26597:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46631:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26328:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5415:103;;;;;;;;;;;;;:::i;:::-;;50872:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4767:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27055:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28642:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29762:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46765:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50115:580;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47080:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47471:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51098:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5673:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40152:224;40254:4;40293:35;40278:50;;;:11;:50;;;;:90;;;;40332:36;40356:11;40332:23;:36::i;:::-;40278:90;40271:97;;40152:224;;;:::o;51226:73::-;4653:13;:11;:13::i;:::-;51287:6:::1;51278;;:15;;;;;;;;;;;;;;;;;;51226:73:::0;:::o;26886:100::-;26940:13;26973:5;26966:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26886:100;:::o;28399:171::-;28475:7;28495:23;28510:7;28495:14;:23::i;:::-;28538:15;:24;28554:7;28538:24;;;;;;;;;;;;;;;;;;;;;28531:31;;28399:171;;;:::o;27916:417::-;27997:13;28013:23;28028:7;28013:14;:23::i;:::-;27997:39;;28061:5;28055:11;;:2;:11;;;;28047:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28155:5;28139:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28164:37;28181:5;28188:12;:10;:12::i;:::-;28164:16;:37::i;:::-;28139:62;28117:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28304:21;28313:2;28317:7;28304:8;:21::i;:::-;27986:347;27916:417;;:::o;46901:32::-;;;;:::o;40792:113::-;40853:7;40880:10;:17;;;;40873:24;;40792:113;:::o;47212:33::-;;;;:::o;29099:336::-;29294:41;29313:12;:10;:12::i;:::-;29327:7;29294:18;:41::i;:::-;29286:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29399:28;29409:4;29415:2;29419:7;29399:9;:28::i;:::-;29099:336;;;:::o;40460:256::-;40557:7;40593:23;40610:5;40593:16;:23::i;:::-;40585:5;:31;40577:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40682:12;:19;40695:5;40682:19;;;;;;;;;;;;;;;:26;40702:5;40682:26;;;;;;;;;;;;40675:33;;40460:256;;;;:::o;51405:100::-;4653:13;:11;:13::i;:::-;51494:5:::1;51473:11;:18;51485:5;51473:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;51405:100:::0;:::o;51513:750::-;4653:13;:11;:13::i;:::-;51733:7:::1;51754:42;51746:56;;51838:3;51834:1;51810:21;:25;;;;:::i;:::-;:31;;;;:::i;:::-;51746:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51732:114;;;51861:2;51853:11;;;::::0;::::1;;52050:7;52071:42;52063:56;;52127:21;52063:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52049:104;;;52168:2;52160:11;;;::::0;::::1;;51558:705;;51513:750::o:0;48266:1371::-;48384:14;48401:13;:11;:13::i;:::-;48384:30;;48517:6;;;;;;;;;;;48516:7;48508:16;;;;;;48604:1;48590:11;:15;48582:24;;;;;;48717:13;;48702:11;:28;;48694:37;;;;;;48859:9;;48844:11;48835:6;:20;;;;:::i;:::-;:33;;48827:42;;;;;;49017:7;:5;:7::i;:::-;49003:21;;:10;:21;;;48999:421;;49152:4;49125:31;;:11;:23;49137:10;49125:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;49122:291;;49276:11;49269:4;;:18;;;;:::i;:::-;49256:9;:31;;49248:40;;;;;;49122:291;48999:421;49433:9;49445:1;49433:13;;49428:154;49453:11;49448:1;:16;49428:154;;49548:26;49558:3;49572:1;49563:6;:10;;;;:::i;:::-;49548:9;:26::i;:::-;49466:3;;;;;:::i;:::-;;;;49428:154;;;;49620:5;49594:11;:23;49606:10;49594:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;48329:1308;48266:1371;;:::o;29506:185::-;29644:39;29661:4;29667:2;29671:7;29644:39;;;;;;;;;;;;:16;:39::i;:::-;29506:185;;;:::o;49643:466::-;49836:16;49864:23;49890:17;49900:6;49890:9;:17::i;:::-;49864:43;;49914:25;49956:15;49942:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49914:58;;49984:9;49979:103;49999:15;49995:1;:19;49979:103;;;50044:30;50064:6;50072:1;50044:19;:30::i;:::-;50030:8;50039:1;50030:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;50016:3;;;;;:::i;:::-;;;;49979:103;;;;50095:8;50088:15;;;;49643:466;;;:::o;50786:80::-;4653:13;:11;:13::i;:::-;50852:8:::1;50845:4;:15;;;;50786:80:::0;:::o;51305:93::-;4653:13;:11;:13::i;:::-;51388:4:::1;51367:11;:18;51379:5;51367:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;51305:93:::0;:::o;40982:233::-;41057:7;41093:30;:28;:30::i;:::-;41085:5;:38;41077:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41190:10;41201:5;41190:17;;;;;;;;:::i;:::-;;;;;;;;;;41183:24;;40982:233;;;:::o;50994:98::-;4653:13;:11;:13::i;:::-;51075:11:::1;51065:7;:21;;;;;;;;;;;;:::i;:::-;;50994:98:::0;:::o;47337:26::-;;;;;;;;;;;;;:::o;26597:222::-;26669:7;26689:13;26705:7;:16;26713:7;26705:16;;;;;;;;;;;;;;;;;;;;;26689:32;;26757:1;26740:19;;:5;:19;;;;26732:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26806:5;26799:12;;;26597:222;;;:::o;46631:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26328:207::-;26400:7;26445:1;26428:19;;:5;:19;;;;26420:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26511:9;:16;26521:5;26511:16;;;;;;;;;;;;;;;;26504:23;;26328:207;;;:::o;5415:103::-;4653:13;:11;:13::i;:::-;5480:30:::1;5507:1;5480:18;:30::i;:::-;5415:103::o:0;50872:116::-;4653:13;:11;:13::i;:::-;50965:17:::1;50949:13;:33;;;;50872:116:::0;:::o;4767:87::-;4813:7;4840:6;;;;;;;;;;;4833:13;;4767:87;:::o;27055:104::-;27111:13;27144:7;27137:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27055:104;:::o;28642:155::-;28737:52;28756:12;:10;:12::i;:::-;28770:8;28780;28737:18;:52::i;:::-;28642:155;;:::o;29762:323::-;29936:41;29955:12;:10;:12::i;:::-;29969:7;29936:18;:41::i;:::-;29928:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30039:38;30053:4;30059:2;30063:7;30072:4;30039:13;:38::i;:::-;29762:323;;;;:::o;46765:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50115:580::-;50299:13;50340:16;50348:7;50340;:16::i;:::-;50324:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50430:28;50461:10;:8;:10::i;:::-;50430:41;;50587:1;50562:14;50556:28;:32;:133;;;;;;;;;;;;;;;;;50624:14;50640:18;:7;:16;:18::i;:::-;50660:13;50607:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50556:133;50549:140;;;50115:580;;;:::o;47080:32::-;;;;:::o;47471:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;51098:122::-;4653:13;:11;:13::i;:::-;51197:17:::1;51181:13;:33;;;;;;;;;;;;:::i;:::-;;51098:122:::0;:::o;28868:164::-;28965:4;28989:18;:25;29008:5;28989:25;;;;;;;;;;;;;;;:35;29015:8;28989:35;;;;;;;;;;;;;;;;;;;;;;;;;28982:42;;28868:164;;;;:::o;5673:201::-;4653:13;:11;:13::i;:::-;5782:1:::1;5762:22;;:8;:22;;;;5754:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5838:28;5857:8;5838:18;:28::i;:::-;5673:201:::0;:::o;7465:326::-;7525:4;7782:1;7760:7;:19;;;:23;7753:30;;7465:326;;;:::o;38498:126::-;;;;:::o;25959:305::-;26061:4;26113:25;26098:40;;;:11;:40;;;;:105;;;;26170:33;26155:48;;;:11;:48;;;;26098:105;:158;;;;26220:36;26244:11;26220:23;:36::i;:::-;26098:158;26078:178;;25959:305;;;:::o;4932:132::-;5007:12;:10;:12::i;:::-;4996:23;;:7;:5;:7::i;:::-;:23;;;4988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4932:132::o;36374:135::-;36456:16;36464:7;36456;:16::i;:::-;36448:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36374:135;:::o;3318:98::-;3371:7;3398:10;3391:17;;3318:98;:::o;35653:174::-;35755:2;35728:15;:24;35744:7;35728:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35811:7;35807:2;35773:46;;35782:23;35797:7;35782:14;:23::i;:::-;35773:46;;;;;;;;;;;;35653:174;;:::o;31886:264::-;31979:4;31996:13;32012:23;32027:7;32012:14;:23::i;:::-;31996:39;;32065:5;32054:16;;:7;:16;;;:52;;;;32074:32;32091:5;32098:7;32074:16;:32::i;:::-;32054:52;:87;;;;32134:7;32110:31;;:20;32122:7;32110:11;:20::i;:::-;:31;;;32054:87;32046:96;;;31886:264;;;;:::o;34909:625::-;35068:4;35041:31;;:23;35056:7;35041:14;:23::i;:::-;:31;;;35033:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35147:1;35133:16;;:2;:16;;;;35125:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35203:39;35224:4;35230:2;35234:7;35203:20;:39::i;:::-;35307:29;35324:1;35328:7;35307:8;:29::i;:::-;35368:1;35349:9;:15;35359:4;35349:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35397:1;35380:9;:13;35390:2;35380:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35428:2;35409:7;:16;35417:7;35409:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35467:7;35463:2;35448:27;;35457:4;35448:27;;;;;;;;;;;;35488:38;35508:4;35514:2;35518:7;35488:19;:38::i;:::-;34909:625;;;:::o;32492:110::-;32568:26;32578:2;32582:7;32568:26;;;;;;;;;;;;:9;:26::i;:::-;32492:110;;:::o;6034:191::-;6108:16;6127:6;;;;;;;;;;;6108:25;;6153:8;6144:6;;:17;;;;;;;;;;;;;;;;;;6208:8;6177:40;;6198:8;6177:40;;;;;;;;;;;;6097:128;6034:191;:::o;35970:315::-;36125:8;36116:17;;:5;:17;;;;36108:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36212:8;36174:18;:25;36193:5;36174:25;;;;;;;;;;;;;;;:35;36200:8;36174:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36258:8;36236:41;;36251:5;36236:41;;;36268:8;36236:41;;;;;;:::i;:::-;;;;;;;;35970:315;;;:::o;30966:313::-;31122:28;31132:4;31138:2;31142:7;31122:9;:28::i;:::-;31169:47;31192:4;31198:2;31202:7;31211:4;31169:22;:47::i;:::-;31161:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30966:313;;;;:::o;31592:127::-;31657:4;31709:1;31681:30;;:7;:16;31689:7;31681:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31674:37;;31592:127;;;:::o;48053:194::-;48113:13;48142:7;48135:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48053:194;:::o;572:723::-;628:13;858:1;849:5;:10;845:53;;;876:10;;;;;;;;;;;;;;;;;;;;;845:53;908:12;923:5;908:20;;939:14;964:78;979:1;971:4;:9;964:78;;997:8;;;;;:::i;:::-;;;;1028:2;1020:10;;;;;:::i;:::-;;;964:78;;;1052:19;1084:6;1074:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052:39;;1102:154;1118:1;1109:5;:10;1102:154;;1146:1;1136:11;;;;;:::i;:::-;;;1213:2;1205:5;:10;;;;:::i;:::-;1192:2;:24;;;;:::i;:::-;1179:39;;1162:6;1169;1162:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1242:2;1233:11;;;;;:::i;:::-;;;1102:154;;;1280:6;1266:21;;;;;572:723;;;;:::o;17621:157::-;17706:4;17745:25;17730:40;;;:11;:40;;;;17723:47;;17621:157;;;:::o;41828:589::-;41972:45;41999:4;42005:2;42009:7;41972:26;:45::i;:::-;42050:1;42034:18;;:4;:18;;;42030:187;;;42069:40;42101:7;42069:31;:40::i;:::-;42030:187;;;42139:2;42131:10;;:4;:10;;;42127:90;;42158:47;42191:4;42197:7;42158:32;:47::i;:::-;42127:90;42030:187;42245:1;42231:16;;:2;:16;;;42227:183;;;42264:45;42301:7;42264:36;:45::i;:::-;42227:183;;;42337:4;42331:10;;:2;:10;;;42327:83;;42358:40;42386:2;42390:7;42358:27;:40::i;:::-;42327:83;42227:183;41828:589;;;:::o;39009:125::-;;;;:::o;32829:319::-;32958:18;32964:2;32968:7;32958:5;:18::i;:::-;33009:53;33040:1;33044:2;33048:7;33057:4;33009:22;:53::i;:::-;32987:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32829:319;;;:::o;37073:853::-;37227:4;37248:15;:2;:13;;;:15::i;:::-;37244:675;;;37300:2;37284:36;;;37321:12;:10;:12::i;:::-;37335:4;37341:7;37350:4;37284:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37280:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37542:1;37525:6;:13;:18;37521:328;;;37568:60;;;;;;;;;;:::i;:::-;;;;;;;;37521:328;37799:6;37793:13;37784:6;37780:2;37776:15;37769:38;37280:584;37416:41;;;37406:51;;;:6;:51;;;;37399:58;;;;;37244:675;37903:4;37896:11;;37073:853;;;;;;;:::o;43140:164::-;43244:10;:17;;;;43217:15;:24;43233:7;43217:24;;;;;;;;;;;:44;;;;43272:10;43288:7;43272:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43140:164;:::o;43931:988::-;44197:22;44247:1;44222:22;44239:4;44222:16;:22::i;:::-;:26;;;;:::i;:::-;44197:51;;44259:18;44280:17;:26;44298:7;44280:26;;;;;;;;;;;;44259:47;;44427:14;44413:10;:28;44409:328;;44458:19;44480:12;:18;44493:4;44480:18;;;;;;;;;;;;;;;:34;44499:14;44480:34;;;;;;;;;;;;44458:56;;44564:11;44531:12;:18;44544:4;44531:18;;;;;;;;;;;;;;;:30;44550:10;44531:30;;;;;;;;;;;:44;;;;44681:10;44648:17;:30;44666:11;44648:30;;;;;;;;;;;:43;;;;44443:294;44409:328;44833:17;:26;44851:7;44833:26;;;;;;;;;;;44826:33;;;44877:12;:18;44890:4;44877:18;;;;;;;;;;;;;;;:34;44896:14;44877:34;;;;;;;;;;;44870:41;;;44012:907;;43931:988;;:::o;45214:1079::-;45467:22;45512:1;45492:10;:17;;;;:21;;;;:::i;:::-;45467:46;;45524:18;45545:15;:24;45561:7;45545:24;;;;;;;;;;;;45524:45;;45896:19;45918:10;45929:14;45918:26;;;;;;;;:::i;:::-;;;;;;;;;;45896:48;;45982:11;45957:10;45968;45957:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46093:10;46062:15;:28;46078:11;46062:28;;;;;;;;;;;:41;;;;46234:15;:24;46250:7;46234:24;;;;;;;;;;;46227:31;;;46269:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45285:1008;;;45214:1079;:::o;42718:221::-;42803:14;42820:20;42837:2;42820:16;:20::i;:::-;42803:37;;42878:7;42851:12;:16;42864:2;42851:16;;;;;;;;;;;;;;;:24;42868:6;42851:24;;;;;;;;;;;:34;;;;42925:6;42896:17;:26;42914:7;42896:26;;;;;;;;;;;:35;;;;42792:147;42718:221;;:::o;33484:439::-;33578:1;33564:16;;:2;:16;;;;33556:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33637:16;33645:7;33637;:16::i;:::-;33636:17;33628:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33699:45;33728:1;33732:2;33736:7;33699:20;:45::i;:::-;33774:1;33757:9;:13;33767:2;33757:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33805:2;33786:7;:16;33794:7;33786:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33850:7;33846:2;33825:33;;33842:1;33825:33;;;;;;;;;;;;33871:44;33899:1;33903:2;33907:7;33871:19;:44::i;:::-;33484:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:398::-;16040:3;16061:83;16142:1;16137:3;16061:83;:::i;:::-;16054:90;;16153:93;16242:3;16153:93;:::i;:::-;16271:1;16266:3;16262:11;16255:18;;15881:398;;;:::o;16285:366::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:108::-;17106:24;17124:5;17106:24;:::i;:::-;17101:3;17094:37;17029:108;;:::o;17143:118::-;17230:24;17248:5;17230:24;:::i;:::-;17225:3;17218:37;17143:118;;:::o;17267:589::-;17492:3;17514:95;17605:3;17596:6;17514:95;:::i;:::-;17507:102;;17626:95;17717:3;17708:6;17626:95;:::i;:::-;17619:102;;17738:92;17826:3;17817:6;17738:92;:::i;:::-;17731:99;;17847:3;17840:10;;17267:589;;;;;;:::o;17862:379::-;18046:3;18068:147;18211:3;18068:147;:::i;:::-;18061:154;;18232:3;18225:10;;17862:379;;;:::o;18247:222::-;18340:4;18378:2;18367:9;18363:18;18355:26;;18391:71;18459:1;18448:9;18444:17;18435:6;18391:71;:::i;:::-;18247:222;;;;:::o;18475:640::-;18670:4;18708:3;18697:9;18693:19;18685:27;;18722:71;18790:1;18779:9;18775:17;18766:6;18722:71;:::i;:::-;18803:72;18871:2;18860:9;18856:18;18847:6;18803:72;:::i;:::-;18885;18953:2;18942:9;18938:18;18929:6;18885:72;:::i;:::-;19004:9;18998:4;18994:20;18989:2;18978:9;18974:18;18967:48;19032:76;19103:4;19094:6;19032:76;:::i;:::-;19024:84;;18475:640;;;;;;;:::o;19121:373::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:108;19482:4;19473:6;19379:108;:::i;:::-;19371:116;;19121:373;;;;:::o;19500:210::-;19587:4;19625:2;19614:9;19610:18;19602:26;;19638:65;19700:1;19689:9;19685:17;19676:6;19638:65;:::i;:::-;19500:210;;;;:::o;19716:313::-;19829:4;19867:2;19856:9;19852:18;19844:26;;19916:9;19910:4;19906:20;19902:1;19891:9;19887:17;19880:47;19944:78;20017:4;20008:6;19944:78;:::i;:::-;19936:86;;19716:313;;;;:::o;20035:419::-;20201:4;20239:2;20228:9;20224:18;20216:26;;20288:9;20282:4;20278:20;20274:1;20263:9;20259:17;20252:47;20316:131;20442:4;20316:131;:::i;:::-;20308:139;;20035:419;;;:::o;20460:::-;20626:4;20664:2;20653:9;20649:18;20641:26;;20713:9;20707:4;20703:20;20699:1;20688:9;20684:17;20677:47;20741:131;20867:4;20741:131;:::i;:::-;20733:139;;20460:419;;;:::o;20885:::-;21051:4;21089:2;21078:9;21074:18;21066:26;;21138:9;21132:4;21128:20;21124:1;21113:9;21109:17;21102:47;21166:131;21292:4;21166:131;:::i;:::-;21158:139;;20885:419;;;:::o;21310:::-;21476:4;21514:2;21503:9;21499:18;21491:26;;21563:9;21557:4;21553:20;21549:1;21538:9;21534:17;21527:47;21591:131;21717:4;21591:131;:::i;:::-;21583:139;;21310:419;;;:::o;21735:::-;21901:4;21939:2;21928:9;21924:18;21916:26;;21988:9;21982:4;21978:20;21974:1;21963:9;21959:17;21952:47;22016:131;22142:4;22016:131;:::i;:::-;22008:139;;21735:419;;;:::o;22160:::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o;22585:::-;22751:4;22789:2;22778:9;22774:18;22766:26;;22838:9;22832:4;22828:20;22824:1;22813:9;22809:17;22802:47;22866:131;22992:4;22866:131;:::i;:::-;22858:139;;22585:419;;;:::o;23010:::-;23176:4;23214:2;23203:9;23199:18;23191:26;;23263:9;23257:4;23253:20;23249:1;23238:9;23234:17;23227:47;23291:131;23417:4;23291:131;:::i;:::-;23283:139;;23010:419;;;:::o;23435:::-;23601:4;23639:2;23628:9;23624:18;23616:26;;23688:9;23682:4;23678:20;23674:1;23663:9;23659:17;23652:47;23716:131;23842:4;23716:131;:::i;:::-;23708:139;;23435:419;;;:::o;23860:::-;24026:4;24064:2;24053:9;24049:18;24041:26;;24113:9;24107:4;24103:20;24099:1;24088:9;24084:17;24077:47;24141:131;24267:4;24141:131;:::i;:::-;24133:139;;23860:419;;;:::o;24285:::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24285:419;;;:::o;24710:::-;24876:4;24914:2;24903:9;24899:18;24891:26;;24963:9;24957:4;24953:20;24949:1;24938:9;24934:17;24927:47;24991:131;25117:4;24991:131;:::i;:::-;24983:139;;24710:419;;;:::o;25135:::-;25301:4;25339:2;25328:9;25324:18;25316:26;;25388:9;25382:4;25378:20;25374:1;25363:9;25359:17;25352:47;25416:131;25542:4;25416:131;:::i;:::-;25408:139;;25135:419;;;:::o;25560:::-;25726:4;25764:2;25753:9;25749:18;25741:26;;25813:9;25807:4;25803:20;25799:1;25788:9;25784:17;25777:47;25841:131;25967:4;25841:131;:::i;:::-;25833:139;;25560:419;;;:::o;25985:::-;26151:4;26189:2;26178:9;26174:18;26166:26;;26238:9;26232:4;26228:20;26224:1;26213:9;26209:17;26202:47;26266:131;26392:4;26266:131;:::i;:::-;26258:139;;25985:419;;;:::o;26410:::-;26576:4;26614:2;26603:9;26599:18;26591:26;;26663:9;26657:4;26653:20;26649:1;26638:9;26634:17;26627:47;26691:131;26817:4;26691:131;:::i;:::-;26683:139;;26410:419;;;:::o;26835:222::-;26928:4;26966:2;26955:9;26951:18;26943:26;;26979:71;27047:1;27036:9;27032:17;27023:6;26979:71;:::i;:::-;26835:222;;;;:::o;27063:129::-;27097:6;27124:20;;:::i;:::-;27114:30;;27153:33;27181:4;27173:6;27153:33;:::i;:::-;27063:129;;;:::o;27198:75::-;27231:6;27264:2;27258:9;27248:19;;27198:75;:::o;27279:307::-;27340:4;27430:18;27422:6;27419:30;27416:56;;;27452:18;;:::i;:::-;27416:56;27490:29;27512:6;27490:29;:::i;:::-;27482:37;;27574:4;27568;27564:15;27556:23;;27279:307;;;:::o;27592:308::-;27654:4;27744:18;27736:6;27733:30;27730:56;;;27766:18;;:::i;:::-;27730:56;27804:29;27826:6;27804:29;:::i;:::-;27796:37;;27888:4;27882;27878:15;27870:23;;27592:308;;;:::o;27906:132::-;27973:4;27996:3;27988:11;;28026:4;28021:3;28017:14;28009:22;;27906:132;;;:::o;28044:141::-;28093:4;28116:3;28108:11;;28139:3;28136:1;28129:14;28173:4;28170:1;28160:18;28152:26;;28044:141;;;:::o;28191:114::-;28258:6;28292:5;28286:12;28276:22;;28191:114;;;:::o;28311:98::-;28362:6;28396:5;28390:12;28380:22;;28311:98;;;:::o;28415:99::-;28467:6;28501:5;28495:12;28485:22;;28415:99;;;:::o;28520:113::-;28590:4;28622;28617:3;28613:14;28605:22;;28520:113;;;:::o;28639:184::-;28738:11;28772:6;28767:3;28760:19;28812:4;28807:3;28803:14;28788:29;;28639:184;;;;:::o;28829:168::-;28912:11;28946:6;28941:3;28934:19;28986:4;28981:3;28977:14;28962:29;;28829:168;;;;:::o;29003:147::-;29104:11;29141:3;29126:18;;29003:147;;;;:::o;29156:169::-;29240:11;29274:6;29269:3;29262:19;29314:4;29309:3;29305:14;29290:29;;29156:169;;;;:::o;29331:148::-;29433:11;29470:3;29455:18;;29331:148;;;;:::o;29485:305::-;29525:3;29544:20;29562:1;29544:20;:::i;:::-;29539:25;;29578:20;29596:1;29578:20;:::i;:::-;29573:25;;29732:1;29664:66;29660:74;29657:1;29654:81;29651:107;;;29738:18;;:::i;:::-;29651:107;29782:1;29779;29775:9;29768:16;;29485:305;;;;:::o;29796:185::-;29836:1;29853:20;29871:1;29853:20;:::i;:::-;29848:25;;29887:20;29905:1;29887:20;:::i;:::-;29882:25;;29926:1;29916:35;;29931:18;;:::i;:::-;29916:35;29973:1;29970;29966:9;29961:14;;29796:185;;;;:::o;29987:348::-;30027:7;30050:20;30068:1;30050:20;:::i;:::-;30045:25;;30084:20;30102:1;30084:20;:::i;:::-;30079:25;;30272:1;30204:66;30200:74;30197:1;30194:81;30189:1;30182:9;30175:17;30171:105;30168:131;;;30279:18;;:::i;:::-;30168:131;30327:1;30324;30320:9;30309:20;;29987:348;;;;:::o;30341:191::-;30381:4;30401:20;30419:1;30401:20;:::i;:::-;30396:25;;30435:20;30453:1;30435:20;:::i;:::-;30430:25;;30474:1;30471;30468:8;30465:34;;;30479:18;;:::i;:::-;30465:34;30524:1;30521;30517:9;30509:17;;30341:191;;;;:::o;30538:96::-;30575:7;30604:24;30622:5;30604:24;:::i;:::-;30593:35;;30538:96;;;:::o;30640:90::-;30674:7;30717:5;30710:13;30703:21;30692:32;;30640:90;;;:::o;30736:149::-;30772:7;30812:66;30805:5;30801:78;30790:89;;30736:149;;;:::o;30891:126::-;30928:7;30968:42;30961:5;30957:54;30946:65;;30891:126;;;:::o;31023:77::-;31060:7;31089:5;31078:16;;31023:77;;;:::o;31106:154::-;31190:6;31185:3;31180;31167:30;31252:1;31243:6;31238:3;31234:16;31227:27;31106:154;;;:::o;31266:307::-;31334:1;31344:113;31358:6;31355:1;31352:13;31344:113;;;31443:1;31438:3;31434:11;31428:18;31424:1;31419:3;31415:11;31408:39;31380:2;31377:1;31373:10;31368:15;;31344:113;;;31475:6;31472:1;31469:13;31466:101;;;31555:1;31546:6;31541:3;31537:16;31530:27;31466:101;31315:258;31266:307;;;:::o;31579:320::-;31623:6;31660:1;31654:4;31650:12;31640:22;;31707:1;31701:4;31697:12;31728:18;31718:81;;31784:4;31776:6;31772:17;31762:27;;31718:81;31846:2;31838:6;31835:14;31815:18;31812:38;31809:84;;;31865:18;;:::i;:::-;31809:84;31630:269;31579:320;;;:::o;31905:281::-;31988:27;32010:4;31988:27;:::i;:::-;31980:6;31976:40;32118:6;32106:10;32103:22;32082:18;32070:10;32067:34;32064:62;32061:88;;;32129:18;;:::i;:::-;32061:88;32169:10;32165:2;32158:22;31948:238;31905:281;;:::o;32192:233::-;32231:3;32254:24;32272:5;32254:24;:::i;:::-;32245:33;;32300:66;32293:5;32290:77;32287:103;;;32370:18;;:::i;:::-;32287:103;32417:1;32410:5;32406:13;32399:20;;32192:233;;;:::o;32431:176::-;32463:1;32480:20;32498:1;32480:20;:::i;:::-;32475:25;;32514:20;32532:1;32514:20;:::i;:::-;32509:25;;32553:1;32543:35;;32558:18;;:::i;:::-;32543:35;32599:1;32596;32592:9;32587:14;;32431:176;;;;:::o;32613:180::-;32661:77;32658:1;32651:88;32758:4;32755:1;32748:15;32782:4;32779:1;32772:15;32799:180;32847:77;32844:1;32837:88;32944:4;32941:1;32934:15;32968:4;32965:1;32958:15;32985:180;33033:77;33030:1;33023:88;33130:4;33127:1;33120:15;33154:4;33151:1;33144:15;33171:180;33219:77;33216:1;33209:88;33316:4;33313:1;33306:15;33340:4;33337:1;33330:15;33357:180;33405:77;33402:1;33395:88;33502:4;33499:1;33492:15;33526:4;33523:1;33516:15;33543:180;33591:77;33588:1;33581:88;33688:4;33685:1;33678:15;33712:4;33709:1;33702:15;33729:117;33838:1;33835;33828:12;33852:117;33961:1;33958;33951:12;33975:117;34084:1;34081;34074:12;34098:117;34207:1;34204;34197:12;34221:102;34262:6;34313:2;34309:7;34304:2;34297:5;34293:14;34289:28;34279:38;;34221:102;;;:::o;34329:230::-;34469:34;34465:1;34457:6;34453:14;34446:58;34538:13;34533:2;34525:6;34521:15;34514:38;34329:230;:::o;34565:237::-;34705:34;34701:1;34693:6;34689:14;34682:58;34774:20;34769:2;34761:6;34757:15;34750:45;34565:237;:::o;34808:225::-;34948:34;34944:1;34936:6;34932:14;34925:58;35017:8;35012:2;35004:6;35000:15;34993:33;34808:225;:::o;35039:224::-;35179:34;35175:1;35167:6;35163:14;35156:58;35248:7;35243:2;35235:6;35231:15;35224:32;35039:224;:::o;35269:178::-;35409:30;35405:1;35397:6;35393:14;35386:54;35269:178;:::o;35453:223::-;35593:34;35589:1;35581:6;35577:14;35570:58;35662:6;35657:2;35649:6;35645:15;35638:31;35453:223;:::o;35682:175::-;35822:27;35818:1;35810:6;35806:14;35799:51;35682:175;:::o;35863:228::-;36003:34;35999:1;35991:6;35987:14;35980:58;36072:11;36067:2;36059:6;36055:15;36048:36;35863:228;:::o;36097:249::-;36237:34;36233:1;36225:6;36221:14;36214:58;36306:32;36301:2;36293:6;36289:15;36282:57;36097:249;:::o;36352:182::-;36492:34;36488:1;36480:6;36476:14;36469:58;36352:182;:::o;36540:::-;36680:34;36676:1;36668:6;36664:14;36657:58;36540:182;:::o;36728:234::-;36868:34;36864:1;36856:6;36852:14;36845:58;36937:17;36932:2;36924:6;36920:15;36913:42;36728:234;:::o;36968:174::-;37108:26;37104:1;37096:6;37092:14;37085:50;36968:174;:::o;37148:220::-;37288:34;37284:1;37276:6;37272:14;37265:58;37357:3;37352:2;37344:6;37340:15;37333:28;37148:220;:::o;37374:114::-;;:::o;37494:231::-;37634:34;37630:1;37622:6;37618:14;37611:58;37703:14;37698:2;37690:6;37686:15;37679:39;37494:231;:::o;37731:233::-;37871:34;37867:1;37859:6;37855:14;37848:58;37940:16;37935:2;37927:6;37923:15;37916:41;37731:233;:::o;37970:122::-;38043:24;38061:5;38043:24;:::i;:::-;38036:5;38033:35;38023:63;;38082:1;38079;38072:12;38023:63;37970:122;:::o;38098:116::-;38168:21;38183:5;38168:21;:::i;:::-;38161:5;38158:32;38148:60;;38204:1;38201;38194:12;38148:60;38098:116;:::o;38220:120::-;38292:23;38309:5;38292:23;:::i;:::-;38285:5;38282:34;38272:62;;38330:1;38327;38320:12;38272:62;38220:120;:::o;38346:122::-;38419:24;38437:5;38419:24;:::i;:::-;38412:5;38409:35;38399:63;;38458:1;38455;38448:12;38399:63;38346:122;:::o

Swarm Source

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