ETH Price: $2,934.59 (-4.33%)
Gas: 1 Gwei

Token

DoodlesstickfigureNFT (DOODLESSTICKFIGURENFT)
 

Overview

Max Total Supply

974 DOODLESSTICKFIGURENFT

Holders

673

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
myall.eth
Balance
7 DOODLESSTICKFIGURENFT
0xac18554be093f4cc4d86ec996fc5ffa8ea14ab27
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:
DoodlesstickfigureNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

/**
          __  .__        __               _____.__                             
  _______/  |_|__| ____ |  | __         _/ ____\__| ____  __ _________   ____  
 /  ___/\   __\  |/ ___\|  |/ /  ______ \   __\|  |/ ___\|  |  \_  __ \_/ __ \ 
 \___ \  |  | |  \  \___|    <  /_____/  |  |  |  / /_/  >  |  /|  | \/\  ___/ 
/____  > |__| |__|\___  >__|_ \          |__|  |__\___  /|____/ |__|    \___  >
     \/               \/     \/                  /_____/                    \/ 

 @powered by: amadeus-nft.io
*/

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract DoodlesstickfigureNFT is Ownable, ERC721A, ReentrancyGuard {
    constructor(
    ) ERC721A("DoodlesstickfigureNFT", "DOODLESSTICKFIGURENFT", 8, 5555) {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    // For marketing etc.
    function reserveMintBatch(uint256[] calldata quantities, address[] calldata tos) external onlyOwner {
        for(uint256 j = 0; j < quantities.length; j++){
            require(
                totalSupply() + quantities[j] <= collectionSize,
                "Too many already minted before dev mint."
                );
            uint256 numChunks = quantities[j] / maxBatchSize;
            for (uint256 i = 0; i < numChunks; i++) {
                _safeMint(tos[j], maxBatchSize);
            }
            if (quantities[j] % maxBatchSize != 0){
                _safeMint(tos[j], quantities[j] % maxBatchSize);
            }
        }
    }

    // metadata URI
    string private _baseTokenURI;

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

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

    function withdrawMoney() external onlyOwner nonReentrant {
        address amadeusAddress = address(0x718a7438297Ac14382F25802bb18422A4DadD31b);
        uint256 royaltyForAmadeus = address(this).balance / 100 * 10;
        uint256 remain = address(this).balance - royaltyForAmadeus;
        (bool success, ) = amadeusAddress.call{value: royaltyForAmadeus}("");
        require(success, "Transfer failed.");
        (success, ) = msg.sender.call{value: remain}("");
        require(success, "Transfer failed.");
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }
    //public sale
    bool public publicSaleStatus = false;
    uint256 public publicPrice = 0.000000 ether;
    uint256 public amountForPublicSale = 5555;
    // per mint public sale limitation
    uint256 public immutable publicSalePerMint = 1;

    function publicSaleMint(uint256 quantity) external payable callerIsUser{
        require(
        publicSaleStatus,
        "not begun"
        );
        require(
        totalSupply() + quantity <= collectionSize,
        "reached max supply"
        );
        require(
        amountForPublicSale >= quantity,
        "reached max amount"
        );

        require(
        quantity <= publicSalePerMint,
        "reached max amount per mint"
        );

        _safeMint(msg.sender, quantity);
        amountForPublicSale -= quantity;
        refundIfOver(uint256(publicPrice) * quantity);
    }

    function setPublicSaleStatus(bool status) external onlyOwner {
        publicSaleStatus = status;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
  public
  view
  override
  returns (uint256)
  {
    require(index < balanceOf(owner), "index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("unable to get token of owner");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "query for the zero"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
  internal
  view
  returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("find owner failed");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "transfer to non ERC721Receiver"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "mint to the zero");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "already minted");
    require(quantity <= maxBatchSize, "quantity too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "transfer to non ERC721Receiver"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
    getApproved(tokenId) == _msgSender() ||
    isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "transfer from incorrect owner"
    );
    require(to != address(0), "transfer to the zero");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : 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 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"address[]","name":"tos","type":"address[]"}],"name":"reserveMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicSaleStatus","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":"","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"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260006001556000600a60006101000a81548160ff0219169083151502179055506000600b556115b3600c55600160c0908152503480156200004457600080fd5b506040518060400160405280601581526020017f446f6f646c6573737469636b6669677572654e465400000000000000000000008152506040518060400160405280601581526020017f444f4f444c4553535449434b4649475552454e4654000000000000000000000081525060086115b3620000d6620000ca620001b660201b60201c565b620001be60201b60201c565b600081116200011c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011390620003a2565b60405180910390fd5b6000821162000162576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001599062000380565b60405180910390fd5b83600290805190602001906200017a92919062000282565b5082600390805190602001906200019392919062000282565b508160a081815250508060808181525050505050506001600881905550620004b2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029090620003d5565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b600062000341601e83620003c4565b91506200034e826200043a565b602082019050919050565b600062000368602583620003c4565b9150620003758262000463565b604082019050919050565b600060208201905081810360008301526200039b8162000332565b9050919050565b60006020820190508181036000830152620003bd8162000359565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003ee57607f821691505b602082108114156200040557620004046200040b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f6d61782062617463682073697a65206d757374206265206e6f6e7a65726f0000600082015250565b7f636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b60805160a05160c051614aa46200051a60003960008181610cdb0152611886015260008181610e1901528181610e9601528181610ed201528181610f47015281816123cd015281816123f60152612c22015260008181610d8901526117cc0152614aa46000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b3ab66b011610095578063c87b56dd11610064578063c87b56dd14610667578063dc33e681146106a4578063e985e9c5146106e1578063f2fde38b1461071e576101cd565b8063b3ab66b0146105ce578063b423fe67146105ea578063b6c693e514610613578063b88d4fde1461063e576101cd565b80639dc74e63116100d15780639dc74e6314610538578063a22cb46514610563578063a945bf801461058c578063ac446002146105b7576101cd565b80638da5cb5b146104a55780639231ab2a146104d057806395d89b411461050d576101cd565b80633ba5ae241161016f57806355f804b31161013e57806355f804b3146103eb5780636352211e1461041457806370a0823114610451578063715018a61461048e576101cd565b80633ba5ae24146103315780633cd475371461035c57806342842e0e146103855780634f6ccce7146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061358c565b610747565b6040516102069190613bf1565b60405180910390f35b34801561021b57600080fd5b50610224610891565b6040516102319190613c0c565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613633565b610923565b60405161026e9190613b8a565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061349e565b6109a8565b005b3480156102ac57600080fd5b506102b5610ac1565b6040516102c29190613fa9565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613388565b610acb565b005b34801561030057600080fd5b5061031b6004803603810190610316919061349e565b610adb565b6040516103289190613fa9565b60405180910390f35b34801561033d57600080fd5b50610346610cd9565b6040516103539190613fa9565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906134de565b610cfd565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613388565b610fab565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190613633565b610fcb565b6040516103e29190613fa9565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906135e6565b61101e565b005b34801561042057600080fd5b5061043b60048036038101906104369190613633565b6110b0565b6040516104489190613b8a565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061331b565b6110c6565b6040516104859190613fa9565b60405180910390f35b34801561049a57600080fd5b506104a36111af565b005b3480156104b157600080fd5b506104ba611237565b6040516104c79190613b8a565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190613633565b611260565b6040516105049190613f8e565b60405180910390f35b34801561051957600080fd5b50610522611278565b60405161052f9190613c0c565b60405180910390f35b34801561054457600080fd5b5061054d61130a565b60405161055a9190613fa9565b60405180910390f35b34801561056f57600080fd5b5061058a6004803603810190610585919061345e565b611310565b005b34801561059857600080fd5b506105a1611491565b6040516105ae9190613fa9565b60405180910390f35b3480156105c357600080fd5b506105cc611497565b005b6105e860048036038101906105e39190613633565b61170d565b005b3480156105f657600080fd5b50610611600480360381019061060c919061355f565b611923565b005b34801561061f57600080fd5b506106286119bc565b6040516106359190613bf1565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906133db565b6119cf565b005b34801561067357600080fd5b5061068e60048036038101906106899190613633565b611a2b565b60405161069b9190613c0c565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061331b565b611ad2565b6040516106d89190613fa9565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613348565b611ae4565b6040516107159190613bf1565b60405180910390f35b34801561072a57600080fd5b506107456004803603810190610740919061331b565b611b78565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a575061088982611c70565b5b9050919050565b6060600280546108a090614307565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90614307565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611cda565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613cce565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b3826110b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613c8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611ce8565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611ce8565b611ae4565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613c4e565b60405180910390fd5b610abc838383611cf0565b505050565b6000600154905090565b610ad6838383611da2565b505050565b6000610ae6836110c6565b8210610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90613f4e565b60405180910390fd5b6000610b31610ac1565b905060008060005b83811015610c97576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c835786841415610c74578195505050505050610cd3565b8380610c7f9061436a565b9450505b508080610c8f9061436a565b915050610b39565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613e4e565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d05611ce8565b73ffffffffffffffffffffffffffffffffffffffff16610d23611237565b73ffffffffffffffffffffffffffffffffffffffff1614610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613dee565b60405180910390fd5b60005b84849050811015610fa4577f0000000000000000000000000000000000000000000000000000000000000000858583818110610dbb57610dba614471565b5b90506020020135610dca610ac1565b610dd491906140ae565b1115610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613d6e565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000868684818110610e4b57610e4a614471565b5b90506020020135610e5c9190614104565b905060005b81811015610ecd57610eba858585818110610e7f57610e7e614471565b5b9050602002016020810190610e94919061331b565b7f000000000000000000000000000000000000000000000000000000000000000061235b565b8080610ec59061436a565b915050610e61565b5060007f0000000000000000000000000000000000000000000000000000000000000000878785818110610f0457610f03614471565b5b90506020020135610f1591906143b3565b14610f9057610f8f848484818110610f3057610f2f614471565b5b9050602002016020810190610f45919061331b565b7f0000000000000000000000000000000000000000000000000000000000000000888886818110610f7957610f78614471565b5b90506020020135610f8a91906143b3565b61235b565b5b508080610f9c9061436a565b915050610d7c565b5050505050565b610fc6838383604051806020016040528060008152506119cf565b505050565b6000610fd5610ac1565b8210611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90613f4e565b60405180910390fd5b819050919050565b611026611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611044611237565b73ffffffffffffffffffffffffffffffffffffffff161461109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190613dee565b60405180910390fd5b8181600991906110ab929190613063565b505050565b60006110bb82612379565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613c2e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111b7611ce8565b73ffffffffffffffffffffffffffffffffffffffff166111d5611237565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613dee565b60405180910390fd5b611235600061257c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112686130e9565b61127182612379565b9050919050565b60606003805461128790614307565b80601f01602080910402602001604051908101604052809291908181526020018280546112b390614307565b80156113005780601f106112d557610100808354040283529160200191611300565b820191906000526020600020905b8154815290600101906020018083116112e357829003601f168201915b5050505050905090565b600c5481565b611318611ce8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613e2e565b60405180910390fd5b8060076000611393611ce8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611440611ce8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114859190613bf1565b60405180910390a35050565b600b5481565b61149f611ce8565b73ffffffffffffffffffffffffffffffffffffffff166114bd611237565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613dee565b60405180910390fd5b60026008541415611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090613f2e565b60405180910390fd5b6002600881905550600073718a7438297ac14382f25802bb18422a4dadd31b90506000600a60644761158b9190614104565b6115959190614135565b9050600081476115a591906141c3565b905060008373ffffffffffffffffffffffffffffffffffffffff16836040516115cd90613b75565b60006040518083038185875af1925050503d806000811461160a576040519150601f19603f3d011682016040523d82523d6000602084013e61160f565b606091505b5050905080611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613eae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168260405161167790613b75565b60006040518083038185875af1925050503d80600081146116b4576040519150601f19603f3d011682016040523d82523d6000602084013e6116b9565b606091505b505080915050806116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f690613eae565b60405180910390fd5b505050506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613cee565b60405180910390fd5b600a60009054906101000a900460ff166117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613d2e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816117f4610ac1565b6117fe91906140ae565b111561183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613dae565b60405180910390fd5b80600c541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613d0e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008111156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e6e565b60405180910390fd5b6118f1338261235b565b80600c600082825461190391906141c3565b9250508190555061192081600b5461191b9190614135565b612640565b50565b61192b611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611949611237565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613dee565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b6119da848484611da2565b6119e6848484846126e1565b611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613e0e565b60405180910390fd5b50505050565b6060611a3682611cda565b611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90613cce565b60405180910390fd5b6000611a7f612878565b90506000815111611a9f5760405180602001604052806000815250611aca565b80611aa98461290a565b604051602001611aba929190613b51565b6040516020818303038152906040525b915050919050565b6000611add82612a6b565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b80611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611b9e611237565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613dee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90613c6e565b60405180910390fd5b611c6d8161257c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dad82612379565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dd4611ce8565b73ffffffffffffffffffffffffffffffffffffffff161480611e305750611df9611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611e1884610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e4c5750611e4b8260000151611e46611ce8565b611ae4565b5b905080611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8590613d8e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613dce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613f0e565b60405180910390fd5b611f7d8585856001612b54565b611f8d6000848460000151611cf0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ffb919061418f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661209f9190614068565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121a591906140ae565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122eb5761221b81611cda565b156122ea576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123538686866001612b5a565b505050505050565b612375828260405180602001604052806000815250612b60565b5050565b6123816130e9565b61238a82611cda565b6123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613cce565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061242d5760017f00000000000000000000000000000000000000000000000000000000000000008461242091906141c3565b61242a91906140ae565b90505b60008390505b81811061253b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252757809350505050612577565b508080612533906142dd565b915050612433565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613cae565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90613ece565b60405180910390fd5b803411156126de573373ffffffffffffffffffffffffffffffffffffffff166108fc82346126b191906141c3565b9081150290604051600060405180830381858888f193505050501580156126dc573d6000803e3d6000fd5b505b50565b60006127028473ffffffffffffffffffffffffffffffffffffffff16613040565b1561286b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272b611ce8565b8786866040518563ffffffff1660e01b815260040161274d9493929190613ba5565b602060405180830381600087803b15801561276757600080fd5b505af192505050801561279857506040513d601f19601f8201168201806040525081019061279591906135b9565b60015b61281b573d80600081146127c8576040519150601f19603f3d011682016040523d82523d6000602084013e6127cd565b606091505b50600081511415612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90613d4e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612870565b600190505b949350505050565b60606009805461288790614307565b80601f01602080910402602001604051908101604052809291908181526020018280546128b390614307565b80156129005780601f106128d557610100808354040283529160200191612900565b820191906000526020600020905b8154815290600101906020018083116128e357829003601f168201915b5050505050905090565b60606000821415612952576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a66565b600082905060005b6000821461298457808061296d9061436a565b915050600a8261297d9190614104565b915061295a565b60008167ffffffffffffffff8111156129a05761299f6144a0565b5b6040519080825280601f01601f1916602001820160405280156129d25781602001600182028036833780820191505090505b5090505b60008514612a5f576001826129eb91906141c3565b9150600a856129fa91906143b3565b6030612a0691906140ae565b60f81b818381518110612a1c57612a1b614471565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a589190614104565b94506129d6565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613c2e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bce90613e8e565b60405180910390fd5b612be081611cda565b15612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790613f6e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a90613eee565b60405180910390fd5b612c906000858386612b54565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d8d9190614068565b6fffffffffffffffffffffffffffffffff168152602001858360200151612db49190614068565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561302357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fc360008884886126e1565b613002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff990613e0e565b60405180910390fd5b818061300d9061436a565b925050808061301b9061436a565b915050612f52565b50806001819055506130386000878588612b5a565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461306f90614307565b90600052602060002090601f01602090048101928261309157600085556130d8565b82601f106130aa57803560ff19168380011785556130d8565b828001600101855582156130d8579182015b828111156130d75782358255916020019190600101906130bc565b5b5090506130e59190613123565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561313c576000816000905550600101613124565b5090565b600061315361314e84613fe9565b613fc4565b90508281526020810184848401111561316f5761316e6144de565b5b61317a84828561429b565b509392505050565b60008135905061319181614a12565b92915050565b60008083601f8401126131ad576131ac6144d4565b5b8235905067ffffffffffffffff8111156131ca576131c96144cf565b5b6020830191508360208202830111156131e6576131e56144d9565b5b9250929050565b60008083601f840112613203576132026144d4565b5b8235905067ffffffffffffffff8111156132205761321f6144cf565b5b60208301915083602082028301111561323c5761323b6144d9565b5b9250929050565b60008135905061325281614a29565b92915050565b60008135905061326781614a40565b92915050565b60008151905061327c81614a40565b92915050565b600082601f830112613297576132966144d4565b5b81356132a7848260208601613140565b91505092915050565b60008083601f8401126132c6576132c56144d4565b5b8235905067ffffffffffffffff8111156132e3576132e26144cf565b5b6020830191508360018202830111156132ff576132fe6144d9565b5b9250929050565b60008135905061331581614a57565b92915050565b600060208284031215613331576133306144e8565b5b600061333f84828501613182565b91505092915050565b6000806040838503121561335f5761335e6144e8565b5b600061336d85828601613182565b925050602061337e85828601613182565b9150509250929050565b6000806000606084860312156133a1576133a06144e8565b5b60006133af86828701613182565b93505060206133c086828701613182565b92505060406133d186828701613306565b9150509250925092565b600080600080608085870312156133f5576133f46144e8565b5b600061340387828801613182565b945050602061341487828801613182565b935050604061342587828801613306565b925050606085013567ffffffffffffffff811115613446576134456144e3565b5b61345287828801613282565b91505092959194509250565b60008060408385031215613475576134746144e8565b5b600061348385828601613182565b925050602061349485828601613243565b9150509250929050565b600080604083850312156134b5576134b46144e8565b5b60006134c385828601613182565b92505060206134d485828601613306565b9150509250929050565b600080600080604085870312156134f8576134f76144e8565b5b600085013567ffffffffffffffff811115613516576135156144e3565b5b613522878288016131ed565b9450945050602085013567ffffffffffffffff811115613545576135446144e3565b5b61355187828801613197565b925092505092959194509250565b600060208284031215613575576135746144e8565b5b600061358384828501613243565b91505092915050565b6000602082840312156135a2576135a16144e8565b5b60006135b084828501613258565b91505092915050565b6000602082840312156135cf576135ce6144e8565b5b60006135dd8482850161326d565b91505092915050565b600080602083850312156135fd576135fc6144e8565b5b600083013567ffffffffffffffff81111561361b5761361a6144e3565b5b613627858286016132b0565b92509250509250929050565b600060208284031215613649576136486144e8565b5b600061365784828501613306565b91505092915050565b613669816141f7565b82525050565b613678816141f7565b82525050565b61368781614209565b82525050565b60006136988261401a565b6136a28185614030565b93506136b28185602086016142aa565b6136bb816144ed565b840191505092915050565b60006136d182614025565b6136db818561404c565b93506136eb8185602086016142aa565b6136f4816144ed565b840191505092915050565b600061370a82614025565b613714818561405d565b93506137248185602086016142aa565b80840191505092915050565b600061373d60128361404c565b9150613748826144fe565b602082019050919050565b600061376060308361404c565b915061376b82614527565b604082019050919050565b600061378360268361404c565b915061378e82614576565b604082019050919050565b60006137a660198361404c565b91506137b1826145c5565b602082019050919050565b60006137c960118361404c565b91506137d4826145ee565b602082019050919050565b60006137ec601b8361404c565b91506137f782614617565b602082019050919050565b600061380f601e8361404c565b915061381a82614640565b602082019050919050565b600061383260128361404c565b915061383d82614669565b602082019050919050565b600061385560098361404c565b915061386082614692565b602082019050919050565b6000613878602a8361404c565b9150613883826146bb565b604082019050919050565b600061389b60288361404c565b91506138a68261470a565b604082019050919050565b60006138be60298361404c565b91506138c982614759565b604082019050919050565b60006138e160128361404c565b91506138ec826147a8565b602082019050919050565b6000613904601d8361404c565b915061390f826147d1565b602082019050919050565b600061392760208361404c565b9150613932826147fa565b602082019050919050565b600061394a601e8361404c565b915061395582614823565b602082019050919050565b600061396d60118361404c565b91506139788261484c565b602082019050919050565b6000613990601c8361404c565b915061399b82614875565b602082019050919050565b60006139b3601b8361404c565b91506139be8261489e565b602082019050919050565b60006139d6600083614041565b91506139e1826148c7565b600082019050919050565b60006139f960108361404c565b9150613a04826148ca565b602082019050919050565b6000613a1c60108361404c565b9150613a27826148f3565b602082019050919050565b6000613a3f60168361404c565b9150613a4a8261491c565b602082019050919050565b6000613a6260118361404c565b9150613a6d82614945565b602082019050919050565b6000613a8560148361404c565b9150613a908261496e565b602082019050919050565b6000613aa8601f8361404c565b9150613ab382614997565b602082019050919050565b6000613acb60138361404c565b9150613ad6826149c0565b602082019050919050565b6000613aee600e8361404c565b9150613af9826149e9565b602082019050919050565b604082016000820151613b1a6000850182613660565b506020820151613b2d6020850182613b42565b50505050565b613b3c8161427d565b82525050565b613b4b81614287565b82525050565b6000613b5d82856136ff565b9150613b6982846136ff565b91508190509392505050565b6000613b80826139c9565b9150819050919050565b6000602082019050613b9f600083018461366f565b92915050565b6000608082019050613bba600083018761366f565b613bc7602083018661366f565b613bd46040830185613b33565b8181036060830152613be6818461368d565b905095945050505050565b6000602082019050613c06600083018461367e565b92915050565b60006020820190508181036000830152613c2681846136c6565b905092915050565b60006020820190508181036000830152613c4781613730565b9050919050565b60006020820190508181036000830152613c6781613753565b9050919050565b60006020820190508181036000830152613c8781613776565b9050919050565b60006020820190508181036000830152613ca781613799565b9050919050565b60006020820190508181036000830152613cc7816137bc565b9050919050565b60006020820190508181036000830152613ce7816137df565b9050919050565b60006020820190508181036000830152613d0781613802565b9050919050565b60006020820190508181036000830152613d2781613825565b9050919050565b60006020820190508181036000830152613d4781613848565b9050919050565b60006020820190508181036000830152613d678161386b565b9050919050565b60006020820190508181036000830152613d878161388e565b9050919050565b60006020820190508181036000830152613da7816138b1565b9050919050565b60006020820190508181036000830152613dc7816138d4565b9050919050565b60006020820190508181036000830152613de7816138f7565b9050919050565b60006020820190508181036000830152613e078161391a565b9050919050565b60006020820190508181036000830152613e278161393d565b9050919050565b60006020820190508181036000830152613e4781613960565b9050919050565b60006020820190508181036000830152613e6781613983565b9050919050565b60006020820190508181036000830152613e87816139a6565b9050919050565b60006020820190508181036000830152613ea7816139ec565b9050919050565b60006020820190508181036000830152613ec781613a0f565b9050919050565b60006020820190508181036000830152613ee781613a32565b9050919050565b60006020820190508181036000830152613f0781613a55565b9050919050565b60006020820190508181036000830152613f2781613a78565b9050919050565b60006020820190508181036000830152613f4781613a9b565b9050919050565b60006020820190508181036000830152613f6781613abe565b9050919050565b60006020820190508181036000830152613f8781613ae1565b9050919050565b6000604082019050613fa36000830184613b04565b92915050565b6000602082019050613fbe6000830184613b33565b92915050565b6000613fce613fdf565b9050613fda8282614339565b919050565b6000604051905090565b600067ffffffffffffffff821115614004576140036144a0565b5b61400d826144ed565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061407382614241565b915061407e83614241565b9250826fffffffffffffffffffffffffffffffff038211156140a3576140a26143e4565b5b828201905092915050565b60006140b98261427d565b91506140c48361427d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140f9576140f86143e4565b5b828201905092915050565b600061410f8261427d565b915061411a8361427d565b92508261412a57614129614413565b5b828204905092915050565b60006141408261427d565b915061414b8361427d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614184576141836143e4565b5b828202905092915050565b600061419a82614241565b91506141a583614241565b9250828210156141b8576141b76143e4565b5b828203905092915050565b60006141ce8261427d565b91506141d98361427d565b9250828210156141ec576141eb6143e4565b5b828203905092915050565b60006142028261425d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156142c85780820151818401526020810190506142ad565b838111156142d7576000848401525b50505050565b60006142e88261427d565b915060008214156142fc576142fb6143e4565b5b600182039050919050565b6000600282049050600182168061431f57607f821691505b6020821081141561433357614332614442565b5b50919050565b614342826144ed565b810181811067ffffffffffffffff82111715614361576143606144a0565b5b80604052505050565b60006143758261427d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143a8576143a76143e4565b5b600182019050919050565b60006143be8261427d565b91506143c98361427d565b9250826143d9576143d8614413565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f717565727920666f7220746865207a65726f0000000000000000000000000000600082015250565b7f617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f722060008201527f617070726f76656420666f7220616c6c00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f617070726f76616c20746f2063757272656e74206f776e657200000000000000600082015250565b7f66696e64206f776e6572206661696c6564000000000000000000000000000000600082015250565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f72656163686564206d617820616d6f756e740000000000000000000000000000600082015250565b7f6e6f7420626567756e0000000000000000000000000000000000000000000000600082015250565b7f7472616e7366657220746f206e6f6e204552433732315265636569766572206960008201527f6d706c656d656e74657200000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e742e000000000000000000000000000000000000000000000000602082015250565b7f7472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f7472616e736665722066726f6d20696e636f7272656374206f776e6572000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7472616e7366657220746f206e6f6e2045524337323152656365697665720000600082015250565b7f617070726f766520746f2063616c6c6572000000000000000000000000000000600082015250565b7f756e61626c6520746f2067657420746f6b656e206f66206f776e657200000000600082015250565b7f72656163686564206d617820616d6f756e7420706572206d696e740000000000600082015250565b50565b7f6d696e7420746f20746865207a65726f00000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f7175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b7f7472616e7366657220746f20746865207a65726f000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646578206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b614a1b816141f7565b8114614a2657600080fd5b50565b614a3281614209565b8114614a3d57600080fd5b50565b614a4981614215565b8114614a5457600080fd5b50565b614a608161427d565b8114614a6b57600080fd5b5056fea26469706673582212208bfb1843a3341a62dc1b1bc34cf480e65203a22ebf62936e2e87f3af71fc17c764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b3ab66b011610095578063c87b56dd11610064578063c87b56dd14610667578063dc33e681146106a4578063e985e9c5146106e1578063f2fde38b1461071e576101cd565b8063b3ab66b0146105ce578063b423fe67146105ea578063b6c693e514610613578063b88d4fde1461063e576101cd565b80639dc74e63116100d15780639dc74e6314610538578063a22cb46514610563578063a945bf801461058c578063ac446002146105b7576101cd565b80638da5cb5b146104a55780639231ab2a146104d057806395d89b411461050d576101cd565b80633ba5ae241161016f57806355f804b31161013e57806355f804b3146103eb5780636352211e1461041457806370a0823114610451578063715018a61461048e576101cd565b80633ba5ae24146103315780633cd475371461035c57806342842e0e146103855780634f6ccce7146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061358c565b610747565b6040516102069190613bf1565b60405180910390f35b34801561021b57600080fd5b50610224610891565b6040516102319190613c0c565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613633565b610923565b60405161026e9190613b8a565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061349e565b6109a8565b005b3480156102ac57600080fd5b506102b5610ac1565b6040516102c29190613fa9565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613388565b610acb565b005b34801561030057600080fd5b5061031b6004803603810190610316919061349e565b610adb565b6040516103289190613fa9565b60405180910390f35b34801561033d57600080fd5b50610346610cd9565b6040516103539190613fa9565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906134de565b610cfd565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613388565b610fab565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190613633565b610fcb565b6040516103e29190613fa9565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906135e6565b61101e565b005b34801561042057600080fd5b5061043b60048036038101906104369190613633565b6110b0565b6040516104489190613b8a565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061331b565b6110c6565b6040516104859190613fa9565b60405180910390f35b34801561049a57600080fd5b506104a36111af565b005b3480156104b157600080fd5b506104ba611237565b6040516104c79190613b8a565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190613633565b611260565b6040516105049190613f8e565b60405180910390f35b34801561051957600080fd5b50610522611278565b60405161052f9190613c0c565b60405180910390f35b34801561054457600080fd5b5061054d61130a565b60405161055a9190613fa9565b60405180910390f35b34801561056f57600080fd5b5061058a6004803603810190610585919061345e565b611310565b005b34801561059857600080fd5b506105a1611491565b6040516105ae9190613fa9565b60405180910390f35b3480156105c357600080fd5b506105cc611497565b005b6105e860048036038101906105e39190613633565b61170d565b005b3480156105f657600080fd5b50610611600480360381019061060c919061355f565b611923565b005b34801561061f57600080fd5b506106286119bc565b6040516106359190613bf1565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906133db565b6119cf565b005b34801561067357600080fd5b5061068e60048036038101906106899190613633565b611a2b565b60405161069b9190613c0c565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061331b565b611ad2565b6040516106d89190613fa9565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613348565b611ae4565b6040516107159190613bf1565b60405180910390f35b34801561072a57600080fd5b506107456004803603810190610740919061331b565b611b78565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a575061088982611c70565b5b9050919050565b6060600280546108a090614307565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90614307565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611cda565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613cce565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b3826110b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613c8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611ce8565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611ce8565b611ae4565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613c4e565b60405180910390fd5b610abc838383611cf0565b505050565b6000600154905090565b610ad6838383611da2565b505050565b6000610ae6836110c6565b8210610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90613f4e565b60405180910390fd5b6000610b31610ac1565b905060008060005b83811015610c97576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c835786841415610c74578195505050505050610cd3565b8380610c7f9061436a565b9450505b508080610c8f9061436a565b915050610b39565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613e4e565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000181565b610d05611ce8565b73ffffffffffffffffffffffffffffffffffffffff16610d23611237565b73ffffffffffffffffffffffffffffffffffffffff1614610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613dee565b60405180910390fd5b60005b84849050811015610fa4577f00000000000000000000000000000000000000000000000000000000000015b3858583818110610dbb57610dba614471565b5b90506020020135610dca610ac1565b610dd491906140ae565b1115610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613d6e565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000008868684818110610e4b57610e4a614471565b5b90506020020135610e5c9190614104565b905060005b81811015610ecd57610eba858585818110610e7f57610e7e614471565b5b9050602002016020810190610e94919061331b565b7f000000000000000000000000000000000000000000000000000000000000000861235b565b8080610ec59061436a565b915050610e61565b5060007f0000000000000000000000000000000000000000000000000000000000000008878785818110610f0457610f03614471565b5b90506020020135610f1591906143b3565b14610f9057610f8f848484818110610f3057610f2f614471565b5b9050602002016020810190610f45919061331b565b7f0000000000000000000000000000000000000000000000000000000000000008888886818110610f7957610f78614471565b5b90506020020135610f8a91906143b3565b61235b565b5b508080610f9c9061436a565b915050610d7c565b5050505050565b610fc6838383604051806020016040528060008152506119cf565b505050565b6000610fd5610ac1565b8210611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90613f4e565b60405180910390fd5b819050919050565b611026611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611044611237565b73ffffffffffffffffffffffffffffffffffffffff161461109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190613dee565b60405180910390fd5b8181600991906110ab929190613063565b505050565b60006110bb82612379565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613c2e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111b7611ce8565b73ffffffffffffffffffffffffffffffffffffffff166111d5611237565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613dee565b60405180910390fd5b611235600061257c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112686130e9565b61127182612379565b9050919050565b60606003805461128790614307565b80601f01602080910402602001604051908101604052809291908181526020018280546112b390614307565b80156113005780601f106112d557610100808354040283529160200191611300565b820191906000526020600020905b8154815290600101906020018083116112e357829003601f168201915b5050505050905090565b600c5481565b611318611ce8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613e2e565b60405180910390fd5b8060076000611393611ce8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611440611ce8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114859190613bf1565b60405180910390a35050565b600b5481565b61149f611ce8565b73ffffffffffffffffffffffffffffffffffffffff166114bd611237565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613dee565b60405180910390fd5b60026008541415611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090613f2e565b60405180910390fd5b6002600881905550600073718a7438297ac14382f25802bb18422a4dadd31b90506000600a60644761158b9190614104565b6115959190614135565b9050600081476115a591906141c3565b905060008373ffffffffffffffffffffffffffffffffffffffff16836040516115cd90613b75565b60006040518083038185875af1925050503d806000811461160a576040519150601f19603f3d011682016040523d82523d6000602084013e61160f565b606091505b5050905080611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613eae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168260405161167790613b75565b60006040518083038185875af1925050503d80600081146116b4576040519150601f19603f3d011682016040523d82523d6000602084013e6116b9565b606091505b505080915050806116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f690613eae565b60405180910390fd5b505050506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613cee565b60405180910390fd5b600a60009054906101000a900460ff166117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613d2e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000015b3816117f4610ac1565b6117fe91906140ae565b111561183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613dae565b60405180910390fd5b80600c541015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613d0e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000018111156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e6e565b60405180910390fd5b6118f1338261235b565b80600c600082825461190391906141c3565b9250508190555061192081600b5461191b9190614135565b612640565b50565b61192b611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611949611237565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613dee565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b6119da848484611da2565b6119e6848484846126e1565b611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613e0e565b60405180910390fd5b50505050565b6060611a3682611cda565b611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90613cce565b60405180910390fd5b6000611a7f612878565b90506000815111611a9f5760405180602001604052806000815250611aca565b80611aa98461290a565b604051602001611aba929190613b51565b6040516020818303038152906040525b915050919050565b6000611add82612a6b565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b80611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611b9e611237565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613dee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90613c6e565b60405180910390fd5b611c6d8161257c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dad82612379565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dd4611ce8565b73ffffffffffffffffffffffffffffffffffffffff161480611e305750611df9611ce8565b73ffffffffffffffffffffffffffffffffffffffff16611e1884610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e4c5750611e4b8260000151611e46611ce8565b611ae4565b5b905080611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8590613d8e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613dce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613f0e565b60405180910390fd5b611f7d8585856001612b54565b611f8d6000848460000151611cf0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ffb919061418f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661209f9190614068565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121a591906140ae565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122eb5761221b81611cda565b156122ea576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123538686866001612b5a565b505050505050565b612375828260405180602001604052806000815250612b60565b5050565b6123816130e9565b61238a82611cda565b6123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613cce565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000008831061242d5760017f00000000000000000000000000000000000000000000000000000000000000088461242091906141c3565b61242a91906140ae565b90505b60008390505b81811061253b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252757809350505050612577565b508080612533906142dd565b915050612433565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613cae565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90613ece565b60405180910390fd5b803411156126de573373ffffffffffffffffffffffffffffffffffffffff166108fc82346126b191906141c3565b9081150290604051600060405180830381858888f193505050501580156126dc573d6000803e3d6000fd5b505b50565b60006127028473ffffffffffffffffffffffffffffffffffffffff16613040565b1561286b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272b611ce8565b8786866040518563ffffffff1660e01b815260040161274d9493929190613ba5565b602060405180830381600087803b15801561276757600080fd5b505af192505050801561279857506040513d601f19601f8201168201806040525081019061279591906135b9565b60015b61281b573d80600081146127c8576040519150601f19603f3d011682016040523d82523d6000602084013e6127cd565b606091505b50600081511415612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90613d4e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612870565b600190505b949350505050565b60606009805461288790614307565b80601f01602080910402602001604051908101604052809291908181526020018280546128b390614307565b80156129005780601f106128d557610100808354040283529160200191612900565b820191906000526020600020905b8154815290600101906020018083116128e357829003601f168201915b5050505050905090565b60606000821415612952576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a66565b600082905060005b6000821461298457808061296d9061436a565b915050600a8261297d9190614104565b915061295a565b60008167ffffffffffffffff8111156129a05761299f6144a0565b5b6040519080825280601f01601f1916602001820160405280156129d25781602001600182028036833780820191505090505b5090505b60008514612a5f576001826129eb91906141c3565b9150600a856129fa91906143b3565b6030612a0691906140ae565b60f81b818381518110612a1c57612a1b614471565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a589190614104565b94506129d6565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613c2e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bce90613e8e565b60405180910390fd5b612be081611cda565b15612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790613f6e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000008831115612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a90613eee565b60405180910390fd5b612c906000858386612b54565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d8d9190614068565b6fffffffffffffffffffffffffffffffff168152602001858360200151612db49190614068565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561302357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fc360008884886126e1565b613002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff990613e0e565b60405180910390fd5b818061300d9061436a565b925050808061301b9061436a565b915050612f52565b50806001819055506130386000878588612b5a565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461306f90614307565b90600052602060002090601f01602090048101928261309157600085556130d8565b82601f106130aa57803560ff19168380011785556130d8565b828001600101855582156130d8579182015b828111156130d75782358255916020019190600101906130bc565b5b5090506130e59190613123565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561313c576000816000905550600101613124565b5090565b600061315361314e84613fe9565b613fc4565b90508281526020810184848401111561316f5761316e6144de565b5b61317a84828561429b565b509392505050565b60008135905061319181614a12565b92915050565b60008083601f8401126131ad576131ac6144d4565b5b8235905067ffffffffffffffff8111156131ca576131c96144cf565b5b6020830191508360208202830111156131e6576131e56144d9565b5b9250929050565b60008083601f840112613203576132026144d4565b5b8235905067ffffffffffffffff8111156132205761321f6144cf565b5b60208301915083602082028301111561323c5761323b6144d9565b5b9250929050565b60008135905061325281614a29565b92915050565b60008135905061326781614a40565b92915050565b60008151905061327c81614a40565b92915050565b600082601f830112613297576132966144d4565b5b81356132a7848260208601613140565b91505092915050565b60008083601f8401126132c6576132c56144d4565b5b8235905067ffffffffffffffff8111156132e3576132e26144cf565b5b6020830191508360018202830111156132ff576132fe6144d9565b5b9250929050565b60008135905061331581614a57565b92915050565b600060208284031215613331576133306144e8565b5b600061333f84828501613182565b91505092915050565b6000806040838503121561335f5761335e6144e8565b5b600061336d85828601613182565b925050602061337e85828601613182565b9150509250929050565b6000806000606084860312156133a1576133a06144e8565b5b60006133af86828701613182565b93505060206133c086828701613182565b92505060406133d186828701613306565b9150509250925092565b600080600080608085870312156133f5576133f46144e8565b5b600061340387828801613182565b945050602061341487828801613182565b935050604061342587828801613306565b925050606085013567ffffffffffffffff811115613446576134456144e3565b5b61345287828801613282565b91505092959194509250565b60008060408385031215613475576134746144e8565b5b600061348385828601613182565b925050602061349485828601613243565b9150509250929050565b600080604083850312156134b5576134b46144e8565b5b60006134c385828601613182565b92505060206134d485828601613306565b9150509250929050565b600080600080604085870312156134f8576134f76144e8565b5b600085013567ffffffffffffffff811115613516576135156144e3565b5b613522878288016131ed565b9450945050602085013567ffffffffffffffff811115613545576135446144e3565b5b61355187828801613197565b925092505092959194509250565b600060208284031215613575576135746144e8565b5b600061358384828501613243565b91505092915050565b6000602082840312156135a2576135a16144e8565b5b60006135b084828501613258565b91505092915050565b6000602082840312156135cf576135ce6144e8565b5b60006135dd8482850161326d565b91505092915050565b600080602083850312156135fd576135fc6144e8565b5b600083013567ffffffffffffffff81111561361b5761361a6144e3565b5b613627858286016132b0565b92509250509250929050565b600060208284031215613649576136486144e8565b5b600061365784828501613306565b91505092915050565b613669816141f7565b82525050565b613678816141f7565b82525050565b61368781614209565b82525050565b60006136988261401a565b6136a28185614030565b93506136b28185602086016142aa565b6136bb816144ed565b840191505092915050565b60006136d182614025565b6136db818561404c565b93506136eb8185602086016142aa565b6136f4816144ed565b840191505092915050565b600061370a82614025565b613714818561405d565b93506137248185602086016142aa565b80840191505092915050565b600061373d60128361404c565b9150613748826144fe565b602082019050919050565b600061376060308361404c565b915061376b82614527565b604082019050919050565b600061378360268361404c565b915061378e82614576565b604082019050919050565b60006137a660198361404c565b91506137b1826145c5565b602082019050919050565b60006137c960118361404c565b91506137d4826145ee565b602082019050919050565b60006137ec601b8361404c565b91506137f782614617565b602082019050919050565b600061380f601e8361404c565b915061381a82614640565b602082019050919050565b600061383260128361404c565b915061383d82614669565b602082019050919050565b600061385560098361404c565b915061386082614692565b602082019050919050565b6000613878602a8361404c565b9150613883826146bb565b604082019050919050565b600061389b60288361404c565b91506138a68261470a565b604082019050919050565b60006138be60298361404c565b91506138c982614759565b604082019050919050565b60006138e160128361404c565b91506138ec826147a8565b602082019050919050565b6000613904601d8361404c565b915061390f826147d1565b602082019050919050565b600061392760208361404c565b9150613932826147fa565b602082019050919050565b600061394a601e8361404c565b915061395582614823565b602082019050919050565b600061396d60118361404c565b91506139788261484c565b602082019050919050565b6000613990601c8361404c565b915061399b82614875565b602082019050919050565b60006139b3601b8361404c565b91506139be8261489e565b602082019050919050565b60006139d6600083614041565b91506139e1826148c7565b600082019050919050565b60006139f960108361404c565b9150613a04826148ca565b602082019050919050565b6000613a1c60108361404c565b9150613a27826148f3565b602082019050919050565b6000613a3f60168361404c565b9150613a4a8261491c565b602082019050919050565b6000613a6260118361404c565b9150613a6d82614945565b602082019050919050565b6000613a8560148361404c565b9150613a908261496e565b602082019050919050565b6000613aa8601f8361404c565b9150613ab382614997565b602082019050919050565b6000613acb60138361404c565b9150613ad6826149c0565b602082019050919050565b6000613aee600e8361404c565b9150613af9826149e9565b602082019050919050565b604082016000820151613b1a6000850182613660565b506020820151613b2d6020850182613b42565b50505050565b613b3c8161427d565b82525050565b613b4b81614287565b82525050565b6000613b5d82856136ff565b9150613b6982846136ff565b91508190509392505050565b6000613b80826139c9565b9150819050919050565b6000602082019050613b9f600083018461366f565b92915050565b6000608082019050613bba600083018761366f565b613bc7602083018661366f565b613bd46040830185613b33565b8181036060830152613be6818461368d565b905095945050505050565b6000602082019050613c06600083018461367e565b92915050565b60006020820190508181036000830152613c2681846136c6565b905092915050565b60006020820190508181036000830152613c4781613730565b9050919050565b60006020820190508181036000830152613c6781613753565b9050919050565b60006020820190508181036000830152613c8781613776565b9050919050565b60006020820190508181036000830152613ca781613799565b9050919050565b60006020820190508181036000830152613cc7816137bc565b9050919050565b60006020820190508181036000830152613ce7816137df565b9050919050565b60006020820190508181036000830152613d0781613802565b9050919050565b60006020820190508181036000830152613d2781613825565b9050919050565b60006020820190508181036000830152613d4781613848565b9050919050565b60006020820190508181036000830152613d678161386b565b9050919050565b60006020820190508181036000830152613d878161388e565b9050919050565b60006020820190508181036000830152613da7816138b1565b9050919050565b60006020820190508181036000830152613dc7816138d4565b9050919050565b60006020820190508181036000830152613de7816138f7565b9050919050565b60006020820190508181036000830152613e078161391a565b9050919050565b60006020820190508181036000830152613e278161393d565b9050919050565b60006020820190508181036000830152613e4781613960565b9050919050565b60006020820190508181036000830152613e6781613983565b9050919050565b60006020820190508181036000830152613e87816139a6565b9050919050565b60006020820190508181036000830152613ea7816139ec565b9050919050565b60006020820190508181036000830152613ec781613a0f565b9050919050565b60006020820190508181036000830152613ee781613a32565b9050919050565b60006020820190508181036000830152613f0781613a55565b9050919050565b60006020820190508181036000830152613f2781613a78565b9050919050565b60006020820190508181036000830152613f4781613a9b565b9050919050565b60006020820190508181036000830152613f6781613abe565b9050919050565b60006020820190508181036000830152613f8781613ae1565b9050919050565b6000604082019050613fa36000830184613b04565b92915050565b6000602082019050613fbe6000830184613b33565b92915050565b6000613fce613fdf565b9050613fda8282614339565b919050565b6000604051905090565b600067ffffffffffffffff821115614004576140036144a0565b5b61400d826144ed565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061407382614241565b915061407e83614241565b9250826fffffffffffffffffffffffffffffffff038211156140a3576140a26143e4565b5b828201905092915050565b60006140b98261427d565b91506140c48361427d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140f9576140f86143e4565b5b828201905092915050565b600061410f8261427d565b915061411a8361427d565b92508261412a57614129614413565b5b828204905092915050565b60006141408261427d565b915061414b8361427d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614184576141836143e4565b5b828202905092915050565b600061419a82614241565b91506141a583614241565b9250828210156141b8576141b76143e4565b5b828203905092915050565b60006141ce8261427d565b91506141d98361427d565b9250828210156141ec576141eb6143e4565b5b828203905092915050565b60006142028261425d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156142c85780820151818401526020810190506142ad565b838111156142d7576000848401525b50505050565b60006142e88261427d565b915060008214156142fc576142fb6143e4565b5b600182039050919050565b6000600282049050600182168061431f57607f821691505b6020821081141561433357614332614442565b5b50919050565b614342826144ed565b810181811067ffffffffffffffff82111715614361576143606144a0565b5b80604052505050565b60006143758261427d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143a8576143a76143e4565b5b600182019050919050565b60006143be8261427d565b91506143c98361427d565b9250826143d9576143d8614413565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f717565727920666f7220746865207a65726f0000000000000000000000000000600082015250565b7f617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f722060008201527f617070726f76656420666f7220616c6c00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f617070726f76616c20746f2063757272656e74206f776e657200000000000000600082015250565b7f66696e64206f776e6572206661696c6564000000000000000000000000000000600082015250565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f72656163686564206d617820616d6f756e740000000000000000000000000000600082015250565b7f6e6f7420626567756e0000000000000000000000000000000000000000000000600082015250565b7f7472616e7366657220746f206e6f6e204552433732315265636569766572206960008201527f6d706c656d656e74657200000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e742e000000000000000000000000000000000000000000000000602082015250565b7f7472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f7472616e736665722066726f6d20696e636f7272656374206f776e6572000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7472616e7366657220746f206e6f6e2045524337323152656365697665720000600082015250565b7f617070726f766520746f2063616c6c6572000000000000000000000000000000600082015250565b7f756e61626c6520746f2067657420746f6b656e206f66206f776e657200000000600082015250565b7f72656163686564206d617820616d6f756e7420706572206d696e740000000000600082015250565b50565b7f6d696e7420746f20746865207a65726f00000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f7175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b7f7472616e7366657220746f20746865207a65726f000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646578206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b614a1b816141f7565b8114614a2657600080fd5b50565b614a3281614209565b8114614a3d57600080fd5b50565b614a4981614215565b8114614a5457600080fd5b50565b614a608161427d565b8114614a6b57600080fd5b5056fea26469706673582212208bfb1843a3341a62dc1b1bc34cf480e65203a22ebf62936e2e87f3af71fc17c764736f6c63430008070033

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.