ETH Price: $2,541.99 (-0.09%)

Token

time&_ (t+s)
 

Overview

Max Total Supply

500 t+s

Holders

221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 t+s
0x64397326c4a9c26c80b72fc8800253cab6064928
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:
Rithm

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-18
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-21
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

//Interfaces

interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

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);
}

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;
}

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);
}

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);
}

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);
}

//libraries

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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute.
        return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2);
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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);
    }
}

//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;
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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(to).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 {}
}

abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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);
    }
}

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

//Token

contract Rithm is ERC721Enumerable, ERC721Burnable, Ownable, AccessControl {
    
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;

    uint256 private maxMint;
    string private baseTokenURI;

    constructor(
        string memory _uri,
        string memory _contractName,
        string memory _tokenSymbol,
        uint256 _maxMint
    ) ERC721(_contractName, _tokenSymbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        maxMint = _maxMint;
        baseTokenURI = _uri;
    }

    function mint(address to) public {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role to mint");
        require(_tokenIdTracker.current() < maxMint, "Max mint reached");

        _mint(to, _tokenIdTracker.current());

        _tokenIdTracker.increment();
    }

    function canMint(uint256 quantity) external view returns (bool) {
        return (_tokenIdTracker.current() + quantity) <= maxMint;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string calldata uri) public onlyOwner() {
        baseTokenURI = uri;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControl, ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

contract RithmDrop is Ownable, Pausable, ReentrancyGuard {
    
    Rithm private token;

    address private wallet;
    uint256 private price;
    uint8 private saleState;
    mapping(address => bool) public whitelist; 
    uint256 constant MAX_MINT_PER_ORDER = 1;
    uint256 constant public_sale_start = 1632016800; 

    constructor(
        Rithm _token,
        uint256 _price
    ) Ownable() {
        token = _token;
        price = _price;

        _pause();
    }

    function mint(uint256 quantity) external payable whenNotPaused() nonReentrant() {
        require(msg.value >= price * quantity, "RithmDrop: Insufficient value");
        require(quantity <= MAX_MINT_PER_ORDER || block.timestamp>=public_sale_start, "RithmDrop: Exceeds order limit");
        require(token.canMint(quantity), "RithmDrop: Exceeds total");
        require(whitelist[msg.sender] || block.timestamp>=public_sale_start, "Not whitelisted");
        whitelist[msg.sender] = false;

        for (uint256 i = 0; i < quantity; i++) {
            token.mint(_msgSender());
        }
    }

    function ownerMint(uint256 quantity) external onlyOwner() {
        require(token.canMint(quantity), "RithmDrop: Exceeds total");

        for (uint256 i = 0; i < quantity; i++) {
            token.mint(_msgSender());
        }
    }

    function mintGiveaways(address[] calldata addresses) external onlyOwner() {
        require(token.canMint(addresses.length), "RithmDrop: Exceeds total");

        for (uint256 i = 0; i < addresses.length; i++) {
            token.mint(addresses[i]);
        }
    }

    function withdraw(uint256 _amount, address _withdraw_address) external onlyOwner() {
        payable(_withdraw_address).transfer(_amount);
    }
    
    function flipAddressWhitelist(address[] calldata addrs) external onlyOwner()  {
        for (uint256 i = 0; i < addrs.length; i++) {
            whitelist[addrs[i]] = !whitelist[addrs[i]];
        }
    }
    
    
    function isWhitelisted(address _address) external view returns (bool) {
        return whitelist[_address];
    }

    function pause() external whenNotPaused() onlyOwner() {
        _pause();
    }

    function unpause() external whenPaused() onlyOwner() {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_contractName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040523480156200001157600080fd5b5060405162002bed38038062002bed833981016040819052620000349162000315565b8251839083906200004d906000906020850190620001bc565b50805162000063906001906020840190620001bc565b505050620000806200007a620000b260201b60201c565b620000b6565b6200008d60003362000108565b600d8190558351620000a790600e906020870190620001bc565b5050505050620003fd565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000114828262000118565b5050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff1662000114576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001783390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620001ca90620003aa565b90600052602060002090601f016020900481019282620001ee576000855562000239565b82601f106200020957805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002395782518255916020019190600101906200021c565b50620002479291506200024b565b5090565b5b808211156200024757600081556001016200024c565b600082601f83011262000273578081fd5b81516001600160401b0380821115620002905762000290620003e7565b604051601f8301601f19908116603f01168101908282118183101715620002bb57620002bb620003e7565b81604052838152602092508683858801011115620002d7578485fd5b8491505b83821015620002fa5785820183015181830184015290820190620002db565b838211156200030b57848385830101525b9695505050505050565b600080600080608085870312156200032b578384fd5b84516001600160401b038082111562000342578586fd5b620003508883890162000262565b9550602087015191508082111562000366578485fd5b620003748883890162000262565b945060408701519150808211156200038a578384fd5b50620003998782880162000262565b606096909601519497939650505050565b600181811c90821680620003bf57607f821691505b60208210811415620003e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127e0806200040d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063a22cb465116100a2578063d547741f11610071578063d547741f14610442578063e63ab1e914610455578063e985e9c51461047c578063f2fde38b146104b857600080fd5b8063a22cb465146103e2578063b88d4fde146103f5578063c87b56dd14610408578063d53913931461041b57600080fd5b80638da5cb5b116100de5780638da5cb5b1461038857806391d148541461039957806395d89b41146103d2578063a217fddf146103da57600080fd5b80636352211e146103475780636a6278421461035a57806370a082311461036d578063715018a61461038057600080fd5b80632f2ff15d1161018757806342966c681161015657806342966c68146102fb5780634f6ccce71461030e57806355f804b3146103215780635dd871a31461033457600080fd5b80632f2ff15d146102af5780632f745c59146102c257806336568abe146102d557806342842e0e146102e857600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd14610279578063248a9ca31461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f8366004612473565b6104cb565b60405190151581526020015b60405180910390f35b61021a6104dc565b6040516102099190612630565b61023a610235366004612439565b61056e565b6040516001600160a01b039091168152602001610209565b610265610260366004612410565b610619565b005b6008545b604051908152602001610209565b6102656102873660046122c6565b61074b565b61026b61029a366004612439565b6000908152600b602052604090206001015490565b6102656102bd366004612451565b6107d3565b61026b6102d0366004612410565b6107f9565b6102656102e3366004612451565b6108a1565b6102656102f63660046122c6565b61092d565b610265610309366004612439565b610948565b61026b61031c366004612439565b6109cf565b61026561032f3660046124ab565b610a81565b6101fd610342366004612439565b610ae7565b61023a610355366004612439565b610b08565b61026561036836600461227a565b610b93565b61026b61037b36600461227a565b610c7c565b610265610d16565b600a546001600160a01b031661023a565b6101fd6103a7366004612451565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61021a610d7c565b61026b600081565b6102656103f03660046123d6565b610d8b565b610265610403366004612301565b610e50565b61021a610416366004612439565b610ede565b61026b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610265610450366004612451565b610fc7565b61026b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101fd61048a366004612294565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102656104c636600461227a565b610fed565b60006104d6826110cc565b92915050565b6060600080546104eb906126e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610517906126e8565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062482610b08565b9050806001600160a01b0316836001600160a01b031614156106ae5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016105f4565b336001600160a01b03821614806106ca57506106ca813361048a565b61073c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f4565b610746838361110a565b505050565b610756335b82611185565b6107c85760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105f4565b61074683838361128d565b6000828152600b60205260409020600101546107ef8133611472565b61074683836114f2565b600061080483610c7c565b82106108785760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016105f4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b038116331461091f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016105f4565b6109298282611594565b5050565b61074683838360405180602001604052806000815250610e50565b61095133610750565b6109c35760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016105f4565b6109cc81611617565b50565b60006109da60085490565b8210610a4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016105f4565b60088281548110610a6f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610adb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b610746600e83836121c5565b6000600d5482610af6600c5490565b610b009190612643565b111592915050565b6000818152600260205260408120546001600160a01b0316806104d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016105f4565b610bbd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336103a7565b610c095760405162461bcd60e51b815260206004820152601d60248201527f4d7573742068617665206d696e74657220726f6c6520746f206d696e7400000060448201526064016105f4565b600d54600c5410610c5c5760405162461bcd60e51b815260206004820152601060248201527f4d6178206d696e7420726561636865640000000000000000000000000000000060448201526064016105f4565b610c6e81610c69600c5490565b6116cb565b6109cc600c80546001019055565b60006001600160a01b038216610cfa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016105f4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b610d7a6000611826565b565b6060600180546104eb906126e8565b6001600160a01b038216331415610de45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e5a3383611185565b610ecc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105f4565b610ed884848484611885565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f6b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105f4565b6000610f7561190e565b90506000815111610f955760405180602001604052806000815250610fc0565b80610f9f8461191d565b604051602001610fb0929190612544565b6040516020818303038152906040525b9392505050565b6000828152600b6020526040902060010154610fe38133611472565b6107468383611594565b600a546001600160a01b031633146110475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b6001600160a01b0381166110c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105f4565b6109cc81611826565b60006001600160e01b031982167f7965db0b0000000000000000000000000000000000000000000000000000000014806104d657506104d682611a6b565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061114c82610b08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661120f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016105f4565b600061121a83610b08565b9050806001600160a01b0316846001600160a01b031614806112555750836001600160a01b031661124a8461056e565b6001600160a01b0316145b8061128557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112a082610b08565b6001600160a01b03161461131c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016105f4565b6001600160a01b0382166113975760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105f4565b6113a2838383611aa9565b6113ad60008261110a565b6001600160a01b03831660009081526003602052604081208054600192906113d690849061268e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611404908490612643565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff16610929576114b0816001600160a01b03166014611ab4565b6114bb836020611ab4565b6040516020016114cc929190612573565b60408051601f198184030181529082905262461bcd60e51b82526105f491600401612630565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff16610929576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115503390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff1615610929576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061162282610b08565b905061163081600084611aa9565b61163b60008361110a565b6001600160a01b038116600090815260036020526040812080546001929061166490849061268e565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166117215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f4565b6000818152600260205260409020546001600160a01b0316156117865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f4565b61179260008383611aa9565b6001600160a01b03821660009081526003602052604081208054600192906117bb908490612643565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61189084848461128d565b61189c84848484611d23565b610ed85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105f4565b6060600e80546104eb906126e8565b60608161195d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611987578061197181612723565b91506119809050600a8361265b565b9150611961565b60008167ffffffffffffffff8111156119b057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119da576020820181803683370190505b5090505b8415611285576119ef60018361268e565b91506119fc600a8661273e565b611a07906030612643565b60f81b818381518110611a2a57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a64600a8661265b565b94506119de565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806104d657506104d682611eb8565b610746838383611f53565b60606000611ac383600261266f565b611ace906002612643565b67ffffffffffffffff811115611af457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b1e576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b6357634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611bd457634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611c1084600261266f565b611c1b906001612643565b90505b6001811115611cd4577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611c6a57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611c8e57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611ccd816126d1565b9050611c1e565b508315610fc05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105f4565b60006001600160a01b0384163b15611ead576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d809033908990889088906004016125f4565b602060405180830381600087803b158015611d9a57600080fd5b505af1925050508015611dca575060408051601f3d908101601f19168201909252611dc79181019061248f565b60015b611e7a573d808015611df8576040519150601f19603f3d011682016040523d82523d6000602084013e611dfd565b606091505b508051611e725760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105f4565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611285565b506001949350505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611f1b57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806104d657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146104d6565b6001600160a01b038316611fae57611fa981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fd1565b816001600160a01b0316836001600160a01b031614611fd157611fd1838261200b565b6001600160a01b038216611fe857610746816120a8565b826001600160a01b0316826001600160a01b031614610746576107468282612181565b6000600161201884610c7c565b612022919061268e565b600083815260076020526040902054909150808214612075576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120ba9060019061268e565b600083815260096020526040812054600880549394509092849081106120f057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061211f57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061216557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061218c83610c7c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546121d1906126e8565b90600052602060002090601f0160209004810192826121f35760008555612239565b82601f1061220c5782800160ff19823516178555612239565b82800160010185558215612239579182015b8281111561223957823582559160200191906001019061221e565b50612245929150612249565b5090565b5b80821115612245576000815560010161224a565b80356001600160a01b038116811461227557600080fd5b919050565b60006020828403121561228b578081fd5b610fc08261225e565b600080604083850312156122a6578081fd5b6122af8361225e565b91506122bd6020840161225e565b90509250929050565b6000806000606084860312156122da578081fd5b6122e38461225e565b92506122f16020850161225e565b9150604084013590509250925092565b60008060008060808587031215612316578081fd5b61231f8561225e565b935061232d6020860161225e565b925060408501359150606085013567ffffffffffffffff80821115612350578283fd5b818701915087601f830112612363578283fd5b8135818111156123755761237561277e565b604051601f8201601f19908116603f0116810190838211818310171561239d5761239d61277e565b816040528281528a60208487010111156123b5578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156123e8578182fd5b6123f18361225e565b915060208301358015158114612405578182fd5b809150509250929050565b60008060408385031215612422578182fd5b61242b8361225e565b946020939093013593505050565b60006020828403121561244a578081fd5b5035919050565b60008060408385031215612463578182fd5b823591506122bd6020840161225e565b600060208284031215612484578081fd5b8135610fc081612794565b6000602082840312156124a0578081fd5b8151610fc081612794565b600080602083850312156124bd578182fd5b823567ffffffffffffffff808211156124d4578384fd5b818501915085601f8301126124e7578384fd5b8135818111156124f5578485fd5b866020828501011115612506578485fd5b60209290920196919550909350505050565b600081518084526125308160208601602086016126a5565b601f01601f19169290920160200192915050565b600083516125568184602088016126a5565b83519083019061256a8183602088016126a5565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125ab8160178501602088016126a5565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516125e88160288401602088016126a5565b01602801949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126266080830184612518565b9695505050505050565b602081526000610fc06020830184612518565b6000821982111561265657612656612752565b500190565b60008261266a5761266a612768565b500490565b600081600019048311821515161561268957612689612752565b500290565b6000828210156126a0576126a0612752565b500390565b60005b838110156126c05781810151838201526020016126a8565b83811115610ed85750506000910152565b6000816126e0576126e0612752565b506000190190565b600181811c908216806126fc57607f821691505b6020821081141561271d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273757612737612752565b5060010190565b60008261274d5761274d612768565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109cc57600080fdfea26469706673582212205c171c5e7f1cec8a7bd68a66604ec0be5283cb763a1d057250fd8f220d5a0ec364736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569616867746c35327979647862666e336e71727867726179706f7134726a696a3477696461656770356179743465676e6d626e77792f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000674696d65265f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003742b730000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063a22cb465116100a2578063d547741f11610071578063d547741f14610442578063e63ab1e914610455578063e985e9c51461047c578063f2fde38b146104b857600080fd5b8063a22cb465146103e2578063b88d4fde146103f5578063c87b56dd14610408578063d53913931461041b57600080fd5b80638da5cb5b116100de5780638da5cb5b1461038857806391d148541461039957806395d89b41146103d2578063a217fddf146103da57600080fd5b80636352211e146103475780636a6278421461035a57806370a082311461036d578063715018a61461038057600080fd5b80632f2ff15d1161018757806342966c681161015657806342966c68146102fb5780634f6ccce71461030e57806355f804b3146103215780635dd871a31461033457600080fd5b80632f2ff15d146102af5780632f745c59146102c257806336568abe146102d557806342842e0e146102e857600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd14610279578063248a9ca31461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f8366004612473565b6104cb565b60405190151581526020015b60405180910390f35b61021a6104dc565b6040516102099190612630565b61023a610235366004612439565b61056e565b6040516001600160a01b039091168152602001610209565b610265610260366004612410565b610619565b005b6008545b604051908152602001610209565b6102656102873660046122c6565b61074b565b61026b61029a366004612439565b6000908152600b602052604090206001015490565b6102656102bd366004612451565b6107d3565b61026b6102d0366004612410565b6107f9565b6102656102e3366004612451565b6108a1565b6102656102f63660046122c6565b61092d565b610265610309366004612439565b610948565b61026b61031c366004612439565b6109cf565b61026561032f3660046124ab565b610a81565b6101fd610342366004612439565b610ae7565b61023a610355366004612439565b610b08565b61026561036836600461227a565b610b93565b61026b61037b36600461227a565b610c7c565b610265610d16565b600a546001600160a01b031661023a565b6101fd6103a7366004612451565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61021a610d7c565b61026b600081565b6102656103f03660046123d6565b610d8b565b610265610403366004612301565b610e50565b61021a610416366004612439565b610ede565b61026b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610265610450366004612451565b610fc7565b61026b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101fd61048a366004612294565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102656104c636600461227a565b610fed565b60006104d6826110cc565b92915050565b6060600080546104eb906126e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610517906126e8565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062482610b08565b9050806001600160a01b0316836001600160a01b031614156106ae5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016105f4565b336001600160a01b03821614806106ca57506106ca813361048a565b61073c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f4565b610746838361110a565b505050565b610756335b82611185565b6107c85760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105f4565b61074683838361128d565b6000828152600b60205260409020600101546107ef8133611472565b61074683836114f2565b600061080483610c7c565b82106108785760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016105f4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b038116331461091f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016105f4565b6109298282611594565b5050565b61074683838360405180602001604052806000815250610e50565b61095133610750565b6109c35760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016105f4565b6109cc81611617565b50565b60006109da60085490565b8210610a4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016105f4565b60088281548110610a6f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610adb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b610746600e83836121c5565b6000600d5482610af6600c5490565b610b009190612643565b111592915050565b6000818152600260205260408120546001600160a01b0316806104d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016105f4565b610bbd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336103a7565b610c095760405162461bcd60e51b815260206004820152601d60248201527f4d7573742068617665206d696e74657220726f6c6520746f206d696e7400000060448201526064016105f4565b600d54600c5410610c5c5760405162461bcd60e51b815260206004820152601060248201527f4d6178206d696e7420726561636865640000000000000000000000000000000060448201526064016105f4565b610c6e81610c69600c5490565b6116cb565b6109cc600c80546001019055565b60006001600160a01b038216610cfa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016105f4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b610d7a6000611826565b565b6060600180546104eb906126e8565b6001600160a01b038216331415610de45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e5a3383611185565b610ecc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105f4565b610ed884848484611885565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f6b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105f4565b6000610f7561190e565b90506000815111610f955760405180602001604052806000815250610fc0565b80610f9f8461191d565b604051602001610fb0929190612544565b6040516020818303038152906040525b9392505050565b6000828152600b6020526040902060010154610fe38133611472565b6107468383611594565b600a546001600160a01b031633146110475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f4565b6001600160a01b0381166110c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105f4565b6109cc81611826565b60006001600160e01b031982167f7965db0b0000000000000000000000000000000000000000000000000000000014806104d657506104d682611a6b565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061114c82610b08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661120f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016105f4565b600061121a83610b08565b9050806001600160a01b0316846001600160a01b031614806112555750836001600160a01b031661124a8461056e565b6001600160a01b0316145b8061128557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112a082610b08565b6001600160a01b03161461131c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016105f4565b6001600160a01b0382166113975760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105f4565b6113a2838383611aa9565b6113ad60008261110a565b6001600160a01b03831660009081526003602052604081208054600192906113d690849061268e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611404908490612643565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff16610929576114b0816001600160a01b03166014611ab4565b6114bb836020611ab4565b6040516020016114cc929190612573565b60408051601f198184030181529082905262461bcd60e51b82526105f491600401612630565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff16610929576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115503390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff1615610929576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061162282610b08565b905061163081600084611aa9565b61163b60008361110a565b6001600160a01b038116600090815260036020526040812080546001929061166490849061268e565b9091555050600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166117215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f4565b6000818152600260205260409020546001600160a01b0316156117865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f4565b61179260008383611aa9565b6001600160a01b03821660009081526003602052604081208054600192906117bb908490612643565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61189084848461128d565b61189c84848484611d23565b610ed85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105f4565b6060600e80546104eb906126e8565b60608161195d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611987578061197181612723565b91506119809050600a8361265b565b9150611961565b60008167ffffffffffffffff8111156119b057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119da576020820181803683370190505b5090505b8415611285576119ef60018361268e565b91506119fc600a8661273e565b611a07906030612643565b60f81b818381518110611a2a57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a64600a8661265b565b94506119de565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806104d657506104d682611eb8565b610746838383611f53565b60606000611ac383600261266f565b611ace906002612643565b67ffffffffffffffff811115611af457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b1e576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b6357634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611bd457634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611c1084600261266f565b611c1b906001612643565b90505b6001811115611cd4577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611c6a57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611c8e57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611ccd816126d1565b9050611c1e565b508315610fc05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105f4565b60006001600160a01b0384163b15611ead576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d809033908990889088906004016125f4565b602060405180830381600087803b158015611d9a57600080fd5b505af1925050508015611dca575060408051601f3d908101601f19168201909252611dc79181019061248f565b60015b611e7a573d808015611df8576040519150601f19603f3d011682016040523d82523d6000602084013e611dfd565b606091505b508051611e725760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105f4565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611285565b506001949350505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611f1b57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806104d657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146104d6565b6001600160a01b038316611fae57611fa981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fd1565b816001600160a01b0316836001600160a01b031614611fd157611fd1838261200b565b6001600160a01b038216611fe857610746816120a8565b826001600160a01b0316826001600160a01b031614610746576107468282612181565b6000600161201884610c7c565b612022919061268e565b600083815260076020526040902054909150808214612075576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120ba9060019061268e565b600083815260096020526040812054600880549394509092849081106120f057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061211f57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061216557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061218c83610c7c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546121d1906126e8565b90600052602060002090601f0160209004810192826121f35760008555612239565b82601f1061220c5782800160ff19823516178555612239565b82800160010185558215612239579182015b8281111561223957823582559160200191906001019061221e565b50612245929150612249565b5090565b5b80821115612245576000815560010161224a565b80356001600160a01b038116811461227557600080fd5b919050565b60006020828403121561228b578081fd5b610fc08261225e565b600080604083850312156122a6578081fd5b6122af8361225e565b91506122bd6020840161225e565b90509250929050565b6000806000606084860312156122da578081fd5b6122e38461225e565b92506122f16020850161225e565b9150604084013590509250925092565b60008060008060808587031215612316578081fd5b61231f8561225e565b935061232d6020860161225e565b925060408501359150606085013567ffffffffffffffff80821115612350578283fd5b818701915087601f830112612363578283fd5b8135818111156123755761237561277e565b604051601f8201601f19908116603f0116810190838211818310171561239d5761239d61277e565b816040528281528a60208487010111156123b5578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156123e8578182fd5b6123f18361225e565b915060208301358015158114612405578182fd5b809150509250929050565b60008060408385031215612422578182fd5b61242b8361225e565b946020939093013593505050565b60006020828403121561244a578081fd5b5035919050565b60008060408385031215612463578182fd5b823591506122bd6020840161225e565b600060208284031215612484578081fd5b8135610fc081612794565b6000602082840312156124a0578081fd5b8151610fc081612794565b600080602083850312156124bd578182fd5b823567ffffffffffffffff808211156124d4578384fd5b818501915085601f8301126124e7578384fd5b8135818111156124f5578485fd5b866020828501011115612506578485fd5b60209290920196919550909350505050565b600081518084526125308160208601602086016126a5565b601f01601f19169290920160200192915050565b600083516125568184602088016126a5565b83519083019061256a8183602088016126a5565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125ab8160178501602088016126a5565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516125e88160288401602088016126a5565b01602801949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126266080830184612518565b9695505050505050565b602081526000610fc06020830184612518565b6000821982111561265657612656612752565b500190565b60008261266a5761266a612768565b500490565b600081600019048311821515161561268957612689612752565b500290565b6000828210156126a0576126a0612752565b500390565b60005b838110156126c05781810151838201526020016126a8565b83811115610ed85750506000910152565b6000816126e0576126e0612752565b506000190190565b600181811c908216806126fc57607f821691505b6020821081141561271d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273757612737612752565b5060010190565b60008261274d5761274d612768565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109cc57600080fdfea26469706673582212205c171c5e7f1cec8a7bd68a66604ec0be5283cb763a1d057250fd8f220d5a0ec364736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569616867746c35327979647862666e336e71727867726179706f7134726a696a3477696461656770356179743465676e6d626e77792f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000674696d65265f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003742b730000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeiahgtl52yydxbfn3nqrxgraypoq4rjij4widaegp5ayt4egnmbnwy/
Arg [1] : _contractName (string): time&_
Arg [2] : _tokenSymbol (string): t+s
Arg [3] : _maxMint (uint256): 500

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [5] : 697066733a2f2f62616679626569616867746c35327979647862666e336e7172
Arg [6] : 7867726179706f7134726a696a3477696461656770356179743465676e6d626e
Arg [7] : 77792f0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 74696d65265f0000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 742b730000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51998:1848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53599:244;;;;;;:::i;:::-;;:::i;:::-;;;7251:14:1;;7244:22;7226:41;;7214:2;7199:18;53599:244:0;;;;;;;;21808:100;;;:::i;:::-;;;;;;;:::i;23367:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6503:55:1;;;6485:74;;6473:2;6458:18;23367:221:0;6440:125:1;22890:411:0;;;;;;:::i;:::-;;:::i;:::-;;34724:113;34812:10;:17;34724:113;;;7424:25:1;;;7412:2;7397:18;34724:113:0;7379:76:1;24257:339:0;;;;;;:::i;:::-;;:::i;43598:123::-;;;;;;:::i;:::-;43664:7;43691:12;;;:6;:12;;;;;:22;;;;43598:123;43983:147;;;;;;:::i;:::-;;:::i;34392:256::-;;;;;;:::i;:::-;;:::i;45031:218::-;;;;;;:::i;:::-;;:::i;24667:185::-;;;;;;:::i;:::-;;:::i;33223:245::-;;;;;;:::i;:::-;;:::i;34914:233::-;;;;;;:::i;:::-;;:::i;53263:97::-;;;;;;:::i;:::-;;:::i;53003:139::-;;;;;;:::i;:::-;;:::i;21502:239::-;;;;;;:::i;:::-;;:::i;52703:292::-;;;;;;:::i;:::-;;:::i;21232:208::-;;;;;;:::i;:::-;;:::i;47807:94::-;;;:::i;47156:87::-;47229:6;;-1:-1:-1;;;;;47229:6:0;47156:87;;42483:139;;;;;;:::i;:::-;42561:4;42585:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42585:29:0;;;;;;;;;;;;;;;42483:139;21977:104;;;:::i;40461:49::-;;40506:4;40461:49;;23660:295;;;;;;:::i;:::-;;:::i;24923:328::-;;;;;;:::i;:::-;;:::i;22152:334::-;;;;;;:::i;:::-;;:::i;52130:62::-;;52168:24;52130:62;;44375:149;;;;;;:::i;:::-;;:::i;52199:62::-;;52237:24;52199:62;;24026:164;;;;;;:::i;:::-;-1:-1:-1;;;;;24147:25:0;;;24123:4;24147:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24026:164;48056:192;;;;;;:::i;:::-;;:::i;53599:244::-;53770:4;53799:36;53823:11;53799:23;:36::i;:::-;53792:43;53599:244;-1:-1:-1;;53599:244:0:o;21808:100::-;21862:13;21895:5;21888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21808:100;:::o;23367:221::-;23443:7;26850:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26850:16:0;23463:73;;;;-1:-1:-1;;;23463:73:0;;12979:2:1;23463:73:0;;;12961:21:1;13018:2;12998:18;;;12991:30;13057:34;13037:18;;;13030:62;13128:14;13108:18;;;13101:42;13160:19;;23463:73:0;;;;;;;;;-1:-1:-1;23556:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23556:24:0;;23367:221::o;22890:411::-;22971:13;22987:23;23002:7;22987:14;:23::i;:::-;22971:39;;23035:5;-1:-1:-1;;;;;23029:11:0;:2;-1:-1:-1;;;;;23029:11:0;;;23021:57;;;;-1:-1:-1;;;23021:57:0;;14579:2:1;23021:57:0;;;14561:21:1;14618:2;14598:18;;;14591:30;14657:34;14637:18;;;14630:62;14728:3;14708:18;;;14701:31;14749:19;;23021:57:0;14551:223:1;23021:57:0;19483:10;-1:-1:-1;;;;;23113:21:0;;;;:62;;-1:-1:-1;23138:37:0;23155:5;19483:10;24026:164;:::i;23138:37::-;23091:168;;;;-1:-1:-1;;;23091:168:0;;11014:2:1;23091:168:0;;;10996:21:1;11053:2;11033:18;;;11026:30;11092:34;11072:18;;;11065:62;11163:26;11143:18;;;11136:54;11207:19;;23091:168:0;10986:246:1;23091:168:0;23272:21;23281:2;23285:7;23272:8;:21::i;:::-;22890:411;;;:::o;24257:339::-;24452:41;19483:10;24471:12;24485:7;24452:18;:41::i;:::-;24444:103;;;;-1:-1:-1;;;24444:103:0;;15326:2:1;24444:103:0;;;15308:21:1;15365:2;15345:18;;;15338:30;15404:34;15384:18;;;15377:62;15475:19;15455:18;;;15448:47;15512:19;;24444:103:0;15298:239:1;24444:103:0;24560:28;24570:4;24576:2;24580:7;24560:9;:28::i;43983:147::-;43664:7;43691:12;;;:6;:12;;;;;:22;;;42065:30;42076:4;19483:10;42065;:30::i;:::-;44097:25:::1;44108:4;44114:7;44097:10;:25::i;34392:256::-:0;34489:7;34525:23;34542:5;34525:16;:23::i;:::-;34517:5;:31;34509:87;;;;-1:-1:-1;;;34509:87:0;;8247:2:1;34509:87:0;;;8229:21:1;8286:2;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8396:13;8376:18;;;8369:41;8427:19;;34509:87:0;8219:233:1;34509:87:0;-1:-1:-1;;;;;;34614:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34392:256::o;45031:218::-;-1:-1:-1;;;;;45127:23:0;;19483:10;45127:23;45119:83;;;;-1:-1:-1;;;45119:83:0;;16574:2:1;45119:83:0;;;16556:21:1;16613:2;16593:18;;;16586:30;16652:34;16632:18;;;16625:62;16723:17;16703:18;;;16696:45;16758:19;;45119:83:0;16546:237:1;45119:83:0;45215:26;45227:4;45233:7;45215:11;:26::i;:::-;45031:218;;:::o;24667:185::-;24805:39;24822:4;24828:2;24832:7;24805:39;;;;;;;;;;;;:16;:39::i;33223:245::-;33341:41;19483:10;33360:12;19403:98;33341:41;33333:102;;;;-1:-1:-1;;;33333:102:0;;16157:2:1;33333:102:0;;;16139:21:1;16196:2;16176:18;;;16169:30;16235:34;16215:18;;;16208:62;16306:18;16286;;;16279:46;16342:19;;33333:102:0;16129:238:1;33333:102:0;33446:14;33452:7;33446:5;:14::i;:::-;33223:245;:::o;34914:233::-;34989:7;35025:30;34812:10;:17;;34724:113;35025:30;35017:5;:38;35009:95;;;;-1:-1:-1;;;35009:95:0;;15744:2:1;35009:95:0;;;15726:21:1;15783:2;15763:18;;;15756:30;15822:34;15802:18;;;15795:62;15893:14;15873:18;;;15866:42;15925:19;;35009:95:0;15716:234:1;35009:95:0;35122:10;35133:5;35122:17;;;;;;-1:-1:-1;;;35122:17:0;;;;;;;;;;;;;;;;;35115:24;;34914:233;;;:::o;53263:97::-;47229:6;;-1:-1:-1;;;;;47229:6:0;19483:10;47376:23;47368:68;;;;-1:-1:-1;;;47368:68:0;;13392:2:1;47368:68:0;;;13374:21:1;;;13411:18;;;13404:30;13470:34;13450:18;;;13443:62;13522:18;;47368:68:0;13364:182:1;47368:68:0;53334:18:::1;:12;53349:3:::0;;53334:18:::1;:::i;53003:139::-:0;53061:4;53127:7;;53114:8;53086:25;:15;16907:14;;16815:114;53086:25;:36;;;;:::i;:::-;53085:49;;;53003:139;-1:-1:-1;;53003:139:0:o;21502:239::-;21574:7;21610:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21610:16:0;21645:19;21637:73;;;;-1:-1:-1;;;21637:73:0;;11850:2:1;21637:73:0;;;11832:21:1;11889:2;11869:18;;;11862:30;11928:34;11908:18;;;11901:62;11999:11;11979:18;;;11972:39;12028:19;;21637:73:0;11822:231:1;52703:292:0;52755:34;52168:24;19483:10;42483:139;:::i;52755:34::-;52747:76;;;;-1:-1:-1;;;52747:76:0;;12621:2:1;52747:76:0;;;12603:21:1;12660:2;12640:18;;;12633:30;12699:31;12679:18;;;12672:59;12748:18;;52747:76:0;12593:179:1;52747:76:0;52870:7;;52842:15;16907:14;52842:35;52834:64;;;;-1:-1:-1;;;52834:64:0;;14981:2:1;52834:64:0;;;14963:21:1;15020:2;15000:18;;;14993:30;15059:18;15039;;;15032:46;15095:18;;52834:64:0;14953:166:1;52834:64:0;52911:36;52917:2;52921:25;:15;16907:14;;16815:114;52921:25;52911:5;:36::i;:::-;52960:27;:15;17026:19;;17044:1;17026:19;;;16937:127;21232:208;21304:7;-1:-1:-1;;;;;21332:19:0;;21324:74;;;;-1:-1:-1;;;21324:74:0;;11439:2:1;21324:74:0;;;11421:21:1;11478:2;11458:18;;;11451:30;11517:34;11497:18;;;11490:62;11588:12;11568:18;;;11561:40;11618:19;;21324:74:0;11411:232:1;21324:74:0;-1:-1:-1;;;;;;21416:16:0;;;;;:9;:16;;;;;;;21232:208::o;47807:94::-;47229:6;;-1:-1:-1;;;;;47229:6:0;19483:10;47376:23;47368:68;;;;-1:-1:-1;;;47368:68:0;;13392:2:1;47368:68:0;;;13374:21:1;;;13411:18;;;13404:30;13470:34;13450:18;;;13443:62;13522:18;;47368:68:0;13364:182:1;47368:68:0;47872:21:::1;47890:1;47872:9;:21::i;:::-;47807:94::o:0;21977:104::-;22033:13;22066:7;22059:14;;;;;:::i;23660:295::-;-1:-1:-1;;;;;23763:24:0;;19483:10;23763:24;;23755:62;;;;-1:-1:-1;;;23755:62:0;;10247:2:1;23755:62:0;;;10229:21:1;10286:2;10266:18;;;10259:30;10325:27;10305:18;;;10298:55;10370:18;;23755:62:0;10219:175:1;23755:62:0;19483:10;23830:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23830:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23830:53:0;;;;;;;;;;23899:48;;7226:41:1;;;23830:42:0;;19483:10;23899:48;;7199:18:1;23899:48:0;;;;;;;23660:295;;:::o;24923:328::-;25098:41;19483:10;25131:7;25098:18;:41::i;:::-;25090:103;;;;-1:-1:-1;;;25090:103:0;;15326:2:1;25090:103:0;;;15308:21:1;15365:2;15345:18;;;15338:30;15404:34;15384:18;;;15377:62;15475:19;15455:18;;;15448:47;15512:19;;25090:103:0;15298:239:1;25090:103:0;25204:39;25218:4;25224:2;25228:7;25237:5;25204:13;:39::i;:::-;24923:328;;;;:::o;22152:334::-;26826:4;26850:16;;;:7;:16;;;;;;22225:13;;-1:-1:-1;;;;;26850:16:0;22251:76;;;;-1:-1:-1;;;22251:76:0;;14163:2:1;22251:76:0;;;14145:21:1;14202:2;14182:18;;;14175:30;14241:34;14221:18;;;14214:62;14312:17;14292:18;;;14285:45;14347:19;;22251:76:0;14135:237:1;22251:76:0;22340:21;22364:10;:8;:10::i;:::-;22340:34;;22416:1;22398:7;22392:21;:25;:86;;;;;;;;;;;;;;;;;22444:7;22453:18;:7;:16;:18::i;:::-;22427:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22392:86;22385:93;22152:334;-1:-1:-1;;;22152:334:0:o;44375:149::-;43664:7;43691:12;;;:6;:12;;;;;:22;;;42065:30;42076:4;19483:10;42065;:30::i;:::-;44490:26:::1;44502:4;44508:7;44490:11;:26::i;48056:192::-:0;47229:6;;-1:-1:-1;;;;;47229:6:0;19483:10;47376:23;47368:68;;;;-1:-1:-1;;;47368:68:0;;13392:2:1;47368:68:0;;;13374:21:1;;;13411:18;;;13404:30;13470:34;13450:18;;;13443:62;13522:18;;47368:68:0;13364:182:1;47368:68:0;-1:-1:-1;;;;;48145:22:0;::::1;48137:73;;;::::0;-1:-1:-1;;;48137:73:0;;9078:2:1;48137:73:0::1;::::0;::::1;9060:21:1::0;9117:2;9097:18;;;9090:30;9156:34;9136:18;;;9129:62;9227:8;9207:18;;;9200:36;9253:19;;48137:73:0::1;9050:228:1::0;48137:73:0::1;48221:19;48231:8;48221:9;:19::i;42187:204::-:0;42272:4;-1:-1:-1;;;;;;42296:47:0;;42311:32;42296:47;;:87;;;42347:36;42371:11;42347:23;:36::i;30743:174::-;30818:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;30818:29:0;-1:-1:-1;;;;;30818:29:0;;;;;;;;:24;;30872:23;30818:24;30872:14;:23::i;:::-;-1:-1:-1;;;;;30863:46:0;;;;;;;;;;;30743:174;;:::o;27055:348::-;27148:4;26850:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26850:16:0;27165:73;;;;-1:-1:-1;;;27165:73:0;;10601:2:1;27165:73:0;;;10583:21:1;10640:2;10620:18;;;10613:30;10679:34;10659:18;;;10652:62;10750:14;10730:18;;;10723:42;10782:19;;27165:73:0;10573:234:1;27165:73:0;27249:13;27265:23;27280:7;27265:14;:23::i;:::-;27249:39;;27318:5;-1:-1:-1;;;;;27307:16:0;:7;-1:-1:-1;;;;;27307:16:0;;:51;;;;27351:7;-1:-1:-1;;;;;27327:31:0;:20;27339:7;27327:11;:20::i;:::-;-1:-1:-1;;;;;27327:31:0;;27307:51;:87;;;-1:-1:-1;;;;;;24147:25:0;;;24123:4;24147:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27362:32;27299:96;27055:348;-1:-1:-1;;;;27055:348:0:o;30047:578::-;30206:4;-1:-1:-1;;;;;30179:31:0;:23;30194:7;30179:14;:23::i;:::-;-1:-1:-1;;;;;30179:31:0;;30171:85;;;;-1:-1:-1;;;30171:85:0;;13753:2:1;30171:85:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;13902:11;13882:18;;;13875:39;13931:19;;30171:85:0;13725:231:1;30171:85:0;-1:-1:-1;;;;;30275:16:0;;30267:65;;;;-1:-1:-1;;;30267:65:0;;9842:2:1;30267:65:0;;;9824:21:1;9881:2;9861:18;;;9854:30;9920:34;9900:18;;;9893:62;9991:6;9971:18;;;9964:34;10015:19;;30267:65:0;9814:226:1;30267:65:0;30345:39;30366:4;30372:2;30376:7;30345:20;:39::i;:::-;30449:29;30466:1;30470:7;30449:8;:29::i;:::-;-1:-1:-1;;;;;30491:15:0;;;;;;:9;:15;;;;;:20;;30510:1;;30491:15;:20;;30510:1;;30491:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30522:13:0;;;;;;:9;:13;;;;;:18;;30539:1;;30522:13;:18;;30539:1;;30522:18;:::i;:::-;;;;-1:-1:-1;;30551:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;30551:21:0;-1:-1:-1;;;;;30551:21:0;;;;;;;;;30590:27;;30551:16;;30590:27;;;;;;;30047:578;;;:::o;42912:497::-;42561:4;42585:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42585:29:0;;;;;;;;;;;;42988:414;;43181:41;43209:7;-1:-1:-1;;;;;43181:41:0;43219:2;43181:19;:41::i;:::-;43295:38;43323:4;43330:2;43295:19;:38::i;:::-;43086:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;43086:270:0;;;;;;;;;;-1:-1:-1;;;43032:358:0;;;;;;;:::i;46279:229::-;42561:4;42585:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42585:29:0;;;;;;;;;;;;46349:152;;46393:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;46393:29:0;;;;;;;;;:36;;-1:-1:-1;;46393:36:0;46425:4;46393:36;;;46476:12;19483:10;;19403:98;46476:12;-1:-1:-1;;;;;46449:40:0;46467:7;-1:-1:-1;;;;;46449:40:0;46461:4;46449:40;;;;;;;;;;46279:229;;:::o;46516:230::-;42561:4;42585:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42585:29:0;;;;;;;;;;;;46587:152;;;46662:5;46630:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;46630:29:0;;;;;;;;;;:37;;-1:-1:-1;;46630:37:0;;;46687:40;19483:10;;46630:12;;46687:40;;46662:5;46687:40;46516:230;;:::o;29350:360::-;29410:13;29426:23;29441:7;29426:14;:23::i;:::-;29410:39;;29462:48;29483:5;29498:1;29502:7;29462:20;:48::i;:::-;29551:29;29568:1;29572:7;29551:8;:29::i;:::-;-1:-1:-1;;;;;29593:16:0;;;;;;:9;:16;;;;;:21;;29613:1;;29593:16;:21;;29613:1;;29593:21;:::i;:::-;;;;-1:-1:-1;;29632:16:0;;;;:7;:16;;;;;;29625:23;;-1:-1:-1;;29625:23:0;;;29666:36;29640:7;;29632:16;-1:-1:-1;;;;;29666:36:0;;;;;29632:16;;29666:36;29350:360;;:::o;28739:382::-;-1:-1:-1;;;;;28819:16:0;;28811:61;;;;-1:-1:-1;;;28811:61:0;;12260:2:1;28811:61:0;;;12242:21:1;;;12279:18;;;12272:30;12338:34;12318:18;;;12311:62;12390:18;;28811:61:0;12232:182:1;28811:61:0;26826:4;26850:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26850:16:0;:30;28883:58;;;;-1:-1:-1;;;28883:58:0;;9485:2:1;28883:58:0;;;9467:21:1;9524:2;9504:18;;;9497:30;9563;9543:18;;;9536:58;9611:18;;28883:58:0;9457:178:1;28883:58:0;28954:45;28983:1;28987:2;28991:7;28954:20;:45::i;:::-;-1:-1:-1;;;;;29012:13:0;;;;;;:9;:13;;;;;:18;;29029:1;;29012:13;:18;;29029:1;;29012:18;:::i;:::-;;;;-1:-1:-1;;29041:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;29041:21:0;-1:-1:-1;;;;;29041:21:0;;;;;;;;29080:33;;29041:16;;;29080:33;;29041:16;;29080:33;28739:382;;:::o;48256:173::-;48331:6;;;-1:-1:-1;;;;;48348:17:0;;;-1:-1:-1;;48348:17:0;;;;;;;48381:40;;48331:6;;;48348:17;48331:6;;48381:40;;48312:16;;48381:40;48256:173;;:::o;26133:315::-;26290:28;26300:4;26306:2;26310:7;26290:9;:28::i;:::-;26337:48;26360:4;26366:2;26370:7;26379:5;26337:22;:48::i;:::-;26329:111;;;;-1:-1:-1;;;26329:111:0;;8659:2:1;26329:111:0;;;8641:21:1;8698:2;8678:18;;;8671:30;8737:34;8717:18;;;8710:62;8808:20;8788:18;;;8781:48;8846:19;;26329:111:0;8631:240:1;53150:105:0;53202:13;53235:12;53228:19;;;;;:::i;17596:723::-;17652:13;17873:10;17869:53;;-1:-1:-1;;17900:10:0;;;;;;;;;;;;;;;;;;17596:723::o;17869:53::-;17947:5;17932:12;17988:78;17995:9;;17988:78;;18021:8;;;;:::i;:::-;;-1:-1:-1;18044:10:0;;-1:-1:-1;18052:2:0;18044:10;;:::i;:::-;;;17988:78;;;18076:19;18108:6;18098:17;;;;;;-1:-1:-1;;;18098:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18098:17:0;;18076:39;;18126:154;18133:10;;18126:154;;18160:11;18170:1;18160:11;;:::i;:::-;;-1:-1:-1;18229:10:0;18237:2;18229:5;:10;:::i;:::-;18216:24;;:2;:24;:::i;:::-;18203:39;;18186:6;18193;18186:14;;;;;;-1:-1:-1;;;18186:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;18257:11:0;18266:2;18257:11;;:::i;:::-;;;18126:154;;34084:224;34186:4;-1:-1:-1;;;;;;34210:50:0;;34225:35;34210:50;;:90;;;34264:36;34288:11;34264:23;:36::i;53368:223::-;53538:45;53565:4;53571:2;53575:7;53538:26;:45::i;18897:451::-;18972:13;18998:19;19030:10;19034:6;19030:1;:10;:::i;:::-;:14;;19043:1;19030:14;:::i;:::-;19020:25;;;;;;-1:-1:-1;;;19020:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19020:25:0;;18998:47;;19056:15;:6;19063:1;19056:9;;;;;;-1:-1:-1;;;19056:9:0;;;;;;;;;;;;:15;;;;;;;;;;;19082;:6;19089:1;19082:9;;;;;;-1:-1:-1;;;19082:9:0;;;;;;;;;;;;:15;;;;;;;;;;-1:-1:-1;19113:9:0;19125:10;19129:6;19125:1;:10;:::i;:::-;:14;;19138:1;19125:14;:::i;:::-;19113:26;;19108:135;19145:1;19141;:5;19108:135;;;19180:12;19193:5;19201:3;19193:11;19180:25;;;;;-1:-1:-1;;;19180:25:0;;;;;;;;;;;;19168:6;19175:1;19168:9;;;;;;-1:-1:-1;;;19168:9:0;;;;;;;;;;;;:37;;;;;;;;;;-1:-1:-1;19230:1:0;19220:11;;;;;19148:3;;;:::i;:::-;;;19108:135;;;-1:-1:-1;19261:10:0;;19253:55;;;;-1:-1:-1;;;19253:55:0;;7886:2:1;19253:55:0;;;7868:21:1;;;7905:18;;;7898:30;7964:34;7944:18;;;7937:62;8016:18;;19253:55:0;7858:182:1;31482:803:0;31637:4;-1:-1:-1;;;;;31658:13:0;;8509:20;8557:8;31654:624;;31694:72;;;;;-1:-1:-1;;;;;31694:36:0;;;;;:72;;19483:10;;31745:4;;31751:7;;31760:5;;31694:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31694:72:0;;;;;;;;-1:-1:-1;;31694:72:0;;;;;;;;;;;;:::i;:::-;;;31690:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31940:13:0;;31936:272;;31983:60;;-1:-1:-1;;;31983:60:0;;8659:2:1;31983:60:0;;;8641:21:1;8698:2;8678:18;;;8671:30;8737:34;8717:18;;;8710:62;8808:20;8788:18;;;8781:48;8846:19;;31983:60:0;8631:240:1;31936:272:0;32158:6;32152:13;32143:6;32139:2;32135:15;32128:38;31690:533;-1:-1:-1;;;;;;31817:55:0;31827:45;31817:55;;-1:-1:-1;31810:62:0;;31654:624;-1:-1:-1;32262:4:0;31482:803;;;;;;:::o;20863:305::-;20965:4;-1:-1:-1;;;;;;21002:40:0;;21017:25;21002:40;;:105;;-1:-1:-1;;;;;;;21059:48:0;;21074:33;21059:48;21002:105;:158;;;-1:-1:-1;19848:25:0;-1:-1:-1;;;;;;19833:40:0;;;21124:36;19724:157;35760:589;-1:-1:-1;;;;;35966:18:0;;35962:187;;36001:40;36033:7;37176:10;:17;;37149:24;;;;:15;:24;;;;;:44;;;37204:24;;;;;;;;;;;;37072:164;36001:40;35962:187;;;36071:2;-1:-1:-1;;;;;36063:10:0;:4;-1:-1:-1;;;;;36063:10:0;;36059:90;;36090:47;36123:4;36129:7;36090:32;:47::i;:::-;-1:-1:-1;;;;;36163:16:0;;36159:183;;36196:45;36233:7;36196:36;:45::i;36159:183::-;36269:4;-1:-1:-1;;;;;36263:10:0;:2;-1:-1:-1;;;;;36263:10:0;;36259:83;;36290:40;36318:2;36322:7;36290:27;:40::i;37863:988::-;38129:22;38179:1;38154:22;38171:4;38154:16;:22::i;:::-;:26;;;;:::i;:::-;38191:18;38212:26;;;:17;:26;;;;;;38129:51;;-1:-1:-1;38345:28:0;;;38341:328;;-1:-1:-1;;;;;38412:18:0;;38390:19;38412:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38463:30;;;;;;:44;;;38580:30;;:17;:30;;;;;:43;;;38341:328;-1:-1:-1;38765:26:0;;;;:17;:26;;;;;;;;38758:33;;;-1:-1:-1;;;;;38809:18:0;;;;;:12;:18;;;;;:34;;;;;;;38802:41;37863:988::o;39146:1079::-;39424:10;:17;39399:22;;39424:21;;39444:1;;39424:21;:::i;:::-;39456:18;39477:24;;;:15;:24;;;;;;39850:10;:26;;39399:46;;-1:-1:-1;39477:24:0;;39399:46;;39850:26;;;;-1:-1:-1;;;39850:26:0;;;;;;;;;;;;;;;;;39828:48;;39914:11;39889:10;39900;39889:22;;;;;;-1:-1:-1;;;39889:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;39994:28;;;:15;:28;;;;;;;:41;;;40166:24;;;;;40159:31;40201:10;:16;;;;;-1:-1:-1;;;40201:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39146:1079;;;;:::o;36650:221::-;36735:14;36752:20;36769:2;36752:16;:20::i;:::-;-1:-1:-1;;;;;36783:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36828:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36650:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:1242::-;1129:6;1137;1145;1153;1206:3;1194:9;1185:7;1181:23;1177:33;1174:2;;;1228:6;1220;1213:22;1174:2;1256:29;1275:9;1256:29;:::i;:::-;1246:39;;1304:38;1338:2;1327:9;1323:18;1304:38;:::i;:::-;1294:48;;1389:2;1378:9;1374:18;1361:32;1351:42;;1444:2;1433:9;1429:18;1416:32;1467:18;1508:2;1500:6;1497:14;1494:2;;;1529:6;1521;1514:22;1494:2;1572:6;1561:9;1557:22;1547:32;;1617:7;1610:4;1606:2;1602:13;1598:27;1588:2;;1644:6;1636;1629:22;1588:2;1685;1672:16;1707:2;1703;1700:10;1697:2;;;1713:18;;:::i;:::-;1847:2;1841:9;1909:4;1901:13;;-1:-1:-1;;1897:22:1;;;1921:2;1893:31;1889:40;1877:53;;;1945:18;;;1965:22;;;1942:46;1939:2;;;1991:18;;:::i;:::-;2031:10;2027:2;2020:22;2066:2;2058:6;2051:18;2106:7;2101:2;2096;2092;2088:11;2084:20;2081:33;2078:2;;;2132:6;2124;2117:22;2078:2;2193;2188;2184;2180:11;2175:2;2167:6;2163:15;2150:46;2216:15;;;2233:2;2212:24;2205:40;;;;1164:1112;;;;-1:-1:-1;1164:1112:1;;-1:-1:-1;;;;1164:1112:1:o;2281:367::-;2346:6;2354;2407:2;2395:9;2386:7;2382:23;2378:32;2375:2;;;2428:6;2420;2413:22;2375:2;2456:29;2475:9;2456:29;:::i;:::-;2446:39;;2535:2;2524:9;2520:18;2507:32;2582:5;2575:13;2568:21;2561:5;2558:32;2548:2;;2609:6;2601;2594:22;2548:2;2637:5;2627:15;;;2365:283;;;;;:::o;2653:264::-;2721:6;2729;2782:2;2770:9;2761:7;2757:23;2753:32;2750:2;;;2803:6;2795;2788:22;2750:2;2831:29;2850:9;2831:29;:::i;:::-;2821:39;2907:2;2892:18;;;;2879:32;;-1:-1:-1;;;2740:177:1:o;2922:190::-;2981:6;3034:2;3022:9;3013:7;3009:23;3005:32;3002:2;;;3055:6;3047;3040:22;3002:2;-1:-1:-1;3083:23:1;;2992:120;-1:-1:-1;2992:120:1:o;3117:264::-;3185:6;3193;3246:2;3234:9;3225:7;3221:23;3217:32;3214:2;;;3267:6;3259;3252:22;3214:2;3308:9;3295:23;3285:33;;3337:38;3371:2;3360:9;3356:18;3337:38;:::i;3386:255::-;3444:6;3497:2;3485:9;3476:7;3472:23;3468:32;3465:2;;;3518:6;3510;3503:22;3465:2;3562:9;3549:23;3581:30;3605:5;3581:30;:::i;3646:259::-;3715:6;3768:2;3756:9;3747:7;3743:23;3739:32;3736:2;;;3789:6;3781;3774:22;3736:2;3826:9;3820:16;3845:30;3869:5;3845:30;:::i;3910:642::-;3981:6;3989;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4108:9;4095:23;4137:18;4178:2;4170:6;4167:14;4164:2;;;4199:6;4191;4184:22;4164:2;4242:6;4231:9;4227:22;4217:32;;4287:7;4280:4;4276:2;4272:13;4268:27;4258:2;;4314:6;4306;4299:22;4258:2;4359;4346:16;4385:2;4377:6;4374:14;4371:2;;;4406:6;4398;4391:22;4371:2;4456:7;4451:2;4442:6;4438:2;4434:15;4430:24;4427:37;4424:2;;;4482:6;4474;4467:22;4424:2;4518;4510:11;;;;;4540:6;;-1:-1:-1;4000:552:1;;-1:-1:-1;;;;4000:552:1:o;4752:316::-;4793:3;4831:5;4825:12;4858:6;4853:3;4846:19;4874:63;4930:6;4923:4;4918:3;4914:14;4907:4;4900:5;4896:16;4874:63;:::i;:::-;4982:2;4970:15;-1:-1:-1;;4966:88:1;4957:98;;;;5057:4;4953:109;;4801:267;-1:-1:-1;;4801:267:1:o;5073:470::-;5252:3;5290:6;5284:13;5306:53;5352:6;5347:3;5340:4;5332:6;5328:17;5306:53;:::i;:::-;5422:13;;5381:16;;;;5444:57;5422:13;5381:16;5478:4;5466:17;;5444:57;:::i;:::-;5517:20;;5260:283;-1:-1:-1;;;;5260:283:1:o;5548:786::-;5959:25;5954:3;5947:38;5929:3;6014:6;6008:13;6030:62;6085:6;6080:2;6075:3;6071:12;6064:4;6056:6;6052:17;6030:62;:::i;:::-;6156:19;6151:2;6111:16;;;6143:11;;;6136:40;6201:13;;6223:63;6201:13;6272:2;6264:11;;6257:4;6245:17;;6223:63;:::i;:::-;6306:17;6325:2;6302:26;;5937:397;-1:-1:-1;;;;5937:397:1:o;6570:511::-;6764:4;-1:-1:-1;;;;;6874:2:1;6866:6;6862:15;6851:9;6844:34;6926:2;6918:6;6914:15;6909:2;6898:9;6894:18;6887:43;;6966:6;6961:2;6950:9;6946:18;6939:34;7009:3;7004:2;6993:9;6989:18;6982:31;7030:45;7070:3;7059:9;7055:19;7047:6;7030:45;:::i;:::-;7022:53;6773:308;-1:-1:-1;;;;;;6773:308:1:o;7460:219::-;7609:2;7598:9;7591:21;7572:4;7629:44;7669:2;7658:9;7654:18;7646:6;7629:44;:::i;16970:128::-;17010:3;17041:1;17037:6;17034:1;17031:13;17028:2;;;17047:18;;:::i;:::-;-1:-1:-1;17083:9:1;;17018:80::o;17103:120::-;17143:1;17169;17159:2;;17174:18;;:::i;:::-;-1:-1:-1;17208:9:1;;17149:74::o;17228:228::-;17268:7;17394:1;-1:-1:-1;;17322:74:1;17319:1;17316:81;17311:1;17304:9;17297:17;17293:105;17290:2;;;17401:18;;:::i;:::-;-1:-1:-1;17441:9:1;;17280:176::o;17461:125::-;17501:4;17529:1;17526;17523:8;17520:2;;;17534:18;;:::i;:::-;-1:-1:-1;17571:9:1;;17510:76::o;17591:258::-;17663:1;17673:113;17687:6;17684:1;17681:13;17673:113;;;17763:11;;;17757:18;17744:11;;;17737:39;17709:2;17702:10;17673:113;;;17804:6;17801:1;17798:13;17795:2;;;-1:-1:-1;;17839:1:1;17821:16;;17814:27;17644:205::o;17854:196::-;17893:3;17921:5;17911:2;;17930:18;;:::i;:::-;-1:-1:-1;;;17966:78:1;;17901:149::o;18055:437::-;18134:1;18130:12;;;;18177;;;18198:2;;18252:4;18244:6;18240:17;18230:27;;18198:2;18305;18297:6;18294:14;18274:18;18271:38;18268:2;;;-1:-1:-1;;;18339:1:1;18332:88;18443:4;18440:1;18433:15;18471:4;18468:1;18461:15;18268:2;;18110:382;;;:::o;18497:195::-;18536:3;-1:-1:-1;;18560:5:1;18557:77;18554:2;;;18637:18;;:::i;:::-;-1:-1:-1;18684:1:1;18673:13;;18544:148::o;18697:112::-;18729:1;18755;18745:2;;18760:18;;:::i;:::-;-1:-1:-1;18794:9:1;;18735:74::o;18814:184::-;-1:-1:-1;;;18863:1:1;18856:88;18963:4;18960:1;18953:15;18987:4;18984:1;18977:15;19003:184;-1:-1:-1;;;19052:1:1;19045:88;19152:4;19149:1;19142:15;19176:4;19173:1;19166:15;19192:184;-1:-1:-1;;;19241:1:1;19234:88;19341:4;19338:1;19331:15;19365:4;19362:1;19355:15;19381:177;-1:-1:-1;;;;;;19459:5:1;19455:78;19448:5;19445:89;19435:2;;19548:1;19545;19538:12

Swarm Source

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