ETH Price: $3,362.67 (-0.58%)
Gas: 10 Gwei

Token

Rich Fxxk (RF)
 

Overview

Max Total Supply

3,032 RF

Holders

1,468

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
caelus-z.eth
Balance
1 RF
0x81723e2da843453f9ba7568067fa04a1db3ef74d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mint yours on our website now! Join us on Discord for more info! 想加入的朋友請到官網上MINT,有問題可以到我們的Discord了解! 官網 Website: https://meta-tycoon.club | Discord: https://discord.com/invite/5DztJhufyT

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SmartContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Richfxxk.sol



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.069 ether;
  uint256 public maxSupply = 9999;
  uint256 public maxMintAmount = 20;
  uint256 public nftPerAddressLimit = 20;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  address[] public vipAddresses;
  uint256[] public vipMaxMinted;
  mapping(address => uint256) public addressMintedBalance;


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

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        if(isVIP(msg.sender))
        {
          uint256 vipMintAmount1 = vipMintAmount(msg.sender);
          uint256 ownerMintedCount = addressMintedBalance[msg.sender];
          require(ownerMintedCount + _mintAmount <=  vipMintAmount1, "max NFT per address exceeded");
        }
        else
        {
          require(msg.value >= cost * _mintAmount, "insufficient funds");
        }

    }
    

    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
    
  }
  
    function qtyLeftForVIP(address _user) public view returns(uint256){
         // uint256 supply = totalSupply();    
          uint256 ownerMintedCount = addressMintedBalance[_user];
          uint256 vipMintAmount1 = vipMintAmount(_user);
          uint256 allowed = (vipMintAmount1  - ownerMintedCount);
          return allowed;
  }
  
  function qtyLeftForUser(address _user) public view returns(uint256){
         // uint256 supply = totalSupply();    
          uint256 ownerMintedCount = addressMintedBalance[_user];
          uint256 allowed = (nftPerAddressLimit - ownerMintedCount);
          return allowed;
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    for (uint i = 0; i < vipAddresses.length; i++) {
      if (vipAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

    function isVIP(address _user) public view returns (bool) {
    for (uint i = 0; i < vipAddresses.length; i++) {
      if (vipAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function vipMintAmount(address _user) public view returns(uint256){
    for (uint i = 0; i < vipAddresses.length; i++) {
      if (vipAddresses[i] == _user) { 
          return vipMaxMinted[i];
      }
    }
    return 0;
  }
                 
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri; 
    }

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

  //only owner
  function reveal() public onlyOwner() {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
    nftPerAddressLimit = _limit;
  }
  
  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 setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
  
  function vipUsers(address[] calldata _users) public onlyOwner {
    delete vipAddresses;
    vipAddresses = _users;
  }
  
  function vipUsersMaxMint(uint256[] calldata _numberofmints) public onlyOwner {
    delete vipMaxMinted;
    vipMaxMinted = _numberofmints;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isVIP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"qtyLeftForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"qtyLeftForVIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","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":"uint256","name":"","type":"uint256"}],"name":"vipAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vipMaxMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"vipMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"vipUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_numberofmints","type":"uint256[]"}],"name":"vipUsersMaxMint","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":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200020a565b5066f5232269808000600e5561270f600f55601460108190556011556012805462ffffff1916620100001790553480156200006257600080fd5b506040516200336b3803806200336b833981016040819052620000859162000367565b8351849084906200009e9060009060208501906200020a565b508051620000b49060019060208401906200020a565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b5050505062000473565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001965760405162461bcd60e51b815260206004820181905260248201526000805160206200334b83398151915260448201526064015b60405180910390fd5b8051620001ab90600b9060208401906200020a565b5050565b600a546001600160a01b03163314620001fa5760405162461bcd60e51b815260206004820181905260248201526000805160206200334b83398151915260448201526064016200018d565b8051620001ab90600d9060208401905b828054620002189062000420565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600082601f830112620002c257600080fd5b81516001600160401b0380821115620002df57620002df6200045d565b604051601f8301601f19908116603f011681019082821181831017156200030a576200030a6200045d565b816040528381526020925086838588010111156200032757600080fd5b600091505b838210156200034b57858201830151818301840152908201906200032c565b838211156200035d5760008385830101525b9695505050505050565b600080600080608085870312156200037e57600080fd5b84516001600160401b03808211156200039657600080fd5b620003a488838901620002b0565b95506020870151915080821115620003bb57600080fd5b620003c988838901620002b0565b94506040870151915080821115620003e057600080fd5b620003ee88838901620002b0565b935060608701519150808211156200040557600080fd5b506200041487828801620002b0565b91505092959194509250565b600181811c908216806200043557607f821691505b602082108114156200045757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ec880620004836000396000f3fe60806040526004361061031a5760003560e01c80636352211e116101ab578063ba7d2c76116100f7578063e7a971d411610095578063eea8a0ed1161006f578063eea8a0ed1461091e578063f2c4ce1e1461093e578063f2fde38b1461095e578063f4201c3c1461097e57600080fd5b8063e7a971d414610895578063e985e9c5146108b5578063edec5f27146108fe57600080fd5b8063ce357e6d116100d1578063ce357e6d1461081f578063d0eb26b01461083f578063d5abeb011461085f578063da3ef23f1461087557600080fd5b8063ba7d2c76146107d4578063c6682862146107ea578063c87b56dd146107ff57600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb4651461075f578063a475b5dd1461077f578063b88d4fde14610794578063ba4e5c49146107b457600080fd5b806395d89b41146107175780639c70b5121461072c578063a0712d681461074c57600080fd5b80636352211e1461066f5780636c0360eb1461068f57806370a08231146106a4578063715018a6146106c45780637f00c7a6146106d95780638da5cb5b146106f957600080fd5b8063324ce95c1161026a57806344a0d68a1161022357806351830227116101fd57806351830227146105f657806355f804b3146106155780635c975abb146106355780636045051a1461064f57600080fd5b806344a0d68a1461059657806348d39698146105b65780634f6ccce7146105d657600080fd5b8063324ce95c146104e15780633af32abf146105015780633c952764146105215780633ccfd60b1461054157806342842e0e14610549578063438b63001461056957600080fd5b806313faede6116102d7578063239c70ae116102b1578063239c70ae1461046b57806323b872dd1461048157806329080d46146104a15780632f745c59146104c157600080fd5b806313faede61461040557806318160ddd1461042957806318cae2691461043e57600080fd5b806301ffc9a71461031f57806302329a291461035457806306fdde0314610376578063081812fc14610398578063081c8c44146103d0578063095ea7b3146103e5575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612a1e565b61099e565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612a03565b6109c9565b005b34801561038257600080fd5b5061038b610a0f565b60405161034b9190612c2b565b3480156103a457600080fd5b506103b86103b3366004612aa1565b610aa1565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b5061038b610b36565b3480156103f157600080fd5b50610374610400366004612997565b610bc4565b34801561041157600080fd5b5061041b600e5481565b60405190815260200161034b565b34801561043557600080fd5b5060085461041b565b34801561044a57600080fd5b5061041b610459366004612867565b60166020526000908152604090205481565b34801561047757600080fd5b5061041b60105481565b34801561048d57600080fd5b5061037461049c3660046128b5565b610cda565b3480156104ad57600080fd5b5061041b6104bc366004612aa1565b610d0b565b3480156104cd57600080fd5b5061041b6104dc366004612997565b610d2c565b3480156104ed57600080fd5b506103746104fc3660046129c1565b610dc2565b34801561050d57600080fd5b5061033f61051c366004612867565b610e04565b34801561052d57600080fd5b5061037461053c366004612a03565b610ecf565b610374610f15565b34801561055557600080fd5b506103746105643660046128b5565b610f97565b34801561057557600080fd5b50610589610584366004612867565b610fb2565b60405161034b9190612be7565b3480156105a257600080fd5b506103746105b1366004612aa1565b611054565b3480156105c257600080fd5b5061041b6105d1366004612867565b611083565b3480156105e257600080fd5b5061041b6105f1366004612aa1565b6110b4565b34801561060257600080fd5b5060125461033f90610100900460ff1681565b34801561062157600080fd5b50610374610630366004612a58565b611147565b34801561064157600080fd5b5060125461033f9060ff1681565b34801561065b57600080fd5b506103b861066a366004612aa1565b611188565b34801561067b57600080fd5b506103b861068a366004612aa1565b6111b2565b34801561069b57600080fd5b5061038b611229565b3480156106b057600080fd5b5061041b6106bf366004612867565b611236565b3480156106d057600080fd5b506103746112bd565b3480156106e557600080fd5b506103746106f4366004612aa1565b6112f3565b34801561070557600080fd5b50600a546001600160a01b03166103b8565b34801561072357600080fd5b5061038b611322565b34801561073857600080fd5b5060125461033f9062010000900460ff1681565b61037461075a366004612aa1565b611331565b34801561076b57600080fd5b5061037461077a36600461296d565b6116a4565b34801561078b57600080fd5b50610374611769565b3480156107a057600080fd5b506103746107af3660046128f1565b6117a4565b3480156107c057600080fd5b506103b86107cf366004612aa1565b6117dc565b3480156107e057600080fd5b5061041b60115481565b3480156107f657600080fd5b5061038b6117ec565b34801561080b57600080fd5b5061038b61081a366004612aa1565b6117f9565b34801561082b57600080fd5b5061041b61083a366004612867565b611978565b34801561084b57600080fd5b5061037461085a366004612aa1565b6119f6565b34801561086b57600080fd5b5061041b600f5481565b34801561088157600080fd5b50610374610890366004612a58565b611a25565b3480156108a157600080fd5b5061041b6108b0366004612867565b611a62565b3480156108c157600080fd5b5061033f6108d0366004612882565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561090a57600080fd5b506103746109193660046129c1565b611a9c565b34801561092a57600080fd5b506103746109393660046129c1565b611ade565b34801561094a57600080fd5b50610374610959366004612a58565b611b20565b34801561096a57600080fd5b50610374610979366004612867565b611b5d565b34801561098a57600080fd5b5061033f610999366004612867565b611bf5565b60006001600160e01b0319821663780e9d6360e01b14806109c357506109c382611c56565b92915050565b600a546001600160a01b031633146109fc5760405162461bcd60e51b81526004016109f390612c90565b60405180910390fd5b6012805460ff1916911515919091179055565b606060008054610a1e90612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4a90612da4565b8015610a975780601f10610a6c57610100808354040283529160200191610a97565b820191906000526020600020905b815481529060010190602001808311610a7a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b1a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f3565b506000908152600460205260409020546001600160a01b031690565b600d8054610b4390612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6f90612da4565b8015610bbc5780601f10610b9157610100808354040283529160200191610bbc565b820191906000526020600020905b815481529060010190602001808311610b9f57829003601f168201915b505050505081565b6000610bcf826111b2565b9050806001600160a01b0316836001600160a01b03161415610c3d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109f3565b336001600160a01b0382161480610c595750610c5981336108d0565b610ccb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f3565b610cd58383611ca6565b505050565b610ce43382611d14565b610d005760405162461bcd60e51b81526004016109f390612cc5565b610cd5838383611e07565b60158181548110610d1b57600080fd5b600091825260209091200154905081565b6000610d3783611236565b8210610d995760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109f3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dec5760405162461bcd60e51b81526004016109f390612c90565b610df860156000612634565b610cd560158383612652565b6000805b601354811015610e6557826001600160a01b031660138281548110610e2f57610e2f612e50565b6000918252602090912001546001600160a01b03161415610e535750600192915050565b80610e5d81612ddf565b915050610e08565b5060005b601454811015610ec657826001600160a01b031660148281548110610e9057610e90612e50565b6000918252602090912001546001600160a01b03161415610eb45750600192915050565b80610ebe81612ddf565b915050610e69565b50600092915050565b600a546001600160a01b03163314610ef95760405162461bcd60e51b81526004016109f390612c90565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610f3f5760405162461bcd60e51b81526004016109f390612c90565b604051600090339047908381818185875af1925050503d8060008114610f81576040519150601f19603f3d011682016040523d82523d6000602084013e610f86565b606091505b5050905080610f9457600080fd5b50565b610cd5838383604051806020016040528060008152506117a4565b60606000610fbf83611236565b905060008167ffffffffffffffff811115610fdc57610fdc612e66565b604051908082528060200260200182016040528015611005578160200160208202803683370190505b50905060005b8281101561104c5761101d8582610d2c565b82828151811061102f5761102f612e50565b60209081029190910101528061104481612ddf565b91505061100b565b509392505050565b600a546001600160a01b0316331461107e5760405162461bcd60e51b81526004016109f390612c90565b600e55565b6001600160a01b03811660009081526016602052604081205460115482906110ac908390612d61565b949350505050565b60006110bf60085490565b82106111225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109f3565b6008828154811061113557611135612e50565b90600052602060002001549050919050565b600a546001600160a01b031633146111715760405162461bcd60e51b81526004016109f390612c90565b805161118490600b90602084019061269d565b5050565b6014818154811061119857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b0316806109c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109f3565b600b8054610b4390612da4565b60006001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109f3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112e75760405162461bcd60e51b81526004016109f390612c90565b6112f16000611fb2565b565b600a546001600160a01b0316331461131d5760405162461bcd60e51b81526004016109f390612c90565b601055565b606060018054610a1e90612da4565b60125460ff161561137d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109f3565b600061138860085490565b9050600082116113da5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109f3565b6010548211156114385760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109f3565b600f546114458383612d16565b111561148c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109f3565b600a546001600160a01b031633146116545760125462010000900460ff16151560011415611576576114bd33610e04565b6115095760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109f3565b336000908152601660205260409020546011546115268483612d16565b11156115745760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f3565b505b61157f33611bf5565b1561160257600061158f33611978565b33600090815260166020526040902054909150816115ad8583612d16565b11156115fb5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f3565b5050611654565b81600e546116109190612d42565b3410156116545760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109f3565b60015b828111610cd55733600090815260166020526040812080549161167983612ddf565b9091555061169290503361168d8385612d16565b612004565b8061169c81612ddf565b915050611657565b6001600160a01b0382163314156116fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117935760405162461bcd60e51b81526004016109f390612c90565b6012805461ff001916610100179055565b6117ae3383611d14565b6117ca5760405162461bcd60e51b81526004016109f390612cc5565b6117d68484848461201e565b50505050565b6013818154811061119857600080fd5b600c8054610b4390612da4565b6000818152600260205260409020546060906001600160a01b03166118785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f3565b601254610100900460ff1661191957600d805461189490612da4565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090612da4565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050919050565b6000611923612051565b905060008151116119435760405180602001604052806000815250611971565b8061194d84612060565b600c60405160200161196193929190612ae6565b6040516020818303038152906040525b9392505050565b6000805b601454811015610ec657826001600160a01b0316601482815481106119a3576119a3612e50565b6000918252602090912001546001600160a01b031614156119e457601581815481106119d1576119d1612e50565b9060005260206000200154915050919050565b806119ee81612ddf565b91505061197c565b600a546001600160a01b03163314611a205760405162461bcd60e51b81526004016109f390612c90565b601155565b600a546001600160a01b03163314611a4f5760405162461bcd60e51b81526004016109f390612c90565b805161118490600c90602084019061269d565b6001600160a01b03811660009081526016602052604081205481611a8584611978565b90506000611a938383612d61565b95945050505050565b600a546001600160a01b03163314611ac65760405162461bcd60e51b81526004016109f390612c90565b611ad260136000612634565b610cd560138383612711565b600a546001600160a01b03163314611b085760405162461bcd60e51b81526004016109f390612c90565b611b1460146000612634565b610cd560148383612711565b600a546001600160a01b03163314611b4a5760405162461bcd60e51b81526004016109f390612c90565b805161118490600d90602084019061269d565b600a546001600160a01b03163314611b875760405162461bcd60e51b81526004016109f390612c90565b6001600160a01b038116611bec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f3565b610f9481611fb2565b6000805b601454811015610ec657826001600160a01b031660148281548110611c2057611c20612e50565b6000918252602090912001546001600160a01b03161415611c445750600192915050565b80611c4e81612ddf565b915050611bf9565b60006001600160e01b031982166380ac58cd60e01b1480611c8757506001600160e01b03198216635b5e139f60e01b145b806109c357506301ffc9a760e01b6001600160e01b03198316146109c3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cdb826111b2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f3565b6000611d98836111b2565b9050806001600160a01b0316846001600160a01b03161480611dd35750836001600160a01b0316611dc884610aa1565b6001600160a01b0316145b806110ac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166110ac565b826001600160a01b0316611e1a826111b2565b6001600160a01b031614611e825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109f3565b6001600160a01b038216611ee45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109f3565b611eef83838361215e565b611efa600082611ca6565b6001600160a01b0383166000908152600360205260408120805460019290611f23908490612d61565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f51908490612d16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611184828260405180602001604052806000815250612216565b612029848484611e07565b61203584848484612249565b6117d65760405162461bcd60e51b81526004016109f390612c3e565b6060600b8054610a1e90612da4565b6060816120845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120ae578061209881612ddf565b91506120a79050600a83612d2e565b9150612088565b60008167ffffffffffffffff8111156120c9576120c9612e66565b6040519080825280601f01601f1916602001820160405280156120f3576020820181803683370190505b5090505b84156110ac57612108600183612d61565b9150612115600a86612dfa565b612120906030612d16565b60f81b81838151811061213557612135612e50565b60200101906001600160f81b031916908160001a905350612157600a86612d2e565b94506120f7565b6001600160a01b0383166121b9576121b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121dc565b816001600160a01b0316836001600160a01b0316146121dc576121dc8382612356565b6001600160a01b0382166121f357610cd5816123f3565b826001600160a01b0316826001600160a01b031614610cd557610cd582826124a2565b61222083836124e6565b61222d6000848484612249565b610cd55760405162461bcd60e51b81526004016109f390612c3e565b60006001600160a01b0384163b1561234b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061228d903390899088908890600401612baa565b602060405180830381600087803b1580156122a757600080fd5b505af19250505080156122d7575060408051601f3d908101601f191682019092526122d491810190612a3b565b60015b612331573d808015612305576040519150601f19603f3d011682016040523d82523d6000602084013e61230a565b606091505b5080516123295760405162461bcd60e51b81526004016109f390612c3e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110ac565b506001949350505050565b6000600161236384611236565b61236d9190612d61565b6000838152600760205260409020549091508082146123c0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061240590600190612d61565b6000838152600960205260408120546008805493945090928490811061242d5761242d612e50565b90600052602060002001549050806008838154811061244e5761244e612e50565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061248657612486612e3a565b6001900381819060005260206000200160009055905550505050565b60006124ad83611236565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661253c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f3565b6000818152600260205260409020546001600160a01b0316156125a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f3565b6125ad6000838361215e565b6001600160a01b03821660009081526003602052604081208054600192906125d6908490612d16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610f949190612764565b82805482825590600052602060002090810192821561268d579160200282015b8281111561268d578235825591602001919060010190612672565b50612699929150612764565b5090565b8280546126a990612da4565b90600052602060002090601f0160209004810192826126cb576000855561268d565b82601f106126e457805160ff191683800117855561268d565b8280016001018555821561268d579182015b8281111561268d5782518255916020019190600101906126f6565b82805482825590600052602060002090810192821561268d579160200282015b8281111561268d5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612731565b5b808211156126995760008155600101612765565b600067ffffffffffffffff8084111561279457612794612e66565b604051601f8501601f19908116603f011681019082821181831017156127bc576127bc612e66565b816040528093508581528686860111156127d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461280657600080fd5b919050565b60008083601f84011261281d57600080fd5b50813567ffffffffffffffff81111561283557600080fd5b6020830191508360208260051b850101111561285057600080fd5b9250929050565b8035801515811461280657600080fd5b60006020828403121561287957600080fd5b611971826127ef565b6000806040838503121561289557600080fd5b61289e836127ef565b91506128ac602084016127ef565b90509250929050565b6000806000606084860312156128ca57600080fd5b6128d3846127ef565b92506128e1602085016127ef565b9150604084013590509250925092565b6000806000806080858703121561290757600080fd5b612910856127ef565b935061291e602086016127ef565b925060408501359150606085013567ffffffffffffffff81111561294157600080fd5b8501601f8101871361295257600080fd5b61296187823560208401612779565b91505092959194509250565b6000806040838503121561298057600080fd5b612989836127ef565b91506128ac60208401612857565b600080604083850312156129aa57600080fd5b6129b3836127ef565b946020939093013593505050565b600080602083850312156129d457600080fd5b823567ffffffffffffffff8111156129eb57600080fd5b6129f78582860161280b565b90969095509350505050565b600060208284031215612a1557600080fd5b61197182612857565b600060208284031215612a3057600080fd5b813561197181612e7c565b600060208284031215612a4d57600080fd5b815161197181612e7c565b600060208284031215612a6a57600080fd5b813567ffffffffffffffff811115612a8157600080fd5b8201601f81018413612a9257600080fd5b6110ac84823560208401612779565b600060208284031215612ab357600080fd5b5035919050565b60008151808452612ad2816020860160208601612d78565b601f01601f19169290920160200192915050565b600084516020612af98285838a01612d78565b855191840191612b0c8184848a01612d78565b8554920191600090600181811c9080831680612b2957607f831692505b858310811415612b4757634e487b7160e01b85526022600452602485fd5b808015612b5b5760018114612b6c57612b99565b60ff19851688528388019550612b99565b60008b81526020902060005b85811015612b915781548a820152908401908801612b78565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bdd90830184612aba565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c1f57835183529284019291840191600101612c03565b50909695505050505050565b6020815260006119716020830184612aba565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d2957612d29612e0e565b500190565b600082612d3d57612d3d612e24565b500490565b6000816000190483118215151615612d5c57612d5c612e0e565b500290565b600082821015612d7357612d73612e0e565b500390565b60005b83811015612d93578181015183820152602001612d7b565b838111156117d65750506000910152565b600181811c90821680612db857607f821691505b60208210811415612dd957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612df357612df3612e0e565b5060010190565b600082612e0957612e09612e24565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f9457600080fdfea264697066735822122023ec024b234425fecd08e90c96e67f25dcf547fe8fda618452692987c255d83464736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000952696368204678786b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000252460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6571334a6d624e6532443339416d3268463650683843705551547156697336567554576a48664b4859475a392f000000000000000000000000000000000000000000000000000000000000000000000000000000000022687474703a2f2f6f68386469676974616c2e636f2e7a612f31303030302e6a736f6e000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031a5760003560e01c80636352211e116101ab578063ba7d2c76116100f7578063e7a971d411610095578063eea8a0ed1161006f578063eea8a0ed1461091e578063f2c4ce1e1461093e578063f2fde38b1461095e578063f4201c3c1461097e57600080fd5b8063e7a971d414610895578063e985e9c5146108b5578063edec5f27146108fe57600080fd5b8063ce357e6d116100d1578063ce357e6d1461081f578063d0eb26b01461083f578063d5abeb011461085f578063da3ef23f1461087557600080fd5b8063ba7d2c76146107d4578063c6682862146107ea578063c87b56dd146107ff57600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb4651461075f578063a475b5dd1461077f578063b88d4fde14610794578063ba4e5c49146107b457600080fd5b806395d89b41146107175780639c70b5121461072c578063a0712d681461074c57600080fd5b80636352211e1461066f5780636c0360eb1461068f57806370a08231146106a4578063715018a6146106c45780637f00c7a6146106d95780638da5cb5b146106f957600080fd5b8063324ce95c1161026a57806344a0d68a1161022357806351830227116101fd57806351830227146105f657806355f804b3146106155780635c975abb146106355780636045051a1461064f57600080fd5b806344a0d68a1461059657806348d39698146105b65780634f6ccce7146105d657600080fd5b8063324ce95c146104e15780633af32abf146105015780633c952764146105215780633ccfd60b1461054157806342842e0e14610549578063438b63001461056957600080fd5b806313faede6116102d7578063239c70ae116102b1578063239c70ae1461046b57806323b872dd1461048157806329080d46146104a15780632f745c59146104c157600080fd5b806313faede61461040557806318160ddd1461042957806318cae2691461043e57600080fd5b806301ffc9a71461031f57806302329a291461035457806306fdde0314610376578063081812fc14610398578063081c8c44146103d0578063095ea7b3146103e5575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612a1e565b61099e565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612a03565b6109c9565b005b34801561038257600080fd5b5061038b610a0f565b60405161034b9190612c2b565b3480156103a457600080fd5b506103b86103b3366004612aa1565b610aa1565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b5061038b610b36565b3480156103f157600080fd5b50610374610400366004612997565b610bc4565b34801561041157600080fd5b5061041b600e5481565b60405190815260200161034b565b34801561043557600080fd5b5060085461041b565b34801561044a57600080fd5b5061041b610459366004612867565b60166020526000908152604090205481565b34801561047757600080fd5b5061041b60105481565b34801561048d57600080fd5b5061037461049c3660046128b5565b610cda565b3480156104ad57600080fd5b5061041b6104bc366004612aa1565b610d0b565b3480156104cd57600080fd5b5061041b6104dc366004612997565b610d2c565b3480156104ed57600080fd5b506103746104fc3660046129c1565b610dc2565b34801561050d57600080fd5b5061033f61051c366004612867565b610e04565b34801561052d57600080fd5b5061037461053c366004612a03565b610ecf565b610374610f15565b34801561055557600080fd5b506103746105643660046128b5565b610f97565b34801561057557600080fd5b50610589610584366004612867565b610fb2565b60405161034b9190612be7565b3480156105a257600080fd5b506103746105b1366004612aa1565b611054565b3480156105c257600080fd5b5061041b6105d1366004612867565b611083565b3480156105e257600080fd5b5061041b6105f1366004612aa1565b6110b4565b34801561060257600080fd5b5060125461033f90610100900460ff1681565b34801561062157600080fd5b50610374610630366004612a58565b611147565b34801561064157600080fd5b5060125461033f9060ff1681565b34801561065b57600080fd5b506103b861066a366004612aa1565b611188565b34801561067b57600080fd5b506103b861068a366004612aa1565b6111b2565b34801561069b57600080fd5b5061038b611229565b3480156106b057600080fd5b5061041b6106bf366004612867565b611236565b3480156106d057600080fd5b506103746112bd565b3480156106e557600080fd5b506103746106f4366004612aa1565b6112f3565b34801561070557600080fd5b50600a546001600160a01b03166103b8565b34801561072357600080fd5b5061038b611322565b34801561073857600080fd5b5060125461033f9062010000900460ff1681565b61037461075a366004612aa1565b611331565b34801561076b57600080fd5b5061037461077a36600461296d565b6116a4565b34801561078b57600080fd5b50610374611769565b3480156107a057600080fd5b506103746107af3660046128f1565b6117a4565b3480156107c057600080fd5b506103b86107cf366004612aa1565b6117dc565b3480156107e057600080fd5b5061041b60115481565b3480156107f657600080fd5b5061038b6117ec565b34801561080b57600080fd5b5061038b61081a366004612aa1565b6117f9565b34801561082b57600080fd5b5061041b61083a366004612867565b611978565b34801561084b57600080fd5b5061037461085a366004612aa1565b6119f6565b34801561086b57600080fd5b5061041b600f5481565b34801561088157600080fd5b50610374610890366004612a58565b611a25565b3480156108a157600080fd5b5061041b6108b0366004612867565b611a62565b3480156108c157600080fd5b5061033f6108d0366004612882565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561090a57600080fd5b506103746109193660046129c1565b611a9c565b34801561092a57600080fd5b506103746109393660046129c1565b611ade565b34801561094a57600080fd5b50610374610959366004612a58565b611b20565b34801561096a57600080fd5b50610374610979366004612867565b611b5d565b34801561098a57600080fd5b5061033f610999366004612867565b611bf5565b60006001600160e01b0319821663780e9d6360e01b14806109c357506109c382611c56565b92915050565b600a546001600160a01b031633146109fc5760405162461bcd60e51b81526004016109f390612c90565b60405180910390fd5b6012805460ff1916911515919091179055565b606060008054610a1e90612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4a90612da4565b8015610a975780601f10610a6c57610100808354040283529160200191610a97565b820191906000526020600020905b815481529060010190602001808311610a7a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b1a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f3565b506000908152600460205260409020546001600160a01b031690565b600d8054610b4390612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6f90612da4565b8015610bbc5780601f10610b9157610100808354040283529160200191610bbc565b820191906000526020600020905b815481529060010190602001808311610b9f57829003601f168201915b505050505081565b6000610bcf826111b2565b9050806001600160a01b0316836001600160a01b03161415610c3d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109f3565b336001600160a01b0382161480610c595750610c5981336108d0565b610ccb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f3565b610cd58383611ca6565b505050565b610ce43382611d14565b610d005760405162461bcd60e51b81526004016109f390612cc5565b610cd5838383611e07565b60158181548110610d1b57600080fd5b600091825260209091200154905081565b6000610d3783611236565b8210610d995760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109f3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dec5760405162461bcd60e51b81526004016109f390612c90565b610df860156000612634565b610cd560158383612652565b6000805b601354811015610e6557826001600160a01b031660138281548110610e2f57610e2f612e50565b6000918252602090912001546001600160a01b03161415610e535750600192915050565b80610e5d81612ddf565b915050610e08565b5060005b601454811015610ec657826001600160a01b031660148281548110610e9057610e90612e50565b6000918252602090912001546001600160a01b03161415610eb45750600192915050565b80610ebe81612ddf565b915050610e69565b50600092915050565b600a546001600160a01b03163314610ef95760405162461bcd60e51b81526004016109f390612c90565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610f3f5760405162461bcd60e51b81526004016109f390612c90565b604051600090339047908381818185875af1925050503d8060008114610f81576040519150601f19603f3d011682016040523d82523d6000602084013e610f86565b606091505b5050905080610f9457600080fd5b50565b610cd5838383604051806020016040528060008152506117a4565b60606000610fbf83611236565b905060008167ffffffffffffffff811115610fdc57610fdc612e66565b604051908082528060200260200182016040528015611005578160200160208202803683370190505b50905060005b8281101561104c5761101d8582610d2c565b82828151811061102f5761102f612e50565b60209081029190910101528061104481612ddf565b91505061100b565b509392505050565b600a546001600160a01b0316331461107e5760405162461bcd60e51b81526004016109f390612c90565b600e55565b6001600160a01b03811660009081526016602052604081205460115482906110ac908390612d61565b949350505050565b60006110bf60085490565b82106111225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109f3565b6008828154811061113557611135612e50565b90600052602060002001549050919050565b600a546001600160a01b031633146111715760405162461bcd60e51b81526004016109f390612c90565b805161118490600b90602084019061269d565b5050565b6014818154811061119857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260408120546001600160a01b0316806109c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109f3565b600b8054610b4390612da4565b60006001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109f3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112e75760405162461bcd60e51b81526004016109f390612c90565b6112f16000611fb2565b565b600a546001600160a01b0316331461131d5760405162461bcd60e51b81526004016109f390612c90565b601055565b606060018054610a1e90612da4565b60125460ff161561137d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109f3565b600061138860085490565b9050600082116113da5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016109f3565b6010548211156114385760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016109f3565b600f546114458383612d16565b111561148c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016109f3565b600a546001600160a01b031633146116545760125462010000900460ff16151560011415611576576114bd33610e04565b6115095760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109f3565b336000908152601660205260409020546011546115268483612d16565b11156115745760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f3565b505b61157f33611bf5565b1561160257600061158f33611978565b33600090815260166020526040902054909150816115ad8583612d16565b11156115fb5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f3565b5050611654565b81600e546116109190612d42565b3410156116545760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109f3565b60015b828111610cd55733600090815260166020526040812080549161167983612ddf565b9091555061169290503361168d8385612d16565b612004565b8061169c81612ddf565b915050611657565b6001600160a01b0382163314156116fd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117935760405162461bcd60e51b81526004016109f390612c90565b6012805461ff001916610100179055565b6117ae3383611d14565b6117ca5760405162461bcd60e51b81526004016109f390612cc5565b6117d68484848461201e565b50505050565b6013818154811061119857600080fd5b600c8054610b4390612da4565b6000818152600260205260409020546060906001600160a01b03166118785760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f3565b601254610100900460ff1661191957600d805461189490612da4565b80601f01602080910402602001604051908101604052809291908181526020018280546118c090612da4565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b50505050509050919050565b6000611923612051565b905060008151116119435760405180602001604052806000815250611971565b8061194d84612060565b600c60405160200161196193929190612ae6565b6040516020818303038152906040525b9392505050565b6000805b601454811015610ec657826001600160a01b0316601482815481106119a3576119a3612e50565b6000918252602090912001546001600160a01b031614156119e457601581815481106119d1576119d1612e50565b9060005260206000200154915050919050565b806119ee81612ddf565b91505061197c565b600a546001600160a01b03163314611a205760405162461bcd60e51b81526004016109f390612c90565b601155565b600a546001600160a01b03163314611a4f5760405162461bcd60e51b81526004016109f390612c90565b805161118490600c90602084019061269d565b6001600160a01b03811660009081526016602052604081205481611a8584611978565b90506000611a938383612d61565b95945050505050565b600a546001600160a01b03163314611ac65760405162461bcd60e51b81526004016109f390612c90565b611ad260136000612634565b610cd560138383612711565b600a546001600160a01b03163314611b085760405162461bcd60e51b81526004016109f390612c90565b611b1460146000612634565b610cd560148383612711565b600a546001600160a01b03163314611b4a5760405162461bcd60e51b81526004016109f390612c90565b805161118490600d90602084019061269d565b600a546001600160a01b03163314611b875760405162461bcd60e51b81526004016109f390612c90565b6001600160a01b038116611bec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f3565b610f9481611fb2565b6000805b601454811015610ec657826001600160a01b031660148281548110611c2057611c20612e50565b6000918252602090912001546001600160a01b03161415611c445750600192915050565b80611c4e81612ddf565b915050611bf9565b60006001600160e01b031982166380ac58cd60e01b1480611c8757506001600160e01b03198216635b5e139f60e01b145b806109c357506301ffc9a760e01b6001600160e01b03198316146109c3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cdb826111b2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f3565b6000611d98836111b2565b9050806001600160a01b0316846001600160a01b03161480611dd35750836001600160a01b0316611dc884610aa1565b6001600160a01b0316145b806110ac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166110ac565b826001600160a01b0316611e1a826111b2565b6001600160a01b031614611e825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109f3565b6001600160a01b038216611ee45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109f3565b611eef83838361215e565b611efa600082611ca6565b6001600160a01b0383166000908152600360205260408120805460019290611f23908490612d61565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f51908490612d16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611184828260405180602001604052806000815250612216565b612029848484611e07565b61203584848484612249565b6117d65760405162461bcd60e51b81526004016109f390612c3e565b6060600b8054610a1e90612da4565b6060816120845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120ae578061209881612ddf565b91506120a79050600a83612d2e565b9150612088565b60008167ffffffffffffffff8111156120c9576120c9612e66565b6040519080825280601f01601f1916602001820160405280156120f3576020820181803683370190505b5090505b84156110ac57612108600183612d61565b9150612115600a86612dfa565b612120906030612d16565b60f81b81838151811061213557612135612e50565b60200101906001600160f81b031916908160001a905350612157600a86612d2e565b94506120f7565b6001600160a01b0383166121b9576121b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121dc565b816001600160a01b0316836001600160a01b0316146121dc576121dc8382612356565b6001600160a01b0382166121f357610cd5816123f3565b826001600160a01b0316826001600160a01b031614610cd557610cd582826124a2565b61222083836124e6565b61222d6000848484612249565b610cd55760405162461bcd60e51b81526004016109f390612c3e565b60006001600160a01b0384163b1561234b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061228d903390899088908890600401612baa565b602060405180830381600087803b1580156122a757600080fd5b505af19250505080156122d7575060408051601f3d908101601f191682019092526122d491810190612a3b565b60015b612331573d808015612305576040519150601f19603f3d011682016040523d82523d6000602084013e61230a565b606091505b5080516123295760405162461bcd60e51b81526004016109f390612c3e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110ac565b506001949350505050565b6000600161236384611236565b61236d9190612d61565b6000838152600760205260409020549091508082146123c0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061240590600190612d61565b6000838152600960205260408120546008805493945090928490811061242d5761242d612e50565b90600052602060002001549050806008838154811061244e5761244e612e50565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061248657612486612e3a565b6001900381819060005260206000200160009055905550505050565b60006124ad83611236565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661253c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f3565b6000818152600260205260409020546001600160a01b0316156125a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f3565b6125ad6000838361215e565b6001600160a01b03821660009081526003602052604081208054600192906125d6908490612d16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610f949190612764565b82805482825590600052602060002090810192821561268d579160200282015b8281111561268d578235825591602001919060010190612672565b50612699929150612764565b5090565b8280546126a990612da4565b90600052602060002090601f0160209004810192826126cb576000855561268d565b82601f106126e457805160ff191683800117855561268d565b8280016001018555821561268d579182015b8281111561268d5782518255916020019190600101906126f6565b82805482825590600052602060002090810192821561268d579160200282015b8281111561268d5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612731565b5b808211156126995760008155600101612765565b600067ffffffffffffffff8084111561279457612794612e66565b604051601f8501601f19908116603f011681019082821181831017156127bc576127bc612e66565b816040528093508581528686860111156127d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461280657600080fd5b919050565b60008083601f84011261281d57600080fd5b50813567ffffffffffffffff81111561283557600080fd5b6020830191508360208260051b850101111561285057600080fd5b9250929050565b8035801515811461280657600080fd5b60006020828403121561287957600080fd5b611971826127ef565b6000806040838503121561289557600080fd5b61289e836127ef565b91506128ac602084016127ef565b90509250929050565b6000806000606084860312156128ca57600080fd5b6128d3846127ef565b92506128e1602085016127ef565b9150604084013590509250925092565b6000806000806080858703121561290757600080fd5b612910856127ef565b935061291e602086016127ef565b925060408501359150606085013567ffffffffffffffff81111561294157600080fd5b8501601f8101871361295257600080fd5b61296187823560208401612779565b91505092959194509250565b6000806040838503121561298057600080fd5b612989836127ef565b91506128ac60208401612857565b600080604083850312156129aa57600080fd5b6129b3836127ef565b946020939093013593505050565b600080602083850312156129d457600080fd5b823567ffffffffffffffff8111156129eb57600080fd5b6129f78582860161280b565b90969095509350505050565b600060208284031215612a1557600080fd5b61197182612857565b600060208284031215612a3057600080fd5b813561197181612e7c565b600060208284031215612a4d57600080fd5b815161197181612e7c565b600060208284031215612a6a57600080fd5b813567ffffffffffffffff811115612a8157600080fd5b8201601f81018413612a9257600080fd5b6110ac84823560208401612779565b600060208284031215612ab357600080fd5b5035919050565b60008151808452612ad2816020860160208601612d78565b601f01601f19169290920160200192915050565b600084516020612af98285838a01612d78565b855191840191612b0c8184848a01612d78565b8554920191600090600181811c9080831680612b2957607f831692505b858310811415612b4757634e487b7160e01b85526022600452602485fd5b808015612b5b5760018114612b6c57612b99565b60ff19851688528388019550612b99565b60008b81526020902060005b85811015612b915781548a820152908401908801612b78565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bdd90830184612aba565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c1f57835183529284019291840191600101612c03565b50909695505050505050565b6020815260006119716020830184612aba565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d2957612d29612e0e565b500190565b600082612d3d57612d3d612e24565b500490565b6000816000190483118215151615612d5c57612d5c612e0e565b500290565b600082821015612d7357612d73612e0e565b500390565b60005b83811015612d93578181015183820152602001612d7b565b838111156117d65750506000910152565b600181811c90821680612db857607f821691505b60208210811415612dd957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612df357612df3612e0e565b5060010190565b600082612e0957612e09612e24565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f9457600080fdfea264697066735822122023ec024b234425fecd08e90c96e67f25dcf547fe8fda618452692987c255d83464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000952696368204678786b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000252460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6571334a6d624e6532443339416d3268463650683843705551547156697336567554576a48664b4859475a392f000000000000000000000000000000000000000000000000000000000000000000000000000000000022687474703a2f2f6f68386469676974616c2e636f2e7a612f31303030302e6a736f6e000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Rich Fxxk
Arg [1] : _symbol (string): RF
Arg [2] : _initBaseURI (string): ipfs://Qmeq3JmbNe2D39Am2hF6Ph8CpUQTqVis6VuTWjHfKHYGZ9/
Arg [3] : _initNotRevealedUri (string): http://oh8digital.co.za/10000.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 52696368204678786b0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5246000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d6571334a6d624e6532443339416d326846365068384370
Arg [10] : 5551547156697336567554576a48664b4859475a392f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [12] : 687474703a2f2f6f68386469676974616c2e636f2e7a612f31303030302e6a73
Arg [13] : 6f6e000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43193:6211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36967:224;;;;;;;;;;-1:-1:-1;36967:224:0;;;;;:::i;:::-;;:::i;:::-;;;9063:14:1;;9056:22;9038:41;;9026:2;9011:18;36967:224:0;;;;;;;;48625:73;;;;;;;;;;-1:-1:-1;48625:73:0;;;;;:::i;:::-;;:::i;:::-;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26418:221::-;;;;;;;;;;-1:-1:-1;26418:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7724:32:1;;;7706:51;;7694:2;7679:18;26418:221:0;7560:203:1;43350:28:0;;;;;;;;;;;;;:::i;25941:411::-;;;;;;;;;;-1:-1:-1;25941:411:0;;;;;:::i;:::-;;:::i;43383:33::-;;;;;;;;;;;;;;;;;;;19186:25:1;;;19174:2;19159:18;43383:33:0;19040:177:1;37607:113:0;;;;;;;;;;-1:-1:-1;37695:10:0;:17;37607:113;;43751:55;;;;;;;;;;-1:-1:-1;43751:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43457:33;;;;;;;;;;;;;;;;27308:339;;;;;;;;;;-1:-1:-1;27308:339:0;;;;;:::i;:::-;;:::i;43717:29::-;;;;;;;;;;-1:-1:-1;43717:29:0;;;;;:::i;:::-;;:::i;37275:256::-;;;;;;;;;;-1:-1:-1;37275:256:0;;;;;:::i;:::-;;:::i;49091:145::-;;;;;;;;;;-1:-1:-1;49091:145:0;;;;;:::i;:::-;;:::i;46134:372::-;;;;;;;;;;-1:-1:-1;46134:372:0;;;;;:::i;:::-;;:::i;48706:95::-;;;;;;;;;;-1:-1:-1;48706:95:0;;;;;:::i;:::-;;:::i;49243:158::-;;;:::i;27718:185::-;;;;;;;;;;-1:-1:-1;27718:185:0;;;;;:::i;:::-;;:::i;46990:348::-;;;;;;;;;;-1:-1:-1;46990:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48053:82::-;;;;;;;;;;-1:-1:-1;48053:82:0;;;;;:::i;:::-;;:::i;45840:286::-;;;;;;;;;;-1:-1:-1;45840:286:0;;;;;:::i;:::-;;:::i;37797:233::-;;;;;;;;;;-1:-1:-1;37797:233:0;;;;;:::i;:::-;;:::i;43569:28::-;;;;;;;;;;-1:-1:-1;43569:28:0;;;;;;;;;;;48265:98;;;;;;;;;;-1:-1:-1;48265:98:0;;;;;:::i;:::-;;:::i;43538:26::-;;;;;;;;;;-1:-1:-1;43538:26:0;;;;;;;;43683:29;;;;;;;;;;-1:-1:-1;43683:29:0;;;;;:::i;:::-;;:::i;24553:239::-;;;;;;;;;;-1:-1:-1;24553:239:0;;;;;:::i;:::-;;:::i;43282:21::-;;;;;;;;;;;;;:::i;24283:208::-;;;;;;;;;;-1:-1:-1;24283:208:0;;;;;:::i;:::-;;:::i;4558:94::-;;;;;;;;;;;;;:::i;48141:118::-;;;;;;;;;;-1:-1:-1;48141:118:0;;;;;:::i;:::-;;:::i;3907:87::-;;;;;;;;;;-1:-1:-1;3980:6:0;;-1:-1:-1;;;;;3980:6:0;3907:87;;25028:104;;;;;;;;;;;;;:::i;43602:34::-;;;;;;;;;;-1:-1:-1;43602:34:0;;;;;;;;;;;44206:1276;;;;;;:::i;:::-;;:::i;26711:295::-;;;;;;;;;;-1:-1:-1;26711:295:0;;;;;:::i;:::-;;:::i;47864:67::-;;;;;;;;;;;;;:::i;27974:328::-;;;;;;;;;;-1:-1:-1;27974:328:0;;;;;:::i;:::-;;:::i;43641:37::-;;;;;;;;;;-1:-1:-1;43641:37:0;;;;;:::i;:::-;;:::i;43495:38::-;;;;;;;;;;;;;;;;43308:37;;;;;;;;;;;;;:::i;47344:498::-;;;;;;;;;;-1:-1:-1;47344:498:0;;;;;:::i;:::-;;:::i;46735:232::-;;;;;;;;;;-1:-1:-1;46735:232:0;;;;;:::i;:::-;;:::i;47939:106::-;;;;;;;;;;-1:-1:-1;47939:106:0;;;;;:::i;:::-;;:::i;43421:31::-;;;;;;;;;;;;;;;;48369:122;;;;;;;;;;-1:-1:-1;48369:122:0;;;;;:::i;:::-;;:::i;45492:340::-;;;;;;;;;;-1:-1:-1;45492:340:0;;;;;:::i;:::-;;:::i;27077:164::-;;;;;;;;;;-1:-1:-1;27077:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27077:164;48809:144;;;;;;;;;;-1:-1:-1;48809:144:0;;;;;:::i;:::-;;:::i;48961:122::-;;;;;;;;;;-1:-1:-1;48961:122:0;;;;;:::i;:::-;;:::i;48499:120::-;;;;;;;;;;-1:-1:-1;48499:120:0;;;;;:::i;:::-;;:::i;4807:192::-;;;;;;;;;;-1:-1:-1;4807:192:0;;;;;:::i;:::-;;:::i;46514:215::-;;;;;;;;;;-1:-1:-1;46514:215:0;;;;;:::i;:::-;;:::i;36967:224::-;37069:4;-1:-1:-1;;;;;;37093:50:0;;-1:-1:-1;;;37093:50:0;;:90;;;37147:36;37171:11;37147:23;:36::i;:::-;37086:97;36967:224;-1:-1:-1;;36967:224:0:o;48625:73::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;;;;;;;;;48677:6:::1;:15:::0;;-1:-1:-1;;48677:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48625:73::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;26514:73;;;;-1:-1:-1;;;26514:73:0;;15003:2:1;26514:73:0;;;14985:21:1;15042:2;15022:18;;;15015:30;15081:34;15061:18;;;15054:62;-1:-1:-1;;;15132:18:1;;;15125:42;15184:19;;26514:73:0;14801:408:1;26514:73:0;-1:-1:-1;26607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26607:24:0;;26418:221::o;43350:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;-1:-1:-1;;;;;26080:11:0;:2;-1:-1:-1;;;;;26080:11:0;;;26072:57;;;;-1:-1:-1;;;26072:57:0;;16954:2:1;26072:57:0;;;16936:21:1;16993:2;16973:18;;;16966:30;17032:34;17012:18;;;17005:62;-1:-1:-1;;;17083:18:1;;;17076:31;17124:19;;26072:57:0;16752:397:1;26072:57:0;2775:10;-1:-1:-1;;;;;26164:21:0;;;;:62;;-1:-1:-1;26189:37:0;26206:5;2775:10;27077:164;:::i;26189:37::-;26142:168;;;;-1:-1:-1;;;26142:168:0;;12640:2:1;26142:168:0;;;12622:21:1;12679:2;12659:18;;;12652:30;12718:34;12698:18;;;12691:62;12789:26;12769:18;;;12762:54;12833:19;;26142:168:0;12438:420:1;26142:168:0;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;27308:339::-;27503:41;2775:10;27536:7;27503:18;:41::i;:::-;27495:103;;;;-1:-1:-1;;;27495:103:0;;;;;;;:::i;:::-;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;43717:29::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43717:29:0;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;-1:-1:-1;;;37392:87:0;;9516:2:1;37392:87:0;;;9498:21:1;9555:2;9535:18;;;9528:30;9594:34;9574:18;;;9567:62;-1:-1:-1;;;9645:18:1;;;9638:41;9696:19;;37392:87:0;9314:407:1;37392:87:0;-1:-1:-1;;;;;;37497:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37275:256::o;49091:145::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;49175:19:::1;49182:12;;49175:19;:::i;:::-;49201:29;:12;49216:14:::0;;49201:29:::1;:::i;46134:372::-:0;46193:4;;46206:143;46227:20;:27;46223:31;;46206:143;;;46301:5;-1:-1:-1;;;;;46274:32:0;:20;46295:1;46274:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46274:23:0;:32;46270:72;;;-1:-1:-1;46328:4:0;;46134:372;-1:-1:-1;;46134:372:0:o;46270:72::-;46256:3;;;;:::i;:::-;;;;46206:143;;;;46360:6;46355:127;46376:12;:19;46372:23;;46355:127;;;46434:5;-1:-1:-1;;;;;46415:24:0;:12;46428:1;46415:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46415:15:0;:24;46411:64;;;-1:-1:-1;46461:4:0;;46134:372;-1:-1:-1;;46134:372:0:o;46411:64::-;46397:3;;;;:::i;:::-;;;;46355:127;;;-1:-1:-1;46495:5:0;;46134:372;-1:-1:-1;;46134:372:0:o;48706:95::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48771:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48771:24:0;;::::1;::::0;;;::::1;::::0;;48706:95::o;49243:158::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;49314:58:::1;::::0;49296:12:::1;::::0;49322:10:::1;::::0;49346:21:::1;::::0;49296:12;49314:58;49296:12;49314:58;49346:21;49322:10;49314:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49295:77;;;49387:7;49379:16;;;::::0;::::1;;49288:113;49243:158::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;46990:348::-;47065:16;47093:23;47119:17;47129:6;47119:9;:17::i;:::-;47093:43;;47143:25;47185:15;47171:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47171:30:0;;47143:58;;47213:9;47208:103;47228:15;47224:1;:19;47208:103;;;47273:30;47293:6;47301:1;47273:19;:30::i;:::-;47259:8;47268:1;47259:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47245:3;;;;:::i;:::-;;;;47208:103;;;-1:-1:-1;47324:8:0;46990:348;-1:-1:-1;;;46990:348:0:o;48053:82::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48114:4:::1;:15:::0;48053:82::o;45840:286::-;-1:-1:-1;;;;;45996:27:0;;45899:7;45996:27;;;:20;:27;;;;;;46055:18;;45899:7;;46055:37;;45996:27;;46055:37;:::i;:::-;46036:57;45840:286;-1:-1:-1;;;;45840:286:0:o;37797:233::-;37872:7;37908:30;37695:10;:17;;37607:113;37908:30;37900:5;:38;37892:95;;;;-1:-1:-1;;;37892:95:0;;18121:2:1;37892:95:0;;;18103:21:1;18160:2;18140:18;;;18133:30;18199:34;18179:18;;;18172:62;-1:-1:-1;;;18250:18:1;;;18243:42;18302:19;;37892:95:0;17919:408:1;37892:95:0;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;37998:24;;37797:233;;;:::o;48265:98::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48336:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48265:98:::0;:::o;43683:29::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43683:29:0;;-1:-1:-1;43683:29:0;:::o;24553:239::-;24625:7;24661:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24661:16:0;24696:19;24688:73;;;;-1:-1:-1;;;24688:73:0;;13476:2:1;24688:73:0;;;13458:21:1;13515:2;13495:18;;;13488:30;13554:34;13534:18;;;13527:62;-1:-1:-1;;;13605:18:1;;;13598:39;13654:19;;24688:73:0;13274:405:1;43282:21:0;;;;;;;:::i;24283:208::-;24355:7;-1:-1:-1;;;;;24383:19:0;;24375:74;;;;-1:-1:-1;;;24375:74:0;;13065:2:1;24375:74:0;;;13047:21:1;13104:2;13084:18;;;13077:30;13143:34;13123:18;;;13116:62;-1:-1:-1;;;13194:18:1;;;13187:40;13244:19;;24375:74:0;12863:406:1;24375:74:0;-1:-1:-1;;;;;;24467:16:0;;;;;:9;:16;;;;;;;24283:208::o;4558:94::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;48141:118::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48220:13:::1;:33:::0;48141:118::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;44206:1276::-;44272:6;;;;44271:7;44263:42;;;;-1:-1:-1;;;44263:42:0;;15777:2:1;44263:42:0;;;15759:21:1;15816:2;15796:18;;;15789:30;-1:-1:-1;;;15835:18:1;;;15828:52;15897:18;;44263:42:0;15575:346:1;44263:42:0;44312:14;44329:13;37695:10;:17;;37607:113;44329:13;44312:30;;44371:1;44357:11;:15;44349:55;;;;-1:-1:-1;;;44349:55:0;;18886:2:1;44349:55:0;;;18868:21:1;18925:2;18905:18;;;18898:30;18964:29;18944:18;;;18937:57;19011:18;;44349:55:0;18684:351:1;44349:55:0;44434:13;;44419:11;:28;;44411:77;;;;-1:-1:-1;;;44411:77:0;;14237:2:1;44411:77:0;;;14219:21:1;14276:2;14256:18;;;14249:30;14315:34;14295:18;;;14288:62;-1:-1:-1;;;14366:18:1;;;14359:34;14410:19;;44411:77:0;14035:400:1;44411:77:0;44527:9;;44503:20;44512:11;44503:6;:20;:::i;:::-;:33;;44495:68;;;;-1:-1:-1;;;44495:68:0;;13886:2:1;44495:68:0;;;13868:21:1;13925:2;13905:18;;;13898:30;-1:-1:-1;;;13944:18:1;;;13937:52;14006:18;;44495:68:0;13684:346:1;44495:68:0;3980:6;;-1:-1:-1;;;;;3980:6:0;44576:10;:21;44572:747;;44613:15;;;;;;;:23;;44632:4;44613:23;44610:298;;;44661:25;44675:10;44661:13;:25::i;:::-;44653:61;;;;-1:-1:-1;;;44653:61:0;;18534:2:1;44653:61:0;;;18516:21:1;18573:2;18553:18;;;18546:30;18612:25;18592:18;;;18585:53;18655:18;;44653:61:0;18332:347:1;44653:61:0;44777:10;44729:24;44756:32;;;:20;:32;;;;;;44845:18;;44811:30;44830:11;44756:32;44811:30;:::i;:::-;:52;;44803:93;;;;-1:-1:-1;;;44803:93:0;;11111:2:1;44803:93:0;;;11093:21:1;11150:2;11130:18;;;11123:30;11189;11169:18;;;11162:58;11237:18;;44803:93:0;10909:352:1;44803:93:0;44638:270;44610:298;44921:17;44927:10;44921:5;:17::i;:::-;44918:392;;;44962:22;44987:25;45001:10;44987:13;:25::i;:::-;45073:10;45025:24;45052:32;;;:20;:32;;;;;;44962:50;;-1:-1:-1;44962:50:0;45105:30;45124:11;45052:32;45105:30;:::i;:::-;:49;;45097:90;;;;-1:-1:-1;;;45097:90:0;;11111:2:1;45097:90:0;;;11093:21:1;11150:2;11130:18;;;11123:30;11189;11169:18;;;11162:58;11237:18;;45097:90:0;10909:352:1;45097:90:0;44949:250;;44918:392;;;45264:11;45257:4;;:18;;;;:::i;:::-;45244:9;:31;;45236:62;;;;-1:-1:-1;;;45236:62:0;;17356:2:1;45236:62:0;;;17338:21:1;17395:2;17375:18;;;17368:30;-1:-1:-1;;;17414:18:1;;;17407:48;17472:18;;45236:62:0;17154:342:1;45236:62:0;45350:1;45333:138;45358:11;45353:1;:16;45333:138;;45408:10;45387:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45430:33:0;;-1:-1:-1;45440:10:0;45452;45461:1;45452:6;:10;:::i;:::-;45430:9;:33::i;:::-;45371:3;;;;:::i;:::-;;;;45333:138;;26711:295;-1:-1:-1;;;;;26814:24:0;;2775:10;26814:24;;26806:62;;;;-1:-1:-1;;;26806:62:0;;11873:2:1;26806:62:0;;;11855:21:1;11912:2;11892:18;;;11885:30;11951:27;11931:18;;;11924:55;11996:18;;26806:62:0;11671:349:1;26806:62:0;2775:10;26881:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26881:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26881:53:0;;;;;;;;;;26950:48;;9038:41:1;;;26881:42:0;;2775:10;26950:48;;9011:18:1;26950:48:0;;;;;;;26711:295;;:::o;47864:67::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47910:8:::1;:15:::0;;-1:-1:-1;;47910:15:0::1;;;::::0;;47864:67::o;27974:328::-;28149:41;2775:10;28182:7;28149:18;:41::i;:::-;28141:103;;;;-1:-1:-1;;;28141:103:0;;;;;;;:::i;:::-;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;43641:37::-;;;;;;;;;;;;43308;;;;;;;:::i;47344:498::-;29877:4;29901:16;;;:7;:16;;;;;;47442:13;;-1:-1:-1;;;;;29901:16:0;47467:97;;;;-1:-1:-1;;;47467:97:0;;16538:2:1;47467:97:0;;;16520:21:1;16577:2;16557:18;;;16550:30;16616:34;16596:18;;;16589:62;-1:-1:-1;;;16667:18:1;;;16660:45;16722:19;;47467:97:0;16336:411:1;47467:97:0;47580:8;;;;;;;47577:63;;47617:14;47610:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47344:498;;;:::o;47577:63::-;47648:28;47679:10;:8;:10::i;:::-;47648:41;;47734:1;47709:14;47703:28;:32;:133;;;;;;;;;;;;;;;;;47771:14;47787:18;:7;:16;:18::i;:::-;47807:13;47754:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47703:133;47696:140;47344:498;-1:-1:-1;;;47344:498:0:o;46735:232::-;46793:7;;46808:139;46829:12;:19;46825:23;;46808:139;;;46887:5;-1:-1:-1;;;;;46868:24:0;:12;46881:1;46868:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46868:15:0;:24;46864:76;;;46915:12;46928:1;46915:15;;;;;;;;:::i;:::-;;;;;;;;;46908:22;;;46735:232;;;:::o;46864:76::-;46850:3;;;;:::i;:::-;;;;46808:139;;47939:106;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48012:18:::1;:27:::0;47939:106::o;48369:122::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48452:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;45492:340::-:0;-1:-1:-1;;;;;45647:27:0;;45550:7;45647:27;;;:20;:27;;;;;;45550:7;45712:20;45668:5;45712:13;:20::i;:::-;45687:45;-1:-1:-1;45745:15:0;45764:34;45782:16;45687:45;45764:34;:::i;:::-;45745:54;45492:340;-1:-1:-1;;;;;45492:340:0:o;48809:144::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48884:27:::1;48891:20;;48884:27;:::i;:::-;48918:29;:20;48941:6:::0;;48918:29:::1;:::i;48961:122::-:0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;49030:19:::1;49037:12;;49030:19;:::i;:::-;49056:21;:12;49071:6:::0;;49056:21:::1;:::i;48499:120::-:0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48581:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4807:192::-:0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;10347:2:1;4888:73:0::1;::::0;::::1;10329:21:1::0;10386:2;10366:18;;;10359:30;10425:34;10405:18;;;10398:62;-1:-1:-1;;;10476:18:1;;;10469:36;10522:19;;4888:73:0::1;10145:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;46514:215::-:0;46565:4;;46578:127;46599:12;:19;46595:23;;46578:127;;;46657:5;-1:-1:-1;;;;;46638:24:0;:12;46651:1;46638:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46638:15:0;:24;46634:64;;;-1:-1:-1;46684:4:0;;46514:215;-1:-1:-1;;46514:215:0:o;46634:64::-;46620:3;;;;:::i;:::-;;;;46578:127;;23914:305;24016:4;-1:-1:-1;;;;;;24053:40:0;;-1:-1:-1;;;24053:40:0;;:105;;-1:-1:-1;;;;;;;24110:48:0;;-1:-1:-1;;;24110:48:0;24053:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;24175:36;15893:157;33794:174;33869:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33869:29:0;-1:-1:-1;;;;;33869:29:0;;;;;;;;:24;;33923:23;33869:24;33923:14;:23::i;:::-;-1:-1:-1;;;;;33914:46:0;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;30216:73;;;;-1:-1:-1;;;30216:73:0;;12227:2:1;30216:73:0;;;12209:21:1;12266:2;12246:18;;;12239:30;12305:34;12285:18;;;12278:62;-1:-1:-1;;;12356:18:1;;;12349:42;12408:19;;30216:73:0;12025:408:1;30216:73:0;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;-1:-1:-1;;;;;30358:16:0;:7;-1:-1:-1;;;;;30358:16:0;;:51;;;;30402:7;-1:-1:-1;;;;;30378:31:0;:20;30390:7;30378:11;:20::i;:::-;-1:-1:-1;;;;;30378:31:0;;30358:51;:87;;;-1:-1:-1;;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30413:32;27077:164;33098:578;33257:4;-1:-1:-1;;;;;33230:31:0;:23;33245:7;33230:14;:23::i;:::-;-1:-1:-1;;;;;33230:31:0;;33222:85;;;;-1:-1:-1;;;33222:85:0;;16128:2:1;33222:85:0;;;16110:21:1;16167:2;16147:18;;;16140:30;16206:34;16186:18;;;16179:62;-1:-1:-1;;;16257:18:1;;;16250:39;16306:19;;33222:85:0;15926:405:1;33222:85:0;-1:-1:-1;;;;;33326:16:0;;33318:65;;;;-1:-1:-1;;;33318:65:0;;11468:2:1;33318:65:0;;;11450:21:1;11507:2;11487:18;;;11480:30;11546:34;11526:18;;;11519:62;-1:-1:-1;;;11597:18:1;;;11590:34;11641:19;;33318:65:0;11266:400:1;33318:65:0;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;-1:-1:-1;;;;;33542:15:0;;;;;;:9;:15;;;;;:20;;33561:1;;33542:15;:20;;33561:1;;33542:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33573:13:0;;;;;;:9;:13;;;;;:18;;33590:1;;33573:13;:18;;33590:1;;33573:18;:::i;:::-;;;;-1:-1:-1;;33602:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33602:21:0;-1:-1:-1;;;;;33602:21:0;;;;;;;;;33641:27;;33602:16;;33641:27;;;;;;;33098:578;;;:::o;5007:173::-;5082:6;;;-1:-1:-1;;;;;5099:17:0;;;-1:-1:-1;;;;;;5099:17:0;;;;;;;5132:40;;5082:6;;;5099:17;5082:6;;5132:40;;5063:16;;5132:40;5052:128;5007:173;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;-1:-1:-1;;;29380:111:0;;;;;;;:::i;44085:102::-;44145:13;44174:7;44167:14;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;38643:589;-1:-1:-1;;;;;38849:18:0;;38845:187;;38884:40;38916:7;40059:10;:17;;40032:24;;;;:15;:24;;;;;:44;;;40087:24;;;;;;;;;;;;39955:164;38884:40;38845:187;;;38954:2;-1:-1:-1;;;;;38946:10:0;:4;-1:-1:-1;;;;;38946:10:0;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;-1:-1:-1;;;;;39046:16:0;;39042:183;;39079:45;39116:7;39079:36;:45::i;39042:183::-;39152:4;-1:-1:-1;;;;;39146:10:0;:2;-1:-1:-1;;;;;39146:10:0;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;-1:-1:-1;;;31292:154:0;;;;;;;:::i;34533:799::-;34688:4;-1:-1:-1;;;;;34709:13:0;;6276:20;6324:8;34705:620;;34745:72;;-1:-1:-1;;;34745:72:0;;-1:-1:-1;;;;;34745:36:0;;;;;:72;;2775:10;;34796:4;;34802:7;;34811:5;;34745:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34745:72:0;;;;;;;;-1:-1:-1;;34745:72:0;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34987:13:0;;34983:272;;35030:60;;-1:-1:-1;;;35030:60:0;;;;;;;:::i;34983:272::-;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;-1:-1:-1;;;;;;34868:51:0;-1:-1:-1;;;34868:51:0;;-1:-1:-1;34861:58:0;;34705:620;-1:-1:-1;35309:4:0;34533:799;;;;;;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41074:18;41095:26;;;:17;:26;;;;;;41012:51;;-1:-1:-1;41228:28:0;;;41224:328;;-1:-1:-1;;;;;41295:18:0;;41273:19;41295:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41346:30;;;;;;:44;;;41463:30;;:17;:30;;;;;:43;;;41224:328;-1:-1:-1;41648:26:0;;;;:17;:26;;;;;;;;41641:33;;;-1:-1:-1;;;;;41692:18:0;;;;;:12;:18;;;;;:34;;;;;;;41685:41;40746:988::o;42029:1079::-;42307:10;:17;42282:22;;42307:21;;42327:1;;42307:21;:::i;:::-;42339:18;42360:24;;;:15;:24;;;;;;42733:10;:26;;42282:46;;-1:-1:-1;42360:24:0;;42282:46;;42733:26;;;;;;:::i;:::-;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42877:28;;;:15;:28;;;;;;;:41;;;43049:24;;;;;43042:31;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;-1:-1:-1;;;;;39666:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39711:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39533:221:0:o;31790:382::-;-1:-1:-1;;;;;31870:16:0;;31862:61;;;;-1:-1:-1;;;31862:61:0;;14642:2:1;31862:61:0;;;14624:21:1;;;14661:18;;;14654:30;14720:34;14700:18;;;14693:62;14772:18;;31862:61:0;14440:356:1;31862:61:0;29877:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;:30;31934:58;;;;-1:-1:-1;;;31934:58:0;;10754:2:1;31934:58:0;;;10736:21:1;10793:2;10773:18;;;10766:30;10832;10812:18;;;10805:58;10880:18;;31934:58:0;10552:352:1;31934:58:0;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;-1:-1:-1;;;;;32063:13:0;;;;;;:9;:13;;;;;:18;;32080:1;;32063:13;:18;;32080:1;;32063:18;:::i;:::-;;;;-1:-1:-1;;32092:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32092:21:0;-1:-1:-1;;;;;32092:21:0;;;;;;;;32131:33;;32092:16;;;32131:33;;32092:16;;32131:33;31790:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;2581:18;2573:6;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:437::-;3429:6;3437;3490:2;3478:9;3469:7;3465:23;3461:32;3458:52;;;3506:1;3503;3496:12;3458:52;3546:9;3533:23;3579:18;3571:6;3568:30;3565:50;;;3611:1;3608;3601:12;3565:50;3650:70;3712:7;3703:6;3692:9;3688:22;3650:70;:::i;:::-;3739:8;;3624:96;;-1:-1:-1;3343:437:1;-1:-1:-1;;;;3343:437:1:o;4227:180::-;4283:6;4336:2;4324:9;4315:7;4311:23;4307:32;4304:52;;;4352:1;4349;4342:12;4304:52;4375:26;4391:9;4375:26;:::i;4412:245::-;4470:6;4523:2;4511:9;4502:7;4498:23;4494:32;4491:52;;;4539:1;4536;4529:12;4491:52;4578:9;4565:23;4597:30;4621:5;4597:30;:::i;4662:249::-;4731:6;4784:2;4772:9;4763:7;4759:23;4755:32;4752:52;;;4800:1;4797;4790:12;4752:52;4832:9;4826:16;4851:30;4875:5;4851:30;:::i;4916:450::-;4985:6;5038:2;5026:9;5017:7;5013:23;5009:32;5006:52;;;5054:1;5051;5044:12;5006:52;5094:9;5081:23;5127:18;5119:6;5116:30;5113:50;;;5159:1;5156;5149:12;5113:50;5182:22;;5235:4;5227:13;;5223:27;-1:-1:-1;5213:55:1;;5264:1;5261;5254:12;5213:55;5287:73;5352:7;5347:2;5334:16;5329:2;5325;5321:11;5287:73;:::i;5371:180::-;5430:6;5483:2;5471:9;5462:7;5458:23;5454:32;5451:52;;;5499:1;5496;5489:12;5451:52;-1:-1:-1;5522:23:1;;5371:180;-1:-1:-1;5371:180:1:o;5556:257::-;5597:3;5635:5;5629:12;5662:6;5657:3;5650:19;5678:63;5734:6;5727:4;5722:3;5718:14;5711:4;5704:5;5700:16;5678:63;:::i;:::-;5795:2;5774:15;-1:-1:-1;;5770:29:1;5761:39;;;;5802:4;5757:50;;5556:257;-1:-1:-1;;5556:257:1:o;5818:1527::-;6042:3;6080:6;6074:13;6106:4;6119:51;6163:6;6158:3;6153:2;6145:6;6141:15;6119:51;:::i;:::-;6233:13;;6192:16;;;;6255:55;6233:13;6192:16;6277:15;;;6255:55;:::i;:::-;6399:13;;6332:20;;;6372:1;;6459;6481:18;;;;6534;;;;6561:93;;6639:4;6629:8;6625:19;6613:31;;6561:93;6702:2;6692:8;6689:16;6669:18;6666:40;6663:167;;;-1:-1:-1;;;6729:33:1;;6785:4;6782:1;6775:15;6815:4;6736:3;6803:17;6663:167;6846:18;6873:110;;;;6997:1;6992:328;;;;6839:481;;6873:110;-1:-1:-1;;6908:24:1;;6894:39;;6953:20;;;;-1:-1:-1;6873:110:1;;6992:328;19295:1;19288:14;;;19332:4;19319:18;;7087:1;7101:169;7115:8;7112:1;7109:15;7101:169;;;7197:14;;7182:13;;;7175:37;7240:16;;;;7132:10;;7101:169;;;7105:3;;7301:8;7294:5;7290:20;7283:27;;6839:481;-1:-1:-1;7336:3:1;;5818:1527;-1:-1:-1;;;;;;;;;;;5818:1527:1:o;7768:488::-;-1:-1:-1;;;;;8037:15:1;;;8019:34;;8089:15;;8084:2;8069:18;;8062:43;8136:2;8121:18;;8114:34;;;8184:3;8179:2;8164:18;;8157:31;;;7962:4;;8205:45;;8230:19;;8222:6;8205:45;:::i;:::-;8197:53;7768:488;-1:-1:-1;;;;;;7768:488:1:o;8261:632::-;8432:2;8484:21;;;8554:13;;8457:18;;;8576:22;;;8403:4;;8432:2;8655:15;;;;8629:2;8614:18;;;8403:4;8698:169;8712:6;8709:1;8706:13;8698:169;;;8773:13;;8761:26;;8842:15;;;;8807:12;;;;8734:1;8727:9;8698:169;;;-1:-1:-1;8884:3:1;;8261:632;-1:-1:-1;;;;;;8261:632:1:o;9090:219::-;9239:2;9228:9;9221:21;9202:4;9259:44;9299:2;9288:9;9284:18;9276:6;9259:44;:::i;9726:414::-;9928:2;9910:21;;;9967:2;9947:18;;;9940:30;10006:34;10001:2;9986:18;;9979:62;-1:-1:-1;;;10072:2:1;10057:18;;10050:48;10130:3;10115:19;;9726:414::o;15214:356::-;15416:2;15398:21;;;15435:18;;;15428:30;15494:34;15489:2;15474:18;;15467:62;15561:2;15546:18;;15214:356::o;17501:413::-;17703:2;17685:21;;;17742:2;17722:18;;;17715:30;17781:34;17776:2;17761:18;;17754:62;-1:-1:-1;;;17847:2:1;17832:18;;17825:47;17904:3;17889:19;;17501:413::o;19348:128::-;19388:3;19419:1;19415:6;19412:1;19409:13;19406:39;;;19425:18;;:::i;:::-;-1:-1:-1;19461:9:1;;19348:128::o;19481:120::-;19521:1;19547;19537:35;;19552:18;;:::i;:::-;-1:-1:-1;19586:9:1;;19481:120::o;19606:168::-;19646:7;19712:1;19708;19704:6;19700:14;19697:1;19694:21;19689:1;19682:9;19675:17;19671:45;19668:71;;;19719:18;;:::i;:::-;-1:-1:-1;19759:9:1;;19606:168::o;19779:125::-;19819:4;19847:1;19844;19841:8;19838:34;;;19852:18;;:::i;:::-;-1:-1:-1;19889:9:1;;19779:125::o;19909:258::-;19981:1;19991:113;20005:6;20002:1;19999:13;19991:113;;;20081:11;;;20075:18;20062:11;;;20055:39;20027:2;20020:10;19991:113;;;20122:6;20119:1;20116:13;20113:48;;;-1:-1:-1;;20157:1:1;20139:16;;20132:27;19909:258::o;20172:380::-;20251:1;20247:12;;;;20294;;;20315:61;;20369:4;20361:6;20357:17;20347:27;;20315:61;20422:2;20414:6;20411:14;20391:18;20388:38;20385:161;;;20468:10;20463:3;20459:20;20456:1;20449:31;20503:4;20500:1;20493:15;20531:4;20528:1;20521:15;20385:161;;20172:380;;;:::o;20557:135::-;20596:3;-1:-1:-1;;20617:17:1;;20614:43;;;20637:18;;:::i;:::-;-1:-1:-1;20684:1:1;20673:13;;20557:135::o;20697:112::-;20729:1;20755;20745:35;;20760:18;;:::i;:::-;-1:-1:-1;20794:9:1;;20697:112::o;20814:127::-;20875:10;20870:3;20866:20;20863:1;20856:31;20906:4;20903:1;20896:15;20930:4;20927:1;20920:15;20946:127;21007:10;21002:3;20998:20;20995:1;20988:31;21038:4;21035:1;21028:15;21062:4;21059:1;21052:15;21078:127;21139:10;21134:3;21130:20;21127:1;21120:31;21170:4;21167:1;21160:15;21194:4;21191:1;21184:15;21210:127;21271:10;21266:3;21262:20;21259:1;21252:31;21302:4;21299:1;21292:15;21326:4;21323:1;21316:15;21342:127;21403:10;21398:3;21394:20;21391:1;21384:31;21434:4;21431:1;21424:15;21458:4;21455:1;21448:15;21474:131;-1:-1:-1;;;;;;21548:32:1;;21538:43;;21528:71;;21595:1;21592;21585:12

Swarm Source

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