ETH Price: $3,411.98 (-1.96%)
Gas: 9 Gwei

Token

Oteps Originals (OTEPS)
 

Overview

Max Total Supply

27 OTEPS

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OTEPS
0xbb7138401c79bd9015487875b079aa4b3d7c9afd
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:
OtepsOriginals

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Counters.sol
// SPDX-License-Identifier: GPL-3.0



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/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(),".json")) : "";

    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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



pragma solidity ^0.8.2;




contract OtepsOriginals is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    
    uint public constant MAX_SUPPLY = 100;
    uint private price = 0.00 ether;
    bool private isSalesActive = false;
    
    constructor() ERC721("Oteps Originals", "OTEPS") {
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }
    
    
    function mint(uint quantity) external payable onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "sold out");
        require(msg.value >= price * quantity, "ether send is under price");
        
        for (uint i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }
    
    function totalSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }
    

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

    
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"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"}]

60806040526000600955600a805460ff191690553480156200002057600080fd5b50604080518082018252600f81526e4f74657073204f726967696e616c7360881b6020808301918252835180850190945260058452644f5445505360d81b908401528151919291620000759160009162000104565b5080516200008b90600190602084019062000104565b505050620000a8620000a2620000ae60201b60201c565b620000b2565b620001e7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011290620001aa565b90600052602060002090601f01602090048101928262000136576000855562000181565b82601f106200015157805160ff191683800117855562000181565b8280016001018555821562000181579182015b828111156200018157825182559160200191906001019062000164565b506200018f92915062000193565b5090565b5b808211156200018f576000815560010162000194565b600181811c90821680620001bf57607f821691505b60208210811415620001e157634e487b7160e01b600052602260045260246000fd5b50919050565b61196d80620001f76000396000f3fe60806040526004361061011f5760003560e01c806370a08231116100a0578063a22cb46511610064578063a22cb46514610308578063b88d4fde14610328578063c87b56dd14610348578063e985e9c514610368578063f2fde38b146103b157600080fd5b806370a082311461028d578063715018a6146102ad5780638da5cb5b146102c257806395d89b41146102e0578063a0712d68146102f557600080fd5b806323b872dd116100e757806323b872dd146101f857806332cb6b0c1461021857806342842e0e1461022d57806355f804b31461024d5780636352211e1461026d57600080fd5b806301ffc9a71461012457806306fdde0314610159578063081812fc1461017b578063095ea7b3146101b357806318160ddd146101d5575b600080fd5b34801561013057600080fd5b5061014461013f3660046115a2565b6103d1565b60405190151581526020015b60405180910390f35b34801561016557600080fd5b5061016e610423565b60405161015091906116e6565b34801561018757600080fd5b5061019b610196366004611625565b6104b5565b6040516001600160a01b039091168152602001610150565b3480156101bf57600080fd5b506101d36101ce366004611578565b61054f565b005b3480156101e157600080fd5b506101ea610665565b604051908152602001610150565b34801561020457600080fd5b506101d3610213366004611484565b610675565b34801561022457600080fd5b506101ea606481565b34801561023957600080fd5b506101d3610248366004611484565b6106a6565b34801561025957600080fd5b506101d36102683660046115dc565b6106c1565b34801561027957600080fd5b5061019b610288366004611625565b610702565b34801561029957600080fd5b506101ea6102a8366004611436565b610779565b3480156102b957600080fd5b506101d3610800565b3480156102ce57600080fd5b506006546001600160a01b031661019b565b3480156102ec57600080fd5b5061016e610836565b6101d3610303366004611625565b610845565b34801561031457600080fd5b506101d361032336600461153c565b610940565b34801561033457600080fd5b506101d36103433660046114c0565b610a05565b34801561035457600080fd5b5061016e610363366004611625565b610a3d565b34801561037457600080fd5b50610144610383366004611451565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103bd57600080fd5b506101d36103cc366004611436565b610b18565b60006001600160e01b031982166380ac58cd60e01b148061040257506001600160e01b03198216635b5e139f60e01b145b8061041d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104329061185f565b80601f016020809104026020016040519081016040528092919081815260200182805461045e9061185f565b80156104ab5780601f10610480576101008083540402835291602001916104ab565b820191906000526020600020905b81548152906001019060200180831161048e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061055a82610702565b9050806001600160a01b0316836001600160a01b031614156105c85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161052a565b336001600160a01b03821614806105e457506105e48133610383565b6106565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161052a565b6106608383610bb3565b505050565b600061067060075490565b905090565b61067f3382610c21565b61069b5760405162461bcd60e51b815260040161052a90611780565b610660838383610d18565b61066083838360405180602001604052806000815250610a05565b6006546001600160a01b031633146106eb5760405162461bcd60e51b815260040161052a9061174b565b80516106fe90600890602084019061130b565b5050565b6000818152600260205260408120546001600160a01b03168061041d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161052a565b60006001600160a01b0382166107e45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161052a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461082a5760405162461bcd60e51b815260040161052a9061174b565b6108346000610eb8565b565b6060600180546104329061185f565b6006546001600160a01b0316331461086f5760405162461bcd60e51b815260040161052a9061174b565b60648161087a610665565b61088491906117d1565b11156108bd5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015260640161052a565b806009546108cb91906117fd565b34101561091a5760405162461bcd60e51b815260206004820152601960248201527f65746865722073656e6420697320756e64657220707269636500000000000000604482015260640161052a565b60005b818110156106fe5761092e33610f0a565b806109388161189a565b91505061091d565b6001600160a01b0382163314156109995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161052a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a0f3383610c21565b610a2b5760405162461bcd60e51b815260040161052a90611780565b610a3784848484610f2f565b50505050565b6000818152600260205260409020546060906001600160a01b0316610abc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161052a565b6000610ac6610f62565b90506000815111610ae65760405180602001604052806000815250610b11565b80610af084610f71565b604051602001610b0192919061166a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610b425760405162461bcd60e51b815260040161052a9061174b565b6001600160a01b038116610ba75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052a565b610bb081610eb8565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610be882610702565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161052a565b6000610ca583610702565b9050806001600160a01b0316846001600160a01b03161480610ce05750836001600160a01b0316610cd5846104b5565b6001600160a01b0316145b80610d1057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d2b82610702565b6001600160a01b031614610d935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161052a565b6001600160a01b038216610df55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161052a565b610e00600082610bb3565b6001600160a01b0383166000908152600360205260408120805460019290610e2990849061181c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e579084906117d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610f1560075490565b9050610f25600780546001019055565b6106fe828261106f565b610f3a848484610d18565b610f4684848484611089565b610a375760405162461bcd60e51b815260040161052a906116f9565b6060600880546104329061185f565b606081610f955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fbf5780610fa98161189a565b9150610fb89050600a836117e9565b9150610f99565b60008167ffffffffffffffff811115610fda57610fda61190b565b6040519080825280601f01601f191660200182016040528015611004576020820181803683370190505b5090505b8415610d105761101960018361181c565b9150611026600a866118b5565b6110319060306117d1565b60f81b818381518110611046576110466118f5565b60200101906001600160f81b031916908160001a905350611068600a866117e9565b9450611008565b6106fe828260405180602001604052806000815250611196565b60006001600160a01b0384163b1561118b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110cd9033908990889088906004016116a9565b602060405180830381600087803b1580156110e757600080fd5b505af1925050508015611117575060408051601f3d908101601f19168201909252611114918101906115bf565b60015b611171573d808015611145576040519150601f19603f3d011682016040523d82523d6000602084013e61114a565b606091505b5080516111695760405162461bcd60e51b815260040161052a906116f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d10565b506001949350505050565b6111a083836111c9565b6111ad6000848484611089565b6106605760405162461bcd60e51b815260040161052a906116f9565b6001600160a01b03821661121f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161052a565b6000818152600260205260409020546001600160a01b0316156112845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161052a565b6001600160a01b03821660009081526003602052604081208054600192906112ad9084906117d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546113179061185f565b90600052602060002090601f016020900481019282611339576000855561137f565b82601f1061135257805160ff191683800117855561137f565b8280016001018555821561137f579182015b8281111561137f578251825591602001919060010190611364565b5061138b92915061138f565b5090565b5b8082111561138b5760008155600101611390565b600067ffffffffffffffff808411156113bf576113bf61190b565b604051601f8501601f19908116603f011681019082821181831017156113e7576113e761190b565b8160405280935085815286868601111561140057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461143157600080fd5b919050565b60006020828403121561144857600080fd5b610b118261141a565b6000806040838503121561146457600080fd5b61146d8361141a565b915061147b6020840161141a565b90509250929050565b60008060006060848603121561149957600080fd5b6114a28461141a565b92506114b06020850161141a565b9150604084013590509250925092565b600080600080608085870312156114d657600080fd5b6114df8561141a565b93506114ed6020860161141a565b925060408501359150606085013567ffffffffffffffff81111561151057600080fd5b8501601f8101871361152157600080fd5b611530878235602084016113a4565b91505092959194509250565b6000806040838503121561154f57600080fd5b6115588361141a565b91506020830135801515811461156d57600080fd5b809150509250929050565b6000806040838503121561158b57600080fd5b6115948361141a565b946020939093013593505050565b6000602082840312156115b457600080fd5b8135610b1181611921565b6000602082840312156115d157600080fd5b8151610b1181611921565b6000602082840312156115ee57600080fd5b813567ffffffffffffffff81111561160557600080fd5b8201601f8101841361161657600080fd5b610d10848235602084016113a4565b60006020828403121561163757600080fd5b5035919050565b60008151808452611656816020860160208601611833565b601f01601f19169290920160200192915050565b6000835161167c818460208801611833565b835190830190611690818360208801611833565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116dc9083018461163e565b9695505050505050565b602081526000610b11602083018461163e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156117e4576117e46118c9565b500190565b6000826117f8576117f86118df565b500490565b6000816000190483118215151615611817576118176118c9565b500290565b60008282101561182e5761182e6118c9565b500390565b60005b8381101561184e578181015183820152602001611836565b83811115610a375750506000910152565b600181811c9082168061187357607f821691505b6020821081141561189457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118ae576118ae6118c9565b5060010190565b6000826118c4576118c46118df565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb057600080fdfea2646970667358221220b49f7c771922b802bd0b83a9d3c27c3f3700bed1b52d2f41f3b5053ccf31c8d964736f6c63430008070033

Deployed Bytecode

0x60806040526004361061011f5760003560e01c806370a08231116100a0578063a22cb46511610064578063a22cb46514610308578063b88d4fde14610328578063c87b56dd14610348578063e985e9c514610368578063f2fde38b146103b157600080fd5b806370a082311461028d578063715018a6146102ad5780638da5cb5b146102c257806395d89b41146102e0578063a0712d68146102f557600080fd5b806323b872dd116100e757806323b872dd146101f857806332cb6b0c1461021857806342842e0e1461022d57806355f804b31461024d5780636352211e1461026d57600080fd5b806301ffc9a71461012457806306fdde0314610159578063081812fc1461017b578063095ea7b3146101b357806318160ddd146101d5575b600080fd5b34801561013057600080fd5b5061014461013f3660046115a2565b6103d1565b60405190151581526020015b60405180910390f35b34801561016557600080fd5b5061016e610423565b60405161015091906116e6565b34801561018757600080fd5b5061019b610196366004611625565b6104b5565b6040516001600160a01b039091168152602001610150565b3480156101bf57600080fd5b506101d36101ce366004611578565b61054f565b005b3480156101e157600080fd5b506101ea610665565b604051908152602001610150565b34801561020457600080fd5b506101d3610213366004611484565b610675565b34801561022457600080fd5b506101ea606481565b34801561023957600080fd5b506101d3610248366004611484565b6106a6565b34801561025957600080fd5b506101d36102683660046115dc565b6106c1565b34801561027957600080fd5b5061019b610288366004611625565b610702565b34801561029957600080fd5b506101ea6102a8366004611436565b610779565b3480156102b957600080fd5b506101d3610800565b3480156102ce57600080fd5b506006546001600160a01b031661019b565b3480156102ec57600080fd5b5061016e610836565b6101d3610303366004611625565b610845565b34801561031457600080fd5b506101d361032336600461153c565b610940565b34801561033457600080fd5b506101d36103433660046114c0565b610a05565b34801561035457600080fd5b5061016e610363366004611625565b610a3d565b34801561037457600080fd5b50610144610383366004611451565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103bd57600080fd5b506101d36103cc366004611436565b610b18565b60006001600160e01b031982166380ac58cd60e01b148061040257506001600160e01b03198216635b5e139f60e01b145b8061041d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104329061185f565b80601f016020809104026020016040519081016040528092919081815260200182805461045e9061185f565b80156104ab5780601f10610480576101008083540402835291602001916104ab565b820191906000526020600020905b81548152906001019060200180831161048e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061055a82610702565b9050806001600160a01b0316836001600160a01b031614156105c85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161052a565b336001600160a01b03821614806105e457506105e48133610383565b6106565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161052a565b6106608383610bb3565b505050565b600061067060075490565b905090565b61067f3382610c21565b61069b5760405162461bcd60e51b815260040161052a90611780565b610660838383610d18565b61066083838360405180602001604052806000815250610a05565b6006546001600160a01b031633146106eb5760405162461bcd60e51b815260040161052a9061174b565b80516106fe90600890602084019061130b565b5050565b6000818152600260205260408120546001600160a01b03168061041d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161052a565b60006001600160a01b0382166107e45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161052a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461082a5760405162461bcd60e51b815260040161052a9061174b565b6108346000610eb8565b565b6060600180546104329061185f565b6006546001600160a01b0316331461086f5760405162461bcd60e51b815260040161052a9061174b565b60648161087a610665565b61088491906117d1565b11156108bd5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015260640161052a565b806009546108cb91906117fd565b34101561091a5760405162461bcd60e51b815260206004820152601960248201527f65746865722073656e6420697320756e64657220707269636500000000000000604482015260640161052a565b60005b818110156106fe5761092e33610f0a565b806109388161189a565b91505061091d565b6001600160a01b0382163314156109995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161052a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a0f3383610c21565b610a2b5760405162461bcd60e51b815260040161052a90611780565b610a3784848484610f2f565b50505050565b6000818152600260205260409020546060906001600160a01b0316610abc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161052a565b6000610ac6610f62565b90506000815111610ae65760405180602001604052806000815250610b11565b80610af084610f71565b604051602001610b0192919061166a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610b425760405162461bcd60e51b815260040161052a9061174b565b6001600160a01b038116610ba75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052a565b610bb081610eb8565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610be882610702565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161052a565b6000610ca583610702565b9050806001600160a01b0316846001600160a01b03161480610ce05750836001600160a01b0316610cd5846104b5565b6001600160a01b0316145b80610d1057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d2b82610702565b6001600160a01b031614610d935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161052a565b6001600160a01b038216610df55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161052a565b610e00600082610bb3565b6001600160a01b0383166000908152600360205260408120805460019290610e2990849061181c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e579084906117d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610f1560075490565b9050610f25600780546001019055565b6106fe828261106f565b610f3a848484610d18565b610f4684848484611089565b610a375760405162461bcd60e51b815260040161052a906116f9565b6060600880546104329061185f565b606081610f955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fbf5780610fa98161189a565b9150610fb89050600a836117e9565b9150610f99565b60008167ffffffffffffffff811115610fda57610fda61190b565b6040519080825280601f01601f191660200182016040528015611004576020820181803683370190505b5090505b8415610d105761101960018361181c565b9150611026600a866118b5565b6110319060306117d1565b60f81b818381518110611046576110466118f5565b60200101906001600160f81b031916908160001a905350611068600a866117e9565b9450611008565b6106fe828260405180602001604052806000815250611196565b60006001600160a01b0384163b1561118b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110cd9033908990889088906004016116a9565b602060405180830381600087803b1580156110e757600080fd5b505af1925050508015611117575060408051601f3d908101601f19168201909252611114918101906115bf565b60015b611171573d808015611145576040519150601f19603f3d011682016040523d82523d6000602084013e61114a565b606091505b5080516111695760405162461bcd60e51b815260040161052a906116f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d10565b506001949350505050565b6111a083836111c9565b6111ad6000848484611089565b6106605760405162461bcd60e51b815260040161052a906116f9565b6001600160a01b03821661121f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161052a565b6000818152600260205260409020546001600160a01b0316156112845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161052a565b6001600160a01b03821660009081526003602052604081208054600192906112ad9084906117d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546113179061185f565b90600052602060002090601f016020900481019282611339576000855561137f565b82601f1061135257805160ff191683800117855561137f565b8280016001018555821561137f579182015b8281111561137f578251825591602001919060010190611364565b5061138b92915061138f565b5090565b5b8082111561138b5760008155600101611390565b600067ffffffffffffffff808411156113bf576113bf61190b565b604051601f8501601f19908116603f011681019082821181831017156113e7576113e761190b565b8160405280935085815286868601111561140057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461143157600080fd5b919050565b60006020828403121561144857600080fd5b610b118261141a565b6000806040838503121561146457600080fd5b61146d8361141a565b915061147b6020840161141a565b90509250929050565b60008060006060848603121561149957600080fd5b6114a28461141a565b92506114b06020850161141a565b9150604084013590509250925092565b600080600080608085870312156114d657600080fd5b6114df8561141a565b93506114ed6020860161141a565b925060408501359150606085013567ffffffffffffffff81111561151057600080fd5b8501601f8101871361152157600080fd5b611530878235602084016113a4565b91505092959194509250565b6000806040838503121561154f57600080fd5b6115588361141a565b91506020830135801515811461156d57600080fd5b809150509250929050565b6000806040838503121561158b57600080fd5b6115948361141a565b946020939093013593505050565b6000602082840312156115b457600080fd5b8135610b1181611921565b6000602082840312156115d157600080fd5b8151610b1181611921565b6000602082840312156115ee57600080fd5b813567ffffffffffffffff81111561160557600080fd5b8201601f8101841361161657600080fd5b610d10848235602084016113a4565b60006020828403121561163757600080fd5b5035919050565b60008151808452611656816020860160208601611833565b601f01601f19169290920160200192915050565b6000835161167c818460208801611833565b835190830190611690818360208801611833565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116dc9083018461163e565b9695505050505050565b602081526000610b11602083018461163e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156117e4576117e46118c9565b500190565b6000826117f8576117f86118df565b500490565b6000816000190483118215151615611817576118176118c9565b500290565b60008282101561182e5761182e6118c9565b500390565b60005b8381101561184e578181015183820152602001611836565b83811115610a375750506000910152565b600181811c9082168061187357607f821691505b6020821081141561189457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118ae576118ae6118c9565b5060010190565b6000826118c4576118c46118df565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb057600080fdfea2646970667358221220b49f7c771922b802bd0b83a9d3c27c3f3700bed1b52d2f41f3b5053ccf31c8d964736f6c63430008070033

Deployed Bytecode Sourcemap

36540:1224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24370:305;;;;;;;;;;-1:-1:-1;24370:305:0;;;;;:::i;:::-;;:::i;:::-;;;5813:14:1;;5806:22;5788:41;;5776:2;5761:18;24370:305:0;;;;;;;;25315:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26884:221::-;;;;;;;;;;-1:-1:-1;26884:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5111:32:1;;;5093:51;;5081:2;5066:18;26884:221:0;4947:203:1;26407:411:0;;;;;;;;;;-1:-1:-1;26407:411:0;;;;;:::i;:::-;;:::i;:::-;;37529:101;;;;;;;;;;;;;:::i;:::-;;;13282:25:1;;;13270:2;13255:18;37529:101:0;13136:177:1;27774:339:0;;;;;;;;;;-1:-1:-1;27774:339:0;;;;;:::i;:::-;;:::i;36709:37::-;;;;;;;;;;;;36743:3;36709:37;;28184:185;;;;;;;;;;-1:-1:-1;28184:185:0;;;;;:::i;:::-;;:::i;37644:105::-;;;;;;;;;;-1:-1:-1;37644:105:0;;;;;:::i;:::-;;:::i;25009:239::-;;;;;;;;;;-1:-1:-1;25009:239:0;;;;;:::i;:::-;;:::i;24739:208::-;;;;;;;;;;-1:-1:-1;24739:208:0;;;;;:::i;:::-;;:::i;6005:94::-;;;;;;;;;;;;;:::i;5354:87::-;;;;;;;;;;-1:-1:-1;5427:6:0;;-1:-1:-1;;;;;5427:6:0;5354:87;;25484:104;;;;;;;;;;;;;:::i;37022:315::-;;;;;;:::i;:::-;;:::i;27177:295::-;;;;;;;;;;-1:-1:-1;27177:295:0;;;;;:::i;:::-;;:::i;28440:328::-;;;;;;;;;;-1:-1:-1;28440:328:0;;;;;:::i;:::-;;:::i;25659:344::-;;;;;;;;;;-1:-1:-1;25659:344:0;;;;;:::i;:::-;;:::i;27543:164::-;;;;;;;;;;-1:-1:-1;27543:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27664:25:0;;;27640:4;27664:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27543:164;6254:192;;;;;;;;;;-1:-1:-1;6254:192:0;;;;;:::i;:::-;;:::i;24370:305::-;24472:4;-1:-1:-1;;;;;;24509:40:0;;-1:-1:-1;;;24509:40:0;;:105;;-1:-1:-1;;;;;;;24566:48:0;;-1:-1:-1;;;24566:48:0;24509:105;:158;;;-1:-1:-1;;;;;;;;;;17449:40:0;;;24631:36;24489:178;24370:305;-1:-1:-1;;24370:305:0:o;25315:100::-;25369:13;25402:5;25395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25315:100;:::o;26884:221::-;26960:7;30367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30367:16:0;26980:73;;;;-1:-1:-1;;;26980:73:0;;10918:2:1;26980:73:0;;;10900:21:1;10957:2;10937:18;;;10930:30;10996:34;10976:18;;;10969:62;-1:-1:-1;;;11047:18:1;;;11040:42;11099:19;;26980:73:0;;;;;;;;;-1:-1:-1;27073:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27073:24:0;;26884:221::o;26407:411::-;26488:13;26504:23;26519:7;26504:14;:23::i;:::-;26488:39;;26552:5;-1:-1:-1;;;;;26546:11:0;:2;-1:-1:-1;;;;;26546:11:0;;;26538:57;;;;-1:-1:-1;;;26538:57:0;;12518:2:1;26538:57:0;;;12500:21:1;12557:2;12537:18;;;12530:30;12596:34;12576:18;;;12569:62;-1:-1:-1;;;12647:18:1;;;12640:31;12688:19;;26538:57:0;12316:397:1;26538:57:0;4222:10;-1:-1:-1;;;;;26630:21:0;;;;:62;;-1:-1:-1;26655:37:0;26672:5;4222:10;27543:164;:::i;26655:37::-;26608:168;;;;-1:-1:-1;;;26608:168:0;;8957:2:1;26608:168:0;;;8939:21:1;8996:2;8976:18;;;8969:30;9035:34;9015:18;;;9008:62;9106:26;9086:18;;;9079:54;9150:19;;26608:168:0;8755:420:1;26608:168:0;26789:21;26798:2;26802:7;26789:8;:21::i;:::-;26477:341;26407:411;;:::o;37529:101::-;37573:4;37597:25;:15;946:14;;854:114;37597:25;37590:32;;37529:101;:::o;27774:339::-;27969:41;4222:10;28002:7;27969:18;:41::i;:::-;27961:103;;;;-1:-1:-1;;;27961:103:0;;;;;;;:::i;:::-;28077:28;28087:4;28093:2;28097:7;28077:9;:28::i;28184:185::-;28322:39;28339:4;28345:2;28349:7;28322:39;;;;;;;;;;;;:16;:39::i;37644:105::-;5427:6;;-1:-1:-1;;;;;5427:6:0;4222:10;5574:23;5566:68;;;;-1:-1:-1;;;5566:68:0;;;;;;;:::i;:::-;37720:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37644:105:::0;:::o;25009:239::-;25081:7;25117:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25117:16:0;25152:19;25144:73;;;;-1:-1:-1;;;25144:73:0;;10147:2:1;25144:73:0;;;10129:21:1;10186:2;10166:18;;;10159:30;10225:34;10205:18;;;10198:62;-1:-1:-1;;;10276:18:1;;;10269:39;10325:19;;25144:73:0;9945:405:1;24739:208:0;24811:7;-1:-1:-1;;;;;24839:19:0;;24831:74;;;;-1:-1:-1;;;24831:74:0;;9736:2:1;24831:74:0;;;9718:21:1;9775:2;9755:18;;;9748:30;9814:34;9794:18;;;9787:62;-1:-1:-1;;;9865:18:1;;;9858:40;9915:19;;24831:74:0;9534:406:1;24831:74:0;-1:-1:-1;;;;;;24923:16:0;;;;;:9;:16;;;;;;;24739:208::o;6005:94::-;5427:6;;-1:-1:-1;;;;;5427:6:0;4222:10;5574:23;5566:68;;;;-1:-1:-1;;;5566:68:0;;;;;;;:::i;:::-;6070:21:::1;6088:1;6070:9;:21::i;:::-;6005:94::o:0;25484:104::-;25540:13;25573:7;25566:14;;;;;:::i;37022:315::-;5427:6;;-1:-1:-1;;;;;5427:6:0;4222:10;5574:23;5566:68;;;;-1:-1:-1;;;5566:68:0;;;;;;;:::i;:::-;36743:3:::1;37113:8;37097:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;37089:59;;;::::0;-1:-1:-1;;;37089:59:0;;8621:2:1;37089:59:0::1;::::0;::::1;8603:21:1::0;8660:1;8640:18;;;8633:29;-1:-1:-1;;;8678:18:1;;;8671:38;8726:18;;37089:59:0::1;8419:331:1::0;37089:59:0::1;37188:8;37180:5;;:16;;;;:::i;:::-;37167:9;:29;;37159:67;;;::::0;-1:-1:-1;;;37159:67:0;;9382:2:1;37159:67:0::1;::::0;::::1;9364:21:1::0;9421:2;9401:18;;;9394:30;9460:27;9440:18;;;9433:55;9505:18;;37159:67:0::1;9180:349:1::0;37159:67:0::1;37252:6;37247:83;37268:8;37264:1;:12;37247:83;;;37298:20;37307:10;37298:8;:20::i;:::-;37278:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37247:83;;27177:295:::0;-1:-1:-1;;;;;27280:24:0;;4222:10;27280:24;;27272:62;;;;-1:-1:-1;;;27272:62:0;;7854:2:1;27272:62:0;;;7836:21:1;7893:2;7873:18;;;7866:30;7932:27;7912:18;;;7905:55;7977:18;;27272:62:0;7652:349:1;27272:62:0;4222:10;27347:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27347:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27347:53:0;;;;;;;;;;27416:48;;5788:41:1;;;27347:42:0;;4222:10;27416:48;;5761:18:1;27416:48:0;;;;;;;27177:295;;:::o;28440:328::-;28615:41;4222:10;28648:7;28615:18;:41::i;:::-;28607:103;;;;-1:-1:-1;;;28607:103:0;;;;;;;:::i;:::-;28721:39;28735:4;28741:2;28745:7;28754:5;28721:13;:39::i;:::-;28440:328;;;;:::o;25659:344::-;30343:4;30367:16;;;:7;:16;;;;;;25732:13;;-1:-1:-1;;;;;30367:16:0;25758:76;;;;-1:-1:-1;;;25758:76:0;;12102:2:1;25758:76:0;;;12084:21:1;12141:2;12121:18;;;12114:30;12180:34;12160:18;;;12153:62;-1:-1:-1;;;12231:18:1;;;12224:45;12286:19;;25758:76:0;11900:411:1;25758:76:0;25847:21;25871:10;:8;:10::i;:::-;25847:34;;25923:1;25905:7;25899:21;:25;:94;;;;;;;;;;;;;;;;;25951:7;25960:18;:7;:16;:18::i;:::-;25934:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25899:94;25892:101;25659:344;-1:-1:-1;;;25659:344:0:o;6254:192::-;5427:6;;-1:-1:-1;;;;;5427:6:0;4222:10;5574:23;5566:68;;;;-1:-1:-1;;;5566:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6343:22:0;::::1;6335:73;;;::::0;-1:-1:-1;;;6335:73:0;;6685:2:1;6335:73:0::1;::::0;::::1;6667:21:1::0;6724:2;6704:18;;;6697:30;6763:34;6743:18;;;6736:62;-1:-1:-1;;;6814:18:1;;;6807:36;6860:19;;6335:73:0::1;6483:402:1::0;6335:73:0::1;6419:19;6429:8;6419:9;:19::i;:::-;6254:192:::0;:::o;34260:174::-;34335:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34335:29:0;-1:-1:-1;;;;;34335:29:0;;;;;;;;:24;;34389:23;34335:24;34389:14;:23::i;:::-;-1:-1:-1;;;;;34380:46:0;;;;;;;;;;;34260:174;;:::o;30572:348::-;30665:4;30367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30367:16:0;30682:73;;;;-1:-1:-1;;;30682:73:0;;8208:2:1;30682:73:0;;;8190:21:1;8247:2;8227:18;;;8220:30;8286:34;8266:18;;;8259:62;-1:-1:-1;;;8337:18:1;;;8330:42;8389:19;;30682:73:0;8006:408:1;30682:73:0;30766:13;30782:23;30797:7;30782:14;:23::i;:::-;30766:39;;30835:5;-1:-1:-1;;;;;30824:16:0;:7;-1:-1:-1;;;;;30824:16:0;;:51;;;;30868:7;-1:-1:-1;;;;;30844:31:0;:20;30856:7;30844:11;:20::i;:::-;-1:-1:-1;;;;;30844:31:0;;30824:51;:87;;;-1:-1:-1;;;;;;27664:25:0;;;27640:4;27664:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30879:32;30816:96;30572:348;-1:-1:-1;;;;30572:348:0:o;33564:578::-;33723:4;-1:-1:-1;;;;;33696:31:0;:23;33711:7;33696:14;:23::i;:::-;-1:-1:-1;;;;;33696:31:0;;33688:85;;;;-1:-1:-1;;;33688:85:0;;11692:2:1;33688:85:0;;;11674:21:1;11731:2;11711:18;;;11704:30;11770:34;11750:18;;;11743:62;-1:-1:-1;;;11821:18:1;;;11814:39;11870:19;;33688:85:0;11490:405:1;33688:85:0;-1:-1:-1;;;;;33792:16:0;;33784:65;;;;-1:-1:-1;;;33784:65:0;;7449:2:1;33784:65:0;;;7431:21:1;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:34;7622:19;;33784:65:0;7247:400:1;33784:65:0;33966:29;33983:1;33987:7;33966:8;:29::i;:::-;-1:-1:-1;;;;;34008:15:0;;;;;;:9;:15;;;;;:20;;34027:1;;34008:15;:20;;34027:1;;34008:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34039:13:0;;;;;;:9;:13;;;;;:18;;34056:1;;34039:13;:18;;34056:1;;34039:18;:::i;:::-;;;;-1:-1:-1;;34068:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34068:21:0;-1:-1:-1;;;;;34068:21:0;;;;;;;;;34107:27;;34068:16;;34107:27;;;;;;;33564:578;;;:::o;6454:173::-;6529:6;;;-1:-1:-1;;;;;6546:17:0;;;-1:-1:-1;;;;;;6546:17:0;;;;;;;6579:40;;6529:6;;;6546:17;6529:6;;6579:40;;6510:16;;6579:40;6499:128;6454:173;:::o;37345:172::-;37395:15;37413:25;:15;946:14;;854:114;37413:25;37395:43;;37449:27;:15;1065:19;;1083:1;1065:19;;;976:127;37449:27;37487:22;37497:2;37501:7;37487:9;:22::i;29650:315::-;29807:28;29817:4;29823:2;29827:7;29807:9;:28::i;:::-;29854:48;29877:4;29883:2;29887:7;29896:5;29854:22;:48::i;:::-;29846:111;;;;-1:-1:-1;;;29846:111:0;;;;;;;:::i;36903:101::-;36955:13;36988:8;36981:15;;;;;:::i;1758:723::-;1814:13;2035:10;2031:53;;-1:-1:-1;;2062:10:0;;;;;;;;;;;;-1:-1:-1;;;2062:10:0;;;;;1758:723::o;2031:53::-;2109:5;2094:12;2150:78;2157:9;;2150:78;;2183:8;;;;:::i;:::-;;-1:-1:-1;2206:10:0;;-1:-1:-1;2214:2:0;2206:10;;:::i;:::-;;;2150:78;;;2238:19;2270:6;2260:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2260:17:0;;2238:39;;2288:154;2295:10;;2288:154;;2322:11;2332:1;2322:11;;:::i;:::-;;-1:-1:-1;2391:10:0;2399:2;2391:5;:10;:::i;:::-;2378:24;;:2;:24;:::i;:::-;2365:39;;2348:6;2355;2348:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2348:56:0;;;;;;;;-1:-1:-1;2419:11:0;2428:2;2419:11;;:::i;:::-;;;2288:154;;31262:110;31338:26;31348:2;31352:7;31338:26;;;;;;;;;;;;:9;:26::i;34999:799::-;35154:4;-1:-1:-1;;;;;35175:13:0;;7723:20;7771:8;35171:620;;35211:72;;-1:-1:-1;;;35211:72:0;;-1:-1:-1;;;;;35211:36:0;;;;;:72;;4222:10;;35262:4;;35268:7;;35277:5;;35211:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35211:72:0;;;;;;;;-1:-1:-1;;35211:72:0;;;;;;;;;;;;:::i;:::-;;;35207:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35453:13:0;;35449:272;;35496:60;;-1:-1:-1;;;35496:60:0;;;;;;;:::i;35449:272::-;35671:6;35665:13;35656:6;35652:2;35648:15;35641:38;35207:529;-1:-1:-1;;;;;;35334:51:0;-1:-1:-1;;;35334:51:0;;-1:-1:-1;35327:58:0;;35171:620;-1:-1:-1;35775:4:0;34999:799;;;;;;:::o;31599:321::-;31729:18;31735:2;31739:7;31729:5;:18::i;:::-;31780:54;31811:1;31815:2;31819:7;31828:5;31780:22;:54::i;:::-;31758:154;;;;-1:-1:-1;;;31758:154:0;;;;;;;:::i;32256:382::-;-1:-1:-1;;;;;32336:16:0;;32328:61;;;;-1:-1:-1;;;32328:61:0;;10557:2:1;32328:61:0;;;10539:21:1;;;10576:18;;;10569:30;10635:34;10615:18;;;10608:62;10687:18;;32328:61:0;10355:356:1;32328:61:0;30343:4;30367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30367:16:0;:30;32400:58;;;;-1:-1:-1;;;32400:58:0;;7092:2:1;32400:58:0;;;7074:21:1;7131:2;7111:18;;;7104:30;7170;7150:18;;;7143:58;7218:18;;32400:58:0;6890:352:1;32400:58:0;-1:-1:-1;;;;;32529:13:0;;;;;;:9;:13;;;;;:18;;32546:1;;32529:13;:18;;32546:1;;32529:18;:::i;:::-;;;;-1:-1:-1;;32558:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32558:21:0;-1:-1:-1;;;;;32558:21:0;;;;;;;;32597:33;;32558:16;;;32597:33;;32558:16;;32597:33;32256:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:637::-;4585:3;4623:6;4617:13;4639:53;4685:6;4680:3;4673:4;4665:6;4661:17;4639:53;:::i;:::-;4755:13;;4714:16;;;;4777:57;4755:13;4714:16;4811:4;4799:17;;4777:57;:::i;:::-;-1:-1:-1;;;4856:20:1;;4885:22;;;4934:1;4923:13;;4305:637;-1:-1:-1;;;;4305:637:1:o;5155:488::-;-1:-1:-1;;;;;5424:15:1;;;5406:34;;5476:15;;5471:2;5456:18;;5449:43;5523:2;5508:18;;5501:34;;;5571:3;5566:2;5551:18;;5544:31;;;5349:4;;5592:45;;5617:19;;5609:6;5592:45;:::i;:::-;5584:53;5155:488;-1:-1:-1;;;;;;5155:488:1:o;5840:219::-;5989:2;5978:9;5971:21;5952:4;6009:44;6049:2;6038:9;6034:18;6026:6;6009:44;:::i;6064:414::-;6266:2;6248:21;;;6305:2;6285:18;;;6278:30;6344:34;6339:2;6324:18;;6317:62;-1:-1:-1;;;6410:2:1;6395:18;;6388:48;6468:3;6453:19;;6064:414::o;11129:356::-;11331:2;11313:21;;;11350:18;;;11343:30;11409:34;11404:2;11389:18;;11382:62;11476:2;11461:18;;11129:356::o;12718:413::-;12920:2;12902:21;;;12959:2;12939:18;;;12932:30;12998:34;12993:2;12978:18;;12971:62;-1:-1:-1;;;13064:2:1;13049:18;;13042:47;13121:3;13106:19;;12718:413::o;13318:128::-;13358:3;13389:1;13385:6;13382:1;13379:13;13376:39;;;13395:18;;:::i;:::-;-1:-1:-1;13431:9:1;;13318:128::o;13451:120::-;13491:1;13517;13507:35;;13522:18;;:::i;:::-;-1:-1:-1;13556:9:1;;13451:120::o;13576:168::-;13616:7;13682:1;13678;13674:6;13670:14;13667:1;13664:21;13659:1;13652:9;13645:17;13641:45;13638:71;;;13689:18;;:::i;:::-;-1:-1:-1;13729:9:1;;13576:168::o;13749:125::-;13789:4;13817:1;13814;13811:8;13808:34;;;13822:18;;:::i;:::-;-1:-1:-1;13859:9:1;;13749:125::o;13879:258::-;13951:1;13961:113;13975:6;13972:1;13969:13;13961:113;;;14051:11;;;14045:18;14032:11;;;14025:39;13997:2;13990:10;13961:113;;;14092:6;14089:1;14086:13;14083:48;;;-1:-1:-1;;14127:1:1;14109:16;;14102:27;13879:258::o;14142:380::-;14221:1;14217:12;;;;14264;;;14285:61;;14339:4;14331:6;14327:17;14317:27;;14285:61;14392:2;14384:6;14381:14;14361:18;14358:38;14355:161;;;14438:10;14433:3;14429:20;14426:1;14419:31;14473:4;14470:1;14463:15;14501:4;14498:1;14491:15;14355:161;;14142:380;;;:::o;14527:135::-;14566:3;-1:-1:-1;;14587:17:1;;14584:43;;;14607:18;;:::i;:::-;-1:-1:-1;14654:1:1;14643:13;;14527:135::o;14667:112::-;14699:1;14725;14715:35;;14730:18;;:::i;:::-;-1:-1:-1;14764:9:1;;14667:112::o;14784:127::-;14845:10;14840:3;14836:20;14833:1;14826:31;14876:4;14873:1;14866:15;14900:4;14897:1;14890:15;14916:127;14977:10;14972:3;14968:20;14965:1;14958:31;15008:4;15005:1;14998:15;15032:4;15029:1;15022:15;15048:127;15109:10;15104:3;15100:20;15097:1;15090:31;15140:4;15137:1;15130:15;15164:4;15161:1;15154:15;15180:127;15241:10;15236:3;15232:20;15229:1;15222:31;15272:4;15269:1;15262:15;15296:4;15293:1;15286:15;15312:131;-1:-1:-1;;;;;;15386:32:1;;15376:43;;15366:71;;15433:1;15430;15423:12

Swarm Source

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