ETH Price: $3,462.34 (-1.26%)
Gas: 4 Gwei

Token

Larva Frens (LarvaFrens)
 

Overview

Max Total Supply

4,506 LarvaFrens

Holders

942

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 LarvaFrens
0x68bf9c6fcf5de122e230139c4d1430a9a4d31b8b
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:
LarvaFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// ERC165.sol


pragma solidity ^0.8.0;


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

// IERC721.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// IERC721Metadata.sol


pragma solidity ^0.8.0;


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

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

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

// IERC721Receiver.sol


pragma solidity ^0.8.0;

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



// IERC721Enumerable.sol


pragma solidity ^0.8.0;


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

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

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


// Context.sol


pragma solidity ^0.8.0;

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

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

// ERC721S.sol

pragma solidity ^0.8.0;


abstract contract ERC721S is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721S.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721S.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721S.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721S.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721S.ownerOf(tokenId), to, tokenId);
    }
	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;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// SafeMath.sol


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// Address.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// ERC721Enum.sol

pragma solidity ^0.8.0;

abstract contract ERC721Enum is ERC721S, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

// ReentrancyGuard.sol


pragma solidity ^0.8.0;

/**
 * @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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// PaymentSplitter.sol


pragma solidity ^0.8.0;


/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

//  Pausable.sol


pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

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

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

// Strings.sol


pragma solidity ^0.8.0;

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

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

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

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

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

// Ownable.sol


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


contract LarvaFrens is ERC721Enum, Ownable, Pausable,  ReentrancyGuard {

	using Strings for uint256;
	string public baseURI;
    string public baseExtension = ".json";
	uint256 public cost = 0.02 ether;
	uint256 public maxSupply = 8888;
    uint256 public maxFree = 1000;
    uint256 public nftPerAddressLimit = 3;
	bool public status = false;
    mapping(address => uint256) public addressMintedBalance;

		
	constructor() ERC721S("Larva Frens", "LarvaFrens"){
	    setBaseURI("");
	}

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

	function mint(address _to, uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        require(status, "sale is not active yet");
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 10, "Cant mint more then max mint per transaction" );
		require(s + _mintAmount <= maxSupply, "Cant go over supply" );
		require(msg.value >= cost * _mintAmount);
		for (uint256 i = 0; i < _mintAmount; ++i) {
			_safeMint(_to, s + i, "");
		}
		delete s;
	}

    function mintfree(address _to, uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[_to];
        require(status, "sale is not active yet");
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 3, "Cant mint more then maxmint" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressMintedBalance[_to]++;
			_safeMint(_to, s + i, "");
		}
		delete s;
	}

    function mintOwner(address _to, uint256 _mintAmount) public onlyOwner{
		uint256 s = totalSupply();
        require(s + _mintAmount <= maxSupply, "Cant go over supply" );
        for (uint256 i = 0; i < _mintAmount; ++i) {
			_safeMint(_to, s + i, "");
		}
		delete s;
    }

	function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{
		require(quantity.length == recipient.length, "Provide quantities and recipients" );
		uint totalQuantity = 0;
		uint256 s = totalSupply();
		for(uint i = 0; i < quantity.length; ++i){
			totalQuantity += quantity[i];
		}
		require( s + totalQuantity <= maxSupply, "Too many" );
		delete totalQuantity;
		for(uint i = 0; i < recipient.length; ++i){
			for(uint j = 0; j < quantity[i]; ++j){
			_safeMint( recipient[i], s++, "" );
			}
		}
		delete s;	
	}
	
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	    require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
	}


    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

	function setCost(uint256 _newCost) public onlyOwner {
	    cost = _newCost;
	}

	function setmaxFree(uint256 _newMaxFree) public onlyOwner {
	    maxFree = _newMaxFree;
	}

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    maxSupply = _newMaxSupply;
	}

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

	function setSaleStatus(bool _status) public onlyOwner {
	    status = _status;
	}

	function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
	}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintfree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setmaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160089190620001e5565b5066470de4df8200006009556122b8600a556103e8600b556003600c55600d805460ff191690553480156200005c57600080fd5b50604080518082018252600b81526a4c61727661204672656e7360a81b60208083019182528351808501909452600a8452694c617276614672656e7360b01b908401528151919291620000b291600091620001e5565b508051620000c8906001906020840190620001e5565b505050620000e5620000df6200011760201b60201c565b6200011b565b6005805460ff60a01b19169055600160065560408051602081019091526000815262000111906200016d565b620002c8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e1906007906020840190620001e5565b5050565b828054620001f3906200028b565b90600052602060002090601f01602090048101928262000217576000855562000262565b82601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b600181811c90821680620002a057607f821691505b60208210811415620002c257634e487b7160e01b600052602260045260246000fd5b50919050565b6127f980620002d86000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063d5034b741161006f578063d5034b7414610669578063d5abeb0114610689578063d897833e1461069f578063e985e9c5146106bf578063f2fde38b1461070857600080fd5b8063b88d4fde146105de578063ba7d2c76146105fe578063c668286214610614578063c87b56dd14610629578063d0eb26b01461064957600080fd5b80638d2bcad9116100f25780638d2bcad9146105585780638da5cb5b1461056b57806395d89b411461058957806396ea3a471461059e578063a22cb465146105be57600080fd5b80636352211e146104c15780636c0360eb146104e157806370a08231146104f6578063715018a6146105165780638462151c1461052b57600080fd5b80632f745c59116101bc57806344a0d68a1161018057806344a0d68a1461042c578063485a68a31461044c5780634f6ccce71461046257806355f804b3146104825780635c975abb146104a257600080fd5b80632f745c59146103b15780633ccfd60b146103d1578063408cbf94146103d957806340c10f19146103f957806342842e0e1461040c57600080fd5b806318160ddd1161020357806318160ddd1461031557806318cae2691461032a578063200d2ed214610357578063228025e81461037157806323b872dd1461039157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612308565b610728565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610753565b60405161026c9190612515565b3480156102a357600080fd5b506102b76102b236600461238b565b6107e5565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612257565b610872565b005b3480156102fd57600080fd5b5061030760095481565b60405190815260200161026c565b34801561032157600080fd5b50600254610307565b34801561033657600080fd5b50610307610345366004612127565b600e6020526000908152604090205481565b34801561036357600080fd5b50600d546102609060ff1681565b34801561037d57600080fd5b506102ef61038c36600461238b565b610988565b34801561039d57600080fd5b506102ef6103ac366004612175565b6109b7565b3480156103bd57600080fd5b506103076103cc366004612257565b6109e8565b6102ef610a97565b3480156103e557600080fd5b506102ef6103f4366004612257565b610b19565b6102ef610407366004612257565b610bc0565b34801561041857600080fd5b506102ef610427366004612175565b610d8e565b34801561043857600080fd5b506102ef61044736600461238b565b610da9565b34801561045857600080fd5b50610307600b5481565b34801561046e57600080fd5b5061030761047d36600461238b565b610dd8565b34801561048e57600080fd5b506102ef61049d366004612342565b610e35565b3480156104ae57600080fd5b50600554600160a01b900460ff16610260565b3480156104cd57600080fd5b506102b76104dc36600461238b565b610e76565b3480156104ed57600080fd5b5061028a610f02565b34801561050257600080fd5b50610307610511366004612127565b610f90565b34801561052257600080fd5b506102ef611062565b34801561053757600080fd5b5061054b610546366004612127565b611098565b60405161026c91906124d1565b6102ef610566366004612257565b611162565b34801561057757600080fd5b506005546001600160a01b03166102b7565b34801561059557600080fd5b5061028a6113a1565b3480156105aa57600080fd5b506102ef6105b9366004612281565b6113b0565b3480156105ca57600080fd5b506102ef6105d936600461222d565b611570565b3480156105ea57600080fd5b506102ef6105f93660046121b1565b611635565b34801561060a57600080fd5b50610307600c5481565b34801561062057600080fd5b5061028a611667565b34801561063557600080fd5b5061028a61064436600461238b565b611674565b34801561065557600080fd5b506102ef61066436600461238b565b611734565b34801561067557600080fd5b506102ef61068436600461238b565b611763565b34801561069557600080fd5b50610307600a5481565b3480156106ab57600080fd5b506102ef6106ba3660046122ed565b611792565b3480156106cb57600080fd5b506102606106da366004612142565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561071457600080fd5b506102ef610723366004612127565b6117cf565b60006001600160e01b0319821663780e9d6360e01b148061074d575061074d82611867565b92915050565b606060008054610762906126eb565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906126eb565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f0826118b7565b6108565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061087d82610e76565b9050806001600160a01b0316836001600160a01b031614156108eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084d565b336001600160a01b0382161480610907575061090781336106da565b6109795760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084d565b6109838383611901565b505050565b6005546001600160a01b031633146109b25760405162461bcd60e51b815260040161084d906125a7565b600a55565b6109c1338261196f565b6109dd5760405162461bcd60e51b815260040161084d9061260c565b610983838383611a59565b60006109f383610f90565b8210610a115760405162461bcd60e51b815260040161084d906125dc565b6000805b600254811015610a7e5760028181548110610a3257610a32612781565b6000918252602090912001546001600160a01b0386811691161415610a6e5783821415610a6257915061074d9050565b610a6b82612726565b91505b610a7781612726565b9050610a15565b5060405162461bcd60e51b815260040161084d906125dc565b6005546001600160a01b03163314610ac15760405162461bcd60e51b815260040161084d906125a7565b604051600090339047908381818185875af1925050503d8060008114610b03576040519150601f19603f3d011682016040523d82523d6000602084013e610b08565b606091505b5050905080610b1657600080fd5b50565b6005546001600160a01b03163314610b435760405162461bcd60e51b815260040161084d906125a7565b6000610b4e60025490565b600a54909150610b5e838361265d565b1115610b7c5760405162461bcd60e51b815260040161084d9061257a565b60005b82811015610bba57610baa84610b95838561265d565b60405180602001604052806000815250611baf565b610bb381612726565b9050610b7f565b50505050565b60026006541415610c135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084d565b60026006556000610c2360025490565b600d5490915060ff16610c715760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b604482015260640161084d565b60008211610caf5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161084d565b600a821115610d155760405162461bcd60e51b815260206004820152602c60248201527f43616e74206d696e74206d6f7265207468656e206d6178206d696e742070657260448201526b103a3930b739b0b1ba34b7b760a11b606482015260840161084d565b600a54610d22838361265d565b1115610d405760405162461bcd60e51b815260040161084d9061257a565b81600954610d4e9190612689565b341015610d5a57600080fd5b60005b82811015610d8357610d7384610b95838561265d565b610d7c81612726565b9050610d5d565b505060016006555050565b61098383838360405180602001604052806000815250611635565b6005546001600160a01b03163314610dd35760405162461bcd60e51b815260040161084d906125a7565b600955565b6000610de360025490565b8210610e315760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161084d565b5090565b6005546001600160a01b03163314610e5f5760405162461bcd60e51b815260040161084d906125a7565b8051610e72906007906020840190611fa9565b5050565b60008060028381548110610e8c57610e8c612781565b6000918252602090912001546001600160a01b031690508061074d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084d565b60078054610f0f906126eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3b906126eb565b8015610f885780601f10610f5d57610100808354040283529160200191610f88565b820191906000526020600020905b815481529060010190602001808311610f6b57829003601f168201915b505050505081565b60006001600160a01b038216610ffb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084d565b600254600090815b81811015611059576002818154811061101e5761101e612781565b6000918252602090912001546001600160a01b03868116911614156110495761104683612726565b92505b61105281612726565b9050611003565b50909392505050565b6005546001600160a01b0316331461108c5760405162461bcd60e51b815260040161084d906125a7565b6110966000611be2565b565b60606110a382610f90565b6000106110c25760405162461bcd60e51b815260040161084d906125dc565b60006110cd83610f90565b905060008167ffffffffffffffff8111156110ea576110ea612797565b604051908082528060200260200182016040528015611113578160200160208202803683370190505b50905060005b8281101561115a5761112b85826109e8565b82828151811061113d5761113d612781565b60209081029190910101528061115281612726565b915050611119565b509392505050565b600260065414156111b55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084d565b600260065560006111c560025490565b6001600160a01b0384166000908152600e6020526040902054600d549192509060ff1661122d5760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b604482015260640161084d565b600c5461123a848361265d565b11156112885760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084d565b600083116112c65760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161084d565b60038311156113175760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604482015260640161084d565b600b54611324848461265d565b11156113425760405162461bcd60e51b815260040161084d9061257a565b60005b83811015611395576001600160a01b0385166000908152600e6020526040812080549161137183612726565b90915550611385905085610b95838661265d565b61138e81612726565b9050611345565b50506001600655505050565b606060018054610762906126eb565b6005546001600160a01b031633146113da5760405162461bcd60e51b815260040161084d906125a7565b8281146114335760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b606482015260840161084d565b60008061143f60025490565b905060005b858110156114825786868281811061145e5761145e612781565b9050602002013583611470919061265d565b925061147b81612726565b9050611444565b50600a54611490838361265d565b11156114c95760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b604482015260640161084d565b6000915060005b838110156115675760005b8787838181106114ed576114ed612781565b905060200201358110156115565761154686868481811061151057611510612781565b90506020020160208101906115259190612127565b8461152f81612726565b955060405180602001604052806000815250611baf565b61154f81612726565b90506114db565b5061156081612726565b90506114d0565b50505050505050565b6001600160a01b0382163314156115c95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084d565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61163f338361196f565b61165b5760405162461bcd60e51b815260040161084d9061260c565b610bba84848484611c34565b60088054610f0f906126eb565b606061167f826118b7565b6116d55760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161084d565b60006116df611c67565b905060008151116116ff576040518060200160405280600081525061172d565b8061170984611c76565b600860405160200161171d939291906123d0565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461175e5760405162461bcd60e51b815260040161084d906125a7565b600c55565b6005546001600160a01b0316331461178d5760405162461bcd60e51b815260040161084d906125a7565b600b55565b6005546001600160a01b031633146117bc5760405162461bcd60e51b815260040161084d906125a7565b600d805460ff1916911515919091179055565b6005546001600160a01b031633146117f95760405162461bcd60e51b815260040161084d906125a7565b6001600160a01b03811661185e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084d565b610b1681611be2565b60006001600160e01b031982166380ac58cd60e01b148061189857506001600160e01b03198216635b5e139f60e01b145b8061074d57506301ffc9a760e01b6001600160e01b031983161461074d565b6002546000908210801561074d575060006001600160a01b0316600283815481106118e4576118e4612781565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061193682610e76565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061197a826118b7565b6119db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084d565b60006119e683610e76565b9050806001600160a01b0316846001600160a01b03161480611a215750836001600160a01b0316611a16846107e5565b6001600160a01b0316145b80611a5157506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6c82610e76565b6001600160a01b031614611ad45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084d565b6001600160a01b038216611b365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084d565b611b41600082611901565b8160028281548110611b5557611b55612781565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611bb98383611d74565b611bc66000848484611e9c565b6109835760405162461bcd60e51b815260040161084d90612528565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c3f848484611a59565b611c4b84848484611e9c565b610bba5760405162461bcd60e51b815260040161084d90612528565b606060078054610762906126eb565b606081611c9a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc45780611cae81612726565b9150611cbd9050600a83612675565b9150611c9e565b60008167ffffffffffffffff811115611cdf57611cdf612797565b6040519080825280601f01601f191660200182016040528015611d09576020820181803683370190505b5090505b8415611a5157611d1e6001836126a8565b9150611d2b600a86612741565b611d3690603061265d565b60f81b818381518110611d4b57611d4b612781565b60200101906001600160f81b031916908160001a905350611d6d600a86612675565b9450611d0d565b6001600160a01b038216611dca5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084d565b611dd3816118b7565b15611e205760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084d565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f9e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee0903390899088908890600401612494565b602060405180830381600087803b158015611efa57600080fd5b505af1925050508015611f2a575060408051601f3d908101601f19168201909252611f2791810190612325565b60015b611f84573d808015611f58576040519150601f19603f3d011682016040523d82523d6000602084013e611f5d565b606091505b508051611f7c5760405162461bcd60e51b815260040161084d90612528565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a51565b506001949350505050565b828054611fb5906126eb565b90600052602060002090601f016020900481019282611fd7576000855561201d565b82601f10611ff057805160ff191683800117855561201d565b8280016001018555821561201d579182015b8281111561201d578251825591602001919060010190612002565b50610e319291505b80821115610e315760008155600101612025565b600067ffffffffffffffff8084111561205457612054612797565b604051601f8501601f19908116603f0116810190828211818310171561207c5761207c612797565b8160405280935085815286868601111561209557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120c657600080fd5b919050565b60008083601f8401126120dd57600080fd5b50813567ffffffffffffffff8111156120f557600080fd5b6020830191508360208260051b850101111561211057600080fd5b9250929050565b803580151581146120c657600080fd5b60006020828403121561213957600080fd5b61172d826120af565b6000806040838503121561215557600080fd5b61215e836120af565b915061216c602084016120af565b90509250929050565b60008060006060848603121561218a57600080fd5b612193846120af565b92506121a1602085016120af565b9150604084013590509250925092565b600080600080608085870312156121c757600080fd5b6121d0856120af565b93506121de602086016120af565b925060408501359150606085013567ffffffffffffffff81111561220157600080fd5b8501601f8101871361221257600080fd5b61222187823560208401612039565b91505092959194509250565b6000806040838503121561224057600080fd5b612249836120af565b915061216c60208401612117565b6000806040838503121561226a57600080fd5b612273836120af565b946020939093013593505050565b6000806000806040858703121561229757600080fd5b843567ffffffffffffffff808211156122af57600080fd5b6122bb888389016120cb565b909650945060208701359150808211156122d457600080fd5b506122e1878288016120cb565b95989497509550505050565b6000602082840312156122ff57600080fd5b61172d82612117565b60006020828403121561231a57600080fd5b813561172d816127ad565b60006020828403121561233757600080fd5b815161172d816127ad565b60006020828403121561235457600080fd5b813567ffffffffffffffff81111561236b57600080fd5b8201601f8101841361237c57600080fd5b611a5184823560208401612039565b60006020828403121561239d57600080fd5b5035919050565b600081518084526123bc8160208601602086016126bf565b601f01601f19169290920160200192915050565b6000845160206123e38285838a016126bf565b8551918401916123f68184848a016126bf565b8554920191600090600181811c908083168061241357607f831692505b85831081141561243157634e487b7160e01b85526022600452602485fd5b808015612445576001811461245657612483565b60ff19851688528388019550612483565b60008b81526020902060005b8581101561247b5781548a820152908401908801612462565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124c7908301846123a4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612509578351835292840192918401916001016124ed565b50909695505050505050565b60208152600061172d60208301846123a4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561267057612670612755565b500190565b6000826126845761268461276b565b500490565b60008160001904831182151516156126a3576126a3612755565b500290565b6000828210156126ba576126ba612755565b500390565b60005b838110156126da5781810151838201526020016126c2565b83811115610bba5750506000910152565b600181811c908216806126ff57607f821691505b6020821081141561272057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273a5761273a612755565b5060010190565b6000826127505761275061276b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1657600080fdfea2646970667358221220266b6bb78c76217760196e9430179df466b6c44405d3394320e44f85d6329dc564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063d5034b741161006f578063d5034b7414610669578063d5abeb0114610689578063d897833e1461069f578063e985e9c5146106bf578063f2fde38b1461070857600080fd5b8063b88d4fde146105de578063ba7d2c76146105fe578063c668286214610614578063c87b56dd14610629578063d0eb26b01461064957600080fd5b80638d2bcad9116100f25780638d2bcad9146105585780638da5cb5b1461056b57806395d89b411461058957806396ea3a471461059e578063a22cb465146105be57600080fd5b80636352211e146104c15780636c0360eb146104e157806370a08231146104f6578063715018a6146105165780638462151c1461052b57600080fd5b80632f745c59116101bc57806344a0d68a1161018057806344a0d68a1461042c578063485a68a31461044c5780634f6ccce71461046257806355f804b3146104825780635c975abb146104a257600080fd5b80632f745c59146103b15780633ccfd60b146103d1578063408cbf94146103d957806340c10f19146103f957806342842e0e1461040c57600080fd5b806318160ddd1161020357806318160ddd1461031557806318cae2691461032a578063200d2ed214610357578063228025e81461037157806323b872dd1461039157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612308565b610728565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610753565b60405161026c9190612515565b3480156102a357600080fd5b506102b76102b236600461238b565b6107e5565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612257565b610872565b005b3480156102fd57600080fd5b5061030760095481565b60405190815260200161026c565b34801561032157600080fd5b50600254610307565b34801561033657600080fd5b50610307610345366004612127565b600e6020526000908152604090205481565b34801561036357600080fd5b50600d546102609060ff1681565b34801561037d57600080fd5b506102ef61038c36600461238b565b610988565b34801561039d57600080fd5b506102ef6103ac366004612175565b6109b7565b3480156103bd57600080fd5b506103076103cc366004612257565b6109e8565b6102ef610a97565b3480156103e557600080fd5b506102ef6103f4366004612257565b610b19565b6102ef610407366004612257565b610bc0565b34801561041857600080fd5b506102ef610427366004612175565b610d8e565b34801561043857600080fd5b506102ef61044736600461238b565b610da9565b34801561045857600080fd5b50610307600b5481565b34801561046e57600080fd5b5061030761047d36600461238b565b610dd8565b34801561048e57600080fd5b506102ef61049d366004612342565b610e35565b3480156104ae57600080fd5b50600554600160a01b900460ff16610260565b3480156104cd57600080fd5b506102b76104dc36600461238b565b610e76565b3480156104ed57600080fd5b5061028a610f02565b34801561050257600080fd5b50610307610511366004612127565b610f90565b34801561052257600080fd5b506102ef611062565b34801561053757600080fd5b5061054b610546366004612127565b611098565b60405161026c91906124d1565b6102ef610566366004612257565b611162565b34801561057757600080fd5b506005546001600160a01b03166102b7565b34801561059557600080fd5b5061028a6113a1565b3480156105aa57600080fd5b506102ef6105b9366004612281565b6113b0565b3480156105ca57600080fd5b506102ef6105d936600461222d565b611570565b3480156105ea57600080fd5b506102ef6105f93660046121b1565b611635565b34801561060a57600080fd5b50610307600c5481565b34801561062057600080fd5b5061028a611667565b34801561063557600080fd5b5061028a61064436600461238b565b611674565b34801561065557600080fd5b506102ef61066436600461238b565b611734565b34801561067557600080fd5b506102ef61068436600461238b565b611763565b34801561069557600080fd5b50610307600a5481565b3480156106ab57600080fd5b506102ef6106ba3660046122ed565b611792565b3480156106cb57600080fd5b506102606106da366004612142565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561071457600080fd5b506102ef610723366004612127565b6117cf565b60006001600160e01b0319821663780e9d6360e01b148061074d575061074d82611867565b92915050565b606060008054610762906126eb565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906126eb565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f0826118b7565b6108565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061087d82610e76565b9050806001600160a01b0316836001600160a01b031614156108eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084d565b336001600160a01b0382161480610907575061090781336106da565b6109795760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084d565b6109838383611901565b505050565b6005546001600160a01b031633146109b25760405162461bcd60e51b815260040161084d906125a7565b600a55565b6109c1338261196f565b6109dd5760405162461bcd60e51b815260040161084d9061260c565b610983838383611a59565b60006109f383610f90565b8210610a115760405162461bcd60e51b815260040161084d906125dc565b6000805b600254811015610a7e5760028181548110610a3257610a32612781565b6000918252602090912001546001600160a01b0386811691161415610a6e5783821415610a6257915061074d9050565b610a6b82612726565b91505b610a7781612726565b9050610a15565b5060405162461bcd60e51b815260040161084d906125dc565b6005546001600160a01b03163314610ac15760405162461bcd60e51b815260040161084d906125a7565b604051600090339047908381818185875af1925050503d8060008114610b03576040519150601f19603f3d011682016040523d82523d6000602084013e610b08565b606091505b5050905080610b1657600080fd5b50565b6005546001600160a01b03163314610b435760405162461bcd60e51b815260040161084d906125a7565b6000610b4e60025490565b600a54909150610b5e838361265d565b1115610b7c5760405162461bcd60e51b815260040161084d9061257a565b60005b82811015610bba57610baa84610b95838561265d565b60405180602001604052806000815250611baf565b610bb381612726565b9050610b7f565b50505050565b60026006541415610c135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084d565b60026006556000610c2360025490565b600d5490915060ff16610c715760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b604482015260640161084d565b60008211610caf5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161084d565b600a821115610d155760405162461bcd60e51b815260206004820152602c60248201527f43616e74206d696e74206d6f7265207468656e206d6178206d696e742070657260448201526b103a3930b739b0b1ba34b7b760a11b606482015260840161084d565b600a54610d22838361265d565b1115610d405760405162461bcd60e51b815260040161084d9061257a565b81600954610d4e9190612689565b341015610d5a57600080fd5b60005b82811015610d8357610d7384610b95838561265d565b610d7c81612726565b9050610d5d565b505060016006555050565b61098383838360405180602001604052806000815250611635565b6005546001600160a01b03163314610dd35760405162461bcd60e51b815260040161084d906125a7565b600955565b6000610de360025490565b8210610e315760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161084d565b5090565b6005546001600160a01b03163314610e5f5760405162461bcd60e51b815260040161084d906125a7565b8051610e72906007906020840190611fa9565b5050565b60008060028381548110610e8c57610e8c612781565b6000918252602090912001546001600160a01b031690508061074d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084d565b60078054610f0f906126eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3b906126eb565b8015610f885780601f10610f5d57610100808354040283529160200191610f88565b820191906000526020600020905b815481529060010190602001808311610f6b57829003601f168201915b505050505081565b60006001600160a01b038216610ffb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084d565b600254600090815b81811015611059576002818154811061101e5761101e612781565b6000918252602090912001546001600160a01b03868116911614156110495761104683612726565b92505b61105281612726565b9050611003565b50909392505050565b6005546001600160a01b0316331461108c5760405162461bcd60e51b815260040161084d906125a7565b6110966000611be2565b565b60606110a382610f90565b6000106110c25760405162461bcd60e51b815260040161084d906125dc565b60006110cd83610f90565b905060008167ffffffffffffffff8111156110ea576110ea612797565b604051908082528060200260200182016040528015611113578160200160208202803683370190505b50905060005b8281101561115a5761112b85826109e8565b82828151811061113d5761113d612781565b60209081029190910101528061115281612726565b915050611119565b509392505050565b600260065414156111b55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084d565b600260065560006111c560025490565b6001600160a01b0384166000908152600e6020526040902054600d549192509060ff1661122d5760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b604482015260640161084d565b600c5461123a848361265d565b11156112885760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084d565b600083116112c65760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b604482015260640161084d565b60038311156113175760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604482015260640161084d565b600b54611324848461265d565b11156113425760405162461bcd60e51b815260040161084d9061257a565b60005b83811015611395576001600160a01b0385166000908152600e6020526040812080549161137183612726565b90915550611385905085610b95838661265d565b61138e81612726565b9050611345565b50506001600655505050565b606060018054610762906126eb565b6005546001600160a01b031633146113da5760405162461bcd60e51b815260040161084d906125a7565b8281146114335760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b606482015260840161084d565b60008061143f60025490565b905060005b858110156114825786868281811061145e5761145e612781565b9050602002013583611470919061265d565b925061147b81612726565b9050611444565b50600a54611490838361265d565b11156114c95760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b604482015260640161084d565b6000915060005b838110156115675760005b8787838181106114ed576114ed612781565b905060200201358110156115565761154686868481811061151057611510612781565b90506020020160208101906115259190612127565b8461152f81612726565b955060405180602001604052806000815250611baf565b61154f81612726565b90506114db565b5061156081612726565b90506114d0565b50505050505050565b6001600160a01b0382163314156115c95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084d565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61163f338361196f565b61165b5760405162461bcd60e51b815260040161084d9061260c565b610bba84848484611c34565b60088054610f0f906126eb565b606061167f826118b7565b6116d55760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161084d565b60006116df611c67565b905060008151116116ff576040518060200160405280600081525061172d565b8061170984611c76565b600860405160200161171d939291906123d0565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461175e5760405162461bcd60e51b815260040161084d906125a7565b600c55565b6005546001600160a01b0316331461178d5760405162461bcd60e51b815260040161084d906125a7565b600b55565b6005546001600160a01b031633146117bc5760405162461bcd60e51b815260040161084d906125a7565b600d805460ff1916911515919091179055565b6005546001600160a01b031633146117f95760405162461bcd60e51b815260040161084d906125a7565b6001600160a01b03811661185e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084d565b610b1681611be2565b60006001600160e01b031982166380ac58cd60e01b148061189857506001600160e01b03198216635b5e139f60e01b145b8061074d57506301ffc9a760e01b6001600160e01b031983161461074d565b6002546000908210801561074d575060006001600160a01b0316600283815481106118e4576118e4612781565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061193682610e76565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061197a826118b7565b6119db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084d565b60006119e683610e76565b9050806001600160a01b0316846001600160a01b03161480611a215750836001600160a01b0316611a16846107e5565b6001600160a01b0316145b80611a5157506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6c82610e76565b6001600160a01b031614611ad45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084d565b6001600160a01b038216611b365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084d565b611b41600082611901565b8160028281548110611b5557611b55612781565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611bb98383611d74565b611bc66000848484611e9c565b6109835760405162461bcd60e51b815260040161084d90612528565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c3f848484611a59565b611c4b84848484611e9c565b610bba5760405162461bcd60e51b815260040161084d90612528565b606060078054610762906126eb565b606081611c9a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc45780611cae81612726565b9150611cbd9050600a83612675565b9150611c9e565b60008167ffffffffffffffff811115611cdf57611cdf612797565b6040519080825280601f01601f191660200182016040528015611d09576020820181803683370190505b5090505b8415611a5157611d1e6001836126a8565b9150611d2b600a86612741565b611d3690603061265d565b60f81b818381518110611d4b57611d4b612781565b60200101906001600160f81b031916908160001a905350611d6d600a86612675565b9450611d0d565b6001600160a01b038216611dca5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084d565b611dd3816118b7565b15611e205760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084d565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f9e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee0903390899088908890600401612494565b602060405180830381600087803b158015611efa57600080fd5b505af1925050508015611f2a575060408051601f3d908101601f19168201909252611f2791810190612325565b60015b611f84573d808015611f58576040519150601f19603f3d011682016040523d82523d6000602084013e611f5d565b606091505b508051611f7c5760405162461bcd60e51b815260040161084d90612528565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a51565b506001949350505050565b828054611fb5906126eb565b90600052602060002090601f016020900481019282611fd7576000855561201d565b82601f10611ff057805160ff191683800117855561201d565b8280016001018555821561201d579182015b8281111561201d578251825591602001919060010190612002565b50610e319291505b80821115610e315760008155600101612025565b600067ffffffffffffffff8084111561205457612054612797565b604051601f8501601f19908116603f0116810190828211818310171561207c5761207c612797565b8160405280935085815286868601111561209557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120c657600080fd5b919050565b60008083601f8401126120dd57600080fd5b50813567ffffffffffffffff8111156120f557600080fd5b6020830191508360208260051b850101111561211057600080fd5b9250929050565b803580151581146120c657600080fd5b60006020828403121561213957600080fd5b61172d826120af565b6000806040838503121561215557600080fd5b61215e836120af565b915061216c602084016120af565b90509250929050565b60008060006060848603121561218a57600080fd5b612193846120af565b92506121a1602085016120af565b9150604084013590509250925092565b600080600080608085870312156121c757600080fd5b6121d0856120af565b93506121de602086016120af565b925060408501359150606085013567ffffffffffffffff81111561220157600080fd5b8501601f8101871361221257600080fd5b61222187823560208401612039565b91505092959194509250565b6000806040838503121561224057600080fd5b612249836120af565b915061216c60208401612117565b6000806040838503121561226a57600080fd5b612273836120af565b946020939093013593505050565b6000806000806040858703121561229757600080fd5b843567ffffffffffffffff808211156122af57600080fd5b6122bb888389016120cb565b909650945060208701359150808211156122d457600080fd5b506122e1878288016120cb565b95989497509550505050565b6000602082840312156122ff57600080fd5b61172d82612117565b60006020828403121561231a57600080fd5b813561172d816127ad565b60006020828403121561233757600080fd5b815161172d816127ad565b60006020828403121561235457600080fd5b813567ffffffffffffffff81111561236b57600080fd5b8201601f8101841361237c57600080fd5b611a5184823560208401612039565b60006020828403121561239d57600080fd5b5035919050565b600081518084526123bc8160208601602086016126bf565b601f01601f19169290920160200192915050565b6000845160206123e38285838a016126bf565b8551918401916123f68184848a016126bf565b8554920191600090600181811c908083168061241357607f831692505b85831081141561243157634e487b7160e01b85526022600452602485fd5b808015612445576001811461245657612483565b60ff19851688528388019550612483565b60008b81526020902060005b8581101561247b5781548a820152908401908801612462565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124c7908301846123a4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612509578351835292840192918401916001016124ed565b50909695505050505050565b60208152600061172d60208301846123a4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561267057612670612755565b500190565b6000826126845761268461276b565b500490565b60008160001904831182151516156126a3576126a3612755565b500290565b6000828210156126ba576126ba612755565b500390565b60005b838110156126da5781810151838201526020016126c2565b83811115610bba5750506000910152565b600181811c908216806126ff57607f821691505b6020821081141561272057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273a5761273a612755565b5060010190565b6000826127505761275061276b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1657600080fdfea2646970667358221220266b6bb78c76217760196e9430179df466b6c44405d3394320e44f85d6329dc564736f6c63430008070033

Deployed Bytecode Sourcemap

47952:3730:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32201:225;;;;;;;;;;-1:-1:-1;32201:225:0;;;;;:::i;:::-;;:::i;:::-;;;8957:14:1;;8950:22;8932:41;;8920:2;8905:18;32201:225:0;;;;;;;;11320:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11954:221::-;;;;;;;;;;-1:-1:-1;11954:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7618:32:1;;;7600:51;;7588:2;7573:18;11954:221:0;7454:203:1;11536:412:0;;;;;;;;;;-1:-1:-1;11536:412:0;;;;;:::i;:::-;;:::i;:::-;;48127:32;;;;;;;;;;;;;;;;;;;19688:25:1;;;19676:2;19661:18;48127:32:0;19542:177:1;33362:110:0;;;;;;;;;;-1:-1:-1;33450:7:0;:14;33362:110;;48311:55;;;;;;;;;;-1:-1:-1;48311:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48278:26;;;;;;;;;;-1:-1:-1;48278:26:0;;;;;;;;51212:100;;;;;;;;;;-1:-1:-1;51212:100:0;;;;;:::i;:::-;;:::i;12652:339::-;;;;;;;;;;-1:-1:-1;12652:339:0;;;;;:::i;:::-;;:::i;32432:500::-;;;;;;;;;;-1:-1:-1;32432:500:0;;;;;:::i;:::-;;:::i;51508:165::-;;;:::i;49708:281::-;;;;;;;;;;-1:-1:-1;49708:281:0;;;;;:::i;:::-;;:::i;48556:494::-;;;;;;:::i;:::-;;:::i;12997:185::-;;;;;;;;;;-1:-1:-1;12997:185:0;;;;;:::i;:::-;;:::i;51027:80::-;;;;;;;;;;-1:-1:-1;51027:80:0;;;;;:::i;:::-;;:::i;48201:29::-;;;;;;;;;;;;;;;;33478:194;;;;;;;;;;-1:-1:-1;33478:194:0;;;;;:::i;:::-;;:::i;51317:98::-;;;;;;;;;;-1:-1:-1;51317:98:0;;;;;:::i;:::-;;:::i;42466:86::-;;;;;;;;;;-1:-1:-1;42537:7:0;;-1:-1:-1;;;42537:7:0;;;;42466:86;;11075:239;;;;;;;;;;-1:-1:-1;11075:239:0;;;;;:::i;:::-;;:::i;48058:21::-;;;;;;;;;;;;;:::i;10655:414::-;;;;;;;;;;-1:-1:-1;10655:414:0;;;;;:::i;:::-;;:::i;47294:94::-;;;;;;;;;;;;;:::i;32938:418::-;;;;;;;;;;-1:-1:-1;32938:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49058:642::-;;;;;;:::i;:::-;;:::i;46643:87::-;;;;;;;;;;-1:-1:-1;46716:6:0;;-1:-1:-1;;;;;46716:6:0;46643:87;;11426:104;;;;;;;;;;;;;:::i;49994:560::-;;;;;;;;;;-1:-1:-1;49994:560:0;;;;;:::i;:::-;;:::i;12181:295::-;;;;;;;;;;-1:-1:-1;12181:295:0;;;;;:::i;:::-;;:::i;13188:328::-;;;;;;;;;;-1:-1:-1;13188:328:0;;;;;:::i;:::-;;:::i;48237:37::-;;;;;;;;;;;;;;;;48086;;;;;;;;;;;;;:::i;50560:342::-;;;;;;;;;;-1:-1:-1;50560:342:0;;;;;:::i;:::-;;:::i;50912:110::-;;;;;;;;;;-1:-1:-1;50912:110:0;;;;;:::i;:::-;;:::i;51112:92::-;;;;;;;;;;-1:-1:-1;51112:92:0;;;;;:::i;:::-;;:::i;48163:31::-;;;;;;;;;;;;;;;;51420:83;;;;;;;;;;-1:-1:-1;51420:83:0;;;;;:::i;:::-;;:::i;12482:164::-;;;;;;;;;;-1:-1:-1;12482:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;12603:25:0;;;12579:4;12603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12482:164;47543:192;;;;;;;;;;-1:-1:-1;47543:192:0;;;;;:::i;:::-;;:::i;32201:225::-;32304:4;-1:-1:-1;;;;;;32328:50:0;;-1:-1:-1;;;32328:50:0;;:90;;;32382:36;32406:11;32382:23;:36::i;:::-;32321:97;32201:225;-1:-1:-1;;32201:225:0:o;11320:100::-;11374:13;11407:5;11400:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11320:100;:::o;11954:221::-;12030:7;12058:16;12066:7;12058;:16::i;:::-;12050:73;;;;-1:-1:-1;;;12050:73:0;;15985:2:1;12050:73:0;;;15967:21:1;16024:2;16004:18;;;15997:30;16063:34;16043:18;;;16036:62;-1:-1:-1;;;16114:18:1;;;16107:42;16166:19;;12050:73:0;;;;;;;;;-1:-1:-1;12143:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12143:24:0;;11954:221::o;11536:412::-;11617:13;11633:24;11649:7;11633:15;:24::i;:::-;11617:40;;11682:5;-1:-1:-1;;;;;11676:11:0;:2;-1:-1:-1;;;;;11676:11:0;;;11668:57;;;;-1:-1:-1;;;11668:57:0;;18208:2:1;11668:57:0;;;18190:21:1;18247:2;18227:18;;;18220:30;18286:34;18266:18;;;18259:62;-1:-1:-1;;;18337:18:1;;;18330:31;18378:19;;11668:57:0;18006:397:1;11668:57:0;9696:10;-1:-1:-1;;;;;11760:21:0;;;;:62;;-1:-1:-1;11785:37:0;11802:5;9696:10;12482:164;:::i;11785:37::-;11738:168;;;;-1:-1:-1;;;11738:168:0;;14030:2:1;11738:168:0;;;14012:21:1;14069:2;14049:18;;;14042:30;14108:34;14088:18;;;14081:62;14179:26;14159:18;;;14152:54;14223:19;;11738:168:0;13828:420:1;11738:168:0;11919:21;11928:2;11932:7;11919:8;:21::i;:::-;11606:342;11536:412;;:::o;51212:100::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51282:9:::1;:25:::0;51212:100::o;12652:339::-;12847:41;9696:10;12880:7;12847:18;:41::i;:::-;12839:103;;;;-1:-1:-1;;;12839:103:0;;;;;;;:::i;:::-;12955:28;12965:4;12971:2;12975:7;12955:9;:28::i;32432:500::-;32521:15;32565:24;32583:5;32565:17;:24::i;:::-;32557:5;:32;32549:67;;;;-1:-1:-1;;;32549:67:0;;;;;;;:::i;:::-;32627:10;32653:6;32648:226;32665:7;:14;32661:18;;32648:226;;;32714:7;32722:1;32714:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32705:19:0;;;32714:10;;32705:19;32701:162;;;32758:5;32749;:14;32745:102;;;32794:1;-1:-1:-1;32787:8:0;;-1:-1:-1;32787:8:0;32745:102;32840:7;;;:::i;:::-;;;32745:102;32681:3;;;:::i;:::-;;;32648:226;;;-1:-1:-1;32884:40:0;;-1:-1:-1;;;32884:40:0;;;;;;;:::i;51508:165::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51583:58:::1;::::0;51565:12:::1;::::0;51591:10:::1;::::0;51615:21:::1;::::0;51565:12;51583:58;51565:12;51583:58;51615:21;51591:10;51583:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51564:77;;;51660:7;51652:16;;;::::0;::::1;;51553:120;51508:165::o:0;49708:281::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;49782:9:::1;49794:13;33450:7:::0;:14;;33362:110;49794:13:::1;49845:9;::::0;49782:25;;-1:-1:-1;49826:15:0::1;49830:11:::0;49782:25;49826:15:::1;:::i;:::-;:28;;49818:61;;;;-1:-1:-1::0;;;49818:61:0::1;;;;;;;:::i;:::-;49895:9;49890:79;49914:11;49910:1;:15;49890:79;;;49938:25;49948:3:::0;49953:5:::1;49957:1:::0;49953;:5:::1;:::i;:::-;49938:25;;;;;;;;;;;::::0;:9:::1;:25::i;:::-;49927:3;::::0;::::1;:::i;:::-;;;49890:79;;;-1:-1:-1::0;;;;49708:281:0:o;48556:494::-;35385:1;35981:7;;:19;;35973:63;;;;-1:-1:-1;;;35973:63:0;;19384:2:1;35973:63:0;;;19366:21:1;19423:2;19403:18;;;19396:30;19462:33;19442:18;;;19435:61;19513:18;;35973:63:0;19182:355:1;35973:63:0;35385:1;36114:7;:18;48636:9:::1;48648:13;33450:7:::0;:14;;33362:110;48648:13:::1;48680:6;::::0;48636:25;;-1:-1:-1;48680:6:0::1;;48672:41;;;::::0;-1:-1:-1;;;48672:41:0;;11748:2:1;48672:41:0::1;::::0;::::1;11730:21:1::0;11787:2;11767:18;;;11760:30;-1:-1:-1;;;11806:18:1;;;11799:52;11868:18;;48672:41:0::1;11546:346:1::0;48672:41:0::1;48740:1;48726:11;:15;48718:40;;;::::0;-1:-1:-1;;;48718:40:0;;9823:2:1;48718:40:0::1;::::0;::::1;9805:21:1::0;9862:2;9842:18;;;9835:30;-1:-1:-1;;;9881:18:1;;;9874:41;9932:18;;48718:40:0::1;9621:335:1::0;48718:40:0::1;48786:2;48771:11;:17;;48763:75;;;::::0;-1:-1:-1;;;48763:75:0;;9410:2:1;48763:75:0::1;::::0;::::1;9392:21:1::0;9449:2;9429:18;;;9422:30;9488:34;9468:18;;;9461:62;-1:-1:-1;;;9539:18:1;;;9532:42;9591:19;;48763:75:0::1;9208:408:1::0;48763:75:0::1;48870:9;::::0;48851:15:::1;48855:11:::0;48851:1;:15:::1;:::i;:::-;:28;;48843:61;;;;-1:-1:-1::0;;;48843:61:0::1;;;;;;;:::i;:::-;48937:11;48930:4;;:18;;;;:::i;:::-;48917:9;:31;;48909:40;;;::::0;::::1;;48959:9;48954:79;48978:11;48974:1;:15;48954:79;;;49002:25;49012:3:::0;49017:5:::1;49021:1:::0;49017;:5:::1;:::i;49002:25::-;48991:3;::::0;::::1;:::i;:::-;;;48954:79;;;-1:-1:-1::0;;35341:1:0;36293:7;:22;-1:-1:-1;;48556:494:0:o;12997:185::-;13135:39;13152:4;13158:2;13162:7;13135:39;;;;;;;;;;;;:16;:39::i;51027:80::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51087:4:::1;:15:::0;51027:80::o;33478:194::-;33553:7;33589:24;33450:7;:14;;33362:110;33589:24;33581:5;:32;33573:68;;;;-1:-1:-1;;;33573:68:0;;17856:2:1;33573:68:0;;;17838:21:1;17895:2;17875:18;;;17868:30;17934:25;17914:18;;;17907:53;17977:18;;33573:68:0;17654:347:1;33573:68:0;-1:-1:-1;33659:5:0;33478:194::o;51317:98::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51389:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51317:98:::0;:::o;11075:239::-;11147:7;11167:13;11183:7;11191;11183:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11183:16:0;;-1:-1:-1;11218:19:0;11210:73;;;;-1:-1:-1;;;11210:73:0;;14866:2:1;11210:73:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:39;15044:19;;11210:73:0;14664:405:1;48058:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10655:414::-;10727:7;-1:-1:-1;;;;;10755:19:0;;10747:74;;;;-1:-1:-1;;;10747:74:0;;14455:2:1;10747:74:0;;;14437:21:1;14494:2;14474:18;;;14467:30;14533:34;14513:18;;;14506:62;-1:-1:-1;;;14584:18:1;;;14577:40;14634:19;;10747:74:0;14253:406:1;10747:74:0;10871:7;:14;10832:10;;;10896:119;10917:6;10913:1;:10;10896:119;;;10956:7;10964:1;10956:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;10947:19:0;;;10956:10;;10947:19;10943:61;;;10983:7;;;:::i;:::-;;;10943:61;10925:3;;;:::i;:::-;;;10896:119;;;-1:-1:-1;11056:5:0;;10655:414;-1:-1:-1;;;10655:414:0:o;47294:94::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;47359:21:::1;47377:1;47359:9;:21::i;:::-;47294:94::o:0;32938:418::-;32997:16;33038:24;33056:5;33038:17;:24::i;:::-;33034:1;:28;33026:63;;;;-1:-1:-1;;;33026:63:0;;;;;;;:::i;:::-;33100:18;33121:16;33131:5;33121:9;:16::i;:::-;33100:37;;33148:25;33190:10;33176:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33176:25:0;;33148:53;;33217:9;33212:111;33236:10;33232:1;:14;33212:111;;;33282:29;33302:5;33309:1;33282:19;:29::i;:::-;33268:8;33277:1;33268:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33248:3;;;;:::i;:::-;;;;33212:111;;;-1:-1:-1;33340:8:0;32938:418;-1:-1:-1;;;32938:418:0:o;49058:642::-;35385:1;35981:7;;:19;;35973:63;;;;-1:-1:-1;;;35973:63:0;;19384:2:1;35973:63:0;;;19366:21:1;19423:2;19403:18;;;19396:30;19462:33;19442:18;;;19435:61;19513:18;;35973:63:0;19182:355:1;35973:63:0;35385:1;36114:7;:18;49142:9:::1;49154:13;33450:7:::0;:14;;33362:110;49154:13:::1;-1:-1:-1::0;;;;;49205:25:0;::::1;49178:24;49205:25:::0;;;:20:::1;:25;::::0;;;;;49249:6:::1;::::0;49142:25;;-1:-1:-1;49205:25:0;49249:6:::1;;49241:41;;;::::0;-1:-1:-1;;;49241:41:0;;11748:2:1;49241:41:0::1;::::0;::::1;11730:21:1::0;11787:2;11767:18;;;11760:30;-1:-1:-1;;;11806:18:1;;;11799:52;11868:18;;49241:41:0::1;11546:346:1::0;49241:41:0::1;49335:18;::::0;49301:30:::1;49320:11:::0;49301:16;:30:::1;:::i;:::-;:52;;49293:93;;;::::0;-1:-1:-1;;;49293:93:0;;12099:2:1;49293:93:0::1;::::0;::::1;12081:21:1::0;12138:2;12118:18;;;12111:30;12177;12157:18;;;12150:58;12225:18;;49293:93:0::1;11897:352:1::0;49293:93:0::1;49413:1;49399:11;:15;49391:40;;;::::0;-1:-1:-1;;;49391:40:0;;9823:2:1;49391:40:0::1;::::0;::::1;9805:21:1::0;9862:2;9842:18;;;9835:30;-1:-1:-1;;;9881:18:1;;;9874:41;9932:18;;49391:40:0::1;9621:335:1::0;49391:40:0::1;49459:1;49444:11;:16;;49436:57;;;::::0;-1:-1:-1;;;49436:57:0;;19028:2:1;49436:57:0::1;::::0;::::1;19010:21:1::0;19067:2;19047:18;;;19040:30;19106:29;19086:18;;;19079:57;19153:18;;49436:57:0::1;18826:351:1::0;49436:57:0::1;49525:7;::::0;49506:15:::1;49510:11:::0;49506:1;:15:::1;:::i;:::-;:26;;49498:59;;;;-1:-1:-1::0;;;49498:59:0::1;;;;;;;:::i;:::-;49567:9;49562:121;49586:11;49582:1;:15;49562:121;;;-1:-1:-1::0;;;;;49619:25:0;::::1;;::::0;;;:20:::1;:25;::::0;;;;:27;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;49652:25:0::1;::::0;-1:-1:-1;49662:3:0;49667:5:::1;49671:1:::0;49667;:5:::1;:::i;49652:25::-;49599:3;::::0;::::1;:::i;:::-;;;49562:121;;;-1:-1:-1::0;;35341:1:0;36293:7;:22;-1:-1:-1;;;49058:642:0:o;11426:104::-;11482:13;11515:7;11508:14;;;;;:::i;49994:560::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;50095:35;;::::1;50087:82;;;::::0;-1:-1:-1;;;50087:82:0;;13628:2:1;50087:82:0::1;::::0;::::1;13610:21:1::0;13667:2;13647:18;;;13640:30;13706:34;13686:18;;;13679:62;-1:-1:-1;;;13757:18:1;;;13750:31;13798:19;;50087:82:0::1;13426:397:1::0;50087:82:0::1;50174:18;50201:9:::0;50213:13:::1;33450:7:::0;:14;;33362:110;50213:13:::1;50201:25;;50235:6;50231:81;50247:19:::0;;::::1;50231:81;;;50295:8;;50304:1;50295:11;;;;;;;:::i;:::-;;;;;;;50278:28;;;;;:::i;:::-;::::0;-1:-1:-1;50268:3:0::1;::::0;::::1;:::i;:::-;;;50231:81;;;-1:-1:-1::0;50346:9:0::1;::::0;50325:17:::1;50329:13:::0;50325:1;:17:::1;:::i;:::-;:30;;50316:53;;;::::0;-1:-1:-1;;;50316:53:0;;16398:2:1;50316:53:0::1;::::0;::::1;16380:21:1::0;16437:1;16417:18;;;16410:29;-1:-1:-1;;;16455:18:1;;;16448:38;16503:18;;50316:53:0::1;16196:331:1::0;50316:53:0::1;50374:20;;;50403:6;50399:137;50415:20:::0;;::::1;50399:137;;;50451:6;50447:84;50467:8;;50476:1;50467:11;;;;;;;:::i;:::-;;;;;;;50463:1;:15;50447:84;;;50490:34;50501:9;;50511:1;50501:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50515:3:::0;::::1;::::0;::::1;:::i;:::-;;;50490:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;50480:3;::::0;::::1;:::i;:::-;;;50447:84;;;-1:-1:-1::0;50437:3:0::1;::::0;::::1;:::i;:::-;;;50399:137;;;-1:-1:-1::0;;;;;;;49994:560:0:o;12181:295::-;-1:-1:-1;;;;;12284:24:0;;9696:10;12284:24;;12276:62;;;;-1:-1:-1;;;12276:62:0;;12861:2:1;12276:62:0;;;12843:21:1;12900:2;12880:18;;;12873:30;12939:27;12919:18;;;12912:55;12984:18;;12276:62:0;12659:349:1;12276:62:0;9696:10;12351:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12351:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12351:53:0;;;;;;;;;;12420:48;;8932:41:1;;;12351:42:0;;9696:10;12420:48;;8905:18:1;12420:48:0;;;;;;;12181:295;;:::o;13188:328::-;13363:41;9696:10;13396:7;13363:18;:41::i;:::-;13355:103;;;;-1:-1:-1;;;13355:103:0;;;;;;;:::i;:::-;13469:39;13483:4;13489:2;13493:7;13502:5;13469:13;:39::i;48086:37::-;;;;;;;:::i;50560:342::-;50633:13;50664:16;50672:7;50664;:16::i;:::-;50656:62;;;;-1:-1:-1;;;50656:62:0;;10163:2:1;50656:62:0;;;10145:21:1;10202:2;10182:18;;;10175:30;10241:34;10221:18;;;10214:62;-1:-1:-1;;;10292:18:1;;;10285:31;10333:19;;50656:62:0;9961:397:1;50656:62:0;50726:28;50757:10;:8;:10::i;:::-;50726:41;;50813:1;50788:14;50782:28;:32;:115;;;;;;;;;;;;;;;;;50841:14;50857:18;:7;:16;:18::i;:::-;50877:13;50824:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50782:115;50775:122;50560:342;-1:-1:-1;;;50560:342:0:o;50912:110::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;50987:18:::1;:27:::0;50912:110::o;51112:92::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51178:7:::1;:21:::0;51112:92::o;51420:83::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;51482:6:::1;:16:::0;;-1:-1:-1;;51482:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51420:83::o;47543:192::-;46716:6;;-1:-1:-1;;;;;46716:6:0;9696:10;46863:23;46855:68;;;;-1:-1:-1;;;46855:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47632:22:0;::::1;47624:73;;;::::0;-1:-1:-1;;;47624:73:0;;10984:2:1;47624:73:0::1;::::0;::::1;10966:21:1::0;11023:2;11003:18;;;10996:30;11062:34;11042:18;;;11035:62;-1:-1:-1;;;11113:18:1;;;11106:36;11159:19;;47624:73:0::1;10782:402:1::0;47624:73:0::1;47708:19;47718:8;47708:9;:19::i;10344:305::-:0;10446:4;-1:-1:-1;;;;;;10483:40:0;;-1:-1:-1;;;10483:40:0;;:105;;-1:-1:-1;;;;;;;10540:48:0;;-1:-1:-1;;;10540:48:0;10483:105;:158;;;-1:-1:-1;;;;;;;;;;1683:40:0;;;10605:36;1574:157;13845:155;13944:7;:14;13910:4;;13934:24;;:58;;;;;13990:1;-1:-1:-1;;;;;13962:30:0;:7;13970;13962:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;13962:16:0;:30;;13927:65;13845:155;-1:-1:-1;;13845:155:0:o;15997:175::-;16072:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16072:29:0;-1:-1:-1;;;;;16072:29:0;;;;;;;;:24;;16126;16072;16126:15;:24::i;:::-;-1:-1:-1;;;;;16117:47:0;;;;;;;;;;;15997:175;;:::o;14003:349::-;14096:4;14121:16;14129:7;14121;:16::i;:::-;14113:73;;;;-1:-1:-1;;;14113:73:0;;13215:2:1;14113:73:0;;;13197:21:1;13254:2;13234:18;;;13227:30;13293:34;13273:18;;;13266:62;-1:-1:-1;;;13344:18:1;;;13337:42;13396:19;;14113:73:0;13013:408:1;14113:73:0;14197:13;14213:24;14229:7;14213:15;:24::i;:::-;14197:40;;14267:5;-1:-1:-1;;;;;14256:16:0;:7;-1:-1:-1;;;;;14256:16:0;;:51;;;;14300:7;-1:-1:-1;;;;;14276:31:0;:20;14288:7;14276:11;:20::i;:::-;-1:-1:-1;;;;;14276:31:0;;14256:51;:87;;;-1:-1:-1;;;;;;12603:25:0;;;12579:4;12603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14311:32;14248:96;14003:349;-1:-1:-1;;;;14003:349:0:o;15477:517::-;15637:4;-1:-1:-1;;;;;15609:32:0;:24;15625:7;15609:15;:24::i;:::-;-1:-1:-1;;;;;15609:32:0;;15601:86;;;;-1:-1:-1;;;15601:86:0;;17095:2:1;15601:86:0;;;17077:21:1;17134:2;17114:18;;;17107:30;17173:34;17153:18;;;17146:62;-1:-1:-1;;;17224:18:1;;;17217:39;17273:19;;15601:86:0;16893:405:1;15601:86:0;-1:-1:-1;;;;;15706:16:0;;15698:65;;;;-1:-1:-1;;;15698:65:0;;12456:2:1;15698:65:0;;;12438:21:1;12495:2;12475:18;;;12468:30;12534:34;12514:18;;;12507:62;-1:-1:-1;;;12585:18:1;;;12578:34;12629:19;;15698:65:0;12254:400:1;15698:65:0;15880:29;15897:1;15901:7;15880:8;:29::i;:::-;15939:2;15920:7;15928;15920:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;15920:21:0;-1:-1:-1;;;;;15920:21:0;;;;;;15959:27;;15978:7;;15959:27;;;;;;;;;;15920:16;15959:27;15477:517;;;:::o;14468:321::-;14598:18;14604:2;14608:7;14598:5;:18::i;:::-;14649:54;14680:1;14684:2;14688:7;14697:5;14649:22;:54::i;:::-;14627:154;;;;-1:-1:-1;;;14627:154:0;;;;;;;:::i;47743:173::-;47818:6;;;-1:-1:-1;;;;;47835:17:0;;;-1:-1:-1;;;;;;47835:17:0;;;;;;;47868:40;;47818:6;;;47835:17;47818:6;;47868:40;;47799:16;;47868:40;47788:128;47743:173;:::o;13527:315::-;13684:28;13694:4;13700:2;13704:7;13684:9;:28::i;:::-;13731:48;13754:4;13760:2;13764:7;13773:5;13731:22;:48::i;:::-;13723:111;;;;-1:-1:-1;;;13723:111:0;;;;;;;:::i;48458:93::-;48509:13;48539:7;48532:14;;;;;:::i;43925:723::-;43981:13;44202:10;44198:53;;-1:-1:-1;;44229:10:0;;;;;;;;;;;;-1:-1:-1;;;44229:10:0;;;;;43925:723::o;44198:53::-;44276:5;44261:12;44317:78;44324:9;;44317:78;;44350:8;;;;:::i;:::-;;-1:-1:-1;44373:10:0;;-1:-1:-1;44381:2:0;44373:10;;:::i;:::-;;;44317:78;;;44405:19;44437:6;44427:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44427:17:0;;44405:39;;44455:154;44462:10;;44455:154;;44489:11;44499:1;44489:11;;:::i;:::-;;-1:-1:-1;44558:10:0;44566:2;44558:5;:10;:::i;:::-;44545:24;;:2;:24;:::i;:::-;44532:39;;44515:6;44522;44515:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44515:56:0;;;;;;;;-1:-1:-1;44586:11:0;44595:2;44586:11;;:::i;:::-;;;44455:154;;14792:346;-1:-1:-1;;;;;14872:16:0;;14864:61;;;;-1:-1:-1;;;14864:61:0;;15276:2:1;14864:61:0;;;15258:21:1;;;15295:18;;;15288:30;15354:34;15334:18;;;15327:62;15406:18;;14864:61:0;15074:356:1;14864:61:0;14945:16;14953:7;14945;:16::i;:::-;14944:17;14936:58;;;;-1:-1:-1;;;14936:58:0;;11391:2:1;14936:58:0;;;11373:21:1;11430:2;11410:18;;;11403:30;11469;11449:18;;;11442:58;11517:18;;14936:58:0;11189:352:1;14936:58:0;15063:7;:16;;;;;;;-1:-1:-1;15063:16:0;;;;;;;-1:-1:-1;;;;;;15063:16:0;-1:-1:-1;;;;;15063:16:0;;;;;;;;15097:33;;15122:7;;-1:-1:-1;15097:33:0;;-1:-1:-1;;15097:33:0;14792:346;;:::o;16175:799::-;16330:4;-1:-1:-1;;;;;16351:13:0;;25075:20;25123:8;16347:620;;16387:72;;-1:-1:-1;;;16387:72:0;;-1:-1:-1;;;;;16387:36:0;;;;;:72;;9696:10;;16438:4;;16444:7;;16453:5;;16387:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16387:72:0;;;;;;;;-1:-1:-1;;16387:72:0;;;;;;;;;;;;:::i;:::-;;;16383:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16629:13:0;;16625:272;;16672:60;;-1:-1:-1;;;16672:60:0;;;;;;;:::i;16625:272::-;16847:6;16841:13;16832:6;16828:2;16824:15;16817:38;16383:529;-1:-1:-1;;;;;;16510:51:0;-1:-1:-1;;;16510:51:0;;-1:-1:-1;16503:58:0;;16347:620;-1:-1:-1;16951:4:0;16175:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;2581:18;2573:6;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;3627:18;3668:2;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:180::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:26;4285:9;4269:26;:::i;4306:245::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:30;4515:5;4491:30;:::i;4556:249::-;4625:6;4678:2;4666:9;4657:7;4653:23;4649:32;4646:52;;;4694:1;4691;4684:12;4646:52;4726:9;4720:16;4745:30;4769:5;4745:30;:::i;4810:450::-;4879:6;4932:2;4920:9;4911:7;4907:23;4903:32;4900:52;;;4948:1;4945;4938:12;4900:52;4988:9;4975:23;5021:18;5013:6;5010:30;5007:50;;;5053:1;5050;5043:12;5007:50;5076:22;;5129:4;5121:13;;5117:27;-1:-1:-1;5107:55:1;;5158:1;5155;5148:12;5107:55;5181:73;5246:7;5241:2;5228:16;5223:2;5219;5215:11;5181:73;:::i;5265:180::-;5324:6;5377:2;5365:9;5356:7;5352:23;5348:32;5345:52;;;5393:1;5390;5383:12;5345:52;-1:-1:-1;5416:23:1;;5265:180;-1:-1:-1;5265:180:1:o;5450:257::-;5491:3;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5450:257;-1:-1:-1;;5450:257:1:o;5712:1527::-;5936:3;5974:6;5968:13;6000:4;6013:51;6057:6;6052:3;6047:2;6039:6;6035:15;6013:51;:::i;:::-;6127:13;;6086:16;;;;6149:55;6127:13;6086:16;6171:15;;;6149:55;:::i;:::-;6293:13;;6226:20;;;6266:1;;6353;6375:18;;;;6428;;;;6455:93;;6533:4;6523:8;6519:19;6507:31;;6455:93;6596:2;6586:8;6583:16;6563:18;6560:40;6557:167;;;-1:-1:-1;;;6623:33:1;;6679:4;6676:1;6669:15;6709:4;6630:3;6697:17;6557:167;6740:18;6767:110;;;;6891:1;6886:328;;;;6733:481;;6767:110;-1:-1:-1;;6802:24:1;;6788:39;;6847:20;;;;-1:-1:-1;6767:110:1;;6886:328;19797:1;19790:14;;;19834:4;19821:18;;6981:1;6995:169;7009:8;7006:1;7003:15;6995:169;;;7091:14;;7076:13;;;7069:37;7134:16;;;;7026:10;;6995:169;;;6999:3;;7195:8;7188:5;7184:20;7177:27;;6733:481;-1:-1:-1;7230:3:1;;5712:1527;-1:-1:-1;;;;;;;;;;;5712:1527:1:o;7662:488::-;-1:-1:-1;;;;;7931:15:1;;;7913:34;;7983:15;;7978:2;7963:18;;7956:43;8030:2;8015:18;;8008:34;;;8078:3;8073:2;8058:18;;8051:31;;;7856:4;;8099:45;;8124:19;;8116:6;8099:45;:::i;:::-;8091:53;7662:488;-1:-1:-1;;;;;;7662:488:1:o;8155:632::-;8326:2;8378:21;;;8448:13;;8351:18;;;8470:22;;;8297:4;;8326:2;8549:15;;;;8523:2;8508:18;;;8297:4;8592:169;8606:6;8603:1;8600:13;8592:169;;;8667:13;;8655:26;;8736:15;;;;8701:12;;;;8628:1;8621:9;8592:169;;;-1:-1:-1;8778:3:1;;8155:632;-1:-1:-1;;;;;;8155:632:1:o;8984:219::-;9133:2;9122:9;9115:21;9096:4;9153:44;9193:2;9182:9;9178:18;9170:6;9153:44;:::i;10363:414::-;10565:2;10547:21;;;10604:2;10584:18;;;10577:30;10643:34;10638:2;10623:18;;10616:62;-1:-1:-1;;;10709:2:1;10694:18;;10687:48;10767:3;10752:19;;10363:414::o;15435:343::-;15637:2;15619:21;;;15676:2;15656:18;;;15649:30;-1:-1:-1;;;15710:2:1;15695:18;;15688:49;15769:2;15754:18;;15435:343::o;16532:356::-;16734:2;16716:21;;;16753:18;;;16746:30;16812:34;16807:2;16792:18;;16785:62;16879:2;16864:18;;16532:356::o;17303:346::-;17505:2;17487:21;;;17544:2;17524:18;;;17517:30;-1:-1:-1;;;17578:2:1;17563:18;;17556:52;17640:2;17625:18;;17303:346::o;18408:413::-;18610:2;18592:21;;;18649:2;18629:18;;;18622:30;18688:34;18683:2;18668:18;;18661:62;-1:-1:-1;;;18754:2:1;18739:18;;18732:47;18811:3;18796:19;;18408:413::o;19850:128::-;19890:3;19921:1;19917:6;19914:1;19911:13;19908:39;;;19927:18;;:::i;:::-;-1:-1:-1;19963:9:1;;19850:128::o;19983:120::-;20023:1;20049;20039:35;;20054:18;;:::i;:::-;-1:-1:-1;20088:9:1;;19983:120::o;20108:168::-;20148:7;20214:1;20210;20206:6;20202:14;20199:1;20196:21;20191:1;20184:9;20177:17;20173:45;20170:71;;;20221:18;;:::i;:::-;-1:-1:-1;20261:9:1;;20108:168::o;20281:125::-;20321:4;20349:1;20346;20343:8;20340:34;;;20354:18;;:::i;:::-;-1:-1:-1;20391:9:1;;20281:125::o;20411:258::-;20483:1;20493:113;20507:6;20504:1;20501:13;20493:113;;;20583:11;;;20577:18;20564:11;;;20557:39;20529:2;20522:10;20493:113;;;20624:6;20621:1;20618:13;20615:48;;;-1:-1:-1;;20659:1:1;20641:16;;20634:27;20411:258::o;20674:380::-;20753:1;20749:12;;;;20796;;;20817:61;;20871:4;20863:6;20859:17;20849:27;;20817:61;20924:2;20916:6;20913:14;20893:18;20890:38;20887:161;;;20970:10;20965:3;20961:20;20958:1;20951:31;21005:4;21002:1;20995:15;21033:4;21030:1;21023:15;20887:161;;20674:380;;;:::o;21059:135::-;21098:3;-1:-1:-1;;21119:17:1;;21116:43;;;21139:18;;:::i;:::-;-1:-1:-1;21186:1:1;21175:13;;21059:135::o;21199:112::-;21231:1;21257;21247:35;;21262:18;;:::i;:::-;-1:-1:-1;21296:9:1;;21199:112::o;21316:127::-;21377:10;21372:3;21368:20;21365:1;21358:31;21408:4;21405:1;21398:15;21432:4;21429:1;21422:15;21448:127;21509:10;21504:3;21500:20;21497:1;21490:31;21540:4;21537:1;21530:15;21564:4;21561:1;21554:15;21580:127;21641:10;21636:3;21632:20;21629:1;21622:31;21672:4;21669:1;21662:15;21696:4;21693:1;21686:15;21712:127;21773:10;21768:3;21764:20;21761:1;21754:31;21804:4;21801:1;21794:15;21828:4;21825:1;21818:15;21844:131;-1:-1:-1;;;;;;21918:32:1;;21908:43;;21898:71;;21965:1;21962;21955:12

Swarm Source

ipfs://266b6bb78c76217760196e9430179df466b6c44405d3394320e44f85d6329dc5
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.