ETH Price: $2,919.83 (+0.96%)
Gas: 4 Gwei

Token

Invisible Foes (INVFOES)
 

Overview

Max Total Supply

6,666 INVFOES

Holders

1,534

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 INVFOES
0xc30782464f06a98d9d1389bb87aa4f5f8801b60f
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:
InvisibleFoes

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion
File 1 of 14 : InvisibleFoes.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721EnumerableLite.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract InvisibleFoes is ERC721EnumerableLite, Ownable {
    using Strings for uint;

    uint public PRICE = 0.03666 ether;
    uint public MAX_SUPPLY = 6666;

    string public _baseTokenURI = "ipfs://QmZEgGp7XXy9Jxa3b35Y4Q2pzQkEt4wYDJ6zMfWcscQDs8?";

    bool public paused = true;
    bool public enablePaid = true;

    mapping(address => uint256) private freeMints;

    constructor() ERC721B("Invisible Foes", "INVFOES") {
        uint supply = totalSupply();

        for(uint i = 0; i < 100; ++i){
            _mint( msg.sender, supply + i );
        }
    }

    function mint(uint _count) external payable {
        require( !paused, "Minting paused" );

        uint supply = totalSupply();
        require( supply + _count <= MAX_SUPPLY, "Exceeds max supply" );

        if (supply + _count > 600 && enablePaid) {
            require( _count < 11, "Max is 10 per transaction" );
            require( msg.value >= PRICE * _count, "Ether sent is not correct" );
        } else {
        require(
            freeMints[ msg.sender ] + _count < 6,
            "Max free is 5 per wallet"
        );
            freeMints[ msg.sender ] += _count;
        }

        for(uint i = 0; i < _count; ++i){
            _mint( msg.sender, supply + i );
        }
    }

    function pause(bool _updatePaused) public onlyOwner {
        paused = _updatePaused;
    }

    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        _baseTokenURI = _newBaseURI;
    }

    function paidMint(bool _updateState) public onlyOwner {
        enablePaid = _updateState;
    }

    function tokenURI(uint _tokenId) external override view returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)));
    }

    function withdraw() public onlyOwner {
        require(
            payable(owner()).send(address(this).balance),
            "Withdraw unsuccessful"
        );
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 3 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 4 of 14 : ERC721EnumerableLite.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 * @team:   GoldenX                     *
 ****************************************
 *        ERC721B provides low-gas      *
 *           mints + transfers          *
 ****************************************/

import "./ERC721B.sol";
import "./IBatch.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

abstract contract ERC721EnumerableLite is ERC721B, IBatch, IERC721Enumerable {
    function isOwnerOf( address account, uint[] calldata tokenIds ) external view override returns( bool ){
        for(uint i; i < tokenIds.length; ++i ){
            if( _owners[ tokenIds[i] ] != account )
                return false;
        }

        return true;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint index) public view override returns (uint tokenId) {
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }

        require(false, "ERC721Enumerable: owner index out of bounds");
    }

    function tokenByIndex(uint index) external view virtual override returns (uint) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function totalSupply() public view virtual override returns (uint) {
        return _owners.length;
    }

    function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external override{
        for(uint i; i < tokenIds.length; ++i ){
            safeTransferFrom( from, to, tokenIds[i], data );
        }
    }

    function walletOfOwner( address account ) external view override returns( uint[] memory ){
        uint quantity = balanceOf( account );
        uint[] memory wallet = new uint[]( quantity );
        for( uint i; i < quantity; ++i ){
            wallet[i] = tokenOfOwnerByIndex( account, i );
        }
        return wallet;
    }
}

File 5 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 14 : IBatch.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

interface IBatch {
  function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool );
  function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external;
  function walletOfOwner( address account ) external view returns( uint[] memory );
}

File 7 of 14 : ERC721B.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/********************
* @author: Squeebo *
********************/

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

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

    //public
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function next() public view returns( uint ){
        return _owners.length;
    }

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

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

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721B.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        return _tokenApprovals[tokenId];
    }

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

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @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);
    }


    //internal
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721B.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721B.ownerOf(tokenId);

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721B.ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 9 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 500
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePaid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"next","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_updateState","type":"bool"}],"name":"paidMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_updatePaused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66823e1365774000600655611a0a60075560e060405260366080818152906200291160a03980516200003a9160089160209091019062000304565b506009805461ffff19166101011790553480156200005757600080fd5b50604080518082018252600e81526d496e76697369626c6520466f657360901b602080830191825283518085019094526007845266494e56464f455360c81b908401528151919291620000ad9160009162000304565b508051620000c390600190602084019062000304565b505050620000e0620000da6200012d60201b60201c565b62000131565b6000620000ec60025490565b905060005b6064811015620001255762000112336200010c8385620003c0565b62000183565b6200011d81620003db565b9050620000f1565b50506200044c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001df5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b620001ea81620002b5565b15620002395760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d6565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60025460009082108015620002fe575060006001600160a01b031660028381548110620002e657620002e6620003f9565b6000918252602090912001546001600160a01b031614155b92915050565b82805462000312906200040f565b90600052602060002090601f01602090048101928262000336576000855562000381565b82601f106200035157805160ff191683800117855562000381565b8280016001018555821562000381579182015b828111156200038157825182559160200191906001019062000364565b506200038f92915062000393565b5090565b5b808211156200038f576000815560010162000394565b634e487b7160e01b600052601160045260246000fd5b60008219821115620003d657620003d6620003aa565b500190565b6000600019821415620003f257620003f2620003aa565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600181811c908216806200042457607f821691505b602082108114156200044657634e487b7160e01b600052602260045260246000fd5b50919050565b6124b5806200045c6000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde14610545578063c87b56dd14610565578063cfc86f7b14610585578063e985e9c51461059a578063f2fde38b146105e357600080fd5b8063a0712d68146104d3578063a1fc6705146104e6578063a22cb46514610505578063b534a5c41461052557600080fd5b8063715018a6116100dc578063715018a6146104755780638d859f3e1461048a5780638da5cb5b146104a057806395d89b41146104be57600080fd5b806355f804b3146103fb5780635c975abb1461041b5780636352211e1461043557806370a082311461045557600080fd5b806332cb6b0c11610185578063438b630011610154578063438b63001461038e5780634c8fe526146102c45780634d44660c146103bb5780634f6ccce7146103db57600080fd5b806332cb6b0c146103235780633b13be40146103395780633ccfd60b1461035957806342842e0e1461036e57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632f745c591461030357600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611da5565b610603565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611dd7565b61062e565b005b34801561025657600080fd5b5061025f6106a0565b60405161021f9190611e4a565b34801561027857600080fd5b5061028c610287366004611e5d565b610732565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611e8d565b6107ba565b3480156102d057600080fd5b506002545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611eb7565b6108d0565b34801561030f57600080fd5b506102d561031e366004611e8d565b61094b565b34801561032f57600080fd5b506102d560075481565b34801561034557600080fd5b50610248610354366004611dd7565b610a17565b34801561036557600080fd5b50610248610a8b565b34801561037a57600080fd5b50610248610389366004611eb7565b610b5b565b34801561039a57600080fd5b506103ae6103a9366004611ef3565b610b76565b60405161021f9190611f0e565b3480156103c757600080fd5b506102136103d6366004611f9e565b610c16565b3480156103e757600080fd5b506102d56103f6366004611e5d565b610c98565b34801561040757600080fd5b50610248610416366004612033565b610d0a565b34801561042757600080fd5b506009546102139060ff1681565b34801561044157600080fd5b5061028c610450366004611e5d565b610d70565b34801561046157600080fd5b506102d5610470366004611ef3565b610dfc565b34801561048157600080fd5b50610248610ece565b34801561049657600080fd5b506102d560065481565b3480156104ac57600080fd5b506005546001600160a01b031661028c565b3480156104ca57600080fd5b5061025f610f32565b6102486104e1366004611e5d565b610f41565b3480156104f257600080fd5b5060095461021390610100900460ff1681565b34801561051157600080fd5b50610248610520366004612075565b611193565b34801561053157600080fd5b506102486105403660046120a8565b611258565b34801561055157600080fd5b5061024861056036600461214f565b6112d6565b34801561057157600080fd5b5061025f610580366004611e5d565b611358565b34801561059157600080fd5b5061025f611407565b3480156105a657600080fd5b506102136105b536600461222b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156105ef57600080fd5b506102486105fe366004611ef3565b611495565b60006001600160e01b0319821663780e9d6360e01b1480610628575061062882611560565b92915050565b6005546001600160a01b0316331461068d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6009805460ff1916911515919091179055565b6060600080546106af90612255565b80601f01602080910402602001604051908101604052809291908181526020018280546106db90612255565b80156107285780601f106106fd57610100808354040283529160200191610728565b820191906000526020600020905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b600061073d826115b0565b61079e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610684565b506000908152600360205260409020546001600160a01b031690565b60006107c582610d70565b9050806001600160a01b0316836001600160a01b031614156108335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610684565b336001600160a01b038216148061084f575061084f81336105b5565b6108c15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610684565b6108cb83836115fa565b505050565b6108da3382611668565b6109405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610684565b6108cb838383611752565b60008060005b6002548110156109ba576002818154811061096e5761096e612290565b6000918252602090912001546001600160a01b03868116911614156109aa578382141561099e5791506106289050565b6109a7826122bc565b91505b6109b3816122bc565b9050610951565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610684565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b600980549115156101000261ff0019909216919091179055565b6005546001600160a01b03163314610ae55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610b595760405162461bcd60e51b815260206004820152601560248201527f576974686472617720756e7375636365737366756c00000000000000000000006044820152606401610684565b565b6108cb838383604051806020016040528060008152506112d6565b60606000610b8383610dfc565b905060008167ffffffffffffffff811115610ba057610ba0612139565b604051908082528060200260200182016040528015610bc9578160200160208202803683370190505b50905060005b82811015610c0e57610be1858261094b565b828281518110610bf357610bf3612290565b6020908102919091010152610c07816122bc565b9050610bcf565b509392505050565b6000805b82811015610c8b57846001600160a01b03166002858584818110610c4057610c40612290565b9050602002013581548110610c5757610c57612290565b6000918252602090912001546001600160a01b031614610c7b576000915050610c91565b610c84816122bc565b9050610c1a565b50600190505b9392505050565b6000610ca360025490565b8210610d065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610684565b5090565b6005546001600160a01b03163314610d645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b6108cb60088383611cff565b60008060028381548110610d8657610d86612290565b6000918252602090912001546001600160a01b03169050806106285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610684565b60006001600160a01b038216610e675760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610684565b600254600090815b81811015610ec55760028181548110610e8a57610e8a612290565b6000918252602090912001546001600160a01b0386811691161415610eb557610eb2836122bc565b92505b610ebe816122bc565b9050610e6f565b50909392505050565b6005546001600160a01b03163314610f285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b610b5960006118a8565b6060600180546106af90612255565b60095460ff1615610f945760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e67207061757365640000000000000000000000000000000000006044820152606401610684565b6000610f9f60025490565b600754909150610faf83836122d7565b1115610ffd5760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610684565b61025861100a83836122d7565b11801561101e5750600954610100900460ff165b156110d557600b82106110735760405162461bcd60e51b815260206004820152601960248201527f4d617820697320313020706572207472616e73616374696f6e000000000000006044820152606401610684565b8160065461108191906122ef565b3410156110d05760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610684565b611165565b336000908152600a60205260409020546006906110f39084906122d7565b106111405760405162461bcd60e51b815260206004820152601860248201527f4d617820667265652069732035207065722077616c6c657400000000000000006044820152606401610684565b336000908152600a60205260408120805484929061115f9084906122d7565b90915550505b60005b828110156108cb576111833361117e83856122d7565b6118fa565b61118c816122bc565b9050611168565b6001600160a01b0382163314156111ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610684565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b838110156112cd576112bd878787878581811061127a5761127a612290565b9050602002013586868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506112d692505050565b6112c6816122bc565b905061125b565b50505050505050565b6112e03383611668565b6113465760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610684565b61135284848484611a22565b50505050565b6060611363826115b0565b6113d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610684565b60086113e083611aa0565b6040516020016113f192919061232a565b6040516020818303038152906040529050919050565b6008805461141490612255565b80601f016020809104026020016040519081016040528092919081815260200182805461144090612255565b801561148d5780601f106114625761010080835404028352916020019161148d565b820191906000526020600020905b81548152906001019060200180831161147057829003601f168201915b505050505081565b6005546001600160a01b031633146114ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b6001600160a01b0381166115545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610684565b61155d816118a8565b50565b60006001600160e01b031982166380ac58cd60e01b148061159157506001600160e01b03198216635b5e139f60e01b145b8061062857506301ffc9a760e01b6001600160e01b0319831614610628565b60025460009082108015610628575060006001600160a01b0316600283815481106115dd576115dd612290565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162f82610d70565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611673826115b0565b6116d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610684565b60006116df83610d70565b9050806001600160a01b0316846001600160a01b0316148061171a5750836001600160a01b031661170f84610732565b6001600160a01b0316145b8061174a57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176582610d70565b6001600160a01b0316146117cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610684565b6001600160a01b03821661182f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610684565b61183a6000826115fa565b816002828154811061184e5761184e612290565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166119505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610684565b611959816115b0565b156119a65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610684565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a2d848484611752565b611a3984848484611bb6565b6113525760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610684565b606081611ac45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aee5780611ad8816122bc565b9150611ae79050600a836123e7565b9150611ac8565b60008167ffffffffffffffff811115611b0957611b09612139565b6040519080825280601f01601f191660200182016040528015611b33576020820181803683370190505b5090505b841561174a57611b486001836123fb565b9150611b55600a86612412565b611b609060306122d7565b60f81b818381518110611b7557611b75612290565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611baf600a866123e7565b9450611b37565b60006001600160a01b0384163b15611cf457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bfa903390899088908890600401612426565b6020604051808303816000875af1925050508015611c35575060408051601f3d908101601f19168201909252611c3291810190612462565b60015b611cda573d808015611c63576040519150601f19603f3d011682016040523d82523d6000602084013e611c68565b606091505b508051611cd25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174a565b506001949350505050565b828054611d0b90612255565b90600052602060002090601f016020900481019282611d2d5760008555611d73565b82601f10611d465782800160ff19823516178555611d73565b82800160010185558215611d73579182015b82811115611d73578235825591602001919060010190611d58565b50610d069291505b80821115610d065760008155600101611d7b565b6001600160e01b03198116811461155d57600080fd5b600060208284031215611db757600080fd5b8135610c9181611d8f565b80358015158114611dd257600080fd5b919050565b600060208284031215611de957600080fd5b610c9182611dc2565b60005b83811015611e0d578181015183820152602001611df5565b838111156113525750506000910152565b60008151808452611e36816020860160208601611df2565b601f01601f19169290920160200192915050565b602081526000610c916020830184611e1e565b600060208284031215611e6f57600080fd5b5035919050565b80356001600160a01b0381168114611dd257600080fd5b60008060408385031215611ea057600080fd5b611ea983611e76565b946020939093013593505050565b600080600060608486031215611ecc57600080fd5b611ed584611e76565b9250611ee360208501611e76565b9150604084013590509250925092565b600060208284031215611f0557600080fd5b610c9182611e76565b6020808252825182820181905260009190848201906040850190845b81811015611f4657835183529284019291840191600101611f2a565b50909695505050505050565b60008083601f840112611f6457600080fd5b50813567ffffffffffffffff811115611f7c57600080fd5b6020830191508360208260051b8501011115611f9757600080fd5b9250929050565b600080600060408486031215611fb357600080fd5b611fbc84611e76565b9250602084013567ffffffffffffffff811115611fd857600080fd5b611fe486828701611f52565b9497909650939450505050565b60008083601f84011261200357600080fd5b50813567ffffffffffffffff81111561201b57600080fd5b602083019150836020828501011115611f9757600080fd5b6000806020838503121561204657600080fd5b823567ffffffffffffffff81111561205d57600080fd5b61206985828601611ff1565b90969095509350505050565b6000806040838503121561208857600080fd5b61209183611e76565b915061209f60208401611dc2565b90509250929050565b600080600080600080608087890312156120c157600080fd5b6120ca87611e76565b95506120d860208801611e76565b9450604087013567ffffffffffffffff808211156120f557600080fd5b6121018a838b01611f52565b9096509450606089013591508082111561211a57600080fd5b5061212789828a01611ff1565b979a9699509497509295939492505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561216557600080fd5b61216e85611e76565b935061217c60208601611e76565b925060408501359150606085013567ffffffffffffffff808211156121a057600080fd5b818701915087601f8301126121b457600080fd5b8135818111156121c6576121c6612139565b604051601f8201601f19908116603f011681019083821181831017156121ee576121ee612139565b816040528281528a602084870101111561220757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223e57600080fd5b61224783611e76565b915061209f60208401611e76565b600181811c9082168061226957607f821691505b6020821081141561228a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156122d0576122d06122a6565b5060010190565b600082198211156122ea576122ea6122a6565b500190565b6000816000190483118215151615612309576123096122a6565b500290565b60008151612320818560208601611df2565b9290920192915050565b600080845481600182811c91508083168061234657607f831692505b602080841082141561236657634e487b7160e01b86526022600452602486fd5b81801561237a576001811461238b576123b8565b60ff198616895284890196506123b8565b60008b81526020902060005b868110156123b05781548b820152908501908301612397565b505084890196505b5050505050506123c8818561230e565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b6000826123f6576123f66123d1565b500490565b60008282101561240d5761240d6122a6565b500390565b600082612421576124216123d1565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124586080830184611e1e565b9695505050505050565b60006020828403121561247457600080fd5b8151610c9181611d8f56fea2646970667358221220b42576c27d2a3266ed0237879b3eb37f9937ff9278b1f490fa4ce2954145fb9864736f6c634300080c0033697066733a2f2f516d5a4567477037585879394a78613362333559345132707a516b4574347759444a367a4d6657637363514473383f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806355f804b31161010d578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde14610545578063c87b56dd14610565578063cfc86f7b14610585578063e985e9c51461059a578063f2fde38b146105e357600080fd5b8063a0712d68146104d3578063a1fc6705146104e6578063a22cb46514610505578063b534a5c41461052557600080fd5b8063715018a6116100dc578063715018a6146104755780638d859f3e1461048a5780638da5cb5b146104a057806395d89b41146104be57600080fd5b806355f804b3146103fb5780635c975abb1461041b5780636352211e1461043557806370a082311461045557600080fd5b806332cb6b0c11610185578063438b630011610154578063438b63001461038e5780634c8fe526146102c45780634d44660c146103bb5780634f6ccce7146103db57600080fd5b806332cb6b0c146103235780633b13be40146103395780633ccfd60b1461035957806342842e0e1461036e57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632f745c591461030357600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611da5565b610603565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611dd7565b61062e565b005b34801561025657600080fd5b5061025f6106a0565b60405161021f9190611e4a565b34801561027857600080fd5b5061028c610287366004611e5d565b610732565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611e8d565b6107ba565b3480156102d057600080fd5b506002545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611eb7565b6108d0565b34801561030f57600080fd5b506102d561031e366004611e8d565b61094b565b34801561032f57600080fd5b506102d560075481565b34801561034557600080fd5b50610248610354366004611dd7565b610a17565b34801561036557600080fd5b50610248610a8b565b34801561037a57600080fd5b50610248610389366004611eb7565b610b5b565b34801561039a57600080fd5b506103ae6103a9366004611ef3565b610b76565b60405161021f9190611f0e565b3480156103c757600080fd5b506102136103d6366004611f9e565b610c16565b3480156103e757600080fd5b506102d56103f6366004611e5d565b610c98565b34801561040757600080fd5b50610248610416366004612033565b610d0a565b34801561042757600080fd5b506009546102139060ff1681565b34801561044157600080fd5b5061028c610450366004611e5d565b610d70565b34801561046157600080fd5b506102d5610470366004611ef3565b610dfc565b34801561048157600080fd5b50610248610ece565b34801561049657600080fd5b506102d560065481565b3480156104ac57600080fd5b506005546001600160a01b031661028c565b3480156104ca57600080fd5b5061025f610f32565b6102486104e1366004611e5d565b610f41565b3480156104f257600080fd5b5060095461021390610100900460ff1681565b34801561051157600080fd5b50610248610520366004612075565b611193565b34801561053157600080fd5b506102486105403660046120a8565b611258565b34801561055157600080fd5b5061024861056036600461214f565b6112d6565b34801561057157600080fd5b5061025f610580366004611e5d565b611358565b34801561059157600080fd5b5061025f611407565b3480156105a657600080fd5b506102136105b536600461222b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156105ef57600080fd5b506102486105fe366004611ef3565b611495565b60006001600160e01b0319821663780e9d6360e01b1480610628575061062882611560565b92915050565b6005546001600160a01b0316331461068d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6009805460ff1916911515919091179055565b6060600080546106af90612255565b80601f01602080910402602001604051908101604052809291908181526020018280546106db90612255565b80156107285780601f106106fd57610100808354040283529160200191610728565b820191906000526020600020905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b600061073d826115b0565b61079e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610684565b506000908152600360205260409020546001600160a01b031690565b60006107c582610d70565b9050806001600160a01b0316836001600160a01b031614156108335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610684565b336001600160a01b038216148061084f575061084f81336105b5565b6108c15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610684565b6108cb83836115fa565b505050565b6108da3382611668565b6109405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610684565b6108cb838383611752565b60008060005b6002548110156109ba576002818154811061096e5761096e612290565b6000918252602090912001546001600160a01b03868116911614156109aa578382141561099e5791506106289050565b6109a7826122bc565b91505b6109b3816122bc565b9050610951565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610684565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b600980549115156101000261ff0019909216919091179055565b6005546001600160a01b03163314610ae55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610b595760405162461bcd60e51b815260206004820152601560248201527f576974686472617720756e7375636365737366756c00000000000000000000006044820152606401610684565b565b6108cb838383604051806020016040528060008152506112d6565b60606000610b8383610dfc565b905060008167ffffffffffffffff811115610ba057610ba0612139565b604051908082528060200260200182016040528015610bc9578160200160208202803683370190505b50905060005b82811015610c0e57610be1858261094b565b828281518110610bf357610bf3612290565b6020908102919091010152610c07816122bc565b9050610bcf565b509392505050565b6000805b82811015610c8b57846001600160a01b03166002858584818110610c4057610c40612290565b9050602002013581548110610c5757610c57612290565b6000918252602090912001546001600160a01b031614610c7b576000915050610c91565b610c84816122bc565b9050610c1a565b50600190505b9392505050565b6000610ca360025490565b8210610d065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610684565b5090565b6005546001600160a01b03163314610d645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b6108cb60088383611cff565b60008060028381548110610d8657610d86612290565b6000918252602090912001546001600160a01b03169050806106285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610684565b60006001600160a01b038216610e675760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610684565b600254600090815b81811015610ec55760028181548110610e8a57610e8a612290565b6000918252602090912001546001600160a01b0386811691161415610eb557610eb2836122bc565b92505b610ebe816122bc565b9050610e6f565b50909392505050565b6005546001600160a01b03163314610f285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b610b5960006118a8565b6060600180546106af90612255565b60095460ff1615610f945760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e67207061757365640000000000000000000000000000000000006044820152606401610684565b6000610f9f60025490565b600754909150610faf83836122d7565b1115610ffd5760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610684565b61025861100a83836122d7565b11801561101e5750600954610100900460ff165b156110d557600b82106110735760405162461bcd60e51b815260206004820152601960248201527f4d617820697320313020706572207472616e73616374696f6e000000000000006044820152606401610684565b8160065461108191906122ef565b3410156110d05760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610684565b611165565b336000908152600a60205260409020546006906110f39084906122d7565b106111405760405162461bcd60e51b815260206004820152601860248201527f4d617820667265652069732035207065722077616c6c657400000000000000006044820152606401610684565b336000908152600a60205260408120805484929061115f9084906122d7565b90915550505b60005b828110156108cb576111833361117e83856122d7565b6118fa565b61118c816122bc565b9050611168565b6001600160a01b0382163314156111ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610684565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b838110156112cd576112bd878787878581811061127a5761127a612290565b9050602002013586868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506112d692505050565b6112c6816122bc565b905061125b565b50505050505050565b6112e03383611668565b6113465760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610684565b61135284848484611a22565b50505050565b6060611363826115b0565b6113d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610684565b60086113e083611aa0565b6040516020016113f192919061232a565b6040516020818303038152906040529050919050565b6008805461141490612255565b80601f016020809104026020016040519081016040528092919081815260200182805461144090612255565b801561148d5780601f106114625761010080835404028352916020019161148d565b820191906000526020600020905b81548152906001019060200180831161147057829003601f168201915b505050505081565b6005546001600160a01b031633146114ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610684565b6001600160a01b0381166115545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610684565b61155d816118a8565b50565b60006001600160e01b031982166380ac58cd60e01b148061159157506001600160e01b03198216635b5e139f60e01b145b8061062857506301ffc9a760e01b6001600160e01b0319831614610628565b60025460009082108015610628575060006001600160a01b0316600283815481106115dd576115dd612290565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162f82610d70565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611673826115b0565b6116d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610684565b60006116df83610d70565b9050806001600160a01b0316846001600160a01b0316148061171a5750836001600160a01b031661170f84610732565b6001600160a01b0316145b8061174a57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176582610d70565b6001600160a01b0316146117cd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610684565b6001600160a01b03821661182f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610684565b61183a6000826115fa565b816002828154811061184e5761184e612290565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166119505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610684565b611959816115b0565b156119a65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610684565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a2d848484611752565b611a3984848484611bb6565b6113525760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610684565b606081611ac45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aee5780611ad8816122bc565b9150611ae79050600a836123e7565b9150611ac8565b60008167ffffffffffffffff811115611b0957611b09612139565b6040519080825280601f01601f191660200182016040528015611b33576020820181803683370190505b5090505b841561174a57611b486001836123fb565b9150611b55600a86612412565b611b609060306122d7565b60f81b818381518110611b7557611b75612290565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611baf600a866123e7565b9450611b37565b60006001600160a01b0384163b15611cf457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bfa903390899088908890600401612426565b6020604051808303816000875af1925050508015611c35575060408051601f3d908101601f19168201909252611c3291810190612462565b60015b611cda573d808015611c63576040519150601f19603f3d011682016040523d82523d6000602084013e611c68565b606091505b508051611cd25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061174a565b506001949350505050565b828054611d0b90612255565b90600052602060002090601f016020900481019282611d2d5760008555611d73565b82601f10611d465782800160ff19823516178555611d73565b82800160010185558215611d73579182015b82811115611d73578235825591602001919060010190611d58565b50610d069291505b80821115610d065760008155600101611d7b565b6001600160e01b03198116811461155d57600080fd5b600060208284031215611db757600080fd5b8135610c9181611d8f565b80358015158114611dd257600080fd5b919050565b600060208284031215611de957600080fd5b610c9182611dc2565b60005b83811015611e0d578181015183820152602001611df5565b838111156113525750506000910152565b60008151808452611e36816020860160208601611df2565b601f01601f19169290920160200192915050565b602081526000610c916020830184611e1e565b600060208284031215611e6f57600080fd5b5035919050565b80356001600160a01b0381168114611dd257600080fd5b60008060408385031215611ea057600080fd5b611ea983611e76565b946020939093013593505050565b600080600060608486031215611ecc57600080fd5b611ed584611e76565b9250611ee360208501611e76565b9150604084013590509250925092565b600060208284031215611f0557600080fd5b610c9182611e76565b6020808252825182820181905260009190848201906040850190845b81811015611f4657835183529284019291840191600101611f2a565b50909695505050505050565b60008083601f840112611f6457600080fd5b50813567ffffffffffffffff811115611f7c57600080fd5b6020830191508360208260051b8501011115611f9757600080fd5b9250929050565b600080600060408486031215611fb357600080fd5b611fbc84611e76565b9250602084013567ffffffffffffffff811115611fd857600080fd5b611fe486828701611f52565b9497909650939450505050565b60008083601f84011261200357600080fd5b50813567ffffffffffffffff81111561201b57600080fd5b602083019150836020828501011115611f9757600080fd5b6000806020838503121561204657600080fd5b823567ffffffffffffffff81111561205d57600080fd5b61206985828601611ff1565b90969095509350505050565b6000806040838503121561208857600080fd5b61209183611e76565b915061209f60208401611dc2565b90509250929050565b600080600080600080608087890312156120c157600080fd5b6120ca87611e76565b95506120d860208801611e76565b9450604087013567ffffffffffffffff808211156120f557600080fd5b6121018a838b01611f52565b9096509450606089013591508082111561211a57600080fd5b5061212789828a01611ff1565b979a9699509497509295939492505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561216557600080fd5b61216e85611e76565b935061217c60208601611e76565b925060408501359150606085013567ffffffffffffffff808211156121a057600080fd5b818701915087601f8301126121b457600080fd5b8135818111156121c6576121c6612139565b604051601f8201601f19908116603f011681019083821181831017156121ee576121ee612139565b816040528281528a602084870101111561220757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223e57600080fd5b61224783611e76565b915061209f60208401611e76565b600181811c9082168061226957607f821691505b6020821081141561228a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156122d0576122d06122a6565b5060010190565b600082198211156122ea576122ea6122a6565b500190565b6000816000190483118215151615612309576123096122a6565b500290565b60008151612320818560208601611df2565b9290920192915050565b600080845481600182811c91508083168061234657607f831692505b602080841082141561236657634e487b7160e01b86526022600452602486fd5b81801561237a576001811461238b576123b8565b60ff198616895284890196506123b8565b60008b81526020902060005b868110156123b05781548b820152908501908301612397565b505084890196505b5050505050506123c8818561230e565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b6000826123f6576123f66123d1565b500490565b60008282101561240d5761240d6122a6565b500390565b600082612421576124216123d1565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124586080830184611e1e565b9695505050505050565b60006020828403121561247457600080fd5b8151610c9181611d8f56fea2646970667358221220b42576c27d2a3266ed0237879b3eb37f9937ff9278b1f490fa4ce2954145fb9864736f6c634300080c0033

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.