ETH Price: $2,956.42 (-5.26%)
Gas: 8 Gwei

Token

RichApeGang (RAG)
 

Overview

Max Total Supply

708 RAG

Holders

385

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RAG
0xbc06cd2d92eadc78ecbcd79bde122df85aec500b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RichHapeGang

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

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



pragma solidity >=0.7.0 <0.9.0;

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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost =  0.089 ether;
  uint256 public maxSupply = 1500;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 3;
  bool public paused = false;
  bool public revealed = true;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;
  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");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  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 withdraw() public payable onlyOwner {
    
  
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
   
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"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":"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":[],"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":"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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000220565b5067013c310749028000600e556105dc600f55600560105560036011556012805462ff00001961ffff19909116610100171690553480156200006957600080fd5b506040516200315c3803806200315c8339810160408190526200008c9162000371565b835184908490620000a590600090602085019062000220565b508051620000bb90600190602084019062000220565b505050620000d8620000d2620000f860201b60201c565b620000fc565b620000e3826200014e565b620000ee81620001b6565b50505050620004ad565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000158620000f8565b6001600160a01b03166200016b62000211565b6001600160a01b0316146200019d5760405162461bcd60e51b8152600401620001949062000425565b60405180910390fd5b8051620001b290600b90602084019062000220565b5050565b620001c0620000f8565b6001600160a01b0316620001d362000211565b6001600160a01b031614620001fc5760405162461bcd60e51b8152600401620001949062000425565b8051620001b290600d90602084019062000220565b600a546001600160a01b031690565b8280546200022e906200045a565b90600052602060002090601f0160209004810192826200025257600085556200029d565b82601f106200026d57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029d57825182559160200191906001019062000280565b50620002ab929150620002af565b5090565b5b80821115620002ab5760008155600101620002b0565b600082601f830112620002d7578081fd5b81516001600160401b0380821115620002f457620002f462000497565b6040516020601f8401601f19168201810183811183821017156200031c576200031c62000497565b604052838252858401810187101562000333578485fd5b8492505b8383101562000356578583018101518284018201529182019162000337565b838311156200036757848185840101525b5095945050505050565b6000806000806080858703121562000387578384fd5b84516001600160401b03808211156200039e578586fd5b620003ac88838901620002c6565b95506020870151915080821115620003c2578485fd5b620003d088838901620002c6565b94506040870151915080821115620003e6578384fd5b620003f488838901620002c6565b935060608701519150808211156200040a578283fd5b506200041987828801620002c6565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200046f57607f821691505b602082108114156200049157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c9f80620004bd6000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb01146106d9578063da3ef23f146106ee578063e985e9c51461070e578063edec5f271461072e578063f2c4ce1e1461074e578063f2fde38b1461076e57610272565b8063b88d4fde1461062f578063ba4e5c491461064f578063ba7d2c761461066f578063c668286214610684578063c87b56dd14610699578063d0eb26b0146106b957610272565b80638da5cb5b116101135780638da5cb5b146105a857806395d89b41146105bd5780639c70b512146105d2578063a0712d68146105e7578063a22cb465146105fa578063a475b5dd1461061a57610272565b80636352211e1461051e5780636c0360eb1461053e57806370a0823114610553578063715018a6146105735780637f00c7a61461058857610272565b80632f745c59116101e8578063438b6300116101ac578063438b63001461046757806344a0d68a146104945780634f6ccce7146104b457806351830227146104d457806355f804b3146104e95780635c975abb1461050957610272565b80632f745c59146103df5780633af32abf146103ff5780633c9527641461041f5780633ccfd60b1461043f57806342842e0e1461044757610272565b8063095ea7b31161023a578063095ea7b31461033357806313faede61461035357806318160ddd1461037557806318cae2691461038a578063239c70ae146103aa57806323b872dd146103bf57610272565b806301ffc9a71461027757806302329a29146102ad57806306fdde03146102cf578063081812fc146102f1578063081c8c441461031e575b600080fd5b34801561028357600080fd5b50610297610292366004612258565b61078e565b6040516102a49190612474565b60405180910390f35b3480156102b957600080fd5b506102cd6102c836600461223e565b6107bb565b005b3480156102db57600080fd5b506102e4610816565b6040516102a4919061247f565b3480156102fd57600080fd5b5061031161030c3660046122d6565b6108a8565b6040516102a491906123df565b34801561032a57600080fd5b506102e46108eb565b34801561033f57600080fd5b506102cd61034e3660046121a6565b610979565b34801561035f57600080fd5b50610368610a11565b6040516102a49190612b04565b34801561038157600080fd5b50610368610a17565b34801561039657600080fd5b506103686103a536600461207d565b610a1d565b3480156103b657600080fd5b50610368610a2f565b3480156103cb57600080fd5b506102cd6103da3660046120c9565b610a35565b3480156103eb57600080fd5b506103686103fa3660046121a6565b610a6d565b34801561040b57600080fd5b5061029761041a36600461207d565b610abf565b34801561042b57600080fd5b506102cd61043a36600461223e565b610b38565b6102cd610b93565b34801561045357600080fd5b506102cd6104623660046120c9565b610c45565b34801561047357600080fd5b5061048761048236600461207d565b610c60565b6040516102a49190612430565b3480156104a057600080fd5b506102cd6104af3660046122d6565b610d1e565b3480156104c057600080fd5b506103686104cf3660046122d6565b610d62565b3480156104e057600080fd5b50610297610dbd565b3480156104f557600080fd5b506102cd610504366004612290565b610dcb565b34801561051557600080fd5b50610297610e21565b34801561052a57600080fd5b506103116105393660046122d6565b610e2a565b34801561054a57600080fd5b506102e4610e5f565b34801561055f57600080fd5b5061036861056e36600461207d565b610e6c565b34801561057f57600080fd5b506102cd610eb0565b34801561059457600080fd5b506102cd6105a33660046122d6565b610efb565b3480156105b457600080fd5b50610311610f3f565b3480156105c957600080fd5b506102e4610f4e565b3480156105de57600080fd5b50610297610f5d565b6102cd6105f53660046122d6565b610f6c565b34801561060657600080fd5b506102cd61061536600461217d565b61111d565b34801561062657600080fd5b506102cd6111eb565b34801561063b57600080fd5b506102cd61064a366004612104565b61123b565b34801561065b57600080fd5b5061031161066a3660046122d6565b61127a565b34801561067b57600080fd5b506103686112a4565b34801561069057600080fd5b506102e46112aa565b3480156106a557600080fd5b506102e46106b43660046122d6565b6112b7565b3480156106c557600080fd5b506102cd6106d43660046122d6565b6113de565b3480156106e557600080fd5b50610368611422565b3480156106fa57600080fd5b506102cd610709366004612290565b611428565b34801561071a57600080fd5b50610297610729366004612097565b61147a565b34801561073a57600080fd5b506102cd6107493660046121cf565b6114a8565b34801561075a57600080fd5b506102cd610769366004612290565b6114ff565b34801561077a57600080fd5b506102cd61078936600461207d565b611551565b60006001600160e01b0319821663780e9d6360e01b14806107b357506107b3826115bf565b90505b919050565b6107c36115ff565b6001600160a01b03166107d4610f3f565b6001600160a01b0316146108035760405162461bcd60e51b81526004016107fa9061288f565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461082590612ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461085190612ba7565b801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108b382611603565b6108cf5760405162461bcd60e51b81526004016107fa90612843565b506000908152600460205260409020546001600160a01b031690565b600d80546108f890612ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612ba7565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b505050505081565b600061098482610e2a565b9050806001600160a01b0316836001600160a01b031614156109b85760405162461bcd60e51b81526004016107fa9061298c565b806001600160a01b03166109ca6115ff565b6001600160a01b031614806109e657506109e6816107296115ff565b610a025760405162461bcd60e51b81526004016107fa906126aa565b610a0c8383611620565b505050565b600e5481565b60085490565b60146020526000908152604090205481565b60105481565b610a46610a406115ff565b8261168e565b610a625760405162461bcd60e51b81526004016107fa906129f9565b610a0c838383611713565b6000610a7883610e6c565b8210610a965760405162461bcd60e51b81526004016107fa90612492565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610b2f57826001600160a01b031660138281548110610af857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b1d5760019150506107b6565b80610b2781612be2565b915050610ac3565b50600092915050565b610b406115ff565b6001600160a01b0316610b51610f3f565b6001600160a01b031614610b775760405162461bcd60e51b81526004016107fa9061288f565b60128054911515620100000262ff000019909216919091179055565b610b9b6115ff565b6001600160a01b0316610bac610f3f565b6001600160a01b031614610bd25760405162461bcd60e51b81526004016107fa9061288f565b6000610bdc610f3f565b6001600160a01b031647604051610bf2906123dc565b60006040518083038185875af1925050503d8060008114610c2f576040519150601f19603f3d011682016040523d82523d6000602084013e610c34565b606091505b5050905080610c4257600080fd5b50565b610a0c8383836040518060200160405280600081525061123b565b60606000610c6d83610e6c565b905060008167ffffffffffffffff811115610c9857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cc1578160200160208202803683370190505b50905060005b82811015610d1657610cd98582610a6d565b828281518110610cf957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d0e81612be2565b915050610cc7565b509392505050565b610d266115ff565b6001600160a01b0316610d37610f3f565b6001600160a01b031614610d5d5760405162461bcd60e51b81526004016107fa9061288f565b600e55565b6000610d6c610a17565b8210610d8a5760405162461bcd60e51b81526004016107fa90612a4a565b60088281548110610dab57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601254610100900460ff1681565b610dd36115ff565b6001600160a01b0316610de4610f3f565b6001600160a01b031614610e0a5760405162461bcd60e51b81526004016107fa9061288f565b8051610e1d90600b906020840190611edc565b5050565b60125460ff1681565b6000818152600260205260408120546001600160a01b0316806107b35760405162461bcd60e51b81526004016107fa90612751565b600b80546108f890612ba7565b60006001600160a01b038216610e945760405162461bcd60e51b81526004016107fa90612707565b506001600160a01b031660009081526003602052604090205490565b610eb86115ff565b6001600160a01b0316610ec9610f3f565b6001600160a01b031614610eef5760405162461bcd60e51b81526004016107fa9061288f565b610ef96000611840565b565b610f036115ff565b6001600160a01b0316610f14610f3f565b6001600160a01b031614610f3a5760405162461bcd60e51b81526004016107fa9061288f565b601055565b600a546001600160a01b031690565b60606001805461082590612ba7565b60125462010000900460ff1681565b60125460ff1615610f8f5760405162461bcd60e51b81526004016107fa906128c4565b6000610f99610a17565b905060008211610fbb5760405162461bcd60e51b81526004016107fa90612acd565b601054821115610fdd5760405162461bcd60e51b81526004016107fa906127ca565b600f54610fea8383612b19565b11156110085760405162461bcd60e51b81526004016107fa9061279a565b611010610f3f565b6001600160a01b0316336001600160a01b0316146110cd5760125462010000900460ff161515600114156110a05761104733610abf565b6110635760405162461bcd60e51b81526004016107fa90612a96565b336000908152601460205260409020546011546110808483612b19565b111561109e5760405162461bcd60e51b81526004016107fa906125ac565b505b81600e546110ae9190612b45565b3410156110cd5760405162461bcd60e51b81526004016107fa906129cd565b60015b828111610a0c573360009081526014602052604081208054916110f283612be2565b9091555061110b9050336111068385612b19565b611892565b8061111581612be2565b9150506110d0565b6111256115ff565b6001600160a01b0316826001600160a01b031614156111565760405162461bcd60e51b81526004016107fa90612627565b80600560006111636115ff565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111a76115ff565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111df9190612474565b60405180910390a35050565b6111f36115ff565b6001600160a01b0316611204610f3f565b6001600160a01b03161461122a5760405162461bcd60e51b81526004016107fa9061288f565b6012805461ff001916610100179055565b61124c6112466115ff565b8361168e565b6112685760405162461bcd60e51b81526004016107fa906129f9565b611274848484846118ac565b50505050565b6013818154811061128a57600080fd5b6000918252602090912001546001600160a01b0316905081565b60115481565b600c80546108f890612ba7565b60606112c282611603565b6112de5760405162461bcd60e51b81526004016107fa9061293d565b601254610100900460ff1661137f57600d80546112fa90612ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461132690612ba7565b80156113735780601f1061134857610100808354040283529160200191611373565b820191906000526020600020905b81548152906001019060200180831161135657829003601f168201915b505050505090506107b6565b60006113896118df565b905060008151116113a957604051806020016040528060008152506113d7565b806113b3846118ee565b600c6040516020016113c79392919061231a565b6040516020818303038152906040525b9392505050565b6113e66115ff565b6001600160a01b03166113f7610f3f565b6001600160a01b03161461141d5760405162461bcd60e51b81526004016107fa9061288f565b601155565b600f5481565b6114306115ff565b6001600160a01b0316611441610f3f565b6001600160a01b0316146114675760405162461bcd60e51b81526004016107fa9061288f565b8051610e1d90600c906020840190611edc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6114b06115ff565b6001600160a01b03166114c1610f3f565b6001600160a01b0316146114e75760405162461bcd60e51b81526004016107fa9061288f565b6114f360136000611f60565b610a0c60138383611f7e565b6115076115ff565b6001600160a01b0316611518610f3f565b6001600160a01b03161461153e5760405162461bcd60e51b81526004016107fa9061288f565b8051610e1d90600d906020840190611edc565b6115596115ff565b6001600160a01b031661156a610f3f565b6001600160a01b0316146115905760405162461bcd60e51b81526004016107fa9061288f565b6001600160a01b0381166115b65760405162461bcd60e51b81526004016107fa9061252f565b610c4281611840565b60006001600160e01b031982166380ac58cd60e01b14806115f057506001600160e01b03198216635b5e139f60e01b145b806107b357506107b382611a09565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165582610e2a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061169982611603565b6116b55760405162461bcd60e51b81526004016107fa9061265e565b60006116c083610e2a565b9050806001600160a01b0316846001600160a01b031614806116fb5750836001600160a01b03166116f0846108a8565b6001600160a01b0316145b8061170b575061170b818561147a565b949350505050565b826001600160a01b031661172682610e2a565b6001600160a01b03161461174c5760405162461bcd60e51b81526004016107fa906128f4565b6001600160a01b0382166117725760405162461bcd60e51b81526004016107fa906125e3565b61177d838383611a22565b611788600082611620565b6001600160a01b03831660009081526003602052604081208054600192906117b1908490612b64565b90915550506001600160a01b03821660009081526003602052604081208054600192906117df908490612b19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e1d828260405180602001604052806000815250611aab565b6118b7848484611713565b6118c384848484611ade565b6112745760405162461bcd60e51b81526004016107fa906124dd565b6060600b805461082590612ba7565b60608161191357506040805180820190915260018152600360fc1b60208201526107b6565b8160005b811561193d578061192781612be2565b91506119369050600a83612b31565b9150611917565b60008167ffffffffffffffff81111561196657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611990576020820181803683370190505b5090505b841561170b576119a5600183612b64565b91506119b2600a86612bfd565b6119bd906030612b19565b60f81b8183815181106119e057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a02600a86612b31565b9450611994565b6001600160e01b031981166301ffc9a760e01b14919050565b611a2d838383610a0c565b6001600160a01b038316611a4957611a4481611bf9565b611a6c565b816001600160a01b0316836001600160a01b031614611a6c57611a6c8382611c3d565b6001600160a01b038216611a8857611a8381611cda565b610a0c565b826001600160a01b0316826001600160a01b031614610a0c57610a0c8282611db3565b611ab58383611df7565b611ac26000848484611ade565b610a0c5760405162461bcd60e51b81526004016107fa906124dd565b6000611af2846001600160a01b0316611ed6565b15611bee57836001600160a01b031663150b7a02611b0e6115ff565b8786866040518563ffffffff1660e01b8152600401611b3094939291906123f3565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b7791810190612274565b60015b611bd4573d808015611ba8576040519150601f19603f3d011682016040523d82523d6000602084013e611bad565b606091505b508051611bcc5760405162461bcd60e51b81526004016107fa906124dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170b565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c4a84610e6c565b611c549190612b64565b600083815260076020526040902054909150808214611ca7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cec90600190612b64565b60008381526009602052604081205460088054939450909284908110611d2257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d5157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d9757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611dbe83610e6c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e1d5760405162461bcd60e51b81526004016107fa9061280e565b611e2681611603565b15611e435760405162461bcd60e51b81526004016107fa90612575565b611e4f60008383611a22565b6001600160a01b0382166000908152600360205260408120805460019290611e78908490612b19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611ee890612ba7565b90600052602060002090601f016020900481019282611f0a5760008555611f50565b82601f10611f2357805160ff1916838001178555611f50565b82800160010185558215611f50579182015b82811115611f50578251825591602001919060010190611f35565b50611f5c929150611fd1565b5090565b5080546000825590600052602060002090810190610c429190611fd1565b828054828255906000526020600020908101928215611f50579160200282015b82811115611f505781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f9e565b5b80821115611f5c5760008155600101611fd2565b600067ffffffffffffffff8084111561200157612001612c3d565b604051601f8501601f19168101602001828111828210171561202557612025612c3d565b60405284815291508183850186101561203d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107b657600080fd5b803580151581146107b657600080fd5b60006020828403121561208e578081fd5b6113d782612056565b600080604083850312156120a9578081fd5b6120b283612056565b91506120c060208401612056565b90509250929050565b6000806000606084860312156120dd578081fd5b6120e684612056565b92506120f460208501612056565b9150604084013590509250925092565b60008060008060808587031215612119578081fd5b61212285612056565b935061213060208601612056565b925060408501359150606085013567ffffffffffffffff811115612152578182fd5b8501601f81018713612162578182fd5b61217187823560208401611fe6565b91505092959194509250565b6000806040838503121561218f578182fd5b61219883612056565b91506120c06020840161206d565b600080604083850312156121b8578182fd5b6121c183612056565b946020939093013593505050565b600080602083850312156121e1578182fd5b823567ffffffffffffffff808211156121f8578384fd5b818501915085601f83011261220b578384fd5b813581811115612219578485fd5b866020808302850101111561222c578485fd5b60209290920196919550909350505050565b60006020828403121561224f578081fd5b6113d78261206d565b600060208284031215612269578081fd5b81356113d781612c53565b600060208284031215612285578081fd5b81516113d781612c53565b6000602082840312156122a1578081fd5b813567ffffffffffffffff8111156122b7578182fd5b8201601f810184136122c7578182fd5b61170b84823560208401611fe6565b6000602082840312156122e7578081fd5b5035919050565b60008151808452612306816020860160208601612b7b565b601f01601f19169290920160200192915050565b60008451602061232d8285838a01612b7b565b8551918401916123408184848a01612b7b565b855492019183906002810460018083168061235c57607f831692505b85831081141561237a57634e487b7160e01b88526022600452602488fd5b80801561238e576001811461239f576123cb565b60ff198516885283880195506123cb565b6123a88b612b0d565b895b858110156123c35781548a8201529084019088016123aa565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612426908301846122ee565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124685783518352928401929184019160010161244c565b50909695505050505050565b901515815260200190565b6000602082526113d760208301846122ee565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612b2c57612b2c612c11565b500190565b600082612b4057612b40612c27565b500490565b6000816000190483118215151615612b5f57612b5f612c11565b500290565b600082821015612b7657612b76612c11565b500390565b60005b83811015612b96578181015183820152602001612b7e565b838111156112745750506000910152565b600281046001821680612bbb57607f821691505b60208210811415612bdc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bf657612bf6612c11565b5060010190565b600082612c0c57612c0c612c27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c4257600080fdfea264697066735822122063b819df2b2d7d894d880e4e5e2d1a00b46b29d79a9afcac07d9525e3c0472c364736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000b5269636841706547616e670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524147000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb01146106d9578063da3ef23f146106ee578063e985e9c51461070e578063edec5f271461072e578063f2c4ce1e1461074e578063f2fde38b1461076e57610272565b8063b88d4fde1461062f578063ba4e5c491461064f578063ba7d2c761461066f578063c668286214610684578063c87b56dd14610699578063d0eb26b0146106b957610272565b80638da5cb5b116101135780638da5cb5b146105a857806395d89b41146105bd5780639c70b512146105d2578063a0712d68146105e7578063a22cb465146105fa578063a475b5dd1461061a57610272565b80636352211e1461051e5780636c0360eb1461053e57806370a0823114610553578063715018a6146105735780637f00c7a61461058857610272565b80632f745c59116101e8578063438b6300116101ac578063438b63001461046757806344a0d68a146104945780634f6ccce7146104b457806351830227146104d457806355f804b3146104e95780635c975abb1461050957610272565b80632f745c59146103df5780633af32abf146103ff5780633c9527641461041f5780633ccfd60b1461043f57806342842e0e1461044757610272565b8063095ea7b31161023a578063095ea7b31461033357806313faede61461035357806318160ddd1461037557806318cae2691461038a578063239c70ae146103aa57806323b872dd146103bf57610272565b806301ffc9a71461027757806302329a29146102ad57806306fdde03146102cf578063081812fc146102f1578063081c8c441461031e575b600080fd5b34801561028357600080fd5b50610297610292366004612258565b61078e565b6040516102a49190612474565b60405180910390f35b3480156102b957600080fd5b506102cd6102c836600461223e565b6107bb565b005b3480156102db57600080fd5b506102e4610816565b6040516102a4919061247f565b3480156102fd57600080fd5b5061031161030c3660046122d6565b6108a8565b6040516102a491906123df565b34801561032a57600080fd5b506102e46108eb565b34801561033f57600080fd5b506102cd61034e3660046121a6565b610979565b34801561035f57600080fd5b50610368610a11565b6040516102a49190612b04565b34801561038157600080fd5b50610368610a17565b34801561039657600080fd5b506103686103a536600461207d565b610a1d565b3480156103b657600080fd5b50610368610a2f565b3480156103cb57600080fd5b506102cd6103da3660046120c9565b610a35565b3480156103eb57600080fd5b506103686103fa3660046121a6565b610a6d565b34801561040b57600080fd5b5061029761041a36600461207d565b610abf565b34801561042b57600080fd5b506102cd61043a36600461223e565b610b38565b6102cd610b93565b34801561045357600080fd5b506102cd6104623660046120c9565b610c45565b34801561047357600080fd5b5061048761048236600461207d565b610c60565b6040516102a49190612430565b3480156104a057600080fd5b506102cd6104af3660046122d6565b610d1e565b3480156104c057600080fd5b506103686104cf3660046122d6565b610d62565b3480156104e057600080fd5b50610297610dbd565b3480156104f557600080fd5b506102cd610504366004612290565b610dcb565b34801561051557600080fd5b50610297610e21565b34801561052a57600080fd5b506103116105393660046122d6565b610e2a565b34801561054a57600080fd5b506102e4610e5f565b34801561055f57600080fd5b5061036861056e36600461207d565b610e6c565b34801561057f57600080fd5b506102cd610eb0565b34801561059457600080fd5b506102cd6105a33660046122d6565b610efb565b3480156105b457600080fd5b50610311610f3f565b3480156105c957600080fd5b506102e4610f4e565b3480156105de57600080fd5b50610297610f5d565b6102cd6105f53660046122d6565b610f6c565b34801561060657600080fd5b506102cd61061536600461217d565b61111d565b34801561062657600080fd5b506102cd6111eb565b34801561063b57600080fd5b506102cd61064a366004612104565b61123b565b34801561065b57600080fd5b5061031161066a3660046122d6565b61127a565b34801561067b57600080fd5b506103686112a4565b34801561069057600080fd5b506102e46112aa565b3480156106a557600080fd5b506102e46106b43660046122d6565b6112b7565b3480156106c557600080fd5b506102cd6106d43660046122d6565b6113de565b3480156106e557600080fd5b50610368611422565b3480156106fa57600080fd5b506102cd610709366004612290565b611428565b34801561071a57600080fd5b50610297610729366004612097565b61147a565b34801561073a57600080fd5b506102cd6107493660046121cf565b6114a8565b34801561075a57600080fd5b506102cd610769366004612290565b6114ff565b34801561077a57600080fd5b506102cd61078936600461207d565b611551565b60006001600160e01b0319821663780e9d6360e01b14806107b357506107b3826115bf565b90505b919050565b6107c36115ff565b6001600160a01b03166107d4610f3f565b6001600160a01b0316146108035760405162461bcd60e51b81526004016107fa9061288f565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461082590612ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461085190612ba7565b801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108b382611603565b6108cf5760405162461bcd60e51b81526004016107fa90612843565b506000908152600460205260409020546001600160a01b031690565b600d80546108f890612ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612ba7565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b505050505081565b600061098482610e2a565b9050806001600160a01b0316836001600160a01b031614156109b85760405162461bcd60e51b81526004016107fa9061298c565b806001600160a01b03166109ca6115ff565b6001600160a01b031614806109e657506109e6816107296115ff565b610a025760405162461bcd60e51b81526004016107fa906126aa565b610a0c8383611620565b505050565b600e5481565b60085490565b60146020526000908152604090205481565b60105481565b610a46610a406115ff565b8261168e565b610a625760405162461bcd60e51b81526004016107fa906129f9565b610a0c838383611713565b6000610a7883610e6c565b8210610a965760405162461bcd60e51b81526004016107fa90612492565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610b2f57826001600160a01b031660138281548110610af857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b1d5760019150506107b6565b80610b2781612be2565b915050610ac3565b50600092915050565b610b406115ff565b6001600160a01b0316610b51610f3f565b6001600160a01b031614610b775760405162461bcd60e51b81526004016107fa9061288f565b60128054911515620100000262ff000019909216919091179055565b610b9b6115ff565b6001600160a01b0316610bac610f3f565b6001600160a01b031614610bd25760405162461bcd60e51b81526004016107fa9061288f565b6000610bdc610f3f565b6001600160a01b031647604051610bf2906123dc565b60006040518083038185875af1925050503d8060008114610c2f576040519150601f19603f3d011682016040523d82523d6000602084013e610c34565b606091505b5050905080610c4257600080fd5b50565b610a0c8383836040518060200160405280600081525061123b565b60606000610c6d83610e6c565b905060008167ffffffffffffffff811115610c9857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cc1578160200160208202803683370190505b50905060005b82811015610d1657610cd98582610a6d565b828281518110610cf957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d0e81612be2565b915050610cc7565b509392505050565b610d266115ff565b6001600160a01b0316610d37610f3f565b6001600160a01b031614610d5d5760405162461bcd60e51b81526004016107fa9061288f565b600e55565b6000610d6c610a17565b8210610d8a5760405162461bcd60e51b81526004016107fa90612a4a565b60088281548110610dab57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601254610100900460ff1681565b610dd36115ff565b6001600160a01b0316610de4610f3f565b6001600160a01b031614610e0a5760405162461bcd60e51b81526004016107fa9061288f565b8051610e1d90600b906020840190611edc565b5050565b60125460ff1681565b6000818152600260205260408120546001600160a01b0316806107b35760405162461bcd60e51b81526004016107fa90612751565b600b80546108f890612ba7565b60006001600160a01b038216610e945760405162461bcd60e51b81526004016107fa90612707565b506001600160a01b031660009081526003602052604090205490565b610eb86115ff565b6001600160a01b0316610ec9610f3f565b6001600160a01b031614610eef5760405162461bcd60e51b81526004016107fa9061288f565b610ef96000611840565b565b610f036115ff565b6001600160a01b0316610f14610f3f565b6001600160a01b031614610f3a5760405162461bcd60e51b81526004016107fa9061288f565b601055565b600a546001600160a01b031690565b60606001805461082590612ba7565b60125462010000900460ff1681565b60125460ff1615610f8f5760405162461bcd60e51b81526004016107fa906128c4565b6000610f99610a17565b905060008211610fbb5760405162461bcd60e51b81526004016107fa90612acd565b601054821115610fdd5760405162461bcd60e51b81526004016107fa906127ca565b600f54610fea8383612b19565b11156110085760405162461bcd60e51b81526004016107fa9061279a565b611010610f3f565b6001600160a01b0316336001600160a01b0316146110cd5760125462010000900460ff161515600114156110a05761104733610abf565b6110635760405162461bcd60e51b81526004016107fa90612a96565b336000908152601460205260409020546011546110808483612b19565b111561109e5760405162461bcd60e51b81526004016107fa906125ac565b505b81600e546110ae9190612b45565b3410156110cd5760405162461bcd60e51b81526004016107fa906129cd565b60015b828111610a0c573360009081526014602052604081208054916110f283612be2565b9091555061110b9050336111068385612b19565b611892565b8061111581612be2565b9150506110d0565b6111256115ff565b6001600160a01b0316826001600160a01b031614156111565760405162461bcd60e51b81526004016107fa90612627565b80600560006111636115ff565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111a76115ff565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111df9190612474565b60405180910390a35050565b6111f36115ff565b6001600160a01b0316611204610f3f565b6001600160a01b03161461122a5760405162461bcd60e51b81526004016107fa9061288f565b6012805461ff001916610100179055565b61124c6112466115ff565b8361168e565b6112685760405162461bcd60e51b81526004016107fa906129f9565b611274848484846118ac565b50505050565b6013818154811061128a57600080fd5b6000918252602090912001546001600160a01b0316905081565b60115481565b600c80546108f890612ba7565b60606112c282611603565b6112de5760405162461bcd60e51b81526004016107fa9061293d565b601254610100900460ff1661137f57600d80546112fa90612ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461132690612ba7565b80156113735780601f1061134857610100808354040283529160200191611373565b820191906000526020600020905b81548152906001019060200180831161135657829003601f168201915b505050505090506107b6565b60006113896118df565b905060008151116113a957604051806020016040528060008152506113d7565b806113b3846118ee565b600c6040516020016113c79392919061231a565b6040516020818303038152906040525b9392505050565b6113e66115ff565b6001600160a01b03166113f7610f3f565b6001600160a01b03161461141d5760405162461bcd60e51b81526004016107fa9061288f565b601155565b600f5481565b6114306115ff565b6001600160a01b0316611441610f3f565b6001600160a01b0316146114675760405162461bcd60e51b81526004016107fa9061288f565b8051610e1d90600c906020840190611edc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6114b06115ff565b6001600160a01b03166114c1610f3f565b6001600160a01b0316146114e75760405162461bcd60e51b81526004016107fa9061288f565b6114f360136000611f60565b610a0c60138383611f7e565b6115076115ff565b6001600160a01b0316611518610f3f565b6001600160a01b03161461153e5760405162461bcd60e51b81526004016107fa9061288f565b8051610e1d90600d906020840190611edc565b6115596115ff565b6001600160a01b031661156a610f3f565b6001600160a01b0316146115905760405162461bcd60e51b81526004016107fa9061288f565b6001600160a01b0381166115b65760405162461bcd60e51b81526004016107fa9061252f565b610c4281611840565b60006001600160e01b031982166380ac58cd60e01b14806115f057506001600160e01b03198216635b5e139f60e01b145b806107b357506107b382611a09565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165582610e2a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061169982611603565b6116b55760405162461bcd60e51b81526004016107fa9061265e565b60006116c083610e2a565b9050806001600160a01b0316846001600160a01b031614806116fb5750836001600160a01b03166116f0846108a8565b6001600160a01b0316145b8061170b575061170b818561147a565b949350505050565b826001600160a01b031661172682610e2a565b6001600160a01b03161461174c5760405162461bcd60e51b81526004016107fa906128f4565b6001600160a01b0382166117725760405162461bcd60e51b81526004016107fa906125e3565b61177d838383611a22565b611788600082611620565b6001600160a01b03831660009081526003602052604081208054600192906117b1908490612b64565b90915550506001600160a01b03821660009081526003602052604081208054600192906117df908490612b19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e1d828260405180602001604052806000815250611aab565b6118b7848484611713565b6118c384848484611ade565b6112745760405162461bcd60e51b81526004016107fa906124dd565b6060600b805461082590612ba7565b60608161191357506040805180820190915260018152600360fc1b60208201526107b6565b8160005b811561193d578061192781612be2565b91506119369050600a83612b31565b9150611917565b60008167ffffffffffffffff81111561196657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611990576020820181803683370190505b5090505b841561170b576119a5600183612b64565b91506119b2600a86612bfd565b6119bd906030612b19565b60f81b8183815181106119e057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a02600a86612b31565b9450611994565b6001600160e01b031981166301ffc9a760e01b14919050565b611a2d838383610a0c565b6001600160a01b038316611a4957611a4481611bf9565b611a6c565b816001600160a01b0316836001600160a01b031614611a6c57611a6c8382611c3d565b6001600160a01b038216611a8857611a8381611cda565b610a0c565b826001600160a01b0316826001600160a01b031614610a0c57610a0c8282611db3565b611ab58383611df7565b611ac26000848484611ade565b610a0c5760405162461bcd60e51b81526004016107fa906124dd565b6000611af2846001600160a01b0316611ed6565b15611bee57836001600160a01b031663150b7a02611b0e6115ff565b8786866040518563ffffffff1660e01b8152600401611b3094939291906123f3565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b7791810190612274565b60015b611bd4573d808015611ba8576040519150601f19603f3d011682016040523d82523d6000602084013e611bad565b606091505b508051611bcc5760405162461bcd60e51b81526004016107fa906124dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170b565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c4a84610e6c565b611c549190612b64565b600083815260076020526040902054909150808214611ca7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cec90600190612b64565b60008381526009602052604081205460088054939450909284908110611d2257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d5157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d9757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611dbe83610e6c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e1d5760405162461bcd60e51b81526004016107fa9061280e565b611e2681611603565b15611e435760405162461bcd60e51b81526004016107fa90612575565b611e4f60008383611a22565b6001600160a01b0382166000908152600360205260408120805460019290611e78908490612b19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611ee890612ba7565b90600052602060002090601f016020900481019282611f0a5760008555611f50565b82601f10611f2357805160ff1916838001178555611f50565b82800160010185558215611f50579182015b82811115611f50578251825591602001919060010190611f35565b50611f5c929150611fd1565b5090565b5080546000825590600052602060002090810190610c429190611fd1565b828054828255906000526020600020908101928215611f50579160200282015b82811115611f505781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f9e565b5b80821115611f5c5760008155600101611fd2565b600067ffffffffffffffff8084111561200157612001612c3d565b604051601f8501601f19168101602001828111828210171561202557612025612c3d565b60405284815291508183850186101561203d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107b657600080fd5b803580151581146107b657600080fd5b60006020828403121561208e578081fd5b6113d782612056565b600080604083850312156120a9578081fd5b6120b283612056565b91506120c060208401612056565b90509250929050565b6000806000606084860312156120dd578081fd5b6120e684612056565b92506120f460208501612056565b9150604084013590509250925092565b60008060008060808587031215612119578081fd5b61212285612056565b935061213060208601612056565b925060408501359150606085013567ffffffffffffffff811115612152578182fd5b8501601f81018713612162578182fd5b61217187823560208401611fe6565b91505092959194509250565b6000806040838503121561218f578182fd5b61219883612056565b91506120c06020840161206d565b600080604083850312156121b8578182fd5b6121c183612056565b946020939093013593505050565b600080602083850312156121e1578182fd5b823567ffffffffffffffff808211156121f8578384fd5b818501915085601f83011261220b578384fd5b813581811115612219578485fd5b866020808302850101111561222c578485fd5b60209290920196919550909350505050565b60006020828403121561224f578081fd5b6113d78261206d565b600060208284031215612269578081fd5b81356113d781612c53565b600060208284031215612285578081fd5b81516113d781612c53565b6000602082840312156122a1578081fd5b813567ffffffffffffffff8111156122b7578182fd5b8201601f810184136122c7578182fd5b61170b84823560208401611fe6565b6000602082840312156122e7578081fd5b5035919050565b60008151808452612306816020860160208601612b7b565b601f01601f19169290920160200192915050565b60008451602061232d8285838a01612b7b565b8551918401916123408184848a01612b7b565b855492019183906002810460018083168061235c57607f831692505b85831081141561237a57634e487b7160e01b88526022600452602488fd5b80801561238e576001811461239f576123cb565b60ff198516885283880195506123cb565b6123a88b612b0d565b895b858110156123c35781548a8201529084019088016123aa565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612426908301846122ee565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124685783518352928401929184019160010161244c565b50909695505050505050565b901515815260200190565b6000602082526113d760208301846122ee565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612b2c57612b2c612c11565b500190565b600082612b4057612b40612c27565b500490565b6000816000190483118215151615612b5f57612b5f612c11565b500290565b600082821015612b7657612b76612c11565b500390565b60005b83811015612b96578181015183820152602001612b7e565b838111156112745750506000910152565b600281046001821680612bbb57607f821691505b60208210811415612bdc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bf657612bf6612c11565b5060010190565b600082612c0c57612c0c612c27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c4257600080fdfea264697066735822122063b819df2b2d7d894d880e4e5e2d1a00b46b29d79a9afcac07d9525e3c0472c364736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000b5269636841706547616e670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524147000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RichApeGang
Arg [1] : _symbol (string): RAG
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 5269636841706547616e67000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5241470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43123:4250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46875:73;;;;;;;;;;-1:-1:-1;46875:73:0;;;;;:::i;:::-;;:::i;:::-;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43280:28::-;;;;;;;;;;;;;:::i;23640:411::-;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;43313:34::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35306:113::-;;;;;;;;;;;;;:::i;43612:55::-;;;;;;;;;;-1:-1:-1;43612:55:0;;;;;:::i;:::-;;:::i;43388:32::-;;;;;;;;;;;;;:::i;25007:339::-;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;34974:256::-;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;45004:239::-;;;;;;;;;;-1:-1:-1;45004:239:0;;;;;:::i;:::-;;:::i;46956:95::-;;;;;;;;;;-1:-1:-1;46956:95:0;;;;;:::i;:::-;;:::i;47210:160::-;;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;45249:348::-;;;;;;;;;;-1:-1:-1;45249:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46307:80::-;;;;;;;;;;-1:-1:-1;46307:80:0;;;;;:::i;:::-;;:::i;35496:233::-;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;43498:27::-;;;;;;;;;;;;;:::i;46515:98::-;;;;;;;;;;-1:-1:-1;46515:98:0;;;;;:::i;:::-;;:::i;43467:26::-;;;;;;;;;;;;;:::i;22252:239::-;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;43212:21::-;;;;;;;;;;;;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;46393:116::-;;;;;;;;;;-1:-1:-1;46393:116:0;;;;;:::i;:::-;;:::i;41804:87::-;;;;;;;;;;;;;:::i;22727:104::-;;;;;;;;;;;;;:::i;43530:35::-;;;;;;;;;;;;;:::i;44065:931::-;;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;46122:65::-;;;;;;;;;;;;;:::i;25673:328::-;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;43570:37::-;;;;;;;;;;-1:-1:-1;43570:37:0;;;;;:::i;:::-;;:::i;43425:::-;;;;;;;;;;;;;:::i;43238:::-;;;;;;;;;;;;;:::i;45603:497::-;;;;;;;;;;-1:-1:-1;45603:497:0;;;;;:::i;:::-;;:::i;46195:104::-;;;;;;;;;;-1:-1:-1;46195:104:0;;;;;:::i;:::-;;:::i;43352:31::-;;;;;;;;;;;;;:::i;46619:122::-;;;;;;;;;;-1:-1:-1;46619:122:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;;:::i;47059:144::-;;;;;;;;;;-1:-1:-1;47059:144:0;;;;;:::i;:::-;;:::i;46749:120::-;;;;;;;;;;-1:-1:-1;46749:120:0;;;;;:::i;:::-;;:::i;42704:192::-;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;;34666:224;;;;:::o;46875:73::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;46927:6:::1;:15:::0;;-1:-1:-1;;46927:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46875:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;24221:16;24229:7;24221;:16::i;:::-;24213:73;;;;-1:-1:-1;;;24213:73:0;;;;;;;:::i;:::-;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;43280:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;;;;;;:::i;:::-;23879:5;-1:-1:-1;;;;;23863:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23863:21:0;;:62;;;;23888:37;23905:5;23912:12;:10;:12::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;;;;;;:::i;:::-;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23640:411;;;:::o;43313:34::-;;;;:::o;35306:113::-;35394:10;:17;35306:113;:::o;43612:55::-;;;;;;;;;;;;;:::o;43388:32::-;;;;:::o;25007:339::-;25202:41;25221:12;:10;:12::i;:::-;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;45004:239::-;45063:4;;45076:143;45097:20;:27;45093:31;;45076:143;;;45171:5;-1:-1:-1;;;;;45144:32:0;:20;45165:1;45144:23;;;;;;-1:-1:-1;;;45144:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45144:23:0;:32;45140:72;;;45198:4;45191:11;;;;;45140:72;45126:3;;;;:::i;:::-;;;;45076:143;;;-1:-1:-1;45232:5:0;;45004:239;-1:-1:-1;;45004:239:0:o;46956:95::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47021:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47021:24:0;;::::1;::::0;;;::::1;::::0;;46956:95::o;47210:160::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47273:7:::1;47294;:5;:7::i;:::-;-1:-1:-1::0;;;;;47286:21:0::1;47315;47286:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47272:69;;;47356:2;47348:11;;;::::0;::::1;;42095:1;47210:160::o:0;25417:185::-;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;45249:348::-;45324:16;45352:23;45378:17;45388:6;45378:9;:17::i;:::-;45352:43;;45402:25;45444:15;45430:30;;;;;;-1:-1:-1;;;45430:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45430:30:0;;45402:58;;45472:9;45467:103;45487:15;45483:1;:19;45467:103;;;45532:30;45552:6;45560:1;45532:19;:30::i;:::-;45518:8;45527:1;45518:11;;;;;;-1:-1:-1;;;45518:11:0;;;;;;;;;;;;;;;;;;:44;45504:3;;;;:::i;:::-;;;;45467:103;;;-1:-1:-1;45583:8:0;45249:348;-1:-1:-1;;;45249:348:0:o;46307:80::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46366:4:::1;:15:::0;46307:80::o;35496:233::-;35571:7;35607:30;:28;:30::i;:::-;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;;;;;;:::i;:::-;35704:10;35715:5;35704:17;;;;;;-1:-1:-1;;;35704:17:0;;;;;;;;;;;;;;;;;35697:24;;35496:233;;;:::o;43498:27::-;;;;;;;;;:::o;46515:98::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46586:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46515:98:::0;:::o;43467:26::-;;;;;;:::o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;;;;;;:::i;43212:21::-;;;;;;;:::i;21982:208::-;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;:::-;42455:94::o:0;46393:116::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46470:13:::1;:33:::0;46393:116::o;41804:87::-;41877:6;;-1:-1:-1;;;;;41877:6:0;41804:87;:::o;22727:104::-;22783:13;22816:7;22809:14;;;;;:::i;43530:35::-;;;;;;;;;:::o;44065:931::-;44131:6;;;;44130:7;44122:42;;;;-1:-1:-1;;;44122:42:0;;;;;;;:::i;:::-;44171:14;44188:13;:11;:13::i;:::-;44171:30;;44230:1;44216:11;:15;44208:55;;;;-1:-1:-1;;;44208:55:0;;;;;;;:::i;:::-;44293:13;;44278:11;:28;;44270:77;;;;-1:-1:-1;;;44270:77:0;;;;;;;:::i;:::-;44386:9;;44362:20;44371:11;44362:6;:20;:::i;:::-;:33;;44354:68;;;;-1:-1:-1;;;44354:68:0;;;;;;;:::i;:::-;44449:7;:5;:7::i;:::-;-1:-1:-1;;;;;44435:21:0;:10;-1:-1:-1;;;;;44435:21:0;;44431:416;;44472:15;;;;;;;:23;;44491:4;44472:23;44469:298;;;44520:25;44534:10;44520:13;:25::i;:::-;44512:61;;;;-1:-1:-1;;;44512:61:0;;;;;;;:::i;:::-;44636:10;44588:24;44615:32;;;:20;:32;;;;;;44704:18;;44670:30;44689:11;44615:32;44670:30;:::i;:::-;:52;;44662:93;;;;-1:-1:-1;;;44662:93:0;;;;;;;:::i;:::-;44469:298;;44805:11;44798:4;;:18;;;;:::i;:::-;44785:9;:31;;44777:62;;;;-1:-1:-1;;;44777:62:0;;;;;;;:::i;:::-;44872:1;44855:136;44880:11;44875:1;:16;44855:136;;44928:10;44907:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;44950:33:0;;-1:-1:-1;44960:10:0;44972;44981:1;44972:6;:10;:::i;:::-;44950:9;:33::i;:::-;44893:3;;;;:::i;:::-;;;;44855:136;;24410:295;24525:12;:10;:12::i;:::-;-1:-1:-1;;;;;24513:24:0;:8;-1:-1:-1;;;;;24513:24:0;;;24505:62;;;;-1:-1:-1;;;24505:62:0;;;;;;;:::i;:::-;24625:8;24580:18;:32;24599:12;:10;:12::i;:::-;-1:-1:-1;;;;;24580:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24580:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;;24664:12;:10;:12::i;:::-;-1:-1:-1;;;;;24649:48:0;;24688:8;24649:48;;;;;;:::i;:::-;;;;;;;;24410:295;;:::o;46122:65::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46166:8:::1;:15:::0;;-1:-1:-1;;46166:15:0::1;;;::::0;;46122:65::o;25673:328::-;25848:41;25867:12;:10;:12::i;:::-;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;:::-;25673:328;;;;:::o;43570:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43570:37:0;;-1:-1:-1;43570:37:0;:::o;43425:::-;;;;:::o;43238:::-;;;;;;;:::i;45603:497::-;45701:13;45742:16;45750:7;45742;:16::i;:::-;45726:97;;;;-1:-1:-1;;;45726:97:0;;;;;;;:::i;:::-;45839:8;;;;;;;45836:62;;45876:14;45869:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45836:62;45906:28;45937:10;:8;:10::i;:::-;45906:41;;45992:1;45967:14;45961:28;:32;:133;;;;;;;;;;;;;;;;;46029:14;46045:18;:7;:16;:18::i;:::-;46065:13;46012:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45961:133;45954:140;45603:497;-1:-1:-1;;;45603:497:0:o;46195:104::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46266:18:::1;:27:::0;46195:104::o;43352:31::-;;;;:::o;46619:122::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46702:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;24776:164::-:0;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164::o;47059:144::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;47134:27:::1;47141:20;;47134:27;:::i;:::-;47168:29;:20;47191:6:::0;;47168:29:::1;:::i;46749:120::-:0;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46831:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42704:192::-:0;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;;-1:-1:-1::0;;;42785:73:0::1;;;;;;;:::i;:::-;42869:19;42879:8;42869:9;:19::i;21613:305::-:0;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;;21874:36;21898:11;21874:23;:36::i;20087:98::-;20167:10;20087:98;:::o;27511:127::-;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;;;27511:127::o;31493:174::-;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27923:16;27931:7;27923;:16::i;:::-;27915:73;;;;-1:-1:-1;;;27915:73:0;;;;;;;:::i;:::-;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;;28112:32;28129:5;28136:7;28112:16;:32::i;:::-;28049:96;27805:348;-1:-1:-1;;;;27805:348:0:o;30797:578::-;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;;;;;;:::i;:::-;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42904:173;;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;43944:102::-;44004:13;44033:7;44026:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;;8192:53;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;-1:-1:-1;;;8421:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;-1:-1:-1;;;8509:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;7444:157;-1:-1:-1;;;;;;7553:40:0;;-1:-1:-1;;;7553:40:0;7444:157;;;:::o;36342:589::-;36486:45;36513:4;36519:2;36523:7;36486:26;:45::i;:::-;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;36583:31;:40::i;:::-;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;:::-;36741:183;;;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;32408:15;:2;-1:-1:-1;;;;;32408:13:0;;:15::i;:::-;32404:620;;;32460:2;-1:-1:-1;;;;;32444:36:0;;32481:12;:10;:12::i;:::-;32495:4;32501:7;32510:5;32444:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;37654:164::-;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;-1:-1:-1;;;40432:26:0;;;;;;;;;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;-1:-1:-1;;;40471:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;-1:-1:-1;;;40783:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39728:1079;;;;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;29489:382::-;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;;;;;;:::i;:::-;29642:16;29650:7;29642;:16::i;:::-;29641:17;29633:58;;;;-1:-1:-1;;;29633:58:0;;;;;;;:::i;:::-;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;10444:387::-;10767:20;10815:8;;;10444:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:1532::-;;5657:6;5651:13;5683:4;5696:51;5740:6;5735:3;5730:2;5722:6;5718:15;5696:51;:::i;:::-;5810:13;;5769:16;;;;5832:55;5810:13;5769:16;5854:15;;;5832:55;:::i;:::-;5978:13;;5909:20;;;5949:3;;6055:1;6040:17;;6076:1;6112:18;;;;6139:2;;6217:4;6207:8;6203:19;6191:31;;6139:2;6280;6270:8;6267:16;6247:18;6244:40;6241:2;;;-1:-1:-1;;;6307:33:1;;6363:4;6360:1;6353:15;6393:4;6314:3;6381:17;6241:2;6424:18;6451:110;;;;6575:1;6570:332;;;;6417:485;;6451:110;-1:-1:-1;;6486:24:1;;6472:39;;6531:20;;;;-1:-1:-1;6451:110:1;;6570:332;6606:39;6638:6;6606:39;:::i;:::-;6667:3;6683:169;6697:8;6694:1;6691:15;6683:169;;;6779:14;;6764:13;;;6757:37;6822:16;;;;6714:10;;6683:169;;;6687:3;;6883:8;6876:5;6872:20;6865:27;;6417:485;-1:-1:-1;6918:3:1;;5627:1300;-1:-1:-1;;;;;;;;;;;5627:1300:1:o;6932:205::-;7132:3;7123:14::o;7142:203::-;-1:-1:-1;;;;;7306:32:1;;;;7288:51;;7276:2;7261:18;;7243:102::o;7350:490::-;-1:-1:-1;;;;;7619:15:1;;;7601:34;;7671:15;;7666:2;7651:18;;7644:43;7718:2;7703:18;;7696:34;;;7766:3;7761:2;7746:18;;7739:31;;;7350:490;;7787:47;;7814:19;;7806:6;7787:47;:::i;:::-;7779:55;7553:287;-1:-1:-1;;;;;;7553:287:1:o;7845:635::-;8016:2;8068:21;;;8138:13;;8041:18;;;8160:22;;;7845:635;;8016:2;8239:15;;;;8213:2;8198:18;;;7845:635;8285:169;8299:6;8296:1;8293:13;8285:169;;;8360:13;;8348:26;;8429:15;;;;8394:12;;;;8321:1;8314:9;8285:169;;;-1:-1:-1;8471:3:1;;7996:484;-1:-1:-1;;;;;;7996:484:1:o;8485:187::-;8650:14;;8643:22;8625:41;;8613:2;8598:18;;8580:92::o;8677:221::-;;8826:2;8815:9;8808:21;8846:46;8888:2;8877:9;8873:18;8865:6;8846:46;:::i;8903:407::-;9105:2;9087:21;;;9144:2;9124:18;;;9117:30;9183:34;9178:2;9163:18;;9156:62;-1:-1:-1;;;9249:2:1;9234:18;;9227:41;9300:3;9285:19;;9077:233::o;9315:414::-;9517:2;9499:21;;;9556:2;9536:18;;;9529:30;9595:34;9590:2;9575:18;;9568:62;-1:-1:-1;;;9661:2:1;9646:18;;9639:48;9719:3;9704:19;;9489:240::o;9734:402::-;9936:2;9918:21;;;9975:2;9955:18;;;9948:30;10014:34;10009:2;9994:18;;9987:62;-1:-1:-1;;;10080:2:1;10065:18;;10058:36;10126:3;10111:19;;9908:228::o;10141:352::-;10343:2;10325:21;;;10382:2;10362:18;;;10355:30;10421;10416:2;10401:18;;10394:58;10484:2;10469:18;;10315:178::o;10498:352::-;10700:2;10682:21;;;10739:2;10719:18;;;10712:30;10778;10773:2;10758:18;;10751:58;10841:2;10826:18;;10672:178::o;10855:400::-;11057:2;11039:21;;;11096:2;11076:18;;;11069:30;11135:34;11130:2;11115:18;;11108:62;-1:-1:-1;;;11201:2:1;11186:18;;11179:34;11245:3;11230:19;;11029:226::o;11260:349::-;11462:2;11444:21;;;11501:2;11481:18;;;11474:30;11540:27;11535:2;11520:18;;11513:55;11600:2;11585:18;;11434:175::o;11614:408::-;11816:2;11798:21;;;11855:2;11835:18;;;11828:30;11894:34;11889:2;11874:18;;11867:62;-1:-1:-1;;;11960:2:1;11945:18;;11938:42;12012:3;11997:19;;11788:234::o;12027:420::-;12229:2;12211:21;;;12268:2;12248:18;;;12241:30;12307:34;12302:2;12287:18;;12280:62;12378:26;12373:2;12358:18;;12351:54;12437:3;12422:19;;12201:246::o;12452:406::-;12654:2;12636:21;;;12693:2;12673:18;;;12666:30;12732:34;12727:2;12712:18;;12705:62;-1:-1:-1;;;12798:2:1;12783:18;;12776:40;12848:3;12833:19;;12626:232::o;12863:405::-;13065:2;13047:21;;;13104:2;13084:18;;;13077:30;13143:34;13138:2;13123:18;;13116:62;-1:-1:-1;;;13209:2:1;13194:18;;13187:39;13258:3;13243:19;;13037:231::o;13273:346::-;13475:2;13457:21;;;13514:2;13494:18;;;13487:30;-1:-1:-1;;;13548:2:1;13533:18;;13526:52;13610:2;13595:18;;13447:172::o;13624:400::-;13826:2;13808:21;;;13865:2;13845:18;;;13838:30;13904:34;13899:2;13884:18;;13877:62;-1:-1:-1;;;13970:2:1;13955:18;;13948:34;14014:3;13999:19;;13798:226::o;14029:356::-;14231:2;14213:21;;;14250:18;;;14243:30;14309:34;14304:2;14289:18;;14282:62;14376:2;14361:18;;14203:182::o;14390:408::-;14592:2;14574:21;;;14631:2;14611:18;;;14604:30;14670:34;14665:2;14650:18;;14643:62;-1:-1:-1;;;14736:2:1;14721:18;;14714:42;14788:3;14773:19;;14564:234::o;14803:356::-;15005:2;14987:21;;;15024:18;;;15017:30;15083:34;15078:2;15063:18;;15056:62;15150:2;15135:18;;14977:182::o;15164:346::-;15366:2;15348:21;;;15405:2;15385:18;;;15378:30;-1:-1:-1;;;15439:2:1;15424:18;;15417:52;15501:2;15486:18;;15338:172::o;15515:405::-;15717:2;15699:21;;;15756:2;15736:18;;;15729:30;15795:34;15790:2;15775:18;;15768:62;-1:-1:-1;;;15861:2:1;15846:18;;15839:39;15910:3;15895:19;;15689:231::o;15925:411::-;16127:2;16109:21;;;16166:2;16146:18;;;16139:30;16205:34;16200:2;16185:18;;16178:62;-1:-1:-1;;;16271:2:1;16256:18;;16249:45;16326:3;16311:19;;16099:237::o;16341:397::-;16543:2;16525:21;;;16582:2;16562:18;;;16555:30;16621:34;16616:2;16601:18;;16594:62;-1:-1:-1;;;16687:2:1;16672:18;;16665:31;16728:3;16713:19;;16515:223::o;16743:342::-;16945:2;16927:21;;;16984:2;16964:18;;;16957:30;-1:-1:-1;;;17018:2:1;17003:18;;16996:48;17076:2;17061:18;;16917:168::o;17090:413::-;17292:2;17274:21;;;17331:2;17311:18;;;17304:30;17370:34;17365:2;17350:18;;17343:62;-1:-1:-1;;;17436:2:1;17421:18;;17414:47;17493:3;17478:19;;17264:239::o;17508:408::-;17710:2;17692:21;;;17749:2;17729:18;;;17722:30;17788:34;17783:2;17768:18;;17761:62;-1:-1:-1;;;17854:2:1;17839:18;;17832:42;17906:3;17891:19;;17682:234::o;17921:347::-;18123:2;18105:21;;;18162:2;18142:18;;;18135:30;18201:25;18196:2;18181:18;;18174:53;18259:2;18244:18;;18095:173::o;18273:351::-;18475:2;18457:21;;;18514:2;18494:18;;;18487:30;18553:29;18548:2;18533:18;;18526:57;18615:2;18600:18;;18447:177::o;18629:::-;18775:25;;;18763:2;18748:18;;18730:76::o;18811:129::-;;18879:17;;;18929:4;18913:21;;;18869:71::o;18945:128::-;;19016:1;19012:6;19009:1;19006:13;19003:2;;;19022:18;;:::i;:::-;-1:-1:-1;19058:9:1;;18993:80::o;19078:120::-;;19144:1;19134:2;;19149:18;;:::i;:::-;-1:-1:-1;19183:9:1;;19124:74::o;19203:168::-;;19309:1;19305;19301:6;19297:14;19294:1;19291:21;19286:1;19279:9;19272:17;19268:45;19265:2;;;19316:18;;:::i;:::-;-1:-1:-1;19356:9:1;;19255:116::o;19376:125::-;;19444:1;19441;19438:8;19435:2;;;19449:18;;:::i;:::-;-1:-1:-1;19486:9:1;;19425:76::o;19506:258::-;19578:1;19588:113;19602:6;19599:1;19596:13;19588:113;;;19678:11;;;19672:18;19659:11;;;19652:39;19624:2;19617:10;19588:113;;;19719:6;19716:1;19713:13;19710:2;;;-1:-1:-1;;19754:1:1;19736:16;;19729:27;19559:205::o;19769:380::-;19854:1;19844:12;;19901:1;19891:12;;;19912:2;;19966:4;19958:6;19954:17;19944:27;;19912:2;20019;20011:6;20008:14;19988:18;19985:38;19982:2;;;20065:10;20060:3;20056:20;20053:1;20046:31;20100:4;20097:1;20090:15;20128:4;20125:1;20118:15;19982:2;;19824:325;;;:::o;20154:135::-;;-1:-1:-1;;20214:17:1;;20211:2;;;20234:18;;:::i;:::-;-1:-1:-1;20281:1:1;20270:13;;20201:88::o;20294:112::-;;20352:1;20342:2;;20357:18;;:::i;:::-;-1:-1:-1;20391:9:1;;20332:74::o;20411:127::-;20472:10;20467:3;20463:20;20460:1;20453:31;20503:4;20500:1;20493:15;20527:4;20524:1;20517:15;20543:127;20604:10;20599:3;20595:20;20592:1;20585:31;20635:4;20632:1;20625:15;20659:4;20656:1;20649:15;20675:127;20736:10;20731:3;20727:20;20724:1;20717:31;20767:4;20764:1;20757:15;20791:4;20788:1;20781:15;20807:133;-1:-1:-1;;;;;;20883:32:1;;20873:43;;20863:2;;20930:1;20927;20920:12

Swarm Source

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