ETH Price: $3,325.78 (+2.03%)
Gas: 2 Gwei

Token

CultNow (CULTNOW)
 

Overview

Max Total Supply

0 CULTNOW

Holders

506

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CULTNOW
0x8f63509ea9e1a3e991fcebacea06e8a59e023074
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:
CultNow

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.10;


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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
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 making 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;
    }
}

contract CultNow is ERC721, Ownable, ReentrancyGuard{
    using Strings for uint;

    uint public mintedAmount;
    uint public totalMaxMint = 1000;
    uint public userMaxMint = 2;
    string public baseURI;

    mapping(address=>uint) public userMinted;

    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_){
        baseURI = baseURI_;
    }

    function mint(uint amount) public nonReentrant{
        require(amount > 0, "nothing to mint");
        require(userMinted[msg.sender] + amount <= userMaxMint, "exceed user max mint");
        require(mintedAmount + amount <= totalMaxMint, "exceed total max mint");

        for(uint i; i<amount; i++){
            uint tokenId = mintedAmount + 1;
            _safeMint(msg.sender, tokenId);
            mintedAmount += 1;
            userMinted[msg.sender] += 1;
        }
    }

    function tokenURI(uint tokenId) public view override returns (string memory _tokenURI){
        _tokenURI = string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"userMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526103e86009556002600a553480156200001c57600080fd5b5060405162003560380380620035608339818101604052810190620000429190620003dd565b828281600090805190602001906200005c92919062000190565b5080600190805190602001906200007592919062000190565b505050620000986200008c620000c260201b60201c565b620000ca60201b60201c565b600160078190555080600b9080519060200190620000b892919062000190565b50505050620004fb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200019e90620004c5565b90600052602060002090601f016020900481019282620001c257600085556200020e565b82601f10620001dd57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020d578251825591602001919060010190620001f0565b5b5090506200021d919062000221565b5090565b5b808211156200023c57600081600090555060010162000222565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002a9826200025e565b810181811067ffffffffffffffff82111715620002cb57620002ca6200026f565b5b80604052505050565b6000620002e062000240565b9050620002ee82826200029e565b919050565b600067ffffffffffffffff8211156200031157620003106200026f565b5b6200031c826200025e565b9050602081019050919050565b60005b83811015620003495780820151818401526020810190506200032c565b8381111562000359576000848401525b50505050565b6000620003766200037084620002f3565b620002d4565b90508281526020810184848401111562000395576200039462000259565b5b620003a284828562000329565b509392505050565b600082601f830112620003c257620003c162000254565b5b8151620003d48482602086016200035f565b91505092915050565b600080600060608486031215620003f957620003f86200024a565b5b600084015167ffffffffffffffff8111156200041a57620004196200024f565b5b6200042886828701620003aa565b935050602084015167ffffffffffffffff8111156200044c576200044b6200024f565b5b6200045a86828701620003aa565b925050604084015167ffffffffffffffff8111156200047e576200047d6200024f565b5b6200048c86828701620003aa565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004de57607f821691505b60208210811415620004f557620004f462000496565b5b50919050565b613055806200050b6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a0712d681161007c578063a0712d6814610367578063a22cb46514610383578063b88d4fde1461039f578063c87b56dd146103bb578063e985e9c5146103eb578063f2fde38b1461041b57610142565b806370a08231146102d3578063715018a61461030357806373eb024e1461030d5780638da5cb5b1461032b57806395d89b411461034957610142565b806323b872dd1161010a57806323b872dd146102115780632d3802421461022d57806342842e0e1461024b5780636352211e146102675780636c0360eb146102975780636c221260146102b557610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780631aa5e872146101e1575b600080fd5b610161600480360381019061015c9190611cd1565b610437565b60405161016e9190611d19565b60405180910390f35b61017f610519565b60405161018c9190611dcd565b60405180910390f35b6101af60048036038101906101aa9190611e25565b6105ab565b6040516101bc9190611e93565b60405180910390f35b6101df60048036038101906101da9190611eda565b610630565b005b6101fb60048036038101906101f69190611f1a565b610748565b6040516102089190611f56565b60405180910390f35b61022b60048036038101906102269190611f71565b610760565b005b6102356107c0565b6040516102429190611f56565b60405180910390f35b61026560048036038101906102609190611f71565b6107c6565b005b610281600480360381019061027c9190611e25565b6107e6565b60405161028e9190611e93565b60405180910390f35b61029f610898565b6040516102ac9190611dcd565b60405180910390f35b6102bd610926565b6040516102ca9190611f56565b60405180910390f35b6102ed60048036038101906102e89190611f1a565b61092c565b6040516102fa9190611f56565b60405180910390f35b61030b6109e4565b005b610315610a6c565b6040516103229190611f56565b60405180910390f35b610333610a72565b6040516103409190611e93565b60405180910390f35b610351610a9c565b60405161035e9190611dcd565b60405180910390f35b610381600480360381019061037c9190611e25565b610b2e565b005b61039d60048036038101906103989190611ff0565b610d59565b005b6103b960048036038101906103b49190612165565b610d6f565b005b6103d560048036038101906103d09190611e25565b610dd1565b6040516103e29190611dcd565b60405180910390f35b610405600480360381019061040091906121e8565b610e05565b6040516104129190611d19565b60405180910390f35b61043560048036038101906104309190611f1a565b610e99565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610512575061051182610f91565b5b9050919050565b60606000805461052890612257565b80601f016020809104026020016040519081016040528092919081815260200182805461055490612257565b80156105a15780601f10610576576101008083540402835291602001916105a1565b820191906000526020600020905b81548152906001019060200180831161058457829003601f168201915b5050505050905090565b60006105b682610ffb565b6105f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ec906122fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063b826107e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a39061238d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cb611067565b73ffffffffffffffffffffffffffffffffffffffff1614806106fa57506106f9816106f4611067565b610e05565b5b610739576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107309061241f565b60405180910390fd5b610743838361106f565b505050565b600c6020528060005260406000206000915090505481565b61077161076b611067565b82611128565b6107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a7906124b1565b60405180910390fd5b6107bb838383611206565b505050565b60085481565b6107e183838360405180602001604052806000815250610d6f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690612543565b60405180910390fd5b80915050919050565b600b80546108a590612257565b80601f01602080910402602001604051908101604052809291908181526020018280546108d190612257565b801561091e5780601f106108f35761010080835404028352916020019161091e565b820191906000526020600020905b81548152906001019060200180831161090157829003601f168201915b505050505081565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610994906125d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ec611067565b73ffffffffffffffffffffffffffffffffffffffff16610a0a610a72565b73ffffffffffffffffffffffffffffffffffffffff1614610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790612641565b60405180910390fd5b610a6a600061146d565b565b600a5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610aab90612257565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad790612257565b8015610b245780601f10610af957610100808354040283529160200191610b24565b820191906000526020600020905b815481529060010190602001808311610b0757829003601f168201915b5050505050905090565b60026007541415610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906126ad565b60405180910390fd5b600260078190555060008111610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690612719565b60405180910390fd5b600a5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0d9190612768565b1115610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061280a565b60405180910390fd5b60095481600854610c5f9190612768565b1115610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612876565b60405180910390fd5b60005b81811015610d4d5760006001600854610cbc9190612768565b9050610cc83382611533565b600160086000828254610cdb9190612768565b925050819055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d329190612768565b92505081905550508080610d4590612896565b915050610ca3565b50600160078190555050565b610d6b610d64611067565b8383611551565b5050565b610d80610d7a611067565b83611128565b610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db6906124b1565b60405180910390fd5b610dcb848484846116be565b50505050565b6060600b610dde8361171a565b604051602001610def9291906129fb565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ea1611067565b73ffffffffffffffffffffffffffffffffffffffff16610ebf610a72565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612641565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612a9c565b60405180910390fd5b610f8e8161146d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110e2836107e6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061113382610ffb565b611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612b2e565b60405180910390fd5b600061117d836107e6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111ec57508373ffffffffffffffffffffffffffffffffffffffff166111d4846105ab565b73ffffffffffffffffffffffffffffffffffffffff16145b806111fd57506111fc8185610e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611226826107e6565b73ffffffffffffffffffffffffffffffffffffffff161461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612bc0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390612c52565b60405180910390fd5b6112f783838361187b565b61130260008261106f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113529190612c72565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a99190612768565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611468838383611880565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61154d828260405180602001604052806000815250611885565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612cf2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b19190611d19565b60405180910390a3505050565b6116c9848484611206565b6116d5848484846118e0565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90612d84565b60405180910390fd5b50505050565b60606000821415611762576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611876565b600082905060005b6000821461179457808061177d90612896565b915050600a8261178d9190612dd3565b915061176a565b60008167ffffffffffffffff8111156117b0576117af61203a565b5b6040519080825280601f01601f1916602001820160405280156117e25781602001600182028036833780820191505090505b5090505b6000851461186f576001826117fb9190612c72565b9150600a8561180a9190612e04565b60306118169190612768565b60f81b81838151811061182c5761182b612e35565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118689190612dd3565b94506117e6565b8093505050505b919050565b505050565b505050565b61188f8383611a68565b61189c60008484846118e0565b6118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290612d84565b60405180910390fd5b505050565b60006119018473ffffffffffffffffffffffffffffffffffffffff16611c42565b15611a5b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261192a611067565b8786866040518563ffffffff1660e01b815260040161194c9493929190612eb9565b6020604051808303816000875af192505050801561198857506040513d601f19601f820116820180604052508101906119859190612f1a565b60015b611a0b573d80600081146119b8576040519150601f19603f3d011682016040523d82523d6000602084013e6119bd565b606091505b50600081511415611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90612d84565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a60565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90612f93565b60405180910390fd5b611ae181610ffb565b15611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1890612fff565b60405180910390fd5b611b2d6000838361187b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7d9190612768565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3e60008383611880565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cae81611c79565b8114611cb957600080fd5b50565b600081359050611ccb81611ca5565b92915050565b600060208284031215611ce757611ce6611c6f565b5b6000611cf584828501611cbc565b91505092915050565b60008115159050919050565b611d1381611cfe565b82525050565b6000602082019050611d2e6000830184611d0a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d6e578082015181840152602081019050611d53565b83811115611d7d576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d9f82611d34565b611da98185611d3f565b9350611db9818560208601611d50565b611dc281611d83565b840191505092915050565b60006020820190508181036000830152611de78184611d94565b905092915050565b6000819050919050565b611e0281611def565b8114611e0d57600080fd5b50565b600081359050611e1f81611df9565b92915050565b600060208284031215611e3b57611e3a611c6f565b5b6000611e4984828501611e10565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7d82611e52565b9050919050565b611e8d81611e72565b82525050565b6000602082019050611ea86000830184611e84565b92915050565b611eb781611e72565b8114611ec257600080fd5b50565b600081359050611ed481611eae565b92915050565b60008060408385031215611ef157611ef0611c6f565b5b6000611eff85828601611ec5565b9250506020611f1085828601611e10565b9150509250929050565b600060208284031215611f3057611f2f611c6f565b5b6000611f3e84828501611ec5565b91505092915050565b611f5081611def565b82525050565b6000602082019050611f6b6000830184611f47565b92915050565b600080600060608486031215611f8a57611f89611c6f565b5b6000611f9886828701611ec5565b9350506020611fa986828701611ec5565b9250506040611fba86828701611e10565b9150509250925092565b611fcd81611cfe565b8114611fd857600080fd5b50565b600081359050611fea81611fc4565b92915050565b6000806040838503121561200757612006611c6f565b5b600061201585828601611ec5565b925050602061202685828601611fdb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61207282611d83565b810181811067ffffffffffffffff821117156120915761209061203a565b5b80604052505050565b60006120a4611c65565b90506120b08282612069565b919050565b600067ffffffffffffffff8211156120d0576120cf61203a565b5b6120d982611d83565b9050602081019050919050565b82818337600083830152505050565b6000612108612103846120b5565b61209a565b90508281526020810184848401111561212457612123612035565b5b61212f8482856120e6565b509392505050565b600082601f83011261214c5761214b612030565b5b813561215c8482602086016120f5565b91505092915050565b6000806000806080858703121561217f5761217e611c6f565b5b600061218d87828801611ec5565b945050602061219e87828801611ec5565b93505060406121af87828801611e10565b925050606085013567ffffffffffffffff8111156121d0576121cf611c74565b5b6121dc87828801612137565b91505092959194509250565b600080604083850312156121ff576121fe611c6f565b5b600061220d85828601611ec5565b925050602061221e85828601611ec5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061226f57607f821691505b6020821081141561228357612282612228565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006122e5602c83611d3f565b91506122f082612289565b604082019050919050565b60006020820190508181036000830152612314816122d8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612377602183611d3f565b91506123828261231b565b604082019050919050565b600060208201905081810360008301526123a68161236a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612409603883611d3f565b9150612414826123ad565b604082019050919050565b60006020820190508181036000830152612438816123fc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061249b603183611d3f565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061252d602983611d3f565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006125bf602a83611d3f565b91506125ca82612563565b604082019050919050565b600060208201905081810360008301526125ee816125b2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061262b602083611d3f565b9150612636826125f5565b602082019050919050565b6000602082019050818103600083015261265a8161261e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612697601f83611d3f565b91506126a282612661565b602082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f6e6f7468696e6720746f206d696e740000000000000000000000000000000000600082015250565b6000612703600f83611d3f565b915061270e826126cd565b602082019050919050565b60006020820190508181036000830152612732816126f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061277382611def565b915061277e83611def565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127b3576127b2612739565b5b828201905092915050565b7f6578636565642075736572206d6178206d696e74000000000000000000000000600082015250565b60006127f4601483611d3f565b91506127ff826127be565b602082019050919050565b60006020820190508181036000830152612823816127e7565b9050919050565b7f65786365656420746f74616c206d6178206d696e740000000000000000000000600082015250565b6000612860601583611d3f565b915061286b8261282a565b602082019050919050565b6000602082019050818103600083015261288f81612853565b9050919050565b60006128a182611def565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128d4576128d3612739565b5b600182019050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461290c81612257565b61291681866128df565b94506001821660008114612931576001811461294257612975565b60ff19831686528186019350612975565b61294b856128ea565b60005b8381101561296d5781548189015260018201915060208101905061294e565b838801955050505b50505092915050565b600061298982611d34565b61299381856128df565b93506129a3818560208601611d50565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006129e56005836128df565b91506129f0826129af565b600582019050919050565b6000612a0782856128ff565b9150612a13828461297e565b9150612a1e826129d8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a86602683611d3f565b9150612a9182612a2a565b604082019050919050565b60006020820190508181036000830152612ab581612a79565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b18602c83611d3f565b9150612b2382612abc565b604082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612baa602583611d3f565b9150612bb582612b4e565b604082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3c602483611d3f565b9150612c4782612be0565b604082019050919050565b60006020820190508181036000830152612c6b81612c2f565b9050919050565b6000612c7d82611def565b9150612c8883611def565b925082821015612c9b57612c9a612739565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612cdc601983611d3f565b9150612ce782612ca6565b602082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612d6e603283611d3f565b9150612d7982612d12565b604082019050919050565b60006020820190508181036000830152612d9d81612d61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dde82611def565b9150612de983611def565b925082612df957612df8612da4565b5b828204905092915050565b6000612e0f82611def565b9150612e1a83611def565b925082612e2a57612e29612da4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612e8b82612e64565b612e958185612e6f565b9350612ea5818560208601611d50565b612eae81611d83565b840191505092915050565b6000608082019050612ece6000830187611e84565b612edb6020830186611e84565b612ee86040830185611f47565b8181036060830152612efa8184612e80565b905095945050505050565b600081519050612f1481611ca5565b92915050565b600060208284031215612f3057612f2f611c6f565b5b6000612f3e84828501612f05565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f7d602083611d3f565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612fe9601c83611d3f565b9150612ff482612fb3565b602082019050919050565b6000602082019050818103600083015261301881612fdc565b905091905056fea264697066735822122014f38ad1ae75d9284c991eec433c6f4e2f7638c1fc4caf08d5e17ae726cf8d9164736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000743756c744e6f7700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000743554c544e4f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f63756c746e6f772e6f72672f7572692f0000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a0712d681161007c578063a0712d6814610367578063a22cb46514610383578063b88d4fde1461039f578063c87b56dd146103bb578063e985e9c5146103eb578063f2fde38b1461041b57610142565b806370a08231146102d3578063715018a61461030357806373eb024e1461030d5780638da5cb5b1461032b57806395d89b411461034957610142565b806323b872dd1161010a57806323b872dd146102115780632d3802421461022d57806342842e0e1461024b5780636352211e146102675780636c0360eb146102975780636c221260146102b557610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780631aa5e872146101e1575b600080fd5b610161600480360381019061015c9190611cd1565b610437565b60405161016e9190611d19565b60405180910390f35b61017f610519565b60405161018c9190611dcd565b60405180910390f35b6101af60048036038101906101aa9190611e25565b6105ab565b6040516101bc9190611e93565b60405180910390f35b6101df60048036038101906101da9190611eda565b610630565b005b6101fb60048036038101906101f69190611f1a565b610748565b6040516102089190611f56565b60405180910390f35b61022b60048036038101906102269190611f71565b610760565b005b6102356107c0565b6040516102429190611f56565b60405180910390f35b61026560048036038101906102609190611f71565b6107c6565b005b610281600480360381019061027c9190611e25565b6107e6565b60405161028e9190611e93565b60405180910390f35b61029f610898565b6040516102ac9190611dcd565b60405180910390f35b6102bd610926565b6040516102ca9190611f56565b60405180910390f35b6102ed60048036038101906102e89190611f1a565b61092c565b6040516102fa9190611f56565b60405180910390f35b61030b6109e4565b005b610315610a6c565b6040516103229190611f56565b60405180910390f35b610333610a72565b6040516103409190611e93565b60405180910390f35b610351610a9c565b60405161035e9190611dcd565b60405180910390f35b610381600480360381019061037c9190611e25565b610b2e565b005b61039d60048036038101906103989190611ff0565b610d59565b005b6103b960048036038101906103b49190612165565b610d6f565b005b6103d560048036038101906103d09190611e25565b610dd1565b6040516103e29190611dcd565b60405180910390f35b610405600480360381019061040091906121e8565b610e05565b6040516104129190611d19565b60405180910390f35b61043560048036038101906104309190611f1a565b610e99565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610512575061051182610f91565b5b9050919050565b60606000805461052890612257565b80601f016020809104026020016040519081016040528092919081815260200182805461055490612257565b80156105a15780601f10610576576101008083540402835291602001916105a1565b820191906000526020600020905b81548152906001019060200180831161058457829003601f168201915b5050505050905090565b60006105b682610ffb565b6105f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ec906122fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063b826107e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a39061238d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106cb611067565b73ffffffffffffffffffffffffffffffffffffffff1614806106fa57506106f9816106f4611067565b610e05565b5b610739576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107309061241f565b60405180910390fd5b610743838361106f565b505050565b600c6020528060005260406000206000915090505481565b61077161076b611067565b82611128565b6107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a7906124b1565b60405180910390fd5b6107bb838383611206565b505050565b60085481565b6107e183838360405180602001604052806000815250610d6f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690612543565b60405180910390fd5b80915050919050565b600b80546108a590612257565b80601f01602080910402602001604051908101604052809291908181526020018280546108d190612257565b801561091e5780601f106108f35761010080835404028352916020019161091e565b820191906000526020600020905b81548152906001019060200180831161090157829003601f168201915b505050505081565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610994906125d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ec611067565b73ffffffffffffffffffffffffffffffffffffffff16610a0a610a72565b73ffffffffffffffffffffffffffffffffffffffff1614610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790612641565b60405180910390fd5b610a6a600061146d565b565b600a5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610aab90612257565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad790612257565b8015610b245780601f10610af957610100808354040283529160200191610b24565b820191906000526020600020905b815481529060010190602001808311610b0757829003601f168201915b5050505050905090565b60026007541415610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906126ad565b60405180910390fd5b600260078190555060008111610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690612719565b60405180910390fd5b600a5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c0d9190612768565b1115610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061280a565b60405180910390fd5b60095481600854610c5f9190612768565b1115610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612876565b60405180910390fd5b60005b81811015610d4d5760006001600854610cbc9190612768565b9050610cc83382611533565b600160086000828254610cdb9190612768565b925050819055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d329190612768565b92505081905550508080610d4590612896565b915050610ca3565b50600160078190555050565b610d6b610d64611067565b8383611551565b5050565b610d80610d7a611067565b83611128565b610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db6906124b1565b60405180910390fd5b610dcb848484846116be565b50505050565b6060600b610dde8361171a565b604051602001610def9291906129fb565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ea1611067565b73ffffffffffffffffffffffffffffffffffffffff16610ebf610a72565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612641565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612a9c565b60405180910390fd5b610f8e8161146d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110e2836107e6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061113382610ffb565b611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612b2e565b60405180910390fd5b600061117d836107e6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111ec57508373ffffffffffffffffffffffffffffffffffffffff166111d4846105ab565b73ffffffffffffffffffffffffffffffffffffffff16145b806111fd57506111fc8185610e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611226826107e6565b73ffffffffffffffffffffffffffffffffffffffff161461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612bc0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390612c52565b60405180910390fd5b6112f783838361187b565b61130260008261106f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113529190612c72565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a99190612768565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611468838383611880565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61154d828260405180602001604052806000815250611885565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612cf2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b19190611d19565b60405180910390a3505050565b6116c9848484611206565b6116d5848484846118e0565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90612d84565b60405180910390fd5b50505050565b60606000821415611762576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611876565b600082905060005b6000821461179457808061177d90612896565b915050600a8261178d9190612dd3565b915061176a565b60008167ffffffffffffffff8111156117b0576117af61203a565b5b6040519080825280601f01601f1916602001820160405280156117e25781602001600182028036833780820191505090505b5090505b6000851461186f576001826117fb9190612c72565b9150600a8561180a9190612e04565b60306118169190612768565b60f81b81838151811061182c5761182b612e35565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118689190612dd3565b94506117e6565b8093505050505b919050565b505050565b505050565b61188f8383611a68565b61189c60008484846118e0565b6118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290612d84565b60405180910390fd5b505050565b60006119018473ffffffffffffffffffffffffffffffffffffffff16611c42565b15611a5b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261192a611067565b8786866040518563ffffffff1660e01b815260040161194c9493929190612eb9565b6020604051808303816000875af192505050801561198857506040513d601f19601f820116820180604052508101906119859190612f1a565b60015b611a0b573d80600081146119b8576040519150601f19603f3d011682016040523d82523d6000602084013e6119bd565b606091505b50600081511415611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90612d84565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a60565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90612f93565b60405180910390fd5b611ae181610ffb565b15611b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1890612fff565b60405180910390fd5b611b2d6000838361187b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7d9190612768565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3e60008383611880565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cae81611c79565b8114611cb957600080fd5b50565b600081359050611ccb81611ca5565b92915050565b600060208284031215611ce757611ce6611c6f565b5b6000611cf584828501611cbc565b91505092915050565b60008115159050919050565b611d1381611cfe565b82525050565b6000602082019050611d2e6000830184611d0a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d6e578082015181840152602081019050611d53565b83811115611d7d576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d9f82611d34565b611da98185611d3f565b9350611db9818560208601611d50565b611dc281611d83565b840191505092915050565b60006020820190508181036000830152611de78184611d94565b905092915050565b6000819050919050565b611e0281611def565b8114611e0d57600080fd5b50565b600081359050611e1f81611df9565b92915050565b600060208284031215611e3b57611e3a611c6f565b5b6000611e4984828501611e10565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7d82611e52565b9050919050565b611e8d81611e72565b82525050565b6000602082019050611ea86000830184611e84565b92915050565b611eb781611e72565b8114611ec257600080fd5b50565b600081359050611ed481611eae565b92915050565b60008060408385031215611ef157611ef0611c6f565b5b6000611eff85828601611ec5565b9250506020611f1085828601611e10565b9150509250929050565b600060208284031215611f3057611f2f611c6f565b5b6000611f3e84828501611ec5565b91505092915050565b611f5081611def565b82525050565b6000602082019050611f6b6000830184611f47565b92915050565b600080600060608486031215611f8a57611f89611c6f565b5b6000611f9886828701611ec5565b9350506020611fa986828701611ec5565b9250506040611fba86828701611e10565b9150509250925092565b611fcd81611cfe565b8114611fd857600080fd5b50565b600081359050611fea81611fc4565b92915050565b6000806040838503121561200757612006611c6f565b5b600061201585828601611ec5565b925050602061202685828601611fdb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61207282611d83565b810181811067ffffffffffffffff821117156120915761209061203a565b5b80604052505050565b60006120a4611c65565b90506120b08282612069565b919050565b600067ffffffffffffffff8211156120d0576120cf61203a565b5b6120d982611d83565b9050602081019050919050565b82818337600083830152505050565b6000612108612103846120b5565b61209a565b90508281526020810184848401111561212457612123612035565b5b61212f8482856120e6565b509392505050565b600082601f83011261214c5761214b612030565b5b813561215c8482602086016120f5565b91505092915050565b6000806000806080858703121561217f5761217e611c6f565b5b600061218d87828801611ec5565b945050602061219e87828801611ec5565b93505060406121af87828801611e10565b925050606085013567ffffffffffffffff8111156121d0576121cf611c74565b5b6121dc87828801612137565b91505092959194509250565b600080604083850312156121ff576121fe611c6f565b5b600061220d85828601611ec5565b925050602061221e85828601611ec5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061226f57607f821691505b6020821081141561228357612282612228565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006122e5602c83611d3f565b91506122f082612289565b604082019050919050565b60006020820190508181036000830152612314816122d8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612377602183611d3f565b91506123828261231b565b604082019050919050565b600060208201905081810360008301526123a68161236a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612409603883611d3f565b9150612414826123ad565b604082019050919050565b60006020820190508181036000830152612438816123fc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061249b603183611d3f565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061252d602983611d3f565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006125bf602a83611d3f565b91506125ca82612563565b604082019050919050565b600060208201905081810360008301526125ee816125b2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061262b602083611d3f565b9150612636826125f5565b602082019050919050565b6000602082019050818103600083015261265a8161261e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612697601f83611d3f565b91506126a282612661565b602082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f6e6f7468696e6720746f206d696e740000000000000000000000000000000000600082015250565b6000612703600f83611d3f565b915061270e826126cd565b602082019050919050565b60006020820190508181036000830152612732816126f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061277382611def565b915061277e83611def565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127b3576127b2612739565b5b828201905092915050565b7f6578636565642075736572206d6178206d696e74000000000000000000000000600082015250565b60006127f4601483611d3f565b91506127ff826127be565b602082019050919050565b60006020820190508181036000830152612823816127e7565b9050919050565b7f65786365656420746f74616c206d6178206d696e740000000000000000000000600082015250565b6000612860601583611d3f565b915061286b8261282a565b602082019050919050565b6000602082019050818103600083015261288f81612853565b9050919050565b60006128a182611def565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128d4576128d3612739565b5b600182019050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461290c81612257565b61291681866128df565b94506001821660008114612931576001811461294257612975565b60ff19831686528186019350612975565b61294b856128ea565b60005b8381101561296d5781548189015260018201915060208101905061294e565b838801955050505b50505092915050565b600061298982611d34565b61299381856128df565b93506129a3818560208601611d50565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006129e56005836128df565b91506129f0826129af565b600582019050919050565b6000612a0782856128ff565b9150612a13828461297e565b9150612a1e826129d8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a86602683611d3f565b9150612a9182612a2a565b604082019050919050565b60006020820190508181036000830152612ab581612a79565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b18602c83611d3f565b9150612b2382612abc565b604082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612baa602583611d3f565b9150612bb582612b4e565b604082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3c602483611d3f565b9150612c4782612be0565b604082019050919050565b60006020820190508181036000830152612c6b81612c2f565b9050919050565b6000612c7d82611def565b9150612c8883611def565b925082821015612c9b57612c9a612739565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612cdc601983611d3f565b9150612ce782612ca6565b602082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612d6e603283611d3f565b9150612d7982612d12565b604082019050919050565b60006020820190508181036000830152612d9d81612d61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dde82611def565b9150612de983611def565b925082612df957612df8612da4565b5b828204905092915050565b6000612e0f82611def565b9150612e1a83611def565b925082612e2a57612e29612da4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612e8b82612e64565b612e958185612e6f565b9350612ea5818560208601611d50565b612eae81611d83565b840191505092915050565b6000608082019050612ece6000830187611e84565b612edb6020830186611e84565b612ee86040830185611f47565b8181036060830152612efa8184612e80565b905095945050505050565b600081519050612f1481611ca5565b92915050565b600060208284031215612f3057612f2f611c6f565b5b6000612f3e84828501612f05565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f7d602083611d3f565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612fe9601c83611d3f565b9150612ff482612fb3565b602082019050919050565b6000602082019050818103600083015261301881612fdc565b905091905056fea264697066735822122014f38ad1ae75d9284c991eec433c6f4e2f7638c1fc4caf08d5e17ae726cf8d9164736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000743756c744e6f7700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000743554c544e4f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f63756c746e6f772e6f72672f7572692f0000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CultNow
Arg [1] : symbol_ (string): CULTNOW
Arg [2] : baseURI_ (string): https://cultnow.org/uri/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 43756c744e6f7700000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 43554c544e4f5700000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [8] : 68747470733a2f2f63756c746e6f772e6f72672f7572692f0000000000000000


Deployed Bytecode Sourcemap

39015:1112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20792:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21737:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23296:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22819:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39238:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24046:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39105:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24456:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21431:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39208:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39136:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21161:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35533:103;;;:::i;:::-;;39174:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34882:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21906:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39434:490;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23589:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24712:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39932:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23815:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35791:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20792:305;20894:4;20946:25;20931:40;;;:11;:40;;;;:105;;;;21003:33;20988:48;;;:11;:48;;;;20931:105;:158;;;;21053:36;21077:11;21053:23;:36::i;:::-;20931:158;20911:178;;20792:305;;;:::o;21737:100::-;21791:13;21824:5;21817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21737:100;:::o;23296:221::-;23372:7;23400:16;23408:7;23400;:16::i;:::-;23392:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23485:15;:24;23501:7;23485:24;;;;;;;;;;;;;;;;;;;;;23478:31;;23296:221;;;:::o;22819:411::-;22900:13;22916:23;22931:7;22916:14;:23::i;:::-;22900:39;;22964:5;22958:11;;:2;:11;;;;22950:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23058:5;23042:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23067:37;23084:5;23091:12;:10;:12::i;:::-;23067:16;:37::i;:::-;23042:62;23020:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23201:21;23210:2;23214:7;23201:8;:21::i;:::-;22889:341;22819:411;;:::o;39238:40::-;;;;;;;;;;;;;;;;;:::o;24046:339::-;24241:41;24260:12;:10;:12::i;:::-;24274:7;24241:18;:41::i;:::-;24233:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24349:28;24359:4;24365:2;24369:7;24349:9;:28::i;:::-;24046:339;;;:::o;39105:24::-;;;;:::o;24456:185::-;24594:39;24611:4;24617:2;24621:7;24594:39;;;;;;;;;;;;:16;:39::i;:::-;24456:185;;;:::o;21431:239::-;21503:7;21523:13;21539:7;:16;21547:7;21539:16;;;;;;;;;;;;;;;;;;;;;21523:32;;21591:1;21574:19;;:5;:19;;;;21566:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21657:5;21650:12;;;21431:239;;;:::o;39208:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39136:31::-;;;;:::o;21161:208::-;21233:7;21278:1;21261:19;;:5;:19;;;;21253:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21345:9;:16;21355:5;21345:16;;;;;;;;;;;;;;;;21338:23;;21161:208;;;:::o;35533:103::-;35113:12;:10;:12::i;:::-;35102:23;;:7;:5;:7::i;:::-;:23;;;35094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35598:30:::1;35625:1;35598:18;:30::i;:::-;35533:103::o:0;39174:27::-;;;;:::o;34882:87::-;34928:7;34955:6;;;;;;;;;;;34948:13;;34882:87;:::o;21906:104::-;21962:13;21995:7;21988:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21906:104;:::o;39434:490::-;38068:1;38666:7;;:19;;38658:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38068:1;38799:7;:18;;;;39508:1:::1;39499:6;:10;39491:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;39583:11;;39573:6;39548:10;:22;39559:10;39548:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:46;;39540:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;39663:12;;39653:6;39638:12;;:21;;;;:::i;:::-;:37;;39630:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39718:6;39714:203;39728:6;39726:1;:8;39714:203;;;39755:12;39785:1;39770:12;;:16;;;;:::i;:::-;39755:31;;39801:30;39811:10;39823:7;39801:9;:30::i;:::-;39862:1;39846:12;;:17;;;;;;;:::i;:::-;;;;;;;;39904:1;39878:10;:22;39889:10;39878:22;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;39740:177;39736:3;;;;;:::i;:::-;;;;39714:203;;;;38024:1:::0;38978:7;:22;;;;39434:490;:::o;23589:155::-;23684:52;23703:12;:10;:12::i;:::-;23717:8;23727;23684:18;:52::i;:::-;23589:155;;:::o;24712:328::-;24887:41;24906:12;:10;:12::i;:::-;24920:7;24887:18;:41::i;:::-;24879:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24993:39;25007:4;25013:2;25017:7;25026:5;24993:13;:39::i;:::-;24712:328;;;;:::o;39932:186::-;39994:23;40065:7;40074:25;40091:7;40074:16;:25::i;:::-;40048:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40029:81;;39932:186;;;:::o;23815:164::-;23912:4;23936:18;:25;23955:5;23936:25;;;;;;;;;;;;;;;:35;23962:8;23936:35;;;;;;;;;;;;;;;;;;;;;;;;;23929:42;;23815:164;;;;:::o;35791:201::-;35113:12;:10;:12::i;:::-;35102:23;;:7;:5;:7::i;:::-;:23;;;35094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35900:1:::1;35880:22;;:8;:22;;;;35872:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35956:28;35975:8;35956:18;:28::i;:::-;35791:201:::0;:::o;19324:157::-;19409:4;19448:25;19433:40;;;:11;:40;;;;19426:47;;19324:157;;;:::o;26550:127::-;26615:4;26667:1;26639:30;;:7;:16;26647:7;26639:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26632:37;;26550:127;;;:::o;16302:98::-;16355:7;16382:10;16375:17;;16302:98;:::o;30696:174::-;30798:2;30771:15;:24;30787:7;30771:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30854:7;30850:2;30816:46;;30825:23;30840:7;30825:14;:23::i;:::-;30816:46;;;;;;;;;;;;30696:174;;:::o;26844:348::-;26937:4;26962:16;26970:7;26962;:16::i;:::-;26954:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27038:13;27054:23;27069:7;27054:14;:23::i;:::-;27038:39;;27107:5;27096:16;;:7;:16;;;:51;;;;27140:7;27116:31;;:20;27128:7;27116:11;:20::i;:::-;:31;;;27096:51;:87;;;;27151:32;27168:5;27175:7;27151:16;:32::i;:::-;27096:87;27088:96;;;26844:348;;;;:::o;29953:625::-;30112:4;30085:31;;:23;30100:7;30085:14;:23::i;:::-;:31;;;30077:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30191:1;30177:16;;:2;:16;;;;30169:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30247:39;30268:4;30274:2;30278:7;30247:20;:39::i;:::-;30351:29;30368:1;30372:7;30351:8;:29::i;:::-;30412:1;30393:9;:15;30403:4;30393:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30441:1;30424:9;:13;30434:2;30424:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30472:2;30453:7;:16;30461:7;30453:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30511:7;30507:2;30492:27;;30501:4;30492:27;;;;;;;;;;;;30532:38;30552:4;30558:2;30562:7;30532:19;:38::i;:::-;29953:625;;;:::o;36152:191::-;36226:16;36245:6;;;;;;;;;;;36226:25;;36271:8;36262:6;;:17;;;;;;;;;;;;;;;;;;36326:8;36295:40;;36316:8;36295:40;;;;;;;;;;;;36215:128;36152:191;:::o;27534:110::-;27610:26;27620:2;27624:7;27610:26;;;;;;;;;;;;:9;:26::i;:::-;27534:110;;:::o;31012:315::-;31167:8;31158:17;;:5;:17;;;;31150:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31254:8;31216:18;:25;31235:5;31216:25;;;;;;;;;;;;;;;:35;31242:8;31216:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31300:8;31278:41;;31293:5;31278:41;;;31310:8;31278:41;;;;;;:::i;:::-;;;;;;;;31012:315;;;:::o;25922:::-;26079:28;26089:4;26095:2;26099:7;26079:9;:28::i;:::-;26126:48;26149:4;26155:2;26159:7;26168:5;26126:22;:48::i;:::-;26118:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25922:315;;;;:::o;16798:723::-;16854:13;17084:1;17075:5;:10;17071:53;;;17102:10;;;;;;;;;;;;;;;;;;;;;17071:53;17134:12;17149:5;17134:20;;17165:14;17190:78;17205:1;17197:4;:9;17190:78;;17223:8;;;;;:::i;:::-;;;;17254:2;17246:10;;;;;:::i;:::-;;;17190:78;;;17278:19;17310:6;17300:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17278:39;;17328:154;17344:1;17335:5;:10;17328:154;;17372:1;17362:11;;;;;:::i;:::-;;;17439:2;17431:5;:10;;;;:::i;:::-;17418:2;:24;;;;:::i;:::-;17405:39;;17388:6;17395;17388:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17468:2;17459:11;;;;;:::i;:::-;;;17328:154;;;17506:6;17492:21;;;;;16798:723;;;;:::o;33263:126::-;;;;:::o;33774:125::-;;;;:::o;27871:321::-;28001:18;28007:2;28011:7;28001:5;:18::i;:::-;28052:54;28083:1;28087:2;28091:7;28100:5;28052:22;:54::i;:::-;28030:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27871:321;;;:::o;31892:799::-;32047:4;32068:15;:2;:13;;;:15::i;:::-;32064:620;;;32120:2;32104:36;;;32141:12;:10;:12::i;:::-;32155:4;32161:7;32170:5;32104:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32100:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32363:1;32346:6;:13;:18;32342:272;;;32389:60;;;;;;;;;;:::i;:::-;;;;;;;;32342:272;32564:6;32558:13;32549:6;32545:2;32541:15;32534:38;32100:529;32237:41;;;32227:51;;;:6;:51;;;;32220:58;;;;;32064:620;32668:4;32661:11;;31892:799;;;;;;;:::o;28528:439::-;28622:1;28608:16;;:2;:16;;;;28600:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28681:16;28689:7;28681;:16::i;:::-;28680:17;28672:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28743:45;28772:1;28776:2;28780:7;28743:20;:45::i;:::-;28818:1;28801:9;:13;28811:2;28801:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28849:2;28830:7;:16;28838:7;28830:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28894:7;28890:2;28869:33;;28886:1;28869:33;;;;;;;;;;;;28915:44;28943:1;28947:2;28951:7;28915:19;:44::i;:::-;28528:439;;:::o;8436:326::-;8496:4;8753:1;8731:7;:19;;;:23;8724:30;;8436:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:231::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:14;11230:2;11222:6;11218:15;11211:39;11026:231;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:419::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11888:9;11882:4;11878:20;11874:1;11863:9;11859:17;11852:47;11916:131;12042:4;11916:131;:::i;:::-;11908:139;;11635:419;;;:::o;12060:220::-;12200:34;12196:1;12188:6;12184:14;12177:58;12269:3;12264:2;12256:6;12252:15;12245:28;12060:220;:::o;12286:366::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12658:419;;;:::o;13083:243::-;13223:34;13219:1;13211:6;13207:14;13200:58;13292:26;13287:2;13279:6;13275:15;13268:51;13083:243;:::o;13332:366::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:419::-;13870:4;13908:2;13897:9;13893:18;13885:26;;13957:9;13951:4;13947:20;13943:1;13932:9;13928:17;13921:47;13985:131;14111:4;13985:131;:::i;:::-;13977:139;;13704:419;;;:::o;14129:236::-;14269:34;14265:1;14257:6;14253:14;14246:58;14338:19;14333:2;14325:6;14321:15;14314:44;14129:236;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:228::-;15308:34;15304:1;15296:6;15292:14;15285:58;15377:11;15372:2;15364:6;15360:15;15353:36;15168:228;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:229::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:12;16403:2;16395:6;16391:15;16384:37;16199:229;:::o;16434:366::-;16576:3;16597:67;16661:2;16656:3;16597:67;:::i;:::-;16590:74;;16673:93;16762:3;16673:93;:::i;:::-;16791:2;16786:3;16782:12;16775:19;;16434:366;;;:::o;16806:419::-;16972:4;17010:2;16999:9;16995:18;16987:26;;17059:9;17053:4;17049:20;17045:1;17034:9;17030:17;17023:47;17087:131;17213:4;17087:131;:::i;:::-;17079:139;;16806:419;;;:::o;17231:182::-;17371:34;17367:1;17359:6;17355:14;17348:58;17231:182;:::o;17419:366::-;17561:3;17582:67;17646:2;17641:3;17582:67;:::i;:::-;17575:74;;17658:93;17747:3;17658:93;:::i;:::-;17776:2;17771:3;17767:12;17760:19;;17419:366;;;:::o;17791:419::-;17957:4;17995:2;17984:9;17980:18;17972:26;;18044:9;18038:4;18034:20;18030:1;18019:9;18015:17;18008:47;18072:131;18198:4;18072:131;:::i;:::-;18064:139;;17791:419;;;:::o;18216:181::-;18356:33;18352:1;18344:6;18340:14;18333:57;18216:181;:::o;18403:366::-;18545:3;18566:67;18630:2;18625:3;18566:67;:::i;:::-;18559:74;;18642:93;18731:3;18642:93;:::i;:::-;18760:2;18755:3;18751:12;18744:19;;18403:366;;;:::o;18775:419::-;18941:4;18979:2;18968:9;18964:18;18956:26;;19028:9;19022:4;19018:20;19014:1;19003:9;18999:17;18992:47;19056:131;19182:4;19056:131;:::i;:::-;19048:139;;18775:419;;;:::o;19200:165::-;19340:17;19336:1;19328:6;19324:14;19317:41;19200:165;:::o;19371:366::-;19513:3;19534:67;19598:2;19593:3;19534:67;:::i;:::-;19527:74;;19610:93;19699:3;19610:93;:::i;:::-;19728:2;19723:3;19719:12;19712:19;;19371:366;;;:::o;19743:419::-;19909:4;19947:2;19936:9;19932:18;19924:26;;19996:9;19990:4;19986:20;19982:1;19971:9;19967:17;19960:47;20024:131;20150:4;20024:131;:::i;:::-;20016:139;;19743:419;;;:::o;20168:180::-;20216:77;20213:1;20206:88;20313:4;20310:1;20303:15;20337:4;20334:1;20327:15;20354:305;20394:3;20413:20;20431:1;20413:20;:::i;:::-;20408:25;;20447:20;20465:1;20447:20;:::i;:::-;20442:25;;20601:1;20533:66;20529:74;20526:1;20523:81;20520:107;;;20607:18;;:::i;:::-;20520:107;20651:1;20648;20644:9;20637:16;;20354:305;;;;:::o;20665:170::-;20805:22;20801:1;20793:6;20789:14;20782:46;20665:170;:::o;20841:366::-;20983:3;21004:67;21068:2;21063:3;21004:67;:::i;:::-;20997:74;;21080:93;21169:3;21080:93;:::i;:::-;21198:2;21193:3;21189:12;21182:19;;20841:366;;;:::o;21213:419::-;21379:4;21417:2;21406:9;21402:18;21394:26;;21466:9;21460:4;21456:20;21452:1;21441:9;21437:17;21430:47;21494:131;21620:4;21494:131;:::i;:::-;21486:139;;21213:419;;;:::o;21638:171::-;21778:23;21774:1;21766:6;21762:14;21755:47;21638:171;:::o;21815:366::-;21957:3;21978:67;22042:2;22037:3;21978:67;:::i;:::-;21971:74;;22054:93;22143:3;22054:93;:::i;:::-;22172:2;22167:3;22163:12;22156:19;;21815:366;;;:::o;22187:419::-;22353:4;22391:2;22380:9;22376:18;22368:26;;22440:9;22434:4;22430:20;22426:1;22415:9;22411:17;22404:47;22468:131;22594:4;22468:131;:::i;:::-;22460:139;;22187:419;;;:::o;22612:233::-;22651:3;22674:24;22692:5;22674:24;:::i;:::-;22665:33;;22720:66;22713:5;22710:77;22707:103;;;22790:18;;:::i;:::-;22707:103;22837:1;22830:5;22826:13;22819:20;;22612:233;;;:::o;22851:148::-;22953:11;22990:3;22975:18;;22851:148;;;;:::o;23005:141::-;23054:4;23077:3;23069:11;;23100:3;23097:1;23090:14;23134:4;23131:1;23121:18;23113:26;;23005:141;;;:::o;23176:845::-;23279:3;23316:5;23310:12;23345:36;23371:9;23345:36;:::i;:::-;23397:89;23479:6;23474:3;23397:89;:::i;:::-;23390:96;;23517:1;23506:9;23502:17;23533:1;23528:137;;;;23679:1;23674:341;;;;23495:520;;23528:137;23612:4;23608:9;23597;23593:25;23588:3;23581:38;23648:6;23643:3;23639:16;23632:23;;23528:137;;23674:341;23741:38;23773:5;23741:38;:::i;:::-;23801:1;23815:154;23829:6;23826:1;23823:13;23815:154;;;23903:7;23897:14;23893:1;23888:3;23884:11;23877:35;23953:1;23944:7;23940:15;23929:26;;23851:4;23848:1;23844:12;23839:17;;23815:154;;;23998:6;23993:3;23989:16;23982:23;;23681:334;;23495:520;;23283:738;;23176:845;;;;:::o;24027:377::-;24133:3;24161:39;24194:5;24161:39;:::i;:::-;24216:89;24298:6;24293:3;24216:89;:::i;:::-;24209:96;;24314:52;24359:6;24354:3;24347:4;24340:5;24336:16;24314:52;:::i;:::-;24391:6;24386:3;24382:16;24375:23;;24137:267;24027:377;;;;:::o;24410:155::-;24550:7;24546:1;24538:6;24534:14;24527:31;24410:155;:::o;24571:400::-;24731:3;24752:84;24834:1;24829:3;24752:84;:::i;:::-;24745:91;;24845:93;24934:3;24845:93;:::i;:::-;24963:1;24958:3;24954:11;24947:18;;24571:400;;;:::o;24977:695::-;25255:3;25277:92;25365:3;25356:6;25277:92;:::i;:::-;25270:99;;25386:95;25477:3;25468:6;25386:95;:::i;:::-;25379:102;;25498:148;25642:3;25498:148;:::i;:::-;25491:155;;25663:3;25656:10;;24977:695;;;;;:::o;25678:225::-;25818:34;25814:1;25806:6;25802:14;25795:58;25887:8;25882:2;25874:6;25870:15;25863:33;25678:225;:::o;25909:366::-;26051:3;26072:67;26136:2;26131:3;26072:67;:::i;:::-;26065:74;;26148:93;26237:3;26148:93;:::i;:::-;26266:2;26261:3;26257:12;26250:19;;25909:366;;;:::o;26281:419::-;26447:4;26485:2;26474:9;26470:18;26462:26;;26534:9;26528:4;26524:20;26520:1;26509:9;26505:17;26498:47;26562:131;26688:4;26562:131;:::i;:::-;26554:139;;26281:419;;;:::o;26706:231::-;26846:34;26842:1;26834:6;26830:14;26823:58;26915:14;26910:2;26902:6;26898:15;26891:39;26706:231;:::o;26943:366::-;27085:3;27106:67;27170:2;27165:3;27106:67;:::i;:::-;27099:74;;27182:93;27271:3;27182:93;:::i;:::-;27300:2;27295:3;27291:12;27284:19;;26943:366;;;:::o;27315:419::-;27481:4;27519:2;27508:9;27504:18;27496:26;;27568:9;27562:4;27558:20;27554:1;27543:9;27539:17;27532:47;27596:131;27722:4;27596:131;:::i;:::-;27588:139;;27315:419;;;:::o;27740:224::-;27880:34;27876:1;27868:6;27864:14;27857:58;27949:7;27944:2;27936:6;27932:15;27925:32;27740:224;:::o;27970:366::-;28112:3;28133:67;28197:2;28192:3;28133:67;:::i;:::-;28126:74;;28209:93;28298:3;28209:93;:::i;:::-;28327:2;28322:3;28318:12;28311:19;;27970:366;;;:::o;28342:419::-;28508:4;28546:2;28535:9;28531:18;28523:26;;28595:9;28589:4;28585:20;28581:1;28570:9;28566:17;28559:47;28623:131;28749:4;28623:131;:::i;:::-;28615:139;;28342:419;;;:::o;28767:223::-;28907:34;28903:1;28895:6;28891:14;28884:58;28976:6;28971:2;28963:6;28959:15;28952:31;28767:223;:::o;28996:366::-;29138:3;29159:67;29223:2;29218:3;29159:67;:::i;:::-;29152:74;;29235:93;29324:3;29235:93;:::i;:::-;29353:2;29348:3;29344:12;29337:19;;28996:366;;;:::o;29368:419::-;29534:4;29572:2;29561:9;29557:18;29549:26;;29621:9;29615:4;29611:20;29607:1;29596:9;29592:17;29585:47;29649:131;29775:4;29649:131;:::i;:::-;29641:139;;29368:419;;;:::o;29793:191::-;29833:4;29853:20;29871:1;29853:20;:::i;:::-;29848:25;;29887:20;29905:1;29887:20;:::i;:::-;29882:25;;29926:1;29923;29920:8;29917:34;;;29931:18;;:::i;:::-;29917:34;29976:1;29973;29969:9;29961:17;;29793:191;;;;:::o;29990:175::-;30130:27;30126:1;30118:6;30114:14;30107:51;29990:175;:::o;30171:366::-;30313:3;30334:67;30398:2;30393:3;30334:67;:::i;:::-;30327:74;;30410:93;30499:3;30410:93;:::i;:::-;30528:2;30523:3;30519:12;30512:19;;30171:366;;;:::o;30543:419::-;30709:4;30747:2;30736:9;30732:18;30724:26;;30796:9;30790:4;30786:20;30782:1;30771:9;30767:17;30760:47;30824:131;30950:4;30824:131;:::i;:::-;30816:139;;30543:419;;;:::o;30968:237::-;31108:34;31104:1;31096:6;31092:14;31085:58;31177:20;31172:2;31164:6;31160:15;31153:45;30968:237;:::o;31211:366::-;31353:3;31374:67;31438:2;31433:3;31374:67;:::i;:::-;31367:74;;31450:93;31539:3;31450:93;:::i;:::-;31568:2;31563:3;31559:12;31552:19;;31211:366;;;:::o;31583:419::-;31749:4;31787:2;31776:9;31772:18;31764:26;;31836:9;31830:4;31826:20;31822:1;31811:9;31807:17;31800:47;31864:131;31990:4;31864:131;:::i;:::-;31856:139;;31583:419;;;:::o;32008:180::-;32056:77;32053:1;32046:88;32153:4;32150:1;32143:15;32177:4;32174:1;32167:15;32194:185;32234:1;32251:20;32269:1;32251:20;:::i;:::-;32246:25;;32285:20;32303:1;32285:20;:::i;:::-;32280:25;;32324:1;32314:35;;32329:18;;:::i;:::-;32314:35;32371:1;32368;32364:9;32359:14;;32194:185;;;;:::o;32385:176::-;32417:1;32434:20;32452:1;32434:20;:::i;:::-;32429:25;;32468:20;32486:1;32468:20;:::i;:::-;32463:25;;32507:1;32497:35;;32512:18;;:::i;:::-;32497:35;32553:1;32550;32546:9;32541:14;;32385:176;;;;:::o;32567:180::-;32615:77;32612:1;32605:88;32712:4;32709:1;32702:15;32736:4;32733:1;32726:15;32753:98;32804:6;32838:5;32832:12;32822:22;;32753:98;;;:::o;32857:168::-;32940:11;32974:6;32969:3;32962:19;33014:4;33009:3;33005:14;32990:29;;32857:168;;;;:::o;33031:360::-;33117:3;33145:38;33177:5;33145:38;:::i;:::-;33199:70;33262:6;33257:3;33199:70;:::i;:::-;33192:77;;33278:52;33323:6;33318:3;33311:4;33304:5;33300:16;33278:52;:::i;:::-;33355:29;33377:6;33355:29;:::i;:::-;33350:3;33346:39;33339:46;;33121:270;33031:360;;;;:::o;33397:640::-;33592:4;33630:3;33619:9;33615:19;33607:27;;33644:71;33712:1;33701:9;33697:17;33688:6;33644:71;:::i;:::-;33725:72;33793:2;33782:9;33778:18;33769:6;33725:72;:::i;:::-;33807;33875:2;33864:9;33860:18;33851:6;33807:72;:::i;:::-;33926:9;33920:4;33916:20;33911:2;33900:9;33896:18;33889:48;33954:76;34025:4;34016:6;33954:76;:::i;:::-;33946:84;;33397:640;;;;;;;:::o;34043:141::-;34099:5;34130:6;34124:13;34115:22;;34146:32;34172:5;34146:32;:::i;:::-;34043:141;;;;:::o;34190:349::-;34259:6;34308:2;34296:9;34287:7;34283:23;34279:32;34276:119;;;34314:79;;:::i;:::-;34276:119;34434:1;34459:63;34514:7;34505:6;34494:9;34490:22;34459:63;:::i;:::-;34449:73;;34405:127;34190:349;;;;:::o;34545:182::-;34685:34;34681:1;34673:6;34669:14;34662:58;34545:182;:::o;34733:366::-;34875:3;34896:67;34960:2;34955:3;34896:67;:::i;:::-;34889:74;;34972:93;35061:3;34972:93;:::i;:::-;35090:2;35085:3;35081:12;35074:19;;34733:366;;;:::o;35105:419::-;35271:4;35309:2;35298:9;35294:18;35286:26;;35358:9;35352:4;35348:20;35344:1;35333:9;35329:17;35322:47;35386:131;35512:4;35386:131;:::i;:::-;35378:139;;35105:419;;;:::o;35530:178::-;35670:30;35666:1;35658:6;35654:14;35647:54;35530:178;:::o;35714:366::-;35856:3;35877:67;35941:2;35936:3;35877:67;:::i;:::-;35870:74;;35953:93;36042:3;35953:93;:::i;:::-;36071:2;36066:3;36062:12;36055:19;;35714:366;;;:::o;36086:419::-;36252:4;36290:2;36279:9;36275:18;36267:26;;36339:9;36333:4;36329:20;36325:1;36314:9;36310:17;36303:47;36367:131;36493:4;36367:131;:::i;:::-;36359:139;;36086:419;;;:::o

Swarm Source

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