ETH Price: $3,280.99 (+0.48%)
Gas: 20 Gwei

Token

Lottery (LTR)
 

Overview

Max Total Supply

920 LTR

Holders

411

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LTR
0x4c70c0ce91602db64ab86d522439a68e1a981b23
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:
Lottery

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Lottery.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';

pragma solidity ^0.8.0;

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Ownable {
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 internal currentIndex = 1;

  // 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) internal _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;

  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). 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), 'ERC721A: owner index out of bounds');
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx;
    address currOwnershipAddr;

    // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
    unchecked {
      for (uint256 i; 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('ERC721A: unable to get token of owner by index');
  }

  /**
   * @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), 'ERC721A: balance query for the zero address');
    return uint256(_addressData[owner].balance);
  }

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

  /**
   * Gas spent here starts off proportional to the maximum mint batch size.
   * It gradually moves to O(1) as tokens get transferred around in the collection over time.
   */
  function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
    require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

    revert('ERC721A: unable to determine the owner of token');
  }

  /**
   * @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), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      'ERC721A: 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), 'ERC721A: approved query for nonexistent token');

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), 'ERC721A: 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),
      'ERC721A: transfer to non ERC721Receiver implementer'
    );
  }

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

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

  /**
   * @dev Safely mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
   * - `quantity` must be greater than 0.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    _mint(to, quantity, _data, true);
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` must be greater than 0.
   *
   * Emits a {Transfer} event.
   */
  function _mint(
    address to,
    uint256 quantity,
    bytes memory _data,
    bool safe
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), 'ERC721A: mint to the zero address');
    require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

    // Overflows are incredibly unrealistic.
    // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
    // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
      _addressData[to].balance += uint128(quantity);
      _addressData[to].numberMinted += uint128(quantity);

      _ownerships[startTokenId].addr = to;
      _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

      uint256 updatedIndex = startTokenId;

      for (uint256 i; i < quantity; i++) {
        emit Transfer(address(0), to, updatedIndex);
        if (safe) {
          require(
            _checkOnERC721Received(address(0), to, updatedIndex, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
          );
        }

        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, 'ERC721A: transfer caller is not owner nor approved');

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    // Underflow of the sender's balance is impossible because we check for
    // ownership above and the recipient's balance can't realistically overflow.
    // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
    unchecked {
      _addressData[from].balance -= 1;
      _addressData[to].balance += 1;

      _ownerships[tokenId].addr = to;
      _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
          _ownerships[nextTokenId].startTimestamp = 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('ERC721A: transfer to non ERC721Receiver implementer');
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      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 {}
}

pragma solidity >=0.8.0 <0.9.0;

contract Lottery is ERC721A {
  using Strings for uint256;

  // ================== VARAIBLES =======================

  bytes32 public merkleRootWl1;
  bytes32 public merkleRootWl2;
  bytes32 public merkleRootVl;
  bool public revealed = false;

  enum SaleState {
    PAUSE, // 0
    WHITELIST_PHASE_1, // 1
    WHITELIST_PHASE_2, // 2
    PUBLIC_SALE, // 3
    VIP_SALE // 4
  }
  SaleState public saleState = SaleState.PAUSE;

  string private uriPrefix = '';
  string private uriSuffix = '.json';
  string private hiddenMetadataUri;

  uint256 public VL_PRICE = 0 ether;
  uint256 public WL_PRICE = 0.0059 ether;
  uint256 public SALE_PRICE = 0.0089 ether;

  uint256 public MAX_VL_TX = 1;
  uint256 public MAX_WL_TX = 2;
  uint256 public MAX_TX = 5;
  uint256 public MAX_PER_TX = 5;

  uint256 public MAX_VL_SUPPLY = 333;
  uint256 public MAX_WL_SUPPLY = 3000;
  uint256 public MAX_SUPPLY = 3999;

  uint256 public VL_MINTED = 0;
  uint256 public WL_MINTED = 0;
  uint256 public PB_MINTED = 0;

  mapping(address => uint256) public VL_MINT_COUNT;
  mapping(address => uint256) public WL_MINT_COUNT;

  // ================== CONTRUCTOR =======================

  constructor() ERC721A('Lottery', 'LTR') {
    setHiddenMetadataUri('ipfs://__CID__/hidden.json');
  }

  // ================== MINT FUNCTIONS =======================

  /**
   * @notice Whitelist Mint
   */
  function whitelistMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {
    // Verify Whitelist requirements
    require(
      saleState == SaleState.WHITELIST_PHASE_1 || saleState == SaleState.WHITELIST_PHASE_2,
      'Wait for whitelist mint!'
    );
    if (saleState == SaleState.WHITELIST_PHASE_1)
      require(isWhitelist(_merkleProof, merkleRootWl1), 'Address is not whitelisted phase 1!');
    if (saleState == SaleState.WHITELIST_PHASE_2)
      require(isWhitelist(_merkleProof, merkleRootWl2), 'Address is not whitelisted phase 2!');

    // Normal requirements
    require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!');
    require(totalSupply() + _quantity <= MAX_WL_SUPPLY, 'Sold out!');
    require(WL_MINTED + _quantity <= MAX_WL_SUPPLY, 'No more!');
    require(WL_MINT_COUNT[msg.sender] + _quantity <= MAX_WL_TX, 'Max mint per wallet exceeded!');
    require(msg.value >= WL_PRICE * _quantity, 'Please send the exact amount.');

    // Mint
    _safeMint(msg.sender, _quantity);

    // Mapping update
    WL_MINT_COUNT[msg.sender] += _quantity;
    WL_MINTED += _quantity;
  }

  /**
   * @notice Public Mint
   */
  function publicMint(uint256 _quantity) external payable {
    // Normal requirements
    require(saleState == SaleState.PUBLIC_SALE, 'Wait for public mint!');
    require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!');
    require(totalSupply() + _quantity <= MAX_SUPPLY - MAX_VL_SUPPLY, 'Sold out!');
    require(PB_MINTED + _quantity <= MAX_SUPPLY - MAX_WL_SUPPLY - MAX_VL_SUPPLY, 'No more!');
    if (msg.sender != owner()) {
      require(balanceOf(msg.sender) + _quantity <= MAX_TX, 'No more!');
      require(msg.value >= _quantity * SALE_PRICE, 'Please send the exact amount.');
    }

    // Mint
    _safeMint(msg.sender, _quantity);

    // Mapping update
    PB_MINTED += _quantity;
  }

  /**
   * @notice VIPlist Mint
   */
  function viplistMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {
    // Verify VIPlist requirements
    require(saleState == SaleState.VIP_SALE, 'Wait for viplist mint!');
    require(isViplist(_merkleProof), 'Address is not viplisted!');

    // Normal requirements
    require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!');
    require(totalSupply() + _quantity <= MAX_SUPPLY, 'Sold out!');
    require(VL_MINTED + _quantity <= MAX_VL_SUPPLY, 'No more!');
    require(VL_MINT_COUNT[msg.sender] + _quantity <= MAX_VL_TX, 'Max mint per wallet exceeded!');
    require(msg.value >= VL_PRICE * _quantity, 'Please send the exact amount.');

    // Mint
    _safeMint(msg.sender, _quantity);

    // Mapping update
    VL_MINT_COUNT[msg.sender] += _quantity;
    VL_MINTED += _quantity;
  }

  /**
   * @notice Team Mint
   */
  function teamMint(uint256 _quantity) external onlyOwner {
    require(_quantity > 0, 'Minimum 1 NFT has to be minted per transaction');
    require(totalSupply() + _quantity <= MAX_SUPPLY, 'Sold out');
    _safeMint(msg.sender, _quantity);
  }

  /**
   * @notice airdrop
   */
  function airdrop(address _to, uint256 _quantity) external onlyOwner {
    require(saleState != SaleState.PAUSE, 'The contract is paused!');
    require(_quantity + totalSupply() <= MAX_SUPPLY, 'Sold out');
    _safeMint(_to, _quantity);
  }

  /**
   * @notice Check if the address is in the whitelist or not
   */
  function isWhitelist(bytes32[] calldata _merkleProof, bytes32 merkleRoot)
    public
    view
    returns (bool)
  {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if (MerkleProof.verify(_merkleProof, merkleRoot, leaf)) {
      return true;
    }
    return false;
  }

  /**
   * @notice Check if the address is in the VIPlist or not
   */
  function isViplist(bytes32[] calldata _merkleProof) public view returns (bool) {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if (MerkleProof.verify(_merkleProof, merkleRootVl, leaf)) {
      return true;
    }
    return false;
  }

  // ================== SETUP FUNCTIONS =======================

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setState(SaleState _state) external onlyOwner {
    saleState = _state;
  }

  function setWhitelistPhase1(bytes32 _merkleRoot) external onlyOwner {
    merkleRootWl1 = _merkleRoot;
  }

  function setWhitelistPhase2(bytes32 _merkleRoot) external onlyOwner {
    merkleRootWl2 = _merkleRoot;
  }

  function setViplist(bytes32 _merkleRoot) external onlyOwner {
    merkleRootVl = _merkleRoot;
  }

  function setVlPrice(uint256 _newPrice) external onlyOwner {
    VL_PRICE = _newPrice;
  }

  function setWlPrice(uint256 _newPrice) external onlyOwner {
    WL_PRICE = _newPrice;
  }

  function setSalePrice(uint256 _newPrice) external onlyOwner {
    SALE_PRICE = _newPrice;
  }

  function setMaxVlTx(uint256 _maxVLTx) public onlyOwner {
    MAX_VL_TX = _maxVLTx;
  }

  function setMaxWlTx(uint256 _maxWLTx) public onlyOwner {
    MAX_WL_TX = _maxWLTx;
  }

  function setMaxTx(uint256 _maxTx) public onlyOwner {
    MAX_TX = _maxTx;
  }

  function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
    MAX_PER_TX = _maxPerTx;
  }

  function setMaxViplistSuplly(uint256 _maxVLSupply) public onlyOwner {
    MAX_VL_SUPPLY = _maxVLSupply;
  }

  function setMaxWhitelistSuplly(uint256 _maxWLSupply) public onlyOwner {
    MAX_WL_SUPPLY = _maxWLSupply;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    MAX_SUPPLY = _maxSupply;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
    if (revealed == false) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    return
      bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function withdraw() external onlyOwner {
    (bool success, ) = payable(msg.sender).call{ value: address(this).balance }('');
    require(success, 'Transfer failed.');
  }
}

File 2 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 3 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 4 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 5 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 6 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

File 9 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 10 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);
}

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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 13 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VL_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PB_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VL_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"VL_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WL_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isViplist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootVl","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWl1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWl2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleState","outputs":[{"internalType":"enum Lottery.SaleState","name":"","type":"uint8"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxVLSupply","type":"uint256"}],"name":"setMaxViplistSuplly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxVLTx","type":"uint256"}],"name":"setMaxVlTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLSupply","type":"uint256"}],"name":"setMaxWhitelistSuplly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLTx","type":"uint256"}],"name":"setMaxWlTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Lottery.SaleState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setViplist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setVlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWlPrice","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":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"viplistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600180556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908360048111156200004c576200004b62000523565b5b021790555060405180602001604052806000815250600c908051906020019062000078929190620003e3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c6929190620003e3565b506000600f556614f604cc2cc000601055661f9e80ba804000601155600160125560026013556005601455600560155561014d601655610bb8601755610f9f60185560006019556000601a556000601b553480156200012457600080fd5b506040518060400160405280600781526020017f4c6f7474657279000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c54520000000000000000000000000000000000000000000000000000000000815250620001b1620001a56200023160201b60201c565b6200023960201b60201c565b8160029080519060200190620001c9929190620003e3565b508060039080519060200190620001e2929190620003e3565b5050506200022b6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002fd60201b60201c565b620005aa565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030d6200032960201b60201c565b80600e908051906020019062000325929190620003e3565b5050565b620003396200023160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200035f620003ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003af90620004ba565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003f190620004ed565b90600052602060002090601f01602090048101928262000415576000855562000461565b82601f106200043057805160ff191683800117855562000461565b8280016001018555821562000461579182015b828111156200046057825182559160200191906001019062000443565b5b50905062000470919062000474565b5090565b5b808211156200048f57600081600090555060010162000475565b5090565b6000620004a2602083620004dc565b9150620004af8262000581565b602082019050919050565b60006020820190508181036000830152620004d58162000493565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200050657607f821691505b602082108114156200051d576200051c62000552565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615fec80620005ba6000396000f3fe6080604052600436106103d95760003560e01c80636f8b44b0116101fd578063bc33718211610118578063df9fe4d7116100ab578063ef6932141161007a578063ef69321414610e5c578063f2fde38b14610e99578063f3b2db3f14610ec2578063f404dd7914610eed578063f43a22dc14610f2a576103d9565b8063df9fe4d714610da0578063e0a8085314610dcb578063e5c1cba714610df4578063e985e9c514610e1f576103d9565b8063c87b56dd116100e7578063c87b56dd14610cf3578063cef6371b14610d30578063d14a3d0014610d5b578063d2cab05614610d84576103d9565b8063bc33718214610c4b578063be24954214610c74578063c56acc8f14610c9f578063c6f6f21614610cca576103d9565b80638dd07d0f11610190578063b4dc13151161015f578063b4dc131514610bb2578063b623a36b14610bdd578063b88d4fde14610bf9578063b98ec60e14610c22576103d9565b80638dd07d0f14610b0a57806392318be614610b3357806395d89b4114610b5e578063a22cb46514610b89576103d9565b80637f205a74116101cc5780637f205a7414610a6257806385f692a014610a8d5780638ba4cc3c14610ab65780638da5cb5b14610adf576103d9565b80636f8b44b0146109bc57806370a08231146109e5578063715018a614610a225780637ec4a65914610a39576103d9565b806332cb6b0c116102f85780634fdd43cb1161028b578063603f4d521161025a578063603f4d52146108c55780636352211e146108f057806366cbf2e21461092d57806366f05dda1461096a5780636a79df9814610993576103d9565b80634fdd43cb1461081d578063518302271461084657806356de96db146108715780635a60571b1461089a576103d9565b80633f296d49116102c75780633f296d491461074f57806342842e0e1461077a578063438b6300146107a35780634f6ccce7146107e0576103d9565b806332cb6b0c146106a757806337054d03146106d25780633827d6ec146106fb5780633ccfd60b14610738576103d9565b806319119bc9116103705780632db115441161033f5780632db11544146105fa5780632f745c59146106165780632fbba1151461065357806331c3c7a01461067c576103d9565b806319119bc9146105545780631919fed71461057f57806323b872dd146105a85780632ceb4d47146105d1576103d9565b80631273975f116103ac5780631273975f146104ac57806312f6d872146104d557806316ba10e01461050057806318160ddd14610529576103d9565b806301ffc9a7146103de57806306fdde031461041b578063081812fc14610446578063095ea7b314610483575b600080fd5b3480156103ea57600080fd5b50610405600480360381019061040091906143b9565b610f55565b6040516104129190614cd2565b60405180910390f35b34801561042757600080fd5b5061043061109f565b60405161043d9190614d23565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190614489565b611131565b60405161047a9190614c49565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190614272565b6111b6565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190614489565b6112cf565b005b3480156104e157600080fd5b506104ea6112e1565b6040516104f79190614ced565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190614440565b6112e7565b005b34801561053557600080fd5b5061053e611309565b60405161054b9190615185565b60405180910390f35b34801561056057600080fd5b50610569611313565b6040516105769190615185565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190614489565b611319565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061415c565b61132b565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190614489565b61133b565b005b610614600480360381019061060f9190614489565b61134d565b005b34801561062257600080fd5b5061063d60048036038101906106389190614272565b6115ed565b60405161064a9190615185565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614489565b6117df565b005b34801561068857600080fd5b5061069161188e565b60405161069e9190615185565b60405180910390f35b3480156106b357600080fd5b506106bc611894565b6040516106c99190615185565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061438c565b61189a565b005b34801561070757600080fd5b50610722600480360381019061071d91906142ff565b6118ac565b60405161072f9190614cd2565b60405180910390f35b34801561074457600080fd5b5061074d611940565b005b34801561075b57600080fd5b506107646119f7565b6040516107719190615185565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c919061415c565b6119fd565b005b3480156107af57600080fd5b506107ca60048036038101906107c591906140ef565b611a1d565b6040516107d79190614cb0565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190614489565b611b28565b6040516108149190615185565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190614440565b611b7b565b005b34801561085257600080fd5b5061085b611b9d565b6040516108689190614cd2565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190614413565b611bb0565b005b3480156108a657600080fd5b506108af611be5565b6040516108bc9190615185565b60405180910390f35b3480156108d157600080fd5b506108da611beb565b6040516108e79190614d08565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190614489565b611bfe565b6040516109249190614c49565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f91906140ef565b611c14565b6040516109619190615185565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190614489565b611c2c565b005b34801561099f57600080fd5b506109ba60048036038101906109b5919061438c565b611c3e565b005b3480156109c857600080fd5b506109e360048036038101906109de9190614489565b611c50565b005b3480156109f157600080fd5b50610a0c6004803603810190610a0791906140ef565b611c62565b604051610a199190615185565b60405180910390f35b348015610a2e57600080fd5b50610a37611d4b565b005b348015610a4557600080fd5b50610a606004803603810190610a5b9190614440565b611d5f565b005b348015610a6e57600080fd5b50610a77611d81565b604051610a849190615185565b60405180910390f35b348015610a9957600080fd5b50610ab46004803603810190610aaf9190614489565b611d87565b005b348015610ac257600080fd5b50610add6004803603810190610ad89190614272565b611d99565b005b348015610aeb57600080fd5b50610af4611e7d565b604051610b019190614c49565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190614489565b611ea6565b005b348015610b3f57600080fd5b50610b48611eb8565b604051610b559190614ced565b60405180910390f35b348015610b6a57600080fd5b50610b73611ebe565b604051610b809190614d23565b60405180910390f35b348015610b9557600080fd5b50610bb06004803603810190610bab9190614232565b611f50565b005b348015610bbe57600080fd5b50610bc76120d1565b604051610bd49190615185565b60405180910390f35b610bf76004803603810190610bf291906144b6565b6120d7565b005b348015610c0557600080fd5b50610c206004803603810190610c1b91906141af565b6123ec565b005b348015610c2e57600080fd5b50610c496004803603810190610c44919061438c565b612448565b005b348015610c5757600080fd5b50610c726004803603810190610c6d9190614489565b61245a565b005b348015610c8057600080fd5b50610c8961246c565b604051610c969190615185565b60405180910390f35b348015610cab57600080fd5b50610cb4612472565b604051610cc19190615185565b60405180910390f35b348015610cd657600080fd5b50610cf16004803603810190610cec9190614489565b612478565b005b348015610cff57600080fd5b50610d1a6004803603810190610d159190614489565b61248a565b604051610d279190614d23565b60405180910390f35b348015610d3c57600080fd5b50610d456125e3565b604051610d529190615185565b60405180910390f35b348015610d6757600080fd5b50610d826004803603810190610d7d9190614489565b6125e9565b005b610d9e6004803603810190610d9991906144b6565b6125fb565b005b348015610dac57600080fd5b50610db5612a18565b604051610dc29190614ced565b60405180910390f35b348015610dd757600080fd5b50610df26004803603810190610ded919061435f565b612a1e565b005b348015610e0057600080fd5b50610e09612a43565b604051610e169190615185565b60405180910390f35b348015610e2b57600080fd5b50610e466004803603810190610e41919061411c565b612a49565b604051610e539190614cd2565b60405180910390f35b348015610e6857600080fd5b50610e836004803603810190610e7e91906142b2565b612add565b604051610e909190614cd2565b60405180910390f35b348015610ea557600080fd5b50610ec06004803603810190610ebb91906140ef565b612b72565b005b348015610ece57600080fd5b50610ed7612bf6565b604051610ee49190615185565b60405180910390f35b348015610ef957600080fd5b50610f146004803603810190610f0f91906140ef565b612bfc565b604051610f219190615185565b60405180910390f35b348015610f3657600080fd5b50610f3f612c14565b604051610f4c9190615185565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061102057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061108857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611098575061109782612c1a565b5b9050919050565b6060600280546110ae9061548c565b80601f01602080910402602001604051908101604052809291908181526020018280546110da9061548c565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b5050505050905090565b600061113c82612c84565b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290615145565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111c182611bfe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990615005565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611251612c92565b73ffffffffffffffffffffffffffffffffffffffff161480611280575061127f8161127a612c92565b612a49565b5b6112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690614ec5565b60405180910390fd5b6112ca838383612c9a565b505050565b6112d7612d4c565b80600f8190555050565b60085481565b6112ef612d4c565b80600d9080519060200190611305929190613e49565b5050565b6000600154905090565b60135481565b611321612d4c565b8060118190555050565b611336838383612dca565b505050565b611343612d4c565b8060168190555050565b60036004811115611361576113606155ba565b5b600b60019054906101000a900460ff166004811115611383576113826155ba565b5b146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90615025565b60405180910390fd5b6000811180156113d557506015548111155b611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90614de5565b60405180910390fd5b6016546018546114249190615373565b8161142d611309565b61143791906152c3565b1115611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90615165565b60405180910390fd5b60165460175460185461148b9190615373565b6114959190615373565b81601b546114a391906152c3565b11156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90614e45565b60405180910390fd5b6114ec611e7d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c7576014548161152b33611c62565b61153591906152c3565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90614e45565b60405180910390fd5b601154816115849190615319565b3410156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614fe5565b60405180910390fd5b5b6115d1338261330a565b80601b60008282546115e391906152c3565b9250508190555050565b60006115f883611c62565b8210611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090614d45565b60405180910390fd5b6000611643611309565b905060008060005b8381101561179d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461173d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561178f57868414156117865781955050505050506117d9565b83806001019450505b50808060010191505061164b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090615105565b60405180910390fd5b92915050565b6117e7612d4c565b6000811161182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614d65565b60405180910390fd5b60185481611836611309565b61184091906152c3565b1115611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890615065565b60405180910390fd5b61188b338261330a565b50565b60105481565b60185481565b6118a2612d4c565b8060088190555050565b600080336040516020016118c09190614be8565b604051602081830303815290604052805190602001209050611924858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508483613328565b15611933576001915050611939565b60009150505b9392505050565b611948612d4c565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161196e90614c34565b60006040518083038185875af1925050503d80600081146119ab576040519150601f19603f3d011682016040523d82523d6000602084013e6119b0565b606091505b50509050806119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90615045565b60405180910390fd5b50565b601a5481565b611a18838383604051806020016040528060008152506123ec565b505050565b60606000611a2a83611c62565b905060008167ffffffffffffffff811115611a4857611a47615647565b5b604051908082528060200260200182016040528015611a765781602001602082028036833780820191505090505b50905060006001905060005b8381108015611a9357506018548211155b15611b1c576000611aa383611bfe565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b085782848381518110611aed57611aec615618565b5b6020026020010181815250508180611b04906154ef565b9250505b8280611b13906154ef565b93505050611a82565b82945050505050919050565b6000611b32611309565b8210611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90614e05565b60405180910390fd5b819050919050565b611b83612d4c565b80600e9080519060200190611b99929190613e49565b5050565b600b60009054906101000a900460ff1681565b611bb8612d4c565b80600b60016101000a81548160ff02191690836004811115611bdd57611bdc6155ba565b5b021790555050565b600f5481565b600b60019054906101000a900460ff1681565b6000611c098261333f565b600001519050919050565b601d6020528060005260406000206000915090505481565b611c34612d4c565b8060138190555050565b611c46612d4c565b80600a8190555050565b611c58612d4c565b8060188190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90614ee5565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611d53612d4c565b611d5d60006134d9565b565b611d67612d4c565b80600c9080519060200190611d7d929190613e49565b5050565b60115481565b611d8f612d4c565b8060178190555050565b611da1612d4c565b60006004811115611db557611db46155ba565b5b600b60019054906101000a900460ff166004811115611dd757611dd66155ba565b5b1415611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614f45565b60405180910390fd5b601854611e23611309565b82611e2e91906152c3565b1115611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690615065565b60405180910390fd5b611e79828261330a565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611eae612d4c565b8060108190555050565b60095481565b606060038054611ecd9061548c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef99061548c565b8015611f465780601f10611f1b57610100808354040283529160200191611f46565b820191906000526020600020905b815481529060010190602001808311611f2957829003601f168201915b5050505050905090565b611f58612c92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614fa5565b60405180910390fd5b8060076000611fd3612c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612080612c92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c59190614cd2565b60405180910390a35050565b601b5481565b6004808111156120ea576120e96155ba565b5b600b60019054906101000a900460ff16600481111561210c5761210b6155ba565b5b1461214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614da5565b60405180910390fd5b6121568282612add565b612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614e65565b60405180910390fd5b6000831180156121a757506015548311155b6121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90614de5565b60405180910390fd5b601854836121f2611309565b6121fc91906152c3565b111561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490615165565b60405180910390fd5b6016548360195461224e91906152c3565b111561228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690614e45565b60405180910390fd5b60125483601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122dd91906152c3565b111561231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590614e85565b60405180910390fd5b82600f5461232c9190615319565b34101561236e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236590614fe5565b60405180910390fd5b612378338461330a565b82601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c791906152c3565b9250508190555082601960008282546123e091906152c3565b92505081905550505050565b6123f7848484612dca565b6124038484848461359d565b612442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243990615085565b60405180910390fd5b50505050565b612450612d4c565b8060098190555050565b612462612d4c565b8060148190555050565b60125481565b60175481565b612480612d4c565b8060158190555050565b606061249582612c84565b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90614f85565b60405180910390fd5b60001515600b60009054906101000a900460ff161515141561258257600e80546124fd9061548c565b80601f01602080910402602001604051908101604052809291908181526020018280546125299061548c565b80156125765780601f1061254b57610100808354040283529160200191612576565b820191906000526020600020905b81548152906001019060200180831161255957829003601f168201915b505050505090506125de565b600061258c613734565b905060008151116125ac57604051806020016040528060008152506125da565b806125b6846137c6565b600d6040516020016125ca93929190614c03565b6040516020818303038152906040525b9150505b919050565b60165481565b6125f1612d4c565b8060128190555050565b6001600481111561260f5761260e6155ba565b5b600b60019054906101000a900460ff166004811115612631576126306155ba565b5b148061267057506002600481111561264c5761264b6155ba565b5b600b60019054906101000a900460ff16600481111561266e5761266d6155ba565b5b145b6126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a6906150e5565b60405180910390fd5b600160048111156126c3576126c26155ba565b5b600b60019054906101000a900460ff1660048111156126e5576126e46155ba565b5b1415612738576126f882826008546118ac565b612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e90614f65565b60405180910390fd5b5b6002600481111561274c5761274b6155ba565b5b600b60019054906101000a900460ff16600481111561276e5761276d6155ba565b5b14156127c15761278182826009546118ac565b6127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790614ea5565b60405180910390fd5b5b6000831180156127d357506015548311155b612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990614de5565b60405180910390fd5b6017548361281e611309565b61282891906152c3565b1115612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090615165565b60405180910390fd5b60175483601a5461287a91906152c3565b11156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614e45565b60405180910390fd5b60135483601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290991906152c3565b111561294a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294190614e85565b60405180910390fd5b826010546129589190615319565b34101561299a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299190614fe5565b60405180910390fd5b6129a4338461330a565b82601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f391906152c3565b9250508190555082601a6000828254612a0c91906152c3565b92505081905550505050565b600a5481565b612a26612d4c565b80600b60006101000a81548160ff02191690831515021790555050565b60195481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008033604051602001612af19190614be8565b604051602081830303815290604052805190602001209050612b57848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613328565b15612b66576001915050612b6c565b60009150505b92915050565b612b7a612d4c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be190614d85565b60405180910390fd5b612bf3816134d9565b50565b60145481565b601c6020528060005260406000206000915090505481565b60155481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612d54612c92565b73ffffffffffffffffffffffffffffffffffffffff16612d72611e7d565b73ffffffffffffffffffffffffffffffffffffffff1614612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf90614f25565b60405180910390fd5b565b6000612dd58261333f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612dfc612c92565b73ffffffffffffffffffffffffffffffffffffffff161480612e585750612e21612c92565b73ffffffffffffffffffffffffffffffffffffffff16612e4084611131565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e745750612e738260000151612e6e612c92565b612a49565b5b905080612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614fc5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f90614f05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8f90614e25565b60405180910390fd5b612fa5858585600161389e565b612fb56000848460000151612c9a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561329a576131f981612c84565b156132995782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461330385858560016138a4565b5050505050565b6133248282604051806020016040528060008152506138aa565b5050565b60008261333585846138bc565b1490509392505050565b613347613ecf565b61335082612c84565b61338f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338690614dc5565b60405180910390fd5b60008290505b60008110613498576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134895780925050506134d4565b50808060019003915050613395565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134cb90615125565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135be8473ffffffffffffffffffffffffffffffffffffffff16613912565b15613727578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135e7612c92565b8786866040518563ffffffff1660e01b81526004016136099493929190614c64565b602060405180830381600087803b15801561362357600080fd5b505af192505050801561365457506040513d601f19601f8201168201806040525081019061365191906143e6565b60015b6136d7573d8060008114613684576040519150601f19603f3d011682016040523d82523d6000602084013e613689565b606091505b506000815114156136cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c690615085565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061372c565b600190505b949350505050565b6060600c80546137439061548c565b80601f016020809104026020016040519081016040528092919081815260200182805461376f9061548c565b80156137bc5780601f10613791576101008083540402835291602001916137bc565b820191906000526020600020905b81548152906001019060200180831161379f57829003601f168201915b5050505050905090565b6060600060016137d584613935565b01905060008167ffffffffffffffff8111156137f4576137f3615647565b5b6040519080825280601f01601f1916602001820160405280156138265781602001600182028036833780820191505090505b509050600082602001820190505b600115613893578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161387d5761387c61558b565b5b049450600085141561388e57613893565b613834565b819350505050919050565b50505050565b50505050565b6138b78383836001613a88565b505050565b60008082905060005b8451811015613907576138f2828683815181106138e5576138e4615618565b5b6020026020010151613e07565b915080806138ff906154ef565b9150506138c5565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613993577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816139895761398861558b565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106139d0576d04ee2d6d415b85acef810000000083816139c6576139c561558b565b5b0492506020810190505b662386f26fc1000083106139ff57662386f26fc1000083816139f5576139f461558b565b5b0492506010810190505b6305f5e1008310613a28576305f5e1008381613a1e57613a1d61558b565b5b0492506008810190505b6127108310613a4d576127108381613a4357613a4261558b565b5b0492506004810190505b60648310613a705760648381613a6657613a6561558b565b5b0492506002810190505b600a8310613a7f576001810190505b80915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613af6906150a5565b60405180910390fd5b6000841415613b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3a906150c5565b60405180910390fd5b613b50600086838761389e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613dea57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613dd557613d95600088848861359d565b613dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dcb90615085565b60405180910390fd5b5b81806001019250508080600101915050613d1e565b508060018190555050613e0060008683876138a4565b5050505050565b6000818310613e1f57613e1a8284613e32565b613e2a565b613e298383613e32565b5b905092915050565b600082600052816020526040600020905092915050565b828054613e559061548c565b90600052602060002090601f016020900481019282613e775760008555613ebe565b82601f10613e9057805160ff1916838001178555613ebe565b82800160010185558215613ebe579182015b82811115613ebd578251825591602001919060010190613ea2565b5b509050613ecb9190613f09565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613f22576000816000905550600101613f0a565b5090565b6000613f39613f34846151c5565b6151a0565b905082815260208101848484011115613f5557613f54615685565b5b613f6084828561544a565b509392505050565b6000613f7b613f76846151f6565b6151a0565b905082815260208101848484011115613f9757613f96615685565b5b613fa284828561544a565b509392505050565b600081359050613fb981615f33565b92915050565b60008083601f840112613fd557613fd461567b565b5b8235905067ffffffffffffffff811115613ff257613ff1615676565b5b60208301915083602082028301111561400e5761400d615680565b5b9250929050565b60008135905061402481615f4a565b92915050565b60008135905061403981615f61565b92915050565b60008135905061404e81615f78565b92915050565b60008151905061406381615f78565b92915050565b600082601f83011261407e5761407d61567b565b5b813561408e848260208601613f26565b91505092915050565b6000813590506140a681615f8f565b92915050565b600082601f8301126140c1576140c061567b565b5b81356140d1848260208601613f68565b91505092915050565b6000813590506140e981615f9f565b92915050565b6000602082840312156141055761410461568f565b5b600061411384828501613faa565b91505092915050565b600080604083850312156141335761413261568f565b5b600061414185828601613faa565b925050602061415285828601613faa565b9150509250929050565b6000806000606084860312156141755761417461568f565b5b600061418386828701613faa565b935050602061419486828701613faa565b92505060406141a5868287016140da565b9150509250925092565b600080600080608085870312156141c9576141c861568f565b5b60006141d787828801613faa565b94505060206141e887828801613faa565b93505060406141f9878288016140da565b925050606085013567ffffffffffffffff81111561421a5761421961568a565b5b61422687828801614069565b91505092959194509250565b600080604083850312156142495761424861568f565b5b600061425785828601613faa565b925050602061426885828601614015565b9150509250929050565b600080604083850312156142895761428861568f565b5b600061429785828601613faa565b92505060206142a8858286016140da565b9150509250929050565b600080602083850312156142c9576142c861568f565b5b600083013567ffffffffffffffff8111156142e7576142e661568a565b5b6142f385828601613fbf565b92509250509250929050565b6000806000604084860312156143185761431761568f565b5b600084013567ffffffffffffffff8111156143365761433561568a565b5b61434286828701613fbf565b935093505060206143558682870161402a565b9150509250925092565b6000602082840312156143755761437461568f565b5b600061438384828501614015565b91505092915050565b6000602082840312156143a2576143a161568f565b5b60006143b08482850161402a565b91505092915050565b6000602082840312156143cf576143ce61568f565b5b60006143dd8482850161403f565b91505092915050565b6000602082840312156143fc576143fb61568f565b5b600061440a84828501614054565b91505092915050565b6000602082840312156144295761442861568f565b5b600061443784828501614097565b91505092915050565b6000602082840312156144565761445561568f565b5b600082013567ffffffffffffffff8111156144745761447361568a565b5b614480848285016140ac565b91505092915050565b60006020828403121561449f5761449e61568f565b5b60006144ad848285016140da565b91505092915050565b6000806000604084860312156144cf576144ce61568f565b5b60006144dd868287016140da565b935050602084013567ffffffffffffffff8111156144fe576144fd61568a565b5b61450a86828701613fbf565b92509250509250925092565b60006145228383614bca565b60208301905092915050565b614537816153a7565b82525050565b61454e614549826153a7565b615538565b82525050565b600061455f8261524c565b614569818561527a565b935061457483615227565b8060005b838110156145a557815161458c8882614516565b97506145978361526d565b925050600181019050614578565b5085935050505092915050565b6145bb816153b9565b82525050565b6145ca816153c5565b82525050565b60006145db82615257565b6145e5818561528b565b93506145f5818560208601615459565b6145fe81615694565b840191505092915050565b61461281615438565b82525050565b600061462382615262565b61462d81856152a7565b935061463d818560208601615459565b61464681615694565b840191505092915050565b600061465c82615262565b61466681856152b8565b9350614676818560208601615459565b80840191505092915050565b6000815461468f8161548c565b61469981866152b8565b945060018216600081146146b457600181146146c5576146f8565b60ff198316865281860193506146f8565b6146ce85615237565b60005b838110156146f0578154818901526001820191506020810190506146d1565b838801955050505b50505092915050565b600061470e6022836152a7565b9150614719826156b2565b604082019050919050565b6000614731602e836152a7565b915061473c82615701565b604082019050919050565b60006147546026836152a7565b915061475f82615750565b604082019050919050565b60006147776016836152a7565b91506147828261579f565b602082019050919050565b600061479a602a836152a7565b91506147a5826157c8565b604082019050919050565b60006147bd6014836152a7565b91506147c882615817565b602082019050919050565b60006147e06023836152a7565b91506147eb82615840565b604082019050919050565b60006148036025836152a7565b915061480e8261588f565b604082019050919050565b60006148266008836152a7565b9150614831826158de565b602082019050919050565b60006148496019836152a7565b915061485482615907565b602082019050919050565b600061486c601d836152a7565b915061487782615930565b602082019050919050565b600061488f6023836152a7565b915061489a82615959565b604082019050919050565b60006148b26039836152a7565b91506148bd826159a8565b604082019050919050565b60006148d5602b836152a7565b91506148e0826159f7565b604082019050919050565b60006148f86026836152a7565b915061490382615a46565b604082019050919050565b600061491b6020836152a7565b915061492682615a95565b602082019050919050565b600061493e6017836152a7565b915061494982615abe565b602082019050919050565b60006149616023836152a7565b915061496c82615ae7565b604082019050919050565b6000614984602f836152a7565b915061498f82615b36565b604082019050919050565b60006149a7601a836152a7565b91506149b282615b85565b602082019050919050565b60006149ca6032836152a7565b91506149d582615bae565b604082019050919050565b60006149ed601d836152a7565b91506149f882615bfd565b602082019050919050565b6000614a106022836152a7565b9150614a1b82615c26565b604082019050919050565b6000614a3360008361529c565b9150614a3e82615c75565b600082019050919050565b6000614a566015836152a7565b9150614a6182615c78565b602082019050919050565b6000614a796010836152a7565b9150614a8482615ca1565b602082019050919050565b6000614a9c6008836152a7565b9150614aa782615cca565b602082019050919050565b6000614abf6033836152a7565b9150614aca82615cf3565b604082019050919050565b6000614ae26021836152a7565b9150614aed82615d42565b604082019050919050565b6000614b056028836152a7565b9150614b1082615d91565b604082019050919050565b6000614b286018836152a7565b9150614b3382615de0565b602082019050919050565b6000614b4b602e836152a7565b9150614b5682615e09565b604082019050919050565b6000614b6e602f836152a7565b9150614b7982615e58565b604082019050919050565b6000614b91602d836152a7565b9150614b9c82615ea7565b604082019050919050565b6000614bb46009836152a7565b9150614bbf82615ef6565b602082019050919050565b614bd38161542e565b82525050565b614be28161542e565b82525050565b6000614bf4828461453d565b60148201915081905092915050565b6000614c0f8286614651565b9150614c1b8285614651565b9150614c278284614682565b9150819050949350505050565b6000614c3f82614a26565b9150819050919050565b6000602082019050614c5e600083018461452e565b92915050565b6000608082019050614c79600083018761452e565b614c86602083018661452e565b614c936040830185614bd9565b8181036060830152614ca581846145d0565b905095945050505050565b60006020820190508181036000830152614cca8184614554565b905092915050565b6000602082019050614ce760008301846145b2565b92915050565b6000602082019050614d0260008301846145c1565b92915050565b6000602082019050614d1d6000830184614609565b92915050565b60006020820190508181036000830152614d3d8184614618565b905092915050565b60006020820190508181036000830152614d5e81614701565b9050919050565b60006020820190508181036000830152614d7e81614724565b9050919050565b60006020820190508181036000830152614d9e81614747565b9050919050565b60006020820190508181036000830152614dbe8161476a565b9050919050565b60006020820190508181036000830152614dde8161478d565b9050919050565b60006020820190508181036000830152614dfe816147b0565b9050919050565b60006020820190508181036000830152614e1e816147d3565b9050919050565b60006020820190508181036000830152614e3e816147f6565b9050919050565b60006020820190508181036000830152614e5e81614819565b9050919050565b60006020820190508181036000830152614e7e8161483c565b9050919050565b60006020820190508181036000830152614e9e8161485f565b9050919050565b60006020820190508181036000830152614ebe81614882565b9050919050565b60006020820190508181036000830152614ede816148a5565b9050919050565b60006020820190508181036000830152614efe816148c8565b9050919050565b60006020820190508181036000830152614f1e816148eb565b9050919050565b60006020820190508181036000830152614f3e8161490e565b9050919050565b60006020820190508181036000830152614f5e81614931565b9050919050565b60006020820190508181036000830152614f7e81614954565b9050919050565b60006020820190508181036000830152614f9e81614977565b9050919050565b60006020820190508181036000830152614fbe8161499a565b9050919050565b60006020820190508181036000830152614fde816149bd565b9050919050565b60006020820190508181036000830152614ffe816149e0565b9050919050565b6000602082019050818103600083015261501e81614a03565b9050919050565b6000602082019050818103600083015261503e81614a49565b9050919050565b6000602082019050818103600083015261505e81614a6c565b9050919050565b6000602082019050818103600083015261507e81614a8f565b9050919050565b6000602082019050818103600083015261509e81614ab2565b9050919050565b600060208201905081810360008301526150be81614ad5565b9050919050565b600060208201905081810360008301526150de81614af8565b9050919050565b600060208201905081810360008301526150fe81614b1b565b9050919050565b6000602082019050818103600083015261511e81614b3e565b9050919050565b6000602082019050818103600083015261513e81614b61565b9050919050565b6000602082019050818103600083015261515e81614b84565b9050919050565b6000602082019050818103600083015261517e81614ba7565b9050919050565b600060208201905061519a6000830184614bd9565b92915050565b60006151aa6151bb565b90506151b682826154be565b919050565b6000604051905090565b600067ffffffffffffffff8211156151e0576151df615647565b5b6151e982615694565b9050602081019050919050565b600067ffffffffffffffff82111561521157615210615647565b5b61521a82615694565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152ce8261542e565b91506152d98361542e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561530e5761530d61555c565b5b828201905092915050565b60006153248261542e565b915061532f8361542e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153685761536761555c565b5b828202905092915050565b600061537e8261542e565b91506153898361542e565b92508282101561539c5761539b61555c565b5b828203905092915050565b60006153b28261540e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061540982615f1f565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000615443826153fb565b9050919050565b82818337600083830152505050565b60005b8381101561547757808201518184015260208101905061545c565b83811115615486576000848401525b50505050565b600060028204905060018216806154a457607f821691505b602082108114156154b8576154b76155e9565b5b50919050565b6154c782615694565b810181811067ffffffffffffffff821117156154e6576154e5615647565b5b80604052505050565b60006154fa8261542e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561552d5761552c61555c565b5b600182019050919050565b60006155438261554a565b9050919050565b6000615555826156a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f72207669706c697374206d696e742100000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f41646472657373206973206e6f74207669706c69737465642100000000000000600082015250565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b7f41646472657373206973206e6f742077686974656c697374656420706861736560008201527f2032210000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f41646472657373206973206e6f742077686974656c697374656420706861736560008201527f2031210000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5761697420666f72207075626c6963206d696e74210000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f722077686974656c697374206d696e74210000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60058110615f3057615f2f6155ba565b5b50565b615f3c816153a7565b8114615f4757600080fd5b50565b615f53816153b9565b8114615f5e57600080fd5b50565b615f6a816153c5565b8114615f7557600080fd5b50565b615f81816153cf565b8114615f8c57600080fd5b50565b60058110615f9c57600080fd5b50565b615fa88161542e565b8114615fb357600080fd5b5056fea2646970667358221220fdc65434956becc5b78f6159c06db3df9b497473d6d46fcf9847001135e51dca64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106103d95760003560e01c80636f8b44b0116101fd578063bc33718211610118578063df9fe4d7116100ab578063ef6932141161007a578063ef69321414610e5c578063f2fde38b14610e99578063f3b2db3f14610ec2578063f404dd7914610eed578063f43a22dc14610f2a576103d9565b8063df9fe4d714610da0578063e0a8085314610dcb578063e5c1cba714610df4578063e985e9c514610e1f576103d9565b8063c87b56dd116100e7578063c87b56dd14610cf3578063cef6371b14610d30578063d14a3d0014610d5b578063d2cab05614610d84576103d9565b8063bc33718214610c4b578063be24954214610c74578063c56acc8f14610c9f578063c6f6f21614610cca576103d9565b80638dd07d0f11610190578063b4dc13151161015f578063b4dc131514610bb2578063b623a36b14610bdd578063b88d4fde14610bf9578063b98ec60e14610c22576103d9565b80638dd07d0f14610b0a57806392318be614610b3357806395d89b4114610b5e578063a22cb46514610b89576103d9565b80637f205a74116101cc5780637f205a7414610a6257806385f692a014610a8d5780638ba4cc3c14610ab65780638da5cb5b14610adf576103d9565b80636f8b44b0146109bc57806370a08231146109e5578063715018a614610a225780637ec4a65914610a39576103d9565b806332cb6b0c116102f85780634fdd43cb1161028b578063603f4d521161025a578063603f4d52146108c55780636352211e146108f057806366cbf2e21461092d57806366f05dda1461096a5780636a79df9814610993576103d9565b80634fdd43cb1461081d578063518302271461084657806356de96db146108715780635a60571b1461089a576103d9565b80633f296d49116102c75780633f296d491461074f57806342842e0e1461077a578063438b6300146107a35780634f6ccce7146107e0576103d9565b806332cb6b0c146106a757806337054d03146106d25780633827d6ec146106fb5780633ccfd60b14610738576103d9565b806319119bc9116103705780632db115441161033f5780632db11544146105fa5780632f745c59146106165780632fbba1151461065357806331c3c7a01461067c576103d9565b806319119bc9146105545780631919fed71461057f57806323b872dd146105a85780632ceb4d47146105d1576103d9565b80631273975f116103ac5780631273975f146104ac57806312f6d872146104d557806316ba10e01461050057806318160ddd14610529576103d9565b806301ffc9a7146103de57806306fdde031461041b578063081812fc14610446578063095ea7b314610483575b600080fd5b3480156103ea57600080fd5b50610405600480360381019061040091906143b9565b610f55565b6040516104129190614cd2565b60405180910390f35b34801561042757600080fd5b5061043061109f565b60405161043d9190614d23565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190614489565b611131565b60405161047a9190614c49565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190614272565b6111b6565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190614489565b6112cf565b005b3480156104e157600080fd5b506104ea6112e1565b6040516104f79190614ced565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190614440565b6112e7565b005b34801561053557600080fd5b5061053e611309565b60405161054b9190615185565b60405180910390f35b34801561056057600080fd5b50610569611313565b6040516105769190615185565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190614489565b611319565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061415c565b61132b565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190614489565b61133b565b005b610614600480360381019061060f9190614489565b61134d565b005b34801561062257600080fd5b5061063d60048036038101906106389190614272565b6115ed565b60405161064a9190615185565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614489565b6117df565b005b34801561068857600080fd5b5061069161188e565b60405161069e9190615185565b60405180910390f35b3480156106b357600080fd5b506106bc611894565b6040516106c99190615185565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061438c565b61189a565b005b34801561070757600080fd5b50610722600480360381019061071d91906142ff565b6118ac565b60405161072f9190614cd2565b60405180910390f35b34801561074457600080fd5b5061074d611940565b005b34801561075b57600080fd5b506107646119f7565b6040516107719190615185565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c919061415c565b6119fd565b005b3480156107af57600080fd5b506107ca60048036038101906107c591906140ef565b611a1d565b6040516107d79190614cb0565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190614489565b611b28565b6040516108149190615185565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190614440565b611b7b565b005b34801561085257600080fd5b5061085b611b9d565b6040516108689190614cd2565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190614413565b611bb0565b005b3480156108a657600080fd5b506108af611be5565b6040516108bc9190615185565b60405180910390f35b3480156108d157600080fd5b506108da611beb565b6040516108e79190614d08565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190614489565b611bfe565b6040516109249190614c49565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f91906140ef565b611c14565b6040516109619190615185565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190614489565b611c2c565b005b34801561099f57600080fd5b506109ba60048036038101906109b5919061438c565b611c3e565b005b3480156109c857600080fd5b506109e360048036038101906109de9190614489565b611c50565b005b3480156109f157600080fd5b50610a0c6004803603810190610a0791906140ef565b611c62565b604051610a199190615185565b60405180910390f35b348015610a2e57600080fd5b50610a37611d4b565b005b348015610a4557600080fd5b50610a606004803603810190610a5b9190614440565b611d5f565b005b348015610a6e57600080fd5b50610a77611d81565b604051610a849190615185565b60405180910390f35b348015610a9957600080fd5b50610ab46004803603810190610aaf9190614489565b611d87565b005b348015610ac257600080fd5b50610add6004803603810190610ad89190614272565b611d99565b005b348015610aeb57600080fd5b50610af4611e7d565b604051610b019190614c49565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190614489565b611ea6565b005b348015610b3f57600080fd5b50610b48611eb8565b604051610b559190614ced565b60405180910390f35b348015610b6a57600080fd5b50610b73611ebe565b604051610b809190614d23565b60405180910390f35b348015610b9557600080fd5b50610bb06004803603810190610bab9190614232565b611f50565b005b348015610bbe57600080fd5b50610bc76120d1565b604051610bd49190615185565b60405180910390f35b610bf76004803603810190610bf291906144b6565b6120d7565b005b348015610c0557600080fd5b50610c206004803603810190610c1b91906141af565b6123ec565b005b348015610c2e57600080fd5b50610c496004803603810190610c44919061438c565b612448565b005b348015610c5757600080fd5b50610c726004803603810190610c6d9190614489565b61245a565b005b348015610c8057600080fd5b50610c8961246c565b604051610c969190615185565b60405180910390f35b348015610cab57600080fd5b50610cb4612472565b604051610cc19190615185565b60405180910390f35b348015610cd657600080fd5b50610cf16004803603810190610cec9190614489565b612478565b005b348015610cff57600080fd5b50610d1a6004803603810190610d159190614489565b61248a565b604051610d279190614d23565b60405180910390f35b348015610d3c57600080fd5b50610d456125e3565b604051610d529190615185565b60405180910390f35b348015610d6757600080fd5b50610d826004803603810190610d7d9190614489565b6125e9565b005b610d9e6004803603810190610d9991906144b6565b6125fb565b005b348015610dac57600080fd5b50610db5612a18565b604051610dc29190614ced565b60405180910390f35b348015610dd757600080fd5b50610df26004803603810190610ded919061435f565b612a1e565b005b348015610e0057600080fd5b50610e09612a43565b604051610e169190615185565b60405180910390f35b348015610e2b57600080fd5b50610e466004803603810190610e41919061411c565b612a49565b604051610e539190614cd2565b60405180910390f35b348015610e6857600080fd5b50610e836004803603810190610e7e91906142b2565b612add565b604051610e909190614cd2565b60405180910390f35b348015610ea557600080fd5b50610ec06004803603810190610ebb91906140ef565b612b72565b005b348015610ece57600080fd5b50610ed7612bf6565b604051610ee49190615185565b60405180910390f35b348015610ef957600080fd5b50610f146004803603810190610f0f91906140ef565b612bfc565b604051610f219190615185565b60405180910390f35b348015610f3657600080fd5b50610f3f612c14565b604051610f4c9190615185565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061102057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061108857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611098575061109782612c1a565b5b9050919050565b6060600280546110ae9061548c565b80601f01602080910402602001604051908101604052809291908181526020018280546110da9061548c565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b5050505050905090565b600061113c82612c84565b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290615145565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111c182611bfe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990615005565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611251612c92565b73ffffffffffffffffffffffffffffffffffffffff161480611280575061127f8161127a612c92565b612a49565b5b6112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690614ec5565b60405180910390fd5b6112ca838383612c9a565b505050565b6112d7612d4c565b80600f8190555050565b60085481565b6112ef612d4c565b80600d9080519060200190611305929190613e49565b5050565b6000600154905090565b60135481565b611321612d4c565b8060118190555050565b611336838383612dca565b505050565b611343612d4c565b8060168190555050565b60036004811115611361576113606155ba565b5b600b60019054906101000a900460ff166004811115611383576113826155ba565b5b146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90615025565b60405180910390fd5b6000811180156113d557506015548111155b611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90614de5565b60405180910390fd5b6016546018546114249190615373565b8161142d611309565b61143791906152c3565b1115611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90615165565b60405180910390fd5b60165460175460185461148b9190615373565b6114959190615373565b81601b546114a391906152c3565b11156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90614e45565b60405180910390fd5b6114ec611e7d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c7576014548161152b33611c62565b61153591906152c3565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90614e45565b60405180910390fd5b601154816115849190615319565b3410156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614fe5565b60405180910390fd5b5b6115d1338261330a565b80601b60008282546115e391906152c3565b9250508190555050565b60006115f883611c62565b8210611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090614d45565b60405180910390fd5b6000611643611309565b905060008060005b8381101561179d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461173d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561178f57868414156117865781955050505050506117d9565b83806001019450505b50808060010191505061164b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090615105565b60405180910390fd5b92915050565b6117e7612d4c565b6000811161182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614d65565b60405180910390fd5b60185481611836611309565b61184091906152c3565b1115611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890615065565b60405180910390fd5b61188b338261330a565b50565b60105481565b60185481565b6118a2612d4c565b8060088190555050565b600080336040516020016118c09190614be8565b604051602081830303815290604052805190602001209050611924858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508483613328565b15611933576001915050611939565b60009150505b9392505050565b611948612d4c565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161196e90614c34565b60006040518083038185875af1925050503d80600081146119ab576040519150601f19603f3d011682016040523d82523d6000602084013e6119b0565b606091505b50509050806119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90615045565b60405180910390fd5b50565b601a5481565b611a18838383604051806020016040528060008152506123ec565b505050565b60606000611a2a83611c62565b905060008167ffffffffffffffff811115611a4857611a47615647565b5b604051908082528060200260200182016040528015611a765781602001602082028036833780820191505090505b50905060006001905060005b8381108015611a9357506018548211155b15611b1c576000611aa383611bfe565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b085782848381518110611aed57611aec615618565b5b6020026020010181815250508180611b04906154ef565b9250505b8280611b13906154ef565b93505050611a82565b82945050505050919050565b6000611b32611309565b8210611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90614e05565b60405180910390fd5b819050919050565b611b83612d4c565b80600e9080519060200190611b99929190613e49565b5050565b600b60009054906101000a900460ff1681565b611bb8612d4c565b80600b60016101000a81548160ff02191690836004811115611bdd57611bdc6155ba565b5b021790555050565b600f5481565b600b60019054906101000a900460ff1681565b6000611c098261333f565b600001519050919050565b601d6020528060005260406000206000915090505481565b611c34612d4c565b8060138190555050565b611c46612d4c565b80600a8190555050565b611c58612d4c565b8060188190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90614ee5565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611d53612d4c565b611d5d60006134d9565b565b611d67612d4c565b80600c9080519060200190611d7d929190613e49565b5050565b60115481565b611d8f612d4c565b8060178190555050565b611da1612d4c565b60006004811115611db557611db46155ba565b5b600b60019054906101000a900460ff166004811115611dd757611dd66155ba565b5b1415611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614f45565b60405180910390fd5b601854611e23611309565b82611e2e91906152c3565b1115611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690615065565b60405180910390fd5b611e79828261330a565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611eae612d4c565b8060108190555050565b60095481565b606060038054611ecd9061548c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef99061548c565b8015611f465780601f10611f1b57610100808354040283529160200191611f46565b820191906000526020600020905b815481529060010190602001808311611f2957829003601f168201915b5050505050905090565b611f58612c92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614fa5565b60405180910390fd5b8060076000611fd3612c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612080612c92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c59190614cd2565b60405180910390a35050565b601b5481565b6004808111156120ea576120e96155ba565b5b600b60019054906101000a900460ff16600481111561210c5761210b6155ba565b5b1461214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614da5565b60405180910390fd5b6121568282612add565b612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614e65565b60405180910390fd5b6000831180156121a757506015548311155b6121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90614de5565b60405180910390fd5b601854836121f2611309565b6121fc91906152c3565b111561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490615165565b60405180910390fd5b6016548360195461224e91906152c3565b111561228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690614e45565b60405180910390fd5b60125483601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122dd91906152c3565b111561231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590614e85565b60405180910390fd5b82600f5461232c9190615319565b34101561236e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236590614fe5565b60405180910390fd5b612378338461330a565b82601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c791906152c3565b9250508190555082601960008282546123e091906152c3565b92505081905550505050565b6123f7848484612dca565b6124038484848461359d565b612442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243990615085565b60405180910390fd5b50505050565b612450612d4c565b8060098190555050565b612462612d4c565b8060148190555050565b60125481565b60175481565b612480612d4c565b8060158190555050565b606061249582612c84565b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90614f85565b60405180910390fd5b60001515600b60009054906101000a900460ff161515141561258257600e80546124fd9061548c565b80601f01602080910402602001604051908101604052809291908181526020018280546125299061548c565b80156125765780601f1061254b57610100808354040283529160200191612576565b820191906000526020600020905b81548152906001019060200180831161255957829003601f168201915b505050505090506125de565b600061258c613734565b905060008151116125ac57604051806020016040528060008152506125da565b806125b6846137c6565b600d6040516020016125ca93929190614c03565b6040516020818303038152906040525b9150505b919050565b60165481565b6125f1612d4c565b8060128190555050565b6001600481111561260f5761260e6155ba565b5b600b60019054906101000a900460ff166004811115612631576126306155ba565b5b148061267057506002600481111561264c5761264b6155ba565b5b600b60019054906101000a900460ff16600481111561266e5761266d6155ba565b5b145b6126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a6906150e5565b60405180910390fd5b600160048111156126c3576126c26155ba565b5b600b60019054906101000a900460ff1660048111156126e5576126e46155ba565b5b1415612738576126f882826008546118ac565b612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e90614f65565b60405180910390fd5b5b6002600481111561274c5761274b6155ba565b5b600b60019054906101000a900460ff16600481111561276e5761276d6155ba565b5b14156127c15761278182826009546118ac565b6127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790614ea5565b60405180910390fd5b5b6000831180156127d357506015548311155b612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990614de5565b60405180910390fd5b6017548361281e611309565b61282891906152c3565b1115612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090615165565b60405180910390fd5b60175483601a5461287a91906152c3565b11156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614e45565b60405180910390fd5b60135483601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290991906152c3565b111561294a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294190614e85565b60405180910390fd5b826010546129589190615319565b34101561299a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299190614fe5565b60405180910390fd5b6129a4338461330a565b82601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f391906152c3565b9250508190555082601a6000828254612a0c91906152c3565b92505081905550505050565b600a5481565b612a26612d4c565b80600b60006101000a81548160ff02191690831515021790555050565b60195481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008033604051602001612af19190614be8565b604051602081830303815290604052805190602001209050612b57848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613328565b15612b66576001915050612b6c565b60009150505b92915050565b612b7a612d4c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be190614d85565b60405180910390fd5b612bf3816134d9565b50565b60145481565b601c6020528060005260406000206000915090505481565b60155481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612d54612c92565b73ffffffffffffffffffffffffffffffffffffffff16612d72611e7d565b73ffffffffffffffffffffffffffffffffffffffff1614612dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbf90614f25565b60405180910390fd5b565b6000612dd58261333f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612dfc612c92565b73ffffffffffffffffffffffffffffffffffffffff161480612e585750612e21612c92565b73ffffffffffffffffffffffffffffffffffffffff16612e4084611131565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e745750612e738260000151612e6e612c92565b612a49565b5b905080612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614fc5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f90614f05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8f90614e25565b60405180910390fd5b612fa5858585600161389e565b612fb56000848460000151612c9a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561329a576131f981612c84565b156132995782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461330385858560016138a4565b5050505050565b6133248282604051806020016040528060008152506138aa565b5050565b60008261333585846138bc565b1490509392505050565b613347613ecf565b61335082612c84565b61338f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338690614dc5565b60405180910390fd5b60008290505b60008110613498576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134895780925050506134d4565b50808060019003915050613395565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134cb90615125565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135be8473ffffffffffffffffffffffffffffffffffffffff16613912565b15613727578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135e7612c92565b8786866040518563ffffffff1660e01b81526004016136099493929190614c64565b602060405180830381600087803b15801561362357600080fd5b505af192505050801561365457506040513d601f19601f8201168201806040525081019061365191906143e6565b60015b6136d7573d8060008114613684576040519150601f19603f3d011682016040523d82523d6000602084013e613689565b606091505b506000815114156136cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c690615085565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061372c565b600190505b949350505050565b6060600c80546137439061548c565b80601f016020809104026020016040519081016040528092919081815260200182805461376f9061548c565b80156137bc5780601f10613791576101008083540402835291602001916137bc565b820191906000526020600020905b81548152906001019060200180831161379f57829003601f168201915b5050505050905090565b6060600060016137d584613935565b01905060008167ffffffffffffffff8111156137f4576137f3615647565b5b6040519080825280601f01601f1916602001820160405280156138265781602001600182028036833780820191505090505b509050600082602001820190505b600115613893578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161387d5761387c61558b565b5b049450600085141561388e57613893565b613834565b819350505050919050565b50505050565b50505050565b6138b78383836001613a88565b505050565b60008082905060005b8451811015613907576138f2828683815181106138e5576138e4615618565b5b6020026020010151613e07565b915080806138ff906154ef565b9150506138c5565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613993577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816139895761398861558b565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106139d0576d04ee2d6d415b85acef810000000083816139c6576139c561558b565b5b0492506020810190505b662386f26fc1000083106139ff57662386f26fc1000083816139f5576139f461558b565b5b0492506010810190505b6305f5e1008310613a28576305f5e1008381613a1e57613a1d61558b565b5b0492506008810190505b6127108310613a4d576127108381613a4357613a4261558b565b5b0492506004810190505b60648310613a705760648381613a6657613a6561558b565b5b0492506002810190505b600a8310613a7f576001810190505b80915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613af6906150a5565b60405180910390fd5b6000841415613b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3a906150c5565b60405180910390fd5b613b50600086838761389e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613dea57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613dd557613d95600088848861359d565b613dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dcb90615085565b60405180910390fd5b5b81806001019250508080600101915050613d1e565b508060018190555050613e0060008683876138a4565b5050505050565b6000818310613e1f57613e1a8284613e32565b613e2a565b613e298383613e32565b5b905092915050565b600082600052816020526040600020905092915050565b828054613e559061548c565b90600052602060002090601f016020900481019282613e775760008555613ebe565b82601f10613e9057805160ff1916838001178555613ebe565b82800160010185558215613ebe579182015b82811115613ebd578251825591602001919060010190613ea2565b5b509050613ecb9190613f09565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613f22576000816000905550600101613f0a565b5090565b6000613f39613f34846151c5565b6151a0565b905082815260208101848484011115613f5557613f54615685565b5b613f6084828561544a565b509392505050565b6000613f7b613f76846151f6565b6151a0565b905082815260208101848484011115613f9757613f96615685565b5b613fa284828561544a565b509392505050565b600081359050613fb981615f33565b92915050565b60008083601f840112613fd557613fd461567b565b5b8235905067ffffffffffffffff811115613ff257613ff1615676565b5b60208301915083602082028301111561400e5761400d615680565b5b9250929050565b60008135905061402481615f4a565b92915050565b60008135905061403981615f61565b92915050565b60008135905061404e81615f78565b92915050565b60008151905061406381615f78565b92915050565b600082601f83011261407e5761407d61567b565b5b813561408e848260208601613f26565b91505092915050565b6000813590506140a681615f8f565b92915050565b600082601f8301126140c1576140c061567b565b5b81356140d1848260208601613f68565b91505092915050565b6000813590506140e981615f9f565b92915050565b6000602082840312156141055761410461568f565b5b600061411384828501613faa565b91505092915050565b600080604083850312156141335761413261568f565b5b600061414185828601613faa565b925050602061415285828601613faa565b9150509250929050565b6000806000606084860312156141755761417461568f565b5b600061418386828701613faa565b935050602061419486828701613faa565b92505060406141a5868287016140da565b9150509250925092565b600080600080608085870312156141c9576141c861568f565b5b60006141d787828801613faa565b94505060206141e887828801613faa565b93505060406141f9878288016140da565b925050606085013567ffffffffffffffff81111561421a5761421961568a565b5b61422687828801614069565b91505092959194509250565b600080604083850312156142495761424861568f565b5b600061425785828601613faa565b925050602061426885828601614015565b9150509250929050565b600080604083850312156142895761428861568f565b5b600061429785828601613faa565b92505060206142a8858286016140da565b9150509250929050565b600080602083850312156142c9576142c861568f565b5b600083013567ffffffffffffffff8111156142e7576142e661568a565b5b6142f385828601613fbf565b92509250509250929050565b6000806000604084860312156143185761431761568f565b5b600084013567ffffffffffffffff8111156143365761433561568a565b5b61434286828701613fbf565b935093505060206143558682870161402a565b9150509250925092565b6000602082840312156143755761437461568f565b5b600061438384828501614015565b91505092915050565b6000602082840312156143a2576143a161568f565b5b60006143b08482850161402a565b91505092915050565b6000602082840312156143cf576143ce61568f565b5b60006143dd8482850161403f565b91505092915050565b6000602082840312156143fc576143fb61568f565b5b600061440a84828501614054565b91505092915050565b6000602082840312156144295761442861568f565b5b600061443784828501614097565b91505092915050565b6000602082840312156144565761445561568f565b5b600082013567ffffffffffffffff8111156144745761447361568a565b5b614480848285016140ac565b91505092915050565b60006020828403121561449f5761449e61568f565b5b60006144ad848285016140da565b91505092915050565b6000806000604084860312156144cf576144ce61568f565b5b60006144dd868287016140da565b935050602084013567ffffffffffffffff8111156144fe576144fd61568a565b5b61450a86828701613fbf565b92509250509250925092565b60006145228383614bca565b60208301905092915050565b614537816153a7565b82525050565b61454e614549826153a7565b615538565b82525050565b600061455f8261524c565b614569818561527a565b935061457483615227565b8060005b838110156145a557815161458c8882614516565b97506145978361526d565b925050600181019050614578565b5085935050505092915050565b6145bb816153b9565b82525050565b6145ca816153c5565b82525050565b60006145db82615257565b6145e5818561528b565b93506145f5818560208601615459565b6145fe81615694565b840191505092915050565b61461281615438565b82525050565b600061462382615262565b61462d81856152a7565b935061463d818560208601615459565b61464681615694565b840191505092915050565b600061465c82615262565b61466681856152b8565b9350614676818560208601615459565b80840191505092915050565b6000815461468f8161548c565b61469981866152b8565b945060018216600081146146b457600181146146c5576146f8565b60ff198316865281860193506146f8565b6146ce85615237565b60005b838110156146f0578154818901526001820191506020810190506146d1565b838801955050505b50505092915050565b600061470e6022836152a7565b9150614719826156b2565b604082019050919050565b6000614731602e836152a7565b915061473c82615701565b604082019050919050565b60006147546026836152a7565b915061475f82615750565b604082019050919050565b60006147776016836152a7565b91506147828261579f565b602082019050919050565b600061479a602a836152a7565b91506147a5826157c8565b604082019050919050565b60006147bd6014836152a7565b91506147c882615817565b602082019050919050565b60006147e06023836152a7565b91506147eb82615840565b604082019050919050565b60006148036025836152a7565b915061480e8261588f565b604082019050919050565b60006148266008836152a7565b9150614831826158de565b602082019050919050565b60006148496019836152a7565b915061485482615907565b602082019050919050565b600061486c601d836152a7565b915061487782615930565b602082019050919050565b600061488f6023836152a7565b915061489a82615959565b604082019050919050565b60006148b26039836152a7565b91506148bd826159a8565b604082019050919050565b60006148d5602b836152a7565b91506148e0826159f7565b604082019050919050565b60006148f86026836152a7565b915061490382615a46565b604082019050919050565b600061491b6020836152a7565b915061492682615a95565b602082019050919050565b600061493e6017836152a7565b915061494982615abe565b602082019050919050565b60006149616023836152a7565b915061496c82615ae7565b604082019050919050565b6000614984602f836152a7565b915061498f82615b36565b604082019050919050565b60006149a7601a836152a7565b91506149b282615b85565b602082019050919050565b60006149ca6032836152a7565b91506149d582615bae565b604082019050919050565b60006149ed601d836152a7565b91506149f882615bfd565b602082019050919050565b6000614a106022836152a7565b9150614a1b82615c26565b604082019050919050565b6000614a3360008361529c565b9150614a3e82615c75565b600082019050919050565b6000614a566015836152a7565b9150614a6182615c78565b602082019050919050565b6000614a796010836152a7565b9150614a8482615ca1565b602082019050919050565b6000614a9c6008836152a7565b9150614aa782615cca565b602082019050919050565b6000614abf6033836152a7565b9150614aca82615cf3565b604082019050919050565b6000614ae26021836152a7565b9150614aed82615d42565b604082019050919050565b6000614b056028836152a7565b9150614b1082615d91565b604082019050919050565b6000614b286018836152a7565b9150614b3382615de0565b602082019050919050565b6000614b4b602e836152a7565b9150614b5682615e09565b604082019050919050565b6000614b6e602f836152a7565b9150614b7982615e58565b604082019050919050565b6000614b91602d836152a7565b9150614b9c82615ea7565b604082019050919050565b6000614bb46009836152a7565b9150614bbf82615ef6565b602082019050919050565b614bd38161542e565b82525050565b614be28161542e565b82525050565b6000614bf4828461453d565b60148201915081905092915050565b6000614c0f8286614651565b9150614c1b8285614651565b9150614c278284614682565b9150819050949350505050565b6000614c3f82614a26565b9150819050919050565b6000602082019050614c5e600083018461452e565b92915050565b6000608082019050614c79600083018761452e565b614c86602083018661452e565b614c936040830185614bd9565b8181036060830152614ca581846145d0565b905095945050505050565b60006020820190508181036000830152614cca8184614554565b905092915050565b6000602082019050614ce760008301846145b2565b92915050565b6000602082019050614d0260008301846145c1565b92915050565b6000602082019050614d1d6000830184614609565b92915050565b60006020820190508181036000830152614d3d8184614618565b905092915050565b60006020820190508181036000830152614d5e81614701565b9050919050565b60006020820190508181036000830152614d7e81614724565b9050919050565b60006020820190508181036000830152614d9e81614747565b9050919050565b60006020820190508181036000830152614dbe8161476a565b9050919050565b60006020820190508181036000830152614dde8161478d565b9050919050565b60006020820190508181036000830152614dfe816147b0565b9050919050565b60006020820190508181036000830152614e1e816147d3565b9050919050565b60006020820190508181036000830152614e3e816147f6565b9050919050565b60006020820190508181036000830152614e5e81614819565b9050919050565b60006020820190508181036000830152614e7e8161483c565b9050919050565b60006020820190508181036000830152614e9e8161485f565b9050919050565b60006020820190508181036000830152614ebe81614882565b9050919050565b60006020820190508181036000830152614ede816148a5565b9050919050565b60006020820190508181036000830152614efe816148c8565b9050919050565b60006020820190508181036000830152614f1e816148eb565b9050919050565b60006020820190508181036000830152614f3e8161490e565b9050919050565b60006020820190508181036000830152614f5e81614931565b9050919050565b60006020820190508181036000830152614f7e81614954565b9050919050565b60006020820190508181036000830152614f9e81614977565b9050919050565b60006020820190508181036000830152614fbe8161499a565b9050919050565b60006020820190508181036000830152614fde816149bd565b9050919050565b60006020820190508181036000830152614ffe816149e0565b9050919050565b6000602082019050818103600083015261501e81614a03565b9050919050565b6000602082019050818103600083015261503e81614a49565b9050919050565b6000602082019050818103600083015261505e81614a6c565b9050919050565b6000602082019050818103600083015261507e81614a8f565b9050919050565b6000602082019050818103600083015261509e81614ab2565b9050919050565b600060208201905081810360008301526150be81614ad5565b9050919050565b600060208201905081810360008301526150de81614af8565b9050919050565b600060208201905081810360008301526150fe81614b1b565b9050919050565b6000602082019050818103600083015261511e81614b3e565b9050919050565b6000602082019050818103600083015261513e81614b61565b9050919050565b6000602082019050818103600083015261515e81614b84565b9050919050565b6000602082019050818103600083015261517e81614ba7565b9050919050565b600060208201905061519a6000830184614bd9565b92915050565b60006151aa6151bb565b90506151b682826154be565b919050565b6000604051905090565b600067ffffffffffffffff8211156151e0576151df615647565b5b6151e982615694565b9050602081019050919050565b600067ffffffffffffffff82111561521157615210615647565b5b61521a82615694565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152ce8261542e565b91506152d98361542e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561530e5761530d61555c565b5b828201905092915050565b60006153248261542e565b915061532f8361542e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153685761536761555c565b5b828202905092915050565b600061537e8261542e565b91506153898361542e565b92508282101561539c5761539b61555c565b5b828203905092915050565b60006153b28261540e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061540982615f1f565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000615443826153fb565b9050919050565b82818337600083830152505050565b60005b8381101561547757808201518184015260208101905061545c565b83811115615486576000848401525b50505050565b600060028204905060018216806154a457607f821691505b602082108114156154b8576154b76155e9565b5b50919050565b6154c782615694565b810181811067ffffffffffffffff821117156154e6576154e5615647565b5b80604052505050565b60006154fa8261542e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561552d5761552c61555c565b5b600182019050919050565b60006155438261554a565b9050919050565b6000615555826156a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f72207669706c697374206d696e742100000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f41646472657373206973206e6f74207669706c69737465642100000000000000600082015250565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b7f41646472657373206973206e6f742077686974656c697374656420706861736560008201527f2032210000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f41646472657373206973206e6f742077686974656c697374656420706861736560008201527f2031210000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5761697420666f72207075626c6963206d696e74210000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f5761697420666f722077686974656c697374206d696e74210000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60058110615f3057615f2f6155ba565b5b50565b615f3c816153a7565b8114615f4757600080fd5b50565b615f53816153b9565b8114615f5e57600080fd5b50565b615f6a816153c5565b8114615f7557600080fd5b50565b615f81816153cf565b8114615f8c57600080fd5b50565b60058110615f9c57600080fd5b50565b615fa88161542e565b8114615fb357600080fd5b5056fea2646970667358221220fdc65434956becc5b78f6159c06db3df9b497473d6d46fcf9847001135e51dca64736f6c63430008070033

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.