ETH Price: $3,397.27 (+1.47%)

Token

TerraFrogz (TerraFrogz)
 

Overview

Max Total Supply

103 TerraFrogz

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xyzxyzyz.eth
Balance
1 TerraFrogz
0xcc482382afc7178bdfdc3c6a4682c4cf03a5f506
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:
TerraFrogz

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-29
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org

// File contracts/utils/introspection/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);
}


// File contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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


// File contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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


// File contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;

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


// File contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File contracts/token/ERC721/extensions/ERC721URIStorage.sol



pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


// File contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



pragma solidity ^0.8.0;



contract TerraFrogz is ERC721URIStorage, Ownable{

    event MintFrogz (address indexed minter, uint256 startWith, uint256 times);

    uint256 public totalFrogz;
    uint256 public totalCount = 5555; 
    uint256 public maxPerTX = 5; 
    uint256 public price = 20000000000000000; 
    string public baseURI;
    bool public started;

    constructor(string memory baseURI_) ERC721("TerraFrogz", "TerraFrogz") {
        baseURI = baseURI_;
    }

    modifier mintEnabled() {
        require(started, "Sale Not Started!");
        _;
    }

    function totalSupply() public view virtual returns (uint256) {
        return totalFrogz;
    }

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

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

    function setSaleState(bool _start) public onlyOwner {
        started = _start;
    }

    function mintFrogz(uint256 _times) payable public mintEnabled {
        require(totalFrogz + _times <= totalCount, "Sold Out");
        require(_times >0 && _times <= maxPerTX, "Max 5 Per Transaction");
        require(msg.value >= _times * price, "Must Send .02 Per Frog");
        payable(owner()).transfer(msg.value);
        emit MintFrogz(_msgSender(), totalFrogz+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalFrogz++);
        }
    }

    address public stakingAddress = address(this);
    function setStakingAddress(address _stakingAddress) public onlyOwner {
        stakingAddress = _stakingAddress;
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual override returns (bool) {
        bool isOwner = super._isApprovedOrOwner(spender, tokenId);
        return (spender == stakingAddress || isOwner);
    }

    function adminMint(uint256 _times) payable public onlyOwner {
        require(totalFrogz + _times <= totalCount, "Sold Out");
        require(_times >0 && _times <= maxPerTX, "Max 5 Per Transaction");
        require(msg.value >= _times * price, "Must Send .02 Per Frog");
        payable(owner()).transfer(msg.value);
        emit MintFrogz(_msgSender(), totalFrogz+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalFrogz++);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintFrogz","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"payable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mintFrogz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingAddress","type":"address"}],"name":"setStakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"started","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFrogz","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"}]

60806040526115b36009556005600a5566470de4df820000600b55600d8054610100600160a81b03191630610100021790553480156200003e57600080fd5b50604051620024c3380380620024c38339810160408190526200006191620001e6565b604080518082018252600a808252692a32b93930a33937b3bd60b11b602080840182815285518087019096529285528401528151919291620000a69160009162000140565b508051620000bc90600190602084019062000140565b5050506000620000d16200013c60201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080516200013490600c90602084019062000140565b505062000308565b3390565b8280546200014e90620002b5565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b60006020808385031215620001f9578182fd5b82516001600160401b038082111562000210578384fd5b818501915085601f83011262000224578384fd5b815181811115620002395762000239620002f2565b604051601f8201601f19168101850183811182821017156200025f576200025f620002f2565b604052818152838201850188101562000276578586fd5b8592505b818310156200029957838301850151818401860152918401916200027a565b81831115620002aa57858583830101525b979650505050505050565b600281046001821680620002ca57607f821691505b60208210811415620002ec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6121ab80620003186000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063d7b4be2411610064578063d7b4be2414610493578063e985e9c5146104a8578063f2fde38b146104c8578063f4e0d9ac146104e8576101c2565b8063b88d4fde14610420578063c1f2612314610440578063c4e3709514610453578063c87b56dd14610473576101c2565b806395d89b41116100d157806395d89b41146103c1578063a035b1fe146103d6578063a22cb465146103eb578063a40d36cd1461040b576101c2565b8063715018a6146103845780638da5cb5b146103995780638e69a03a146103ae576101c2565b806334eafb111161016457806355f804b31161013e57806355f804b31461030f5780636352211e1461032f5780636c0360eb1461034f57806370a0823114610364576101c2565b806334eafb11146102c55780634067eaf5146102da57806342842e0e146102ef576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e5780631f2698ab1461029057806323b872dd146102a5576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611948565b610508565b6040516101f49190611a8a565b60405180910390f35b34801561020957600080fd5b50610212610550565b6040516101f49190611a95565b34801561022b57600080fd5b5061023f61023a3660046119c6565b6105e2565b6040516101f49190611a39565b34801561025857600080fd5b5061026c610267366004611905565b61062e565b005b34801561027a57600080fd5b506102836106c6565b6040516101f4919061200b565b34801561029c57600080fd5b506101e76106cc565b3480156102b157600080fd5b5061026c6102c0366004611828565b6106d5565b3480156102d157600080fd5b5061028361070d565b3480156102e657600080fd5b50610283610713565b3480156102fb57600080fd5b5061026c61030a366004611828565b610719565b34801561031b57600080fd5b5061026c61032a366004611980565b610734565b34801561033b57600080fd5b5061023f61034a3660046119c6565b61078a565b34801561035b57600080fd5b506102126107bf565b34801561037057600080fd5b5061028361037f3660046117dc565b61084d565b34801561039057600080fd5b5061026c610891565b3480156103a557600080fd5b5061023f61091a565b61026c6103bc3660046119c6565b610929565b3480156103cd57600080fd5b50610212610ab9565b3480156103e257600080fd5b50610283610ac8565b3480156103f757600080fd5b5061026c6104063660046118dc565b610ace565b34801561041757600080fd5b50610283610b9c565b34801561042c57600080fd5b5061026c61043b366004611863565b610ba2565b61026c61044e3660046119c6565b610be1565b34801561045f57600080fd5b5061026c61046e36600461192e565b610d6a565b34801561047f57600080fd5b5061021261048e3660046119c6565b610dbc565b34801561049f57600080fd5b5061023f610edd565b3480156104b457600080fd5b506101e76104c33660046117f6565b610ef1565b3480156104d457600080fd5b5061026c6104e33660046117dc565b610f1f565b3480156104f457600080fd5b5061026c6105033660046117dc565b610fe0565b60006001600160e01b031982166380ac58cd60e01b148061053957506001600160e01b03198216635b5e139f60e01b145b80610548575061054882611047565b90505b919050565b60606000805461055f906120b0565b80601f016020809104026020016040519081016040528092919081815260200182805461058b906120b0565b80156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105ed82611060565b6106125760405162461bcd60e51b815260040161060990611e35565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106398261078a565b9050806001600160a01b0316836001600160a01b0316141561066d5760405162461bcd60e51b815260040161060990611f4e565b806001600160a01b031661067f61107d565b6001600160a01b0316148061069b575061069b816104c361107d565b6106b75760405162461bcd60e51b815260040161060990611c8f565b6106c18383611081565b505050565b60085490565b600d5460ff1681565b6106e66106e061107d565b826110ef565b6107025760405162461bcd60e51b815260040161060990611f8f565b6106c1838383611122565b60095481565b60085481565b6106c183838360405180602001604052806000815250610ba2565b61073c61107d565b6001600160a01b031661074d61091a565b6001600160a01b0316146107735760405162461bcd60e51b815260040161060990611e81565b805161078690600c9060208401906116ac565b5050565b6000818152600260205260408120546001600160a01b0316806105485760405162461bcd60e51b815260040161060990611d36565b600c80546107cc906120b0565b80601f01602080910402602001604051908101604052809291908181526020018280546107f8906120b0565b80156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b505050505081565b60006001600160a01b0382166108755760405162461bcd60e51b815260040161060990611cec565b506001600160a01b031660009081526003602052604090205490565b61089961107d565b6001600160a01b03166108aa61091a565b6001600160a01b0316146108d05760405162461bcd60e51b815260040161060990611e81565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031690565b600d5460ff1661094b5760405162461bcd60e51b815260040161060990611fe0565b6009548160085461095c9190612022565b111561097a5760405162461bcd60e51b815260040161060990611afa565b60008111801561098c5750600a548111155b6109a85760405162461bcd60e51b815260040161060990611c14565b600b546109b5908261204e565b3410156109d45760405162461bcd60e51b815260040161060990611db4565b6109dc61091a565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610a14573d6000803e3d6000fd5b50610a1d61107d565b6001600160a01b03167faf2443d980123bd9b5c3a2f3818b18082d0eba5fd4e57ce7e48d8335f7c256f86008546001610a569190612022565b83604051610a65929190612014565b60405180910390a260005b8181101561078657610aa7610a8361107d565b60088054906000610a93836120eb565b90915550610aa2906001612022565b61124f565b80610ab1816120eb565b915050610a70565b60606001805461055f906120b0565b600b5481565b610ad661107d565b6001600160a01b0316826001600160a01b03161415610b075760405162461bcd60e51b815260040161060990611bdd565b8060056000610b1461107d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b5861107d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b909190611a8a565b60405180910390a35050565b600a5481565b610bb3610bad61107d565b836110ef565b610bcf5760405162461bcd60e51b815260040161060990611f8f565b610bdb8484848461132e565b50505050565b610be961107d565b6001600160a01b0316610bfa61091a565b6001600160a01b031614610c205760405162461bcd60e51b815260040161060990611e81565b60095481600854610c319190612022565b1115610c4f5760405162461bcd60e51b815260040161060990611afa565b600081118015610c615750600a548111155b610c7d5760405162461bcd60e51b815260040161060990611c14565b600b54610c8a908261204e565b341015610ca95760405162461bcd60e51b815260040161060990611db4565b610cb161091a565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610ce9573d6000803e3d6000fd5b50610cf261107d565b6001600160a01b03167faf2443d980123bd9b5c3a2f3818b18082d0eba5fd4e57ce7e48d8335f7c256f86008546001610d2b9190612022565b83604051610d3a929190612014565b60405180910390a260005b8181101561078657610d58610a8361107d565b80610d62816120eb565b915050610d45565b610d7261107d565b6001600160a01b0316610d8361091a565b6001600160a01b031614610da95760405162461bcd60e51b815260040161060990611e81565b600d805460ff1916911515919091179055565b6060610dc782611060565b610de35760405162461bcd60e51b815260040161060990611de4565b60008281526006602052604081208054610dfc906120b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e28906120b0565b8015610e755780601f10610e4a57610100808354040283529160200191610e75565b820191906000526020600020905b815481529060010190602001808311610e5857829003601f168201915b505050505090506000610e86611361565b9050805160001415610e9a5750905061054b565b815115610ecc578082604051602001610eb4929190611a0a565b6040516020818303038152906040529250505061054b565b610ed584611370565b949350505050565b600d5461010090046001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2761107d565b6001600160a01b0316610f3861091a565b6001600160a01b031614610f5e5760405162461bcd60e51b815260040161060990611e81565b6001600160a01b038116610f845760405162461bcd60e51b815260040161060990611b1c565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610fe861107d565b6001600160a01b0316610ff961091a565b6001600160a01b03161461101f5760405162461bcd60e51b815260040161060990611e81565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110b68261078a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110fc84846113f3565b600d549091506001600160a01b03858116610100909204161480610ed557509392505050565b826001600160a01b03166111358261078a565b6001600160a01b03161461115b5760405162461bcd60e51b815260040161060990611eb6565b6001600160a01b0382166111815760405162461bcd60e51b815260040161060990611b99565b61118c8383836106c1565b611197600082611081565b6001600160a01b03831660009081526003602052604081208054600192906111c090849061206d565b90915550506001600160a01b03821660009081526003602052604081208054600192906111ee908490612022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166112755760405162461bcd60e51b815260040161060990611d7f565b61127e81611060565b1561129b5760405162461bcd60e51b815260040161060990611b62565b6112a7600083836106c1565b6001600160a01b03821660009081526003602052604081208054600192906112d0908490612022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611339848484611122565b61134584848484611470565b610bdb5760405162461bcd60e51b815260040161060990611aa8565b6060600c805461055f906120b0565b606061137b82611060565b6113975760405162461bcd60e51b815260040161060990611eff565b60006113a1611361565b905060008151116113c157604051806020016040528060008152506113ec565b806113cb8461158b565b6040516020016113dc929190611a0a565b6040516020818303038152906040525b9392505050565b60006113fe82611060565b61141a5760405162461bcd60e51b815260040161060990611c43565b60006114258361078a565b9050806001600160a01b0316846001600160a01b031614806114605750836001600160a01b0316611455846105e2565b6001600160a01b0316145b80610ed55750610ed58185610ef1565b6000611484846001600160a01b03166116a6565b1561158057836001600160a01b031663150b7a026114a061107d565b8786866040518563ffffffff1660e01b81526004016114c29493929190611a4d565b602060405180830381600087803b1580156114dc57600080fd5b505af192505050801561150c575060408051601f3d908101601f1916820190925261150991810190611964565b60015b611566573d80801561153a576040519150601f19603f3d011682016040523d82523d6000602084013e61153f565b606091505b50805161155e5760405162461bcd60e51b815260040161060990611aa8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ed5565b506001949350505050565b6060816115b057506040805180820190915260018152600360fc1b602082015261054b565b8160005b81156115da57806115c4816120eb565b91506115d39050600a8361203a565b91506115b4565b60008167ffffffffffffffff81111561160357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561162d576020820181803683370190505b5090505b8415610ed55761164260018361206d565b915061164f600a86612106565b61165a906030612022565b60f81b81838151811061167d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061169f600a8661203a565b9450611631565b3b151590565b8280546116b8906120b0565b90600052602060002090601f0160209004810192826116da5760008555611720565b82601f106116f357805160ff1916838001178555611720565b82800160010185558215611720579182015b82811115611720578251825591602001919060010190611705565b5061172c929150611730565b5090565b5b8082111561172c5760008155600101611731565b600067ffffffffffffffff8084111561176057611760612146565b604051601f8501601f19168101602001828111828210171561178457611784612146565b60405284815291508183850186101561179c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461054b57600080fd5b8035801515811461054b57600080fd5b6000602082840312156117ed578081fd5b6113ec826117b5565b60008060408385031215611808578081fd5b611811836117b5565b915061181f602084016117b5565b90509250929050565b60008060006060848603121561183c578081fd5b611845846117b5565b9250611853602085016117b5565b9150604084013590509250925092565b60008060008060808587031215611878578081fd5b611881856117b5565b935061188f602086016117b5565b925060408501359150606085013567ffffffffffffffff8111156118b1578182fd5b8501601f810187136118c1578182fd5b6118d087823560208401611745565b91505092959194509250565b600080604083850312156118ee578182fd5b6118f7836117b5565b915061181f602084016117cc565b60008060408385031215611917578182fd5b611920836117b5565b946020939093013593505050565b60006020828403121561193f578081fd5b6113ec826117cc565b600060208284031215611959578081fd5b81356113ec8161215c565b600060208284031215611975578081fd5b81516113ec8161215c565b600060208284031215611991578081fd5b813567ffffffffffffffff8111156119a7578182fd5b8201601f810184136119b7578182fd5b610ed584823560208401611745565b6000602082840312156119d7578081fd5b5035919050565b600081518084526119f6816020860160208601612084565b601f01601f19169290920160200192915050565b60008351611a1c818460208801612084565b835190830190611a30818360208801612084565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a80908301846119de565b9695505050505050565b901515815260200190565b6000602082526113ec60208301846119de565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526015908201527426b0bc101a902832b9102a3930b739b0b1ba34b7b760591b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601690820152754d7573742053656e64202e3032205065722046726f6760501b604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526011908201527053616c65204e6f7420537461727465642160781b604082015260600190565b90815260200190565b918252602082015260400190565b600082198211156120355761203561211a565b500190565b60008261204957612049612130565b500490565b60008160001904831182151516156120685761206861211a565b500290565b60008282101561207f5761207f61211a565b500390565b60005b8381101561209f578181015183820152602001612087565b83811115610bdb5750506000910152565b6002810460018216806120c457607f821691505b602082108114156120e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ff576120ff61211a565b5060010190565b60008261211557612115612130565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461217257600080fd5b5056fea26469706673582212202b74702e311648cfdd8ec757fa30c7a4ffb08e8a1140438193a7ea7a4fcd0c7264736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a5a6869526462714439646f6135625a644d7a36336e35763971784655696d71595a52366e3644373938734d2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063d7b4be2411610064578063d7b4be2414610493578063e985e9c5146104a8578063f2fde38b146104c8578063f4e0d9ac146104e8576101c2565b8063b88d4fde14610420578063c1f2612314610440578063c4e3709514610453578063c87b56dd14610473576101c2565b806395d89b41116100d157806395d89b41146103c1578063a035b1fe146103d6578063a22cb465146103eb578063a40d36cd1461040b576101c2565b8063715018a6146103845780638da5cb5b146103995780638e69a03a146103ae576101c2565b806334eafb111161016457806355f804b31161013e57806355f804b31461030f5780636352211e1461032f5780636c0360eb1461034f57806370a0823114610364576101c2565b806334eafb11146102c55780634067eaf5146102da57806342842e0e146102ef576101c2565b8063095ea7b3116101a0578063095ea7b31461024c57806318160ddd1461026e5780631f2698ab1461029057806323b872dd146102a5576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611948565b610508565b6040516101f49190611a8a565b60405180910390f35b34801561020957600080fd5b50610212610550565b6040516101f49190611a95565b34801561022b57600080fd5b5061023f61023a3660046119c6565b6105e2565b6040516101f49190611a39565b34801561025857600080fd5b5061026c610267366004611905565b61062e565b005b34801561027a57600080fd5b506102836106c6565b6040516101f4919061200b565b34801561029c57600080fd5b506101e76106cc565b3480156102b157600080fd5b5061026c6102c0366004611828565b6106d5565b3480156102d157600080fd5b5061028361070d565b3480156102e657600080fd5b50610283610713565b3480156102fb57600080fd5b5061026c61030a366004611828565b610719565b34801561031b57600080fd5b5061026c61032a366004611980565b610734565b34801561033b57600080fd5b5061023f61034a3660046119c6565b61078a565b34801561035b57600080fd5b506102126107bf565b34801561037057600080fd5b5061028361037f3660046117dc565b61084d565b34801561039057600080fd5b5061026c610891565b3480156103a557600080fd5b5061023f61091a565b61026c6103bc3660046119c6565b610929565b3480156103cd57600080fd5b50610212610ab9565b3480156103e257600080fd5b50610283610ac8565b3480156103f757600080fd5b5061026c6104063660046118dc565b610ace565b34801561041757600080fd5b50610283610b9c565b34801561042c57600080fd5b5061026c61043b366004611863565b610ba2565b61026c61044e3660046119c6565b610be1565b34801561045f57600080fd5b5061026c61046e36600461192e565b610d6a565b34801561047f57600080fd5b5061021261048e3660046119c6565b610dbc565b34801561049f57600080fd5b5061023f610edd565b3480156104b457600080fd5b506101e76104c33660046117f6565b610ef1565b3480156104d457600080fd5b5061026c6104e33660046117dc565b610f1f565b3480156104f457600080fd5b5061026c6105033660046117dc565b610fe0565b60006001600160e01b031982166380ac58cd60e01b148061053957506001600160e01b03198216635b5e139f60e01b145b80610548575061054882611047565b90505b919050565b60606000805461055f906120b0565b80601f016020809104026020016040519081016040528092919081815260200182805461058b906120b0565b80156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105ed82611060565b6106125760405162461bcd60e51b815260040161060990611e35565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106398261078a565b9050806001600160a01b0316836001600160a01b0316141561066d5760405162461bcd60e51b815260040161060990611f4e565b806001600160a01b031661067f61107d565b6001600160a01b0316148061069b575061069b816104c361107d565b6106b75760405162461bcd60e51b815260040161060990611c8f565b6106c18383611081565b505050565b60085490565b600d5460ff1681565b6106e66106e061107d565b826110ef565b6107025760405162461bcd60e51b815260040161060990611f8f565b6106c1838383611122565b60095481565b60085481565b6106c183838360405180602001604052806000815250610ba2565b61073c61107d565b6001600160a01b031661074d61091a565b6001600160a01b0316146107735760405162461bcd60e51b815260040161060990611e81565b805161078690600c9060208401906116ac565b5050565b6000818152600260205260408120546001600160a01b0316806105485760405162461bcd60e51b815260040161060990611d36565b600c80546107cc906120b0565b80601f01602080910402602001604051908101604052809291908181526020018280546107f8906120b0565b80156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b505050505081565b60006001600160a01b0382166108755760405162461bcd60e51b815260040161060990611cec565b506001600160a01b031660009081526003602052604090205490565b61089961107d565b6001600160a01b03166108aa61091a565b6001600160a01b0316146108d05760405162461bcd60e51b815260040161060990611e81565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6007546001600160a01b031690565b600d5460ff1661094b5760405162461bcd60e51b815260040161060990611fe0565b6009548160085461095c9190612022565b111561097a5760405162461bcd60e51b815260040161060990611afa565b60008111801561098c5750600a548111155b6109a85760405162461bcd60e51b815260040161060990611c14565b600b546109b5908261204e565b3410156109d45760405162461bcd60e51b815260040161060990611db4565b6109dc61091a565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610a14573d6000803e3d6000fd5b50610a1d61107d565b6001600160a01b03167faf2443d980123bd9b5c3a2f3818b18082d0eba5fd4e57ce7e48d8335f7c256f86008546001610a569190612022565b83604051610a65929190612014565b60405180910390a260005b8181101561078657610aa7610a8361107d565b60088054906000610a93836120eb565b90915550610aa2906001612022565b61124f565b80610ab1816120eb565b915050610a70565b60606001805461055f906120b0565b600b5481565b610ad661107d565b6001600160a01b0316826001600160a01b03161415610b075760405162461bcd60e51b815260040161060990611bdd565b8060056000610b1461107d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b5861107d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b909190611a8a565b60405180910390a35050565b600a5481565b610bb3610bad61107d565b836110ef565b610bcf5760405162461bcd60e51b815260040161060990611f8f565b610bdb8484848461132e565b50505050565b610be961107d565b6001600160a01b0316610bfa61091a565b6001600160a01b031614610c205760405162461bcd60e51b815260040161060990611e81565b60095481600854610c319190612022565b1115610c4f5760405162461bcd60e51b815260040161060990611afa565b600081118015610c615750600a548111155b610c7d5760405162461bcd60e51b815260040161060990611c14565b600b54610c8a908261204e565b341015610ca95760405162461bcd60e51b815260040161060990611db4565b610cb161091a565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610ce9573d6000803e3d6000fd5b50610cf261107d565b6001600160a01b03167faf2443d980123bd9b5c3a2f3818b18082d0eba5fd4e57ce7e48d8335f7c256f86008546001610d2b9190612022565b83604051610d3a929190612014565b60405180910390a260005b8181101561078657610d58610a8361107d565b80610d62816120eb565b915050610d45565b610d7261107d565b6001600160a01b0316610d8361091a565b6001600160a01b031614610da95760405162461bcd60e51b815260040161060990611e81565b600d805460ff1916911515919091179055565b6060610dc782611060565b610de35760405162461bcd60e51b815260040161060990611de4565b60008281526006602052604081208054610dfc906120b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e28906120b0565b8015610e755780601f10610e4a57610100808354040283529160200191610e75565b820191906000526020600020905b815481529060010190602001808311610e5857829003601f168201915b505050505090506000610e86611361565b9050805160001415610e9a5750905061054b565b815115610ecc578082604051602001610eb4929190611a0a565b6040516020818303038152906040529250505061054b565b610ed584611370565b949350505050565b600d5461010090046001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2761107d565b6001600160a01b0316610f3861091a565b6001600160a01b031614610f5e5760405162461bcd60e51b815260040161060990611e81565b6001600160a01b038116610f845760405162461bcd60e51b815260040161060990611b1c565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610fe861107d565b6001600160a01b0316610ff961091a565b6001600160a01b03161461101f5760405162461bcd60e51b815260040161060990611e81565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110b68261078a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110fc84846113f3565b600d549091506001600160a01b03858116610100909204161480610ed557509392505050565b826001600160a01b03166111358261078a565b6001600160a01b03161461115b5760405162461bcd60e51b815260040161060990611eb6565b6001600160a01b0382166111815760405162461bcd60e51b815260040161060990611b99565b61118c8383836106c1565b611197600082611081565b6001600160a01b03831660009081526003602052604081208054600192906111c090849061206d565b90915550506001600160a01b03821660009081526003602052604081208054600192906111ee908490612022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166112755760405162461bcd60e51b815260040161060990611d7f565b61127e81611060565b1561129b5760405162461bcd60e51b815260040161060990611b62565b6112a7600083836106c1565b6001600160a01b03821660009081526003602052604081208054600192906112d0908490612022565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611339848484611122565b61134584848484611470565b610bdb5760405162461bcd60e51b815260040161060990611aa8565b6060600c805461055f906120b0565b606061137b82611060565b6113975760405162461bcd60e51b815260040161060990611eff565b60006113a1611361565b905060008151116113c157604051806020016040528060008152506113ec565b806113cb8461158b565b6040516020016113dc929190611a0a565b6040516020818303038152906040525b9392505050565b60006113fe82611060565b61141a5760405162461bcd60e51b815260040161060990611c43565b60006114258361078a565b9050806001600160a01b0316846001600160a01b031614806114605750836001600160a01b0316611455846105e2565b6001600160a01b0316145b80610ed55750610ed58185610ef1565b6000611484846001600160a01b03166116a6565b1561158057836001600160a01b031663150b7a026114a061107d565b8786866040518563ffffffff1660e01b81526004016114c29493929190611a4d565b602060405180830381600087803b1580156114dc57600080fd5b505af192505050801561150c575060408051601f3d908101601f1916820190925261150991810190611964565b60015b611566573d80801561153a576040519150601f19603f3d011682016040523d82523d6000602084013e61153f565b606091505b50805161155e5760405162461bcd60e51b815260040161060990611aa8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ed5565b506001949350505050565b6060816115b057506040805180820190915260018152600360fc1b602082015261054b565b8160005b81156115da57806115c4816120eb565b91506115d39050600a8361203a565b91506115b4565b60008167ffffffffffffffff81111561160357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561162d576020820181803683370190505b5090505b8415610ed55761164260018361206d565b915061164f600a86612106565b61165a906030612022565b60f81b81838151811061167d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061169f600a8661203a565b9450611631565b3b151590565b8280546116b8906120b0565b90600052602060002090601f0160209004810192826116da5760008555611720565b82601f106116f357805160ff1916838001178555611720565b82800160010185558215611720579182015b82811115611720578251825591602001919060010190611705565b5061172c929150611730565b5090565b5b8082111561172c5760008155600101611731565b600067ffffffffffffffff8084111561176057611760612146565b604051601f8501601f19168101602001828111828210171561178457611784612146565b60405284815291508183850186101561179c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461054b57600080fd5b8035801515811461054b57600080fd5b6000602082840312156117ed578081fd5b6113ec826117b5565b60008060408385031215611808578081fd5b611811836117b5565b915061181f602084016117b5565b90509250929050565b60008060006060848603121561183c578081fd5b611845846117b5565b9250611853602085016117b5565b9150604084013590509250925092565b60008060008060808587031215611878578081fd5b611881856117b5565b935061188f602086016117b5565b925060408501359150606085013567ffffffffffffffff8111156118b1578182fd5b8501601f810187136118c1578182fd5b6118d087823560208401611745565b91505092959194509250565b600080604083850312156118ee578182fd5b6118f7836117b5565b915061181f602084016117cc565b60008060408385031215611917578182fd5b611920836117b5565b946020939093013593505050565b60006020828403121561193f578081fd5b6113ec826117cc565b600060208284031215611959578081fd5b81356113ec8161215c565b600060208284031215611975578081fd5b81516113ec8161215c565b600060208284031215611991578081fd5b813567ffffffffffffffff8111156119a7578182fd5b8201601f810184136119b7578182fd5b610ed584823560208401611745565b6000602082840312156119d7578081fd5b5035919050565b600081518084526119f6816020860160208601612084565b601f01601f19169290920160200192915050565b60008351611a1c818460208801612084565b835190830190611a30818360208801612084565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a80908301846119de565b9695505050505050565b901515815260200190565b6000602082526113ec60208301846119de565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526015908201527426b0bc101a902832b9102a3930b739b0b1ba34b7b760591b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601690820152754d7573742053656e64202e3032205065722046726f6760501b604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526011908201527053616c65204e6f7420537461727465642160781b604082015260600190565b90815260200190565b918252602082015260400190565b600082198211156120355761203561211a565b500190565b60008261204957612049612130565b500490565b60008160001904831182151516156120685761206861211a565b500290565b60008282101561207f5761207f61211a565b500390565b60005b8381101561209f578181015183820152602001612087565b83811115610bdb5750506000910152565b6002810460018216806120c457607f821691505b602082108114156120e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ff576120ff61211a565b5060010190565b60008261211557612115612130565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461217257600080fd5b5056fea26469706673582212202b74702e311648cfdd8ec757fa30c7a4ffb08e8a1140438193a7ea7a4fcd0c7264736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a5a6869526462714439646f6135625a644d7a36336e35763971784655696d71595a52366e3644373938734d2f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmZZhiRdbqD9doa5bZdMz63n5v9qxFUimqYZR6n6D798sM/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a5a6869526462714439646f6135625a644d7a36336e35
Arg [3] : 763971784655696d71595a52366e3644373938734d2f00000000000000000000


Deployed Bytecode Sourcemap

36557:2418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20522:292;;;;;;;;;;-1:-1:-1;20522:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21454:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22914:221::-;;;;;;;;;;-1:-1:-1;22914:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22451:397::-;;;;;;;;;;-1:-1:-1;22451:397:0;;;;;:::i;:::-;;:::i;:::-;;37123:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36880:19::-;;;;;;;;;;;;;:::i;23804:305::-;;;;;;;;;;-1:-1:-1;23804:305:0;;;;;:::i;:::-;;:::i;36729:32::-;;;;;;;;;;;;;:::i;36697:25::-;;;;;;;;;;;;;:::i;24180:151::-;;;;;;;;;;-1:-1:-1;24180:151:0;;;;;:::i;:::-;;:::i;37343:96::-;;;;;;;;;;-1:-1:-1;37343:96:0;;;;;:::i;:::-;;:::i;21148:239::-;;;;;;;;;;-1:-1:-1;21148:239:0;;;;;:::i;:::-;;:::i;36852:21::-;;;;;;;;;;;;;:::i;20878:208::-;;;;;;;;;;-1:-1:-1;20878:208:0;;;;;:::i;:::-;;:::i;35968:148::-;;;;;;;;;;;;;:::i;35317:87::-;;;;;;;;;;;;;:::i;37542:498::-;;;;;;:::i;:::-;;:::i;21623:104::-;;;;;;;;;;;;;:::i;36804:40::-;;;;;;;;;;;;;:::i;23207:295::-;;;;;;;;;;-1:-1:-1;23207:295:0;;;;;:::i;:::-;;:::i;36769:27::-;;;;;;;;;;;;;:::i;24402:285::-;;;;;;;;;;-1:-1:-1;24402:285:0;;;;;:::i;:::-;;:::i;38476:496::-;;;;;;:::i;:::-;;:::i;37447:87::-;;;;;;;;;;-1:-1:-1;37447:87:0;;;;;:::i;:::-;;:::i;32742:679::-;;;;;;;;;;-1:-1:-1;32742:679:0;;;;;:::i;:::-;;:::i;38048:45::-;;;;;;;;;;;;;:::i;23573:164::-;;;;;;;;;;-1:-1:-1;23573:164:0;;;;;:::i;:::-;;:::i;36271:244::-;;;;;;;;;;-1:-1:-1;36271:244:0;;;;;:::i;:::-;;:::i;38100:120::-;;;;;;;;;;-1:-1:-1;38100:120:0;;;;;:::i;:::-;;:::i;20522:292::-;20624:4;-1:-1:-1;;;;;;20648:40:0;;-1:-1:-1;;;20648:40:0;;:105;;-1:-1:-1;;;;;;;20705:48:0;;-1:-1:-1;;;20705:48:0;20648:105;:158;;;;20770:36;20794:11;20770:23;:36::i;:::-;20641:165;;20522:292;;;;:::o;21454:100::-;21508:13;21541:5;21534:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21454:100;:::o;22914:221::-;22990:7;23018:16;23026:7;23018;:16::i;:::-;23010:73;;;;-1:-1:-1;;;23010:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23103:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23103:24:0;;22914:221::o;22451:397::-;22532:13;22548:23;22563:7;22548:14;:23::i;:::-;22532:39;;22596:5;-1:-1:-1;;;;;22590:11:0;:2;-1:-1:-1;;;;;22590:11:0;;;22582:57;;;;-1:-1:-1;;;22582:57:0;;;;;;;:::i;:::-;22676:5;-1:-1:-1;;;;;22660:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22660:21:0;;:62;;;;22685:37;22702:5;22709:12;:10;:12::i;22685:37::-;22652:154;;;;-1:-1:-1;;;22652:154:0;;;;;;;:::i;:::-;22819:21;22828:2;22832:7;22819:8;:21::i;:::-;22451:397;;;:::o;37123:97::-;37202:10;;37123:97;:::o;36880:19::-;;;;;;:::o;23804:305::-;23965:41;23984:12;:10;:12::i;:::-;23998:7;23965:18;:41::i;:::-;23957:103;;;;-1:-1:-1;;;23957:103:0;;;;;;;:::i;:::-;24073:28;24083:4;24089:2;24093:7;24073:9;:28::i;36729:32::-;;;;:::o;36697:25::-;;;;:::o;24180:151::-;24284:39;24301:4;24307:2;24311:7;24284:39;;;;;;;;;;;;:16;:39::i;37343:96::-;35548:12;:10;:12::i;:::-;-1:-1:-1;;;;;35537:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35537:23:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;:::i;:::-;37414:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37343:96:::0;:::o;21148:239::-;21220:7;21256:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21256:16:0;21291:19;21283:73;;;;-1:-1:-1;;;21283:73:0;;;;;;;:::i;36852:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20878:208::-;20950:7;-1:-1:-1;;;;;20978:19:0;;20970:74;;;;-1:-1:-1;;;20970:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21062:16:0;;;;;:9;:16;;;;;;;20878:208::o;35968:148::-;35548:12;:10;:12::i;:::-;-1:-1:-1;;;;;35537:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35537:23:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;:::i;:::-;36059:6:::1;::::0;36038:40:::1;::::0;36075:1:::1;::::0;-1:-1:-1;;;;;36059:6:0::1;::::0;36038:40:::1;::::0;36075:1;;36038:40:::1;36089:6;:19:::0;;-1:-1:-1;;;;;;36089:19:0::1;::::0;;35968:148::o;35317:87::-;35390:6;;-1:-1:-1;;;;;35390:6:0;35317:87;:::o;37542:498::-;37066:7;;;;37058:37;;;;-1:-1:-1;;;37058:37:0;;;;;;;:::i;:::-;37646:10:::1;;37636:6;37623:10;;:19;;;;:::i;:::-;:33;;37615:54;;;;-1:-1:-1::0;;;37615:54:0::1;;;;;;;:::i;:::-;37696:1;37688:6;:9;:31;;;;;37711:8;;37701:6;:18;;37688:31;37680:65;;;;-1:-1:-1::0;;;37680:65:0::1;;;;;;;:::i;:::-;37786:5;::::0;37777:14:::1;::::0;:6;:14:::1;:::i;:::-;37764:9;:27;;37756:62;;;;-1:-1:-1::0;;;37756:62:0::1;;;;;;;:::i;:::-;37837:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;37829:25:0::1;:36;37855:9;37829:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37891:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;37881:45:0::1;;37905:10;;37916:1;37905:12;;;;:::i;:::-;37919:6;37881:45;;;;;;;:::i;:::-;;;;;;;;37941:9;37937:96;37957:6;37954:1;:9;37937:96;;;37984:37;37990:12;:10;:12::i;:::-;38008:10;:12:::0;;;:10:::1;:12;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;38004:16:0::1;::::0;:1:::1;:16;:::i;:::-;37984:5;:37::i;:::-;37965:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37937:96;;21623:104:::0;21679:13;21712:7;21705:14;;;;;:::i;36804:40::-;;;;:::o;23207:295::-;23322:12;:10;:12::i;:::-;-1:-1:-1;;;;;23310:24:0;:8;-1:-1:-1;;;;;23310:24:0;;;23302:62;;;;-1:-1:-1;;;23302:62:0;;;;;;;:::i;:::-;23422:8;23377:18;:32;23396:12;:10;:12::i;:::-;-1:-1:-1;;;;;23377:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23377:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23377:53:0;;;;;;;;;;;23461:12;:10;:12::i;:::-;-1:-1:-1;;;;;23446:48:0;;23485:8;23446:48;;;;;;:::i;:::-;;;;;;;;23207:295;;:::o;36769:27::-;;;;:::o;24402:285::-;24534:41;24553:12;:10;:12::i;:::-;24567:7;24534:18;:41::i;:::-;24526:103;;;;-1:-1:-1;;;24526:103:0;;;;;;;:::i;:::-;24640:39;24654:4;24660:2;24664:7;24673:5;24640:13;:39::i;:::-;24402:285;;;;:::o;38476:496::-;35548:12;:10;:12::i;:::-;-1:-1:-1;;;;;35537:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35537:23:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;:::i;:::-;38578:10:::1;;38568:6;38555:10;;:19;;;;:::i;:::-;:33;;38547:54;;;;-1:-1:-1::0;;;38547:54:0::1;;;;;;;:::i;:::-;38628:1;38620:6;:9;:31;;;;;38643:8;;38633:6;:18;;38620:31;38612:65;;;;-1:-1:-1::0;;;38612:65:0::1;;;;;;;:::i;:::-;38718:5;::::0;38709:14:::1;::::0;:6;:14:::1;:::i;:::-;38696:9;:27;;38688:62;;;;-1:-1:-1::0;;;38688:62:0::1;;;;;;;:::i;:::-;38769:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;38761:25:0::1;:36;38787:9;38761:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38823:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;38813:45:0::1;;38837:10;;38848:1;38837:12;;;;:::i;:::-;38851:6;38813:45;;;;;;;:::i;:::-;;;;;;;;38873:9;38869:96;38889:6;38886:1;:9;38869:96;;;38916:37;38922:12;:10;:12::i;38916:37::-;38897:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38869:96;;37447:87:::0;35548:12;:10;:12::i;:::-;-1:-1:-1;;;;;35537:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35537:23:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;:::i;:::-;37510:7:::1;:16:::0;;-1:-1:-1;;37510:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37447:87::o;32742:679::-;32815:13;32849:16;32857:7;32849;:16::i;:::-;32841:78;;;;-1:-1:-1;;;32841:78:0;;;;;;;:::i;:::-;32932:23;32958:19;;;:10;:19;;;;;32932:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32988:18;33009:10;:8;:10::i;:::-;32988:31;;33101:4;33095:18;33117:1;33095:23;33091:72;;;-1:-1:-1;33142:9:0;-1:-1:-1;33135:16:0;;33091:72;33267:23;;:27;33263:108;;33342:4;33348:9;33325:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33311:48;;;;;;33263:108;33390:23;33405:7;33390:14;:23::i;:::-;33383:30;32742:679;-1:-1:-1;;;;32742:679:0:o;38048:45::-;;;;;;-1:-1:-1;;;;;38048:45:0;;:::o;23573:164::-;-1:-1:-1;;;;;23694:25:0;;;23670:4;23694:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23573:164::o;36271:244::-;35548:12;:10;:12::i;:::-;-1:-1:-1;;;;;35537:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35537:23:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36360:22:0;::::1;36352:73;;;;-1:-1:-1::0;;;36352:73:0::1;;;;;;;:::i;:::-;36462:6;::::0;36441:38:::1;::::0;-1:-1:-1;;;;;36441:38:0;;::::1;::::0;36462:6:::1;::::0;36441:38:::1;::::0;36462:6:::1;::::0;36441:38:::1;36490:6;:17:::0;;-1:-1:-1;;;;;;36490:17:0::1;-1:-1:-1::0;;;;;36490:17:0;;;::::1;::::0;;;::::1;::::0;;36271:244::o;38100:120::-;35548:12;:10;:12::i;:::-;-1:-1:-1;;;;;35537:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35537:23:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;:::i;:::-;38180:14:::1;:32:::0;;-1:-1:-1;;;;;38180:32:0;;::::1;;;-1:-1:-1::0;;;;;;38180:32:0;;::::1;::::0;;;::::1;::::0;;38100:120::o;19047:157::-;-1:-1:-1;;;;;;19156:40:0;;-1:-1:-1;;;19156:40:0;19047:157;;;:::o;26154:127::-;26219:4;26243:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26243:16:0;:30;;;26154:127::o;15865:98::-;15945:10;15865:98;:::o;30031:174::-;30106:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30106:29:0;-1:-1:-1;;;;;30106:29:0;;;;;;;;:24;;30160:23;30106:24;30160:14;:23::i;:::-;-1:-1:-1;;;;;30151:46:0;;;;;;;;;;;30031:174;;:::o;38228:240::-;38330:4;38347:12;38362:42;38387:7;38396;38362:24;:42::i;:::-;38434:14;;38347:57;;-1:-1:-1;;;;;;38423:25:0;;;38434:14;;;;;38423:25;;:36;;-1:-1:-1;38452:7:0;38415:45;-1:-1:-1;;;38228:240:0:o;29369:544::-;29494:4;-1:-1:-1;;;;;29467:31:0;:23;29482:7;29467:14;:23::i;:::-;-1:-1:-1;;;;;29467:31:0;;29459:85;;;;-1:-1:-1;;;29459:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29563:16:0;;29555:65;;;;-1:-1:-1;;;29555:65:0;;;;;;;:::i;:::-;29633:39;29654:4;29660:2;29664:7;29633:20;:39::i;:::-;29737:29;29754:1;29758:7;29737:8;:29::i;:::-;-1:-1:-1;;;;;29779:15:0;;;;;;:9;:15;;;;;:20;;29798:1;;29779:15;:20;;29798:1;;29779:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29810:13:0;;;;;;:9;:13;;;;;:18;;29827:1;;29810:13;:18;;29827:1;;29810:18;:::i;:::-;;;;-1:-1:-1;;29839:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29839:21:0;-1:-1:-1;;;;;29839:21:0;;;;;;;;;29878:27;;29839:16;;29878:27;;;;;;;29369:544;;;:::o;28061:382::-;-1:-1:-1;;;;;28141:16:0;;28133:61;;;;-1:-1:-1;;;28133:61:0;;;;;;;:::i;:::-;28214:16;28222:7;28214;:16::i;:::-;28213:17;28205:58;;;;-1:-1:-1;;;28205:58:0;;;;;;;:::i;:::-;28276:45;28305:1;28309:2;28313:7;28276:20;:45::i;:::-;-1:-1:-1;;;;;28334:13:0;;;;;;:9;:13;;;;;:18;;28351:1;;28334:13;:18;;28351:1;;28334:18;:::i;:::-;;;;-1:-1:-1;;28363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28363:21:0;-1:-1:-1;;;;;28363:21:0;;;;;;;;28402:33;;28363:16;;;28402:33;;28363:16;;28402:33;28061:382;;:::o;25569:272::-;25683:28;25693:4;25699:2;25703:7;25683:9;:28::i;:::-;25730:48;25753:4;25759:2;25763:7;25772:5;25730:22;:48::i;:::-;25722:111;;;;-1:-1:-1;;;25722:111:0;;;;;;;:::i;37228:107::-;37288:13;37320:7;37313:14;;;;;:::i;21798:360::-;21871:13;21905:16;21913:7;21905;:16::i;:::-;21897:76;;;;-1:-1:-1;;;21897:76:0;;;;;;;:::i;:::-;21986:21;22010:10;:8;:10::i;:::-;21986:34;;22062:1;22044:7;22038:21;:25;:112;;;;;;;;;;;;;;;;;22103:7;22112:18;:7;:16;:18::i;:::-;22086:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22038:112;22031:119;21798:360;-1:-1:-1;;;21798:360:0:o;26448:348::-;26541:4;26566:16;26574:7;26566;:16::i;:::-;26558:73;;;;-1:-1:-1;;;26558:73:0;;;;;;;:::i;:::-;26642:13;26658:23;26673:7;26658:14;:23::i;:::-;26642:39;;26711:5;-1:-1:-1;;;;;26700:16:0;:7;-1:-1:-1;;;;;26700:16:0;;:51;;;;26744:7;-1:-1:-1;;;;;26720:31:0;:20;26732:7;26720:11;:20::i;:::-;-1:-1:-1;;;;;26720:31:0;;26700:51;:87;;;;26755:32;26772:5;26779:7;26755:16;:32::i;30770:843::-;30891:4;30917:15;:2;-1:-1:-1;;;;;30917:13:0;;:15::i;:::-;30913:693;;;30969:2;-1:-1:-1;;;;;30953:36:0;;30990:12;:10;:12::i;:::-;31004:4;31010:7;31019:5;30953:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30953:72:0;;;;;;;;-1:-1:-1;;30953:72:0;;;;;;;;;;;;:::i;:::-;;;30949:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31199:13:0;;31195:341;;31242:60;;-1:-1:-1;;;31242:60:0;;;;;;;:::i;31195:341::-;31486:6;31480:13;31471:6;31467:2;31463:15;31456:38;30949:602;-1:-1:-1;;;;;;31076:55:0;-1:-1:-1;;;31076:55:0;;-1:-1:-1;31069:62:0;;30913:693;-1:-1:-1;31590:4:0;30770:843;;;;;;:::o;16507:723::-;16563:13;16784:10;16780:53;;-1:-1:-1;16811:10:0;;;;;;;;;;;;-1:-1:-1;;;16811:10:0;;;;;;16780:53;16858:5;16843:12;16899:78;16906:9;;16899:78;;16932:8;;;;:::i;:::-;;-1:-1:-1;16955:10:0;;-1:-1:-1;16963:2:0;16955:10;;:::i;:::-;;;16899:78;;;16987:19;17019:6;17009:17;;;;;;-1:-1:-1;;;17009:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17009:17:0;;16987:39;;17037:154;17044:10;;17037:154;;17071:11;17081:1;17071:11;;:::i;:::-;;-1:-1:-1;17140:10:0;17148:2;17140:5;:10;:::i;:::-;17127:24;;:2;:24;:::i;:::-;17114:39;;17097:6;17104;17097:14;;;;;;-1:-1:-1;;;17097:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17097:56:0;;;;;;;;-1:-1:-1;17168:11:0;17177:2;17168:11;;:::i;:::-;;;17037:154;;7995:422;8362:20;8401:8;;;7995:422::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:1:o;5199:203::-;-1:-1:-1;;;;;5363:32:1;;;;5345:51;;5333:2;5318:18;;5300:102::o;5407:490::-;-1:-1:-1;;;;;5676:15:1;;;5658:34;;5728:15;;5723:2;5708:18;;5701:43;5775:2;5760:18;;5753:34;;;5823:3;5818:2;5803:18;;5796:31;;;5407:490;;5844:47;;5871:19;;5863:6;5844:47;:::i;:::-;5836:55;5610:287;-1:-1:-1;;;;;;5610:287:1:o;5902:187::-;6067:14;;6060:22;6042:41;;6030:2;6015:18;;5997:92::o;6094:221::-;;6243:2;6232:9;6225:21;6263:46;6305:2;6294:9;6290:18;6282:6;6263:46;:::i;6320:414::-;6522:2;6504:21;;;6561:2;6541:18;;;6534:30;6600:34;6595:2;6580:18;;6573:62;-1:-1:-1;;;6666:2:1;6651:18;;6644:48;6724:3;6709:19;;6494:240::o;6739:331::-;6941:2;6923:21;;;6980:1;6960:18;;;6953:29;-1:-1:-1;;;7013:2:1;6998:18;;6991:38;7061:2;7046:18;;6913:157::o;7075:402::-;7277:2;7259:21;;;7316:2;7296:18;;;7289:30;7355:34;7350:2;7335:18;;7328:62;-1:-1:-1;;;7421:2:1;7406:18;;7399:36;7467:3;7452:19;;7249:228::o;7482:352::-;7684:2;7666:21;;;7723:2;7703:18;;;7696:30;7762;7757:2;7742:18;;7735:58;7825:2;7810:18;;7656:178::o;7839:400::-;8041:2;8023:21;;;8080:2;8060:18;;;8053:30;8119:34;8114:2;8099:18;;8092:62;-1:-1:-1;;;8185:2:1;8170:18;;8163:34;8229:3;8214:19;;8013:226::o;8244:349::-;8446:2;8428:21;;;8485:2;8465:18;;;8458:30;8524:27;8519:2;8504:18;;8497:55;8584:2;8569:18;;8418:175::o;8598:345::-;8800:2;8782:21;;;8839:2;8819:18;;;8812:30;-1:-1:-1;;;8873:2:1;8858:18;;8851:51;8934:2;8919:18;;8772:171::o;8948:408::-;9150:2;9132:21;;;9189:2;9169:18;;;9162:30;9228:34;9223:2;9208:18;;9201:62;-1:-1:-1;;;9294:2:1;9279:18;;9272:42;9346:3;9331:19;;9122:234::o;9361:420::-;9563:2;9545:21;;;9602:2;9582:18;;;9575:30;9641:34;9636:2;9621:18;;9614:62;9712:26;9707:2;9692:18;;9685:54;9771:3;9756:19;;9535:246::o;9786:406::-;9988:2;9970:21;;;10027:2;10007:18;;;10000:30;10066:34;10061:2;10046:18;;10039:62;-1:-1:-1;;;10132:2:1;10117:18;;10110:40;10182:3;10167:19;;9960:232::o;10197:405::-;10399:2;10381:21;;;10438:2;10418:18;;;10411:30;10477:34;10472:2;10457:18;;10450:62;-1:-1:-1;;;10543:2:1;10528:18;;10521:39;10592:3;10577:19;;10371:231::o;10607:356::-;10809:2;10791:21;;;10828:18;;;10821:30;10887:34;10882:2;10867:18;;10860:62;10954:2;10939:18;;10781:182::o;10968:346::-;11170:2;11152:21;;;11209:2;11189:18;;;11182:30;-1:-1:-1;;;11243:2:1;11228:18;;11221:52;11305:2;11290:18;;11142:172::o;11319:413::-;11521:2;11503:21;;;11560:2;11540:18;;;11533:30;11599:34;11594:2;11579:18;;11572:62;-1:-1:-1;;;11665:2:1;11650:18;;11643:47;11722:3;11707:19;;11493:239::o;11737:408::-;11939:2;11921:21;;;11978:2;11958:18;;;11951:30;12017:34;12012:2;11997:18;;11990:62;-1:-1:-1;;;12083:2:1;12068:18;;12061:42;12135:3;12120:19;;11911:234::o;12150:356::-;12352:2;12334:21;;;12371:18;;;12364:30;12430:34;12425:2;12410:18;;12403:62;12497:2;12482:18;;12324:182::o;12511:405::-;12713:2;12695:21;;;12752:2;12732:18;;;12725:30;12791:34;12786:2;12771:18;;12764:62;-1:-1:-1;;;12857:2:1;12842:18;;12835:39;12906:3;12891:19;;12685:231::o;12921:411::-;13123:2;13105:21;;;13162:2;13142:18;;;13135:30;13201:34;13196:2;13181:18;;13174:62;-1:-1:-1;;;13267:2:1;13252:18;;13245:45;13322:3;13307:19;;13095:237::o;13337:397::-;13539:2;13521:21;;;13578:2;13558:18;;;13551:30;13617:34;13612:2;13597:18;;13590:62;-1:-1:-1;;;13683:2:1;13668:18;;13661:31;13724:3;13709:19;;13511:223::o;13739:413::-;13941:2;13923:21;;;13980:2;13960:18;;;13953:30;14019:34;14014:2;13999:18;;13992:62;-1:-1:-1;;;14085:2:1;14070:18;;14063:47;14142:3;14127:19;;13913:239::o;14157:341::-;14359:2;14341:21;;;14398:2;14378:18;;;14371:30;-1:-1:-1;;;14432:2:1;14417:18;;14410:47;14489:2;14474:18;;14331:167::o;14503:177::-;14649:25;;;14637:2;14622:18;;14604:76::o;14685:248::-;14859:25;;;14915:2;14900:18;;14893:34;14847:2;14832:18;;14814:119::o;14938:128::-;;15009:1;15005:6;15002:1;14999:13;14996:2;;;15015:18;;:::i;:::-;-1:-1:-1;15051:9:1;;14986:80::o;15071:120::-;;15137:1;15127:2;;15142:18;;:::i;:::-;-1:-1:-1;15176:9:1;;15117:74::o;15196:168::-;;15302:1;15298;15294:6;15290:14;15287:1;15284:21;15279:1;15272:9;15265:17;15261:45;15258:2;;;15309:18;;:::i;:::-;-1:-1:-1;15349:9:1;;15248:116::o;15369:125::-;;15437:1;15434;15431:8;15428:2;;;15442:18;;:::i;:::-;-1:-1:-1;15479:9:1;;15418:76::o;15499:258::-;15571:1;15581:113;15595:6;15592:1;15589:13;15581:113;;;15671:11;;;15665:18;15652:11;;;15645:39;15617:2;15610:10;15581:113;;;15712:6;15709:1;15706:13;15703:2;;;-1:-1:-1;;15747:1:1;15729:16;;15722:27;15552:205::o;15762:380::-;15847:1;15837:12;;15894:1;15884:12;;;15905:2;;15959:4;15951:6;15947:17;15937:27;;15905:2;16012;16004:6;16001:14;15981:18;15978:38;15975:2;;;16058:10;16053:3;16049:20;16046:1;16039:31;16093:4;16090:1;16083:15;16121:4;16118:1;16111:15;15975:2;;15817:325;;;:::o;16147:135::-;;-1:-1:-1;;16207:17:1;;16204:2;;;16227:18;;:::i;:::-;-1:-1:-1;16274:1:1;16263:13;;16194:88::o;16287:112::-;;16345:1;16335:2;;16350:18;;:::i;:::-;-1:-1:-1;16384:9:1;;16325:74::o;16404:127::-;16465:10;16460:3;16456:20;16453:1;16446:31;16496:4;16493:1;16486:15;16520:4;16517:1;16510:15;16536:127;16597:10;16592:3;16588:20;16585:1;16578:31;16628:4;16625:1;16618:15;16652:4;16649:1;16642:15;16668:127;16729:10;16724:3;16720:20;16717:1;16710:31;16760:4;16757:1;16750:15;16784:4;16781:1;16774:15;16800:133;-1:-1:-1;;;;;;16876:32:1;;16866:43;;16856:2;;16923:1;16920;16913:12;16856:2;16846:87;:::o

Swarm Source

ipfs://2b74702e311648cfdd8ec757fa30c7a4ffb08e8a1140438193a7ea7a4fcd0c72
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.