ETH Price: $2,597.13 (-0.74%)

Token

Dots (DT)
 

Overview

Max Total Supply

688 DT

Holders

343

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 DT
0x18580564edc3501dd13b57df9f17981e0e9ac54a
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:
Dots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Dots.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.4;
pragma abicoder v2;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import './ERC721B.sol';
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

  contract Dots is ERC721B, Ownable {
    using Strings for uint256;
    string public baseURI = "";
    bool public isSaleActive = false;
    mapping(address => uint256) private _mintClaimed;
    uint256 public constant MAX_TOKENS = 6666;
    uint256 public constant FREE_MINTS = 666;
    uint256 public tokenPrice = 5000000000000000;
    uint256 public constant maxTokenPurchase = 2;

    using SafeMath for uint256;
    using Strings for uint256;
    uint256 public devReserve = 5;
    event NFTMINTED(uint256 tokenId, address owner);

    constructor() ERC721B("Dots", "DT") {}
     
     function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
      }

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


      function _tokenPrice() internal view virtual returns (uint256) {
        return tokenPrice;
      }

       function setPrice(uint256 _newPrice) public onlyOwner {
        tokenPrice = _newPrice;
      }

    function activateSale() external onlyOwner {
        isSaleActive = !isSaleActive;
      }

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }
    
    function Withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{ value: address(this).balance }("");
    require(os);
      }

    function reserveTokens(address dev, uint256 reserveAmount)
    external
    onlyOwner
      {
        require(
        reserveAmount > 0 && reserveAmount <= devReserve,
          "Dev reserve empty"
        );
        totalSupply().add(1);
        _mint(dev, reserveAmount);
      }
    function mintNFT(address to, uint256 quantity) external payable {
        require(isSaleActive, "Sale not Active");
        require(
          quantity > 0 && quantity <= maxTokenPurchase,
          "Can Mint only 2 per Wallet"
        );
        require(
          totalSupply().add(quantity) <= MAX_TOKENS,
          "Mint is going over max per transaction"
        );
        require(
          _mintClaimed[msg.sender].add(quantity) <= maxTokenPurchase,
          "Only 2 Mints per Wallet"
        );
        if(totalSupply()<=FREE_MINTS){
           _mintClaimed[msg.sender] += quantity;
           _mint(to, quantity);
        }else{
          require(
          msg.value >= tokenPrice.mul(quantity),
          "Invalid amount sent"
        );
        _mintClaimed[msg.sender] += quantity;
        _mint(to, quantity);
        }
    }
     function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
      {
        require(
          _exists(tokenId),
          "ERC721Metadata: URI query for nonexistent token"
        );
    
        string memory currentBaseURI = _baseURI();
    
        return
          bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
            : ""; 
            
            
      }
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : ERC721B.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error UnableGetTokenOwnerByIndex();
error URIQueryForNonexistentToken();

/**
 * Updated, minimalist and gas efficient version of OpenZeppelins ERC721 contract.
 * Includes the Metadata and  Enumerable extension.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 * Does not support burning tokens
 *
 * @author beskay0x
 * Credits: chiru-labs, solmate, transmissions11, nftchance, squeebo_nft and others
 */

abstract contract ERC721B {
    /*///////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 indexed id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*///////////////////////////////////////////////////////////////
                          METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 tokenId) public view virtual returns (string memory);

    /*///////////////////////////////////////////////////////////////
                          ERC721 STORAGE
    //////////////////////////////////////////////////////////////*/

    // Array which maps token ID to address (index is tokenID)
    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;

    /*///////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
    }

    /*///////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x780e9d63 || // ERC165 Interface ID for ERC721Enumerable
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*///////////////////////////////////////////////////////////////
                       ERC721ENUMERABLE LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _owners.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * Dont call this function on chain from another smart contract, since it can become quite expensive
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256 tokenId) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();

        uint256 count;
        uint256 qty = _owners.length;
        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (tokenId; tokenId < qty; tokenId++) {
                if (owner == ownerOf(tokenId)) {
                    if (count == index) return tokenId;
                    else count++;
                }
            }
        }

        revert UnableGetTokenOwnerByIndex();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /*///////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @dev Iterates through _owners array, returns balance of address
     * It is not recommended to call this function from another smart contract
     * as it can become quite expensive -- call this function off chain instead.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        uint256 count;
        uint256 qty = _owners.length;
        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (uint256 i; i < qty; i++) {
                if (owner == ownerOf(i)) {
                    count++;
                }
            }
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (tokenId; ; tokenId++) {
                if (_owners[tokenId] != address(0)) {
                    return _owners[tokenId];
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        address owner = ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (msg.sender != owner && !isApprovedForAll(owner, msg.sender)) revert ApprovalCallerNotOwnerNorApproved();

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        if (operator == msg.sender) revert ApproveToCaller();

        _operatorApprovals[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();
        if (ownerOf(tokenId) != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        bool isApprovedOrOwner = (msg.sender == from ||
            msg.sender == getApproved(tokenId) ||
            isApprovedForAll(from, msg.sender));
        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        // delete token approvals from previous owner
        delete _tokenApprovals[tokenId];
        _owners[tokenId] = to;

        // if token ID below transferred one isnt set, set it to previous owner
        // if tokenid is zero, skip this to prevent underflow
        if (tokenId > 0 && _owners[tokenId - 1] == address(0)) {
            _owners[tokenId - 1] = from;
        }

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes memory data
    ) public virtual {
        transferFrom(from, to, id);

        if (!_checkOnERC721Received(from, to, id, data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @dev Returns whether `tokenId` exists.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length;
    }

    /**
     * @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.code.length == 0) return true;

        try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer();

            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    /*///////////////////////////////////////////////////////////////
                       INTERNAL MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @dev check if contract confirms token transfer, if not - reverts
     * unlike the standard ERC721 implementation this is only called once per mint,
     * no matter how many tokens get minted, since it is useless to check this
     * requirement several times -- if the contract confirms one token,
     * it will confirm all additional ones too.
     * This saves us around 5k gas per additional mint
     */
    function _safeMint(address to, uint256 qty) internal virtual {
        _safeMint(to, qty, '');
    }

    function _safeMint(
        address to,
        uint256 qty,
        bytes memory data
    ) internal virtual {
        _mint(to, qty);

        if (!_checkOnERC721Received(address(0), to, _owners.length - 1, data))
            revert TransferToNonERC721ReceiverImplementer();
    }

    function _mint(address to, uint256 qty) internal virtual {
        if (to == address(0)) revert MintToZeroAddress();
        if (qty == 0) revert MintZeroQuantity();

        uint256 _currentIndex = _owners.length;

        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (uint256 i; i < qty - 1; i++) {
                _owners.push();
                emit Transfer(address(0), to, _currentIndex + i);
            }
        }

        // set last index to receiver
        _owners.push(to);
        emit Transfer(address(0), to, _currentIndex + (qty - 1));
    }
}

File 4 of 7 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 5 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 6 of 7 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 7 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"inputs":[],"name":"UnableGetTokenOwnerByIndex","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NFTMINTED","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","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":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintNFT","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":"dev","type":"address"},{"internalType":"uint256","name":"reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","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":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600690805190602001906200002b929190620001f9565b506000600760006101000a81548160ff0219169083151502179055506611c37937e080006009556005600a553480156200006457600080fd5b506040518060400160405280600481526020017f446f7473000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44540000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e9929190620001f9565b50806001908051906020019062000102929190620001f9565b50505062000125620001196200012b60201b60201c565b6200013360201b60201c565b6200030e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020790620002a9565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b60006002820490506001821680620002c257607f821691505b60208210811415620002d957620002d8620002df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6132b3806200031e6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146106bd578063e985e9c5146106fa578063f2fde38b14610737578063f47c84c514610760578063fcd2a4271461078b576101ee565b806395d89b4114610629578063a22cb46514610654578063b88d4fde1461067d578063c721f08d146106a6576101ee565b806378cf19e9116100dc57806378cf19e9146105815780637ff9b596146105aa5780638da5cb5b146105d557806391b7f5ed14610600576101ee565b80636c0360eb146104d757806370a0823114610502578063715018a61461053f578063764267b614610556576101ee565b80633c168eab1161018557806355f804b31161015457806355f804b31461043c578063564566a81461046557806357ea89b6146104905780636352211e1461049a576101ee565b80633c168eab1461037d57806342842e0e146103995780634f558e79146103c25780634f6ccce7146103ff576101ee565b806309aa3dcf116101c157806309aa3dcf146102c157806318160ddd146102ec57806323b872dd146103175780632f745c5914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612641565b6107b6565b6040516102279190612a0d565b60405180910390f35b34801561023c57600080fd5b50610245610878565b6040516102529190612a28565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906126e4565b610906565b60405161028f91906129a6565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612601565b610982565b005b3480156102cd57600080fd5b506102d6610b21565b6040516102e39190612b6a565b60405180910390f35b3480156102f857600080fd5b50610301610b26565b60405161030e9190612b6a565b60405180910390f35b34801561032357600080fd5b5061033e600480360381019061033991906124eb565b610b33565b005b34801561034c57600080fd5b5061036760048036038101906103629190612601565b610ee8565b6040516103749190612b6a565b60405180910390f35b61039760048036038101906103929190612601565b610fd8565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906124eb565b61129b565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906126e4565b6112bb565b6040516103f69190612a0d565b60405180910390f35b34801561040b57600080fd5b50610426600480360381019061042191906126e4565b6112cd565b6040516104339190612b6a565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e919061269b565b611317565b005b34801561047157600080fd5b5061047a611339565b6040516104879190612a0d565b60405180910390f35b61049861134c565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906126e4565b6113d4565b6040516104ce91906129a6565b60405180910390f35b3480156104e357600080fd5b506104ec6114e0565b6040516104f99190612a28565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061247e565b61156e565b6040516105369190612b6a565b60405180910390f35b34801561054b57600080fd5b50610554611649565b005b34801561056257600080fd5b5061056b61165d565b6040516105789190612b6a565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612601565b611663565b005b3480156105b657600080fd5b506105bf6116e6565b6040516105cc9190612b6a565b60405180910390f35b3480156105e157600080fd5b506105ea6116ec565b6040516105f791906129a6565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906126e4565b611716565b005b34801561063557600080fd5b5061063e611728565b60405161064b9190612a28565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906125c1565b6117b6565b005b34801561068957600080fd5b506106a4600480360381019061069f919061253e565b611919565b005b3480156106b257600080fd5b506106bb61196c565b005b3480156106c957600080fd5b506106e460048036038101906106df91906126e4565b6119a0565b6040516106f19190612a28565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906124ab565b611a47565b60405161072e9190612a0d565b60405180910390f35b34801561074357600080fd5b5061075e6004803603810190610759919061247e565b611adb565b005b34801561076c57600080fd5b50610775611b5f565b6040516107829190612b6a565b60405180910390f35b34801561079757600080fd5b506107a0611b65565b6040516107ad9190612b6a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610841575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108715750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461088590612e25565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612e25565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182611b6b565b610947576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d826113d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610a385750610a368133611a47565b155b15610a6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b6000600280549050905090565b610b3c81611b6b565b610b72576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610b92826113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c46576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610cb55750610c8682610906565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610cc65750610cc58433611a47565b5b905080610cff576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610d4a57610d49612f8f565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082118015610e185750600073ffffffffffffffffffffffffffffffffffffffff166002600184610dc49190612d3b565b81548110610dd557610dd4612f8f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b15610e8757836002600184610e2d9190612d3b565b81548110610e3e57610e3d612f8f565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000610ef38361156e565b8210610f2b576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b80831015610fa057610f48836113d4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f935783821415610f8a575050610fd2565b81806001019250505b8280600101935050610f37565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b600760009054906101000a900460ff16611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90612aea565b60405180910390fd5b600081118015611038575060028111155b611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90612a4a565b60405180910390fd5b611a0a61109482611086610b26565b611b7c90919063ffffffff16565b11156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612b0a565b60405180910390fd5b600261112982600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7c90919063ffffffff16565b111561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190612b2a565b60405180910390fd5b61029a611175610b26565b116111df5780600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c99190612c5a565b925050819055506111da8282611b92565b611297565b6111f481600954611dbb90919063ffffffff16565b341015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90612a8a565b60405180910390fd5b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112859190612c5a565b925050819055506112968282611b92565b5b5050565b6112b683838360405180602001604052806000815250611919565b505050565b60006112c682611b6b565b9050919050565b60006112d7610b26565b821061130f576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b61131f611dd1565b8060069080519060200190611335929190612292565b5050565b600760009054906101000a900460ff1681565b611354611dd1565b600061135e6116ec565b73ffffffffffffffffffffffffffffffffffffffff164760405161138190612991565b60006040518083038185875af1925050503d80600081146113be576040519150601f19603f3d011682016040523d82523d6000602084013e6113c3565b606091505b50509050806113d157600080fd5b50565b60006113df82611b6b565b611415576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff166002838154811061144257611441612f8f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ce576002828154811061149c5761149b612f8f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506114db565b8180600101925050611416565b919050565b600680546114ed90612e25565b80601f016020809104026020016040519081016040528092919081815260200182805461151990612e25565b80156115665780601f1061153b57610100808354040283529160200191611566565b820191906000526020600020905b81548152906001019060200180831161154957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b8181101561163e576115f5816113d4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116315782806001019350505b80806001019150506115e4565b508192505050919050565b611651611dd1565b61165b6000611e4f565b565b61029a81565b61166b611dd1565b60008111801561167d5750600a548111155b6116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390612b4a565b60405180910390fd5b6116d760016116c9610b26565b611b7c90919063ffffffff16565b506116e28282611b92565b5050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61171e611dd1565b8060098190555050565b6001805461173590612e25565b80601f016020809104026020016040519081016040528092919081815260200182805461176190612e25565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190d9190612a0d565b60405180910390a35050565b611924848484610b33565b61193084848484611f15565b611966576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611974611dd1565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b60606119ab82611b6b565b6119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190612aca565b60405180910390fd5b60006119f4612097565b90506000815111611a145760405180602001604052806000815250611a3f565b80611a1e84612129565b604051602001611a2f929190612962565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae3611dd1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a90612a6a565b60405180910390fd5b611b5c81611e4f565b50565b611a0a81565b600a5481565b600060028054905082109050919050565b60008183611b8a9190612c5a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611c34576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611cdf576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611c41565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182611d509190612d3b565b81611d5b9190612c5a565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611dc99190612ce1565b905092915050565b611dd961228a565b73ffffffffffffffffffffffffffffffffffffffff16611df76116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490612aaa565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b1415611f3f576001905061208f565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b8152600401611f7e94939291906129c1565b602060405180830381600087803b158015611f9857600080fd5b505af1925050508015611fc957506040513d601f19601f82011682018060405250810190611fc6919061266e565b60015b612043573d8060008114611ff9576040519150601f19603f3d011682016040523d82523d6000602084013e611ffe565b606091505b5060008151141561203b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6060600680546120a690612e25565b80601f01602080910402602001604051908101604052809291908181526020018280546120d290612e25565b801561211f5780601f106120f45761010080835404028352916020019161211f565b820191906000526020600020905b81548152906001019060200180831161210257829003601f168201915b5050505050905090565b60606000821415612171576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612285565b600082905060005b600082146121a357808061218c90612e88565b915050600a8261219c9190612cb0565b9150612179565b60008167ffffffffffffffff8111156121bf576121be612fbe565b5b6040519080825280601f01601f1916602001820160405280156121f15781602001600182028036833780820191505090505b5090505b6000851461227e5760018261220a9190612d3b565b9150600a856122199190612ed1565b60306122259190612c5a565b60f81b81838151811061223b5761223a612f8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122779190612cb0565b94506121f5565b8093505050505b919050565b600033905090565b82805461229e90612e25565b90600052602060002090601f0160209004810192826122c05760008555612307565b82601f106122d957805160ff1916838001178555612307565b82800160010185558215612307579182015b828111156123065782518255916020019190600101906122eb565b5b5090506123149190612318565b5090565b5b80821115612331576000816000905550600101612319565b5090565b600061234861234384612baa565b612b85565b90508281526020810184848401111561236457612363612ff2565b5b61236f848285612de3565b509392505050565b600061238a61238584612bdb565b612b85565b9050828152602081018484840111156123a6576123a5612ff2565b5b6123b1848285612de3565b509392505050565b6000813590506123c881613221565b92915050565b6000813590506123dd81613238565b92915050565b6000813590506123f28161324f565b92915050565b6000815190506124078161324f565b92915050565b600082601f83011261242257612421612fed565b5b8135612432848260208601612335565b91505092915050565b600082601f8301126124505761244f612fed565b5b8135612460848260208601612377565b91505092915050565b60008135905061247881613266565b92915050565b60006020828403121561249457612493612ffc565b5b60006124a2848285016123b9565b91505092915050565b600080604083850312156124c2576124c1612ffc565b5b60006124d0858286016123b9565b92505060206124e1858286016123b9565b9150509250929050565b60008060006060848603121561250457612503612ffc565b5b6000612512868287016123b9565b9350506020612523868287016123b9565b925050604061253486828701612469565b9150509250925092565b6000806000806080858703121561255857612557612ffc565b5b6000612566878288016123b9565b9450506020612577878288016123b9565b935050604061258887828801612469565b925050606085013567ffffffffffffffff8111156125a9576125a8612ff7565b5b6125b58782880161240d565b91505092959194509250565b600080604083850312156125d8576125d7612ffc565b5b60006125e6858286016123b9565b92505060206125f7858286016123ce565b9150509250929050565b6000806040838503121561261857612617612ffc565b5b6000612626858286016123b9565b925050602061263785828601612469565b9150509250929050565b60006020828403121561265757612656612ffc565b5b6000612665848285016123e3565b91505092915050565b60006020828403121561268457612683612ffc565b5b6000612692848285016123f8565b91505092915050565b6000602082840312156126b1576126b0612ffc565b5b600082013567ffffffffffffffff8111156126cf576126ce612ff7565b5b6126db8482850161243b565b91505092915050565b6000602082840312156126fa576126f9612ffc565b5b600061270884828501612469565b91505092915050565b61271a81612d6f565b82525050565b61272981612d81565b82525050565b600061273a82612c0c565b6127448185612c22565b9350612754818560208601612df2565b61275d81613001565b840191505092915050565b600061277382612c17565b61277d8185612c3e565b935061278d818560208601612df2565b61279681613001565b840191505092915050565b60006127ac82612c17565b6127b68185612c4f565b93506127c6818560208601612df2565b80840191505092915050565b60006127df601a83612c3e565b91506127ea82613012565b602082019050919050565b6000612802602683612c3e565b915061280d8261303b565b604082019050919050565b6000612825601383612c3e565b91506128308261308a565b602082019050919050565b6000612848600583612c4f565b9150612853826130b3565b600582019050919050565b600061286b602083612c3e565b9150612876826130dc565b602082019050919050565b600061288e602f83612c3e565b915061289982613105565b604082019050919050565b60006128b1600f83612c3e565b91506128bc82613154565b602082019050919050565b60006128d4600083612c33565b91506128df8261317d565b600082019050919050565b60006128f7602683612c3e565b915061290282613180565b604082019050919050565b600061291a601783612c3e565b9150612925826131cf565b602082019050919050565b600061293d601183612c3e565b9150612948826131f8565b602082019050919050565b61295c81612dd9565b82525050565b600061296e82856127a1565b915061297a82846127a1565b91506129858261283b565b91508190509392505050565b600061299c826128c7565b9150819050919050565b60006020820190506129bb6000830184612711565b92915050565b60006080820190506129d66000830187612711565b6129e36020830186612711565b6129f06040830185612953565b8181036060830152612a02818461272f565b905095945050505050565b6000602082019050612a226000830184612720565b92915050565b60006020820190508181036000830152612a428184612768565b905092915050565b60006020820190508181036000830152612a63816127d2565b9050919050565b60006020820190508181036000830152612a83816127f5565b9050919050565b60006020820190508181036000830152612aa381612818565b9050919050565b60006020820190508181036000830152612ac38161285e565b9050919050565b60006020820190508181036000830152612ae381612881565b9050919050565b60006020820190508181036000830152612b03816128a4565b9050919050565b60006020820190508181036000830152612b23816128ea565b9050919050565b60006020820190508181036000830152612b438161290d565b9050919050565b60006020820190508181036000830152612b6381612930565b9050919050565b6000602082019050612b7f6000830184612953565b92915050565b6000612b8f612ba0565b9050612b9b8282612e57565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc557612bc4612fbe565b5b612bce82613001565b9050602081019050919050565b600067ffffffffffffffff821115612bf657612bf5612fbe565b5b612bff82613001565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6582612dd9565b9150612c7083612dd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ca557612ca4612f02565b5b828201905092915050565b6000612cbb82612dd9565b9150612cc683612dd9565b925082612cd657612cd5612f31565b5b828204905092915050565b6000612cec82612dd9565b9150612cf783612dd9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3057612d2f612f02565b5b828202905092915050565b6000612d4682612dd9565b9150612d5183612dd9565b925082821015612d6457612d63612f02565b5b828203905092915050565b6000612d7a82612db9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e10578082015181840152602081019050612df5565b83811115612e1f576000848401525b50505050565b60006002820490506001821680612e3d57607f821691505b60208210811415612e5157612e50612f60565b5b50919050565b612e6082613001565b810181811067ffffffffffffffff82111715612e7f57612e7e612fbe565b5b80604052505050565b6000612e9382612dd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ec657612ec5612f02565b5b600182019050919050565b6000612edc82612dd9565b9150612ee783612dd9565b925082612ef757612ef6612f31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e204d696e74206f6e6c792032207065722057616c6c6574000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e742073656e7400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4d696e7420697320676f696e67206f766572206d617820706572207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792032204d696e7473207065722057616c6c6574000000000000000000600082015250565b7f446576207265736572766520656d707479000000000000000000000000000000600082015250565b61322a81612d6f565b811461323557600080fd5b50565b61324181612d81565b811461324c57600080fd5b50565b61325881612d8d565b811461326357600080fd5b50565b61326f81612dd9565b811461327a57600080fd5b5056fea2646970667358221220bdd3be4883a0ca1fbe2307a52ddfc569e83b6e3a0b3d8b6951cbcb518982c39d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146106bd578063e985e9c5146106fa578063f2fde38b14610737578063f47c84c514610760578063fcd2a4271461078b576101ee565b806395d89b4114610629578063a22cb46514610654578063b88d4fde1461067d578063c721f08d146106a6576101ee565b806378cf19e9116100dc57806378cf19e9146105815780637ff9b596146105aa5780638da5cb5b146105d557806391b7f5ed14610600576101ee565b80636c0360eb146104d757806370a0823114610502578063715018a61461053f578063764267b614610556576101ee565b80633c168eab1161018557806355f804b31161015457806355f804b31461043c578063564566a81461046557806357ea89b6146104905780636352211e1461049a576101ee565b80633c168eab1461037d57806342842e0e146103995780634f558e79146103c25780634f6ccce7146103ff576101ee565b806309aa3dcf116101c157806309aa3dcf146102c157806318160ddd146102ec57806323b872dd146103175780632f745c5914610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612641565b6107b6565b6040516102279190612a0d565b60405180910390f35b34801561023c57600080fd5b50610245610878565b6040516102529190612a28565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906126e4565b610906565b60405161028f91906129a6565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612601565b610982565b005b3480156102cd57600080fd5b506102d6610b21565b6040516102e39190612b6a565b60405180910390f35b3480156102f857600080fd5b50610301610b26565b60405161030e9190612b6a565b60405180910390f35b34801561032357600080fd5b5061033e600480360381019061033991906124eb565b610b33565b005b34801561034c57600080fd5b5061036760048036038101906103629190612601565b610ee8565b6040516103749190612b6a565b60405180910390f35b61039760048036038101906103929190612601565b610fd8565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906124eb565b61129b565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906126e4565b6112bb565b6040516103f69190612a0d565b60405180910390f35b34801561040b57600080fd5b50610426600480360381019061042191906126e4565b6112cd565b6040516104339190612b6a565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e919061269b565b611317565b005b34801561047157600080fd5b5061047a611339565b6040516104879190612a0d565b60405180910390f35b61049861134c565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906126e4565b6113d4565b6040516104ce91906129a6565b60405180910390f35b3480156104e357600080fd5b506104ec6114e0565b6040516104f99190612a28565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061247e565b61156e565b6040516105369190612b6a565b60405180910390f35b34801561054b57600080fd5b50610554611649565b005b34801561056257600080fd5b5061056b61165d565b6040516105789190612b6a565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612601565b611663565b005b3480156105b657600080fd5b506105bf6116e6565b6040516105cc9190612b6a565b60405180910390f35b3480156105e157600080fd5b506105ea6116ec565b6040516105f791906129a6565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906126e4565b611716565b005b34801561063557600080fd5b5061063e611728565b60405161064b9190612a28565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906125c1565b6117b6565b005b34801561068957600080fd5b506106a4600480360381019061069f919061253e565b611919565b005b3480156106b257600080fd5b506106bb61196c565b005b3480156106c957600080fd5b506106e460048036038101906106df91906126e4565b6119a0565b6040516106f19190612a28565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906124ab565b611a47565b60405161072e9190612a0d565b60405180910390f35b34801561074357600080fd5b5061075e6004803603810190610759919061247e565b611adb565b005b34801561076c57600080fd5b50610775611b5f565b6040516107829190612b6a565b60405180910390f35b34801561079757600080fd5b506107a0611b65565b6040516107ad9190612b6a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610841575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108715750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461088590612e25565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612e25565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182611b6b565b610947576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d826113d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610a385750610a368133611a47565b155b15610a6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b6000600280549050905090565b610b3c81611b6b565b610b72576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610b92826113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c46576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610cb55750610c8682610906565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610cc65750610cc58433611a47565b5b905080610cff576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610d4a57610d49612f8f565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082118015610e185750600073ffffffffffffffffffffffffffffffffffffffff166002600184610dc49190612d3b565b81548110610dd557610dd4612f8f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b15610e8757836002600184610e2d9190612d3b565b81548110610e3e57610e3d612f8f565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000610ef38361156e565b8210610f2b576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b80831015610fa057610f48836113d4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f935783821415610f8a575050610fd2565b81806001019250505b8280600101935050610f37565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b600760009054906101000a900460ff16611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90612aea565b60405180910390fd5b600081118015611038575060028111155b611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90612a4a565b60405180910390fd5b611a0a61109482611086610b26565b611b7c90919063ffffffff16565b11156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612b0a565b60405180910390fd5b600261112982600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b7c90919063ffffffff16565b111561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190612b2a565b60405180910390fd5b61029a611175610b26565b116111df5780600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c99190612c5a565b925050819055506111da8282611b92565b611297565b6111f481600954611dbb90919063ffffffff16565b341015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90612a8a565b60405180910390fd5b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112859190612c5a565b925050819055506112968282611b92565b5b5050565b6112b683838360405180602001604052806000815250611919565b505050565b60006112c682611b6b565b9050919050565b60006112d7610b26565b821061130f576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b61131f611dd1565b8060069080519060200190611335929190612292565b5050565b600760009054906101000a900460ff1681565b611354611dd1565b600061135e6116ec565b73ffffffffffffffffffffffffffffffffffffffff164760405161138190612991565b60006040518083038185875af1925050503d80600081146113be576040519150601f19603f3d011682016040523d82523d6000602084013e6113c3565b606091505b50509050806113d157600080fd5b50565b60006113df82611b6b565b611415576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff166002838154811061144257611441612f8f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ce576002828154811061149c5761149b612f8f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506114db565b8180600101925050611416565b919050565b600680546114ed90612e25565b80601f016020809104026020016040519081016040528092919081815260200182805461151990612e25565b80156115665780601f1061153b57610100808354040283529160200191611566565b820191906000526020600020905b81548152906001019060200180831161154957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b8181101561163e576115f5816113d4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116315782806001019350505b80806001019150506115e4565b508192505050919050565b611651611dd1565b61165b6000611e4f565b565b61029a81565b61166b611dd1565b60008111801561167d5750600a548111155b6116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390612b4a565b60405180910390fd5b6116d760016116c9610b26565b611b7c90919063ffffffff16565b506116e28282611b92565b5050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61171e611dd1565b8060098190555050565b6001805461173590612e25565b80601f016020809104026020016040519081016040528092919081815260200182805461176190612e25565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190d9190612a0d565b60405180910390a35050565b611924848484610b33565b61193084848484611f15565b611966576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611974611dd1565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b60606119ab82611b6b565b6119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190612aca565b60405180910390fd5b60006119f4612097565b90506000815111611a145760405180602001604052806000815250611a3f565b80611a1e84612129565b604051602001611a2f929190612962565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae3611dd1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a90612a6a565b60405180910390fd5b611b5c81611e4f565b50565b611a0a81565b600a5481565b600060028054905082109050919050565b60008183611b8a9190612c5a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611c34576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611cdf576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611c41565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182611d509190612d3b565b81611d5b9190612c5a565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611dc99190612ce1565b905092915050565b611dd961228a565b73ffffffffffffffffffffffffffffffffffffffff16611df76116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490612aaa565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b1415611f3f576001905061208f565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b8152600401611f7e94939291906129c1565b602060405180830381600087803b158015611f9857600080fd5b505af1925050508015611fc957506040513d601f19601f82011682018060405250810190611fc6919061266e565b60015b612043573d8060008114611ff9576040519150601f19603f3d011682016040523d82523d6000602084013e611ffe565b606091505b5060008151141561203b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6060600680546120a690612e25565b80601f01602080910402602001604051908101604052809291908181526020018280546120d290612e25565b801561211f5780601f106120f45761010080835404028352916020019161211f565b820191906000526020600020905b81548152906001019060200180831161210257829003601f168201915b5050505050905090565b60606000821415612171576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612285565b600082905060005b600082146121a357808061218c90612e88565b915050600a8261219c9190612cb0565b9150612179565b60008167ffffffffffffffff8111156121bf576121be612fbe565b5b6040519080825280601f01601f1916602001820160405280156121f15781602001600182028036833780820191505090505b5090505b6000851461227e5760018261220a9190612d3b565b9150600a856122199190612ed1565b60306122259190612c5a565b60f81b81838151811061223b5761223a612f8f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122779190612cb0565b94506121f5565b8093505050505b919050565b600033905090565b82805461229e90612e25565b90600052602060002090601f0160209004810192826122c05760008555612307565b82601f106122d957805160ff1916838001178555612307565b82800160010185558215612307579182015b828111156123065782518255916020019190600101906122eb565b5b5090506123149190612318565b5090565b5b80821115612331576000816000905550600101612319565b5090565b600061234861234384612baa565b612b85565b90508281526020810184848401111561236457612363612ff2565b5b61236f848285612de3565b509392505050565b600061238a61238584612bdb565b612b85565b9050828152602081018484840111156123a6576123a5612ff2565b5b6123b1848285612de3565b509392505050565b6000813590506123c881613221565b92915050565b6000813590506123dd81613238565b92915050565b6000813590506123f28161324f565b92915050565b6000815190506124078161324f565b92915050565b600082601f83011261242257612421612fed565b5b8135612432848260208601612335565b91505092915050565b600082601f8301126124505761244f612fed565b5b8135612460848260208601612377565b91505092915050565b60008135905061247881613266565b92915050565b60006020828403121561249457612493612ffc565b5b60006124a2848285016123b9565b91505092915050565b600080604083850312156124c2576124c1612ffc565b5b60006124d0858286016123b9565b92505060206124e1858286016123b9565b9150509250929050565b60008060006060848603121561250457612503612ffc565b5b6000612512868287016123b9565b9350506020612523868287016123b9565b925050604061253486828701612469565b9150509250925092565b6000806000806080858703121561255857612557612ffc565b5b6000612566878288016123b9565b9450506020612577878288016123b9565b935050604061258887828801612469565b925050606085013567ffffffffffffffff8111156125a9576125a8612ff7565b5b6125b58782880161240d565b91505092959194509250565b600080604083850312156125d8576125d7612ffc565b5b60006125e6858286016123b9565b92505060206125f7858286016123ce565b9150509250929050565b6000806040838503121561261857612617612ffc565b5b6000612626858286016123b9565b925050602061263785828601612469565b9150509250929050565b60006020828403121561265757612656612ffc565b5b6000612665848285016123e3565b91505092915050565b60006020828403121561268457612683612ffc565b5b6000612692848285016123f8565b91505092915050565b6000602082840312156126b1576126b0612ffc565b5b600082013567ffffffffffffffff8111156126cf576126ce612ff7565b5b6126db8482850161243b565b91505092915050565b6000602082840312156126fa576126f9612ffc565b5b600061270884828501612469565b91505092915050565b61271a81612d6f565b82525050565b61272981612d81565b82525050565b600061273a82612c0c565b6127448185612c22565b9350612754818560208601612df2565b61275d81613001565b840191505092915050565b600061277382612c17565b61277d8185612c3e565b935061278d818560208601612df2565b61279681613001565b840191505092915050565b60006127ac82612c17565b6127b68185612c4f565b93506127c6818560208601612df2565b80840191505092915050565b60006127df601a83612c3e565b91506127ea82613012565b602082019050919050565b6000612802602683612c3e565b915061280d8261303b565b604082019050919050565b6000612825601383612c3e565b91506128308261308a565b602082019050919050565b6000612848600583612c4f565b9150612853826130b3565b600582019050919050565b600061286b602083612c3e565b9150612876826130dc565b602082019050919050565b600061288e602f83612c3e565b915061289982613105565b604082019050919050565b60006128b1600f83612c3e565b91506128bc82613154565b602082019050919050565b60006128d4600083612c33565b91506128df8261317d565b600082019050919050565b60006128f7602683612c3e565b915061290282613180565b604082019050919050565b600061291a601783612c3e565b9150612925826131cf565b602082019050919050565b600061293d601183612c3e565b9150612948826131f8565b602082019050919050565b61295c81612dd9565b82525050565b600061296e82856127a1565b915061297a82846127a1565b91506129858261283b565b91508190509392505050565b600061299c826128c7565b9150819050919050565b60006020820190506129bb6000830184612711565b92915050565b60006080820190506129d66000830187612711565b6129e36020830186612711565b6129f06040830185612953565b8181036060830152612a02818461272f565b905095945050505050565b6000602082019050612a226000830184612720565b92915050565b60006020820190508181036000830152612a428184612768565b905092915050565b60006020820190508181036000830152612a63816127d2565b9050919050565b60006020820190508181036000830152612a83816127f5565b9050919050565b60006020820190508181036000830152612aa381612818565b9050919050565b60006020820190508181036000830152612ac38161285e565b9050919050565b60006020820190508181036000830152612ae381612881565b9050919050565b60006020820190508181036000830152612b03816128a4565b9050919050565b60006020820190508181036000830152612b23816128ea565b9050919050565b60006020820190508181036000830152612b438161290d565b9050919050565b60006020820190508181036000830152612b6381612930565b9050919050565b6000602082019050612b7f6000830184612953565b92915050565b6000612b8f612ba0565b9050612b9b8282612e57565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc557612bc4612fbe565b5b612bce82613001565b9050602081019050919050565b600067ffffffffffffffff821115612bf657612bf5612fbe565b5b612bff82613001565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6582612dd9565b9150612c7083612dd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ca557612ca4612f02565b5b828201905092915050565b6000612cbb82612dd9565b9150612cc683612dd9565b925082612cd657612cd5612f31565b5b828204905092915050565b6000612cec82612dd9565b9150612cf783612dd9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3057612d2f612f02565b5b828202905092915050565b6000612d4682612dd9565b9150612d5183612dd9565b925082821015612d6457612d63612f02565b5b828203905092915050565b6000612d7a82612db9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e10578082015181840152602081019050612df5565b83811115612e1f576000848401525b50505050565b60006002820490506001821680612e3d57607f821691505b60208210811415612e5157612e50612f60565b5b50919050565b612e6082613001565b810181811067ffffffffffffffff82111715612e7f57612e7e612fbe565b5b80604052505050565b6000612e9382612dd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ec657612ec5612f02565b5b600182019050919050565b6000612edc82612dd9565b9150612ee783612dd9565b925082612ef757612ef6612f31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e204d696e74206f6e6c792032207065722057616c6c6574000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e742073656e7400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4d696e7420697320676f696e67206f766572206d617820706572207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792032204d696e7473207065722057616c6c6574000000000000000000600082015250565b7f446576207265736572766520656d707479000000000000000000000000000000600082015250565b61322a81612d6f565b811461323557600080fd5b50565b61324181612d81565b811461324c57600080fd5b50565b61325881612d8d565b811461326357600080fd5b50565b61326f81612dd9565b811461327a57600080fd5b5056fea2646970667358221220bdd3be4883a0ca1fbe2307a52ddfc569e83b6e3a0b3d8b6951cbcb518982c39d64736f6c63430008070033

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.