ETH Price: $3,191.52 (-7.28%)
Gas: 3 Gwei

Token

HOZUKI (HZK)
 

Overview

Max Total Supply

5,859 HZK

Holders

1,822

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 HZK
0x7acb27b14d0c030488677635bf0a8cb6d733c80d
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:
HOZUKI

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : HOZUKI.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/security/ReentrancyGuard.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 {
  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 HOZUKI is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  bytes32 public merkleRootWl;
  bytes32 public merkleRootAllow;
  mapping(address => bool) public whitelistClaimed;

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

  uint256 public SALE_PRICE = 0.0055 ether;
  uint256 public ALLOW_PRICE = 0.0035 ether;
  uint256 public MAX_PER_TX = 10;
  uint256 public MAX_PER_FREE = 1;
  uint256 public MAX_TX = 10;
  uint256 public MAX_AL_TX = 3;
  uint256 public MAX_WL_SUPPLY = 2000;
  uint256 public MAX_AL_SUPPLY = 4000;
  uint256 public MAX_SUPPLY = 7777;
  uint256 public WL_MINT_COUNT = 0;
  uint256 public AL_MINT_COUNT = 0;

  bool public paused = true;
  bool public revealed = false;

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

  /**
   * @notice Public Mint
   */
  function publicMint(uint256 _quantity) external payable {
    require(!paused, 'The contract is paused!');
    require(totalSupply() + _quantity <= MAX_SUPPLY - MAX_WL_SUPPLY, 'Sold out!');
    require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!');
    if (msg.sender != owner()) {
      require(balanceOf(msg.sender) + _quantity <= MAX_TX, 'No more!');
      require(msg.value >= _quantity * SALE_PRICE, 'Please send the exact amount.');
    }
    _safeMint(msg.sender, _quantity);
  }

  /**
   * @notice Allowlist Mint
   */
  function allowlistMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {
    require(!paused, 'The contract is paused!');
    require(AL_MINT_COUNT + _quantity <= MAX_AL_SUPPLY, 'No more!');
    require(totalSupply() + _quantity <= MAX_SUPPLY, 'Sold out!');
    require(_quantity > 0 && _quantity <= MAX_PER_TX, 'Invalid mint amount!');
    require(isAllowlist(_merkleProof), 'Address is not allowlisted!');

    if (msg.sender != owner()) {
      require(balanceOf(msg.sender) + _quantity <= MAX_AL_TX, 'No more!');
      require(msg.value >= _quantity * ALLOW_PRICE, 'Please send the exact amount.');
    }
    AL_MINT_COUNT = AL_MINT_COUNT + _quantity;
    _safeMint(msg.sender, _quantity);
  }

  /**
   * @notice Whitelist Mint
   */
  function whitelistMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {
    require(!paused, 'The contract is paused!');
    require(WL_MINT_COUNT + _quantity <= MAX_WL_SUPPLY, 'No more!');
    require(totalSupply() + _quantity <= MAX_SUPPLY, 'Sold out!');
    require(_quantity > 0 && _quantity <= MAX_PER_FREE, 'Invalid mint amount!');
    require(isWhitelist(_merkleProof), 'Address is not whitelisted!');

    if (msg.sender != owner()) {
      require(!whitelistClaimed[msg.sender], 'No more!');
      if (!whitelistClaimed[msg.sender]) {
        require(msg.value >= 0, 'Please send the exact amount.');
        whitelistClaimed[_msgSender()] = true;
      }
    }
    WL_MINT_COUNT = WL_MINT_COUNT + _quantity;
    _safeMint(msg.sender, _quantity);
  }

  /**
   * @notice Team Mint
   */
  function teamMint(uint256 _quantity) external onlyOwner {
    require(!paused, 'The contract is paused!');
    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(!paused, 'The contract is paused!');
    require(_quantity + totalSupply() <= MAX_SUPPLY, 'Sold out');
    _safeMint(_to, _quantity);
  }

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

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

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

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setWhitelist(bytes32 _merkleRoot) external onlyOwner {
    merkleRootWl = _merkleRoot;
  }

  function setAllowList(bytes32 _merkleRoot) external onlyOwner {
    merkleRootAllow = _merkleRoot;
  }

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

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

  function setMaxPerFree(uint256 _maxPerFree) public onlyOwner {
    MAX_PER_FREE = _maxPerFree;
  }

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

  function setMaxAlTx(uint256 _maxALTx) public onlyOwner {
    MAX_AL_TX = _maxALTx;
  }

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

  function setMaxAllowlistSuplly(uint256 _maxALSupply) public onlyOwner {
    MAX_AL_SUPPLY = _maxALSupply;
  }

  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 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _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}
     *
     * _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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 10 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 11 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 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 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":"ALLOW_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AL_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AL_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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_WL_SUPPLY","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":"WL_MINT_COUNT","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":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootAllow","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWl","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxALTx","type":"uint256"}],"name":"setMaxAlTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxALSupply","type":"uint256"}],"name":"setMaxAllowlistSuplly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","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":"_maxWLSupply","type":"uint256"}],"name":"setMaxWhitelistSuplly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","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":"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":"setWhitelist","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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

6080604052600160005560405180602001604052806000815250600c908051906020019062000030929190620003d2565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200007e929190620003d2565b5066138a388a43c000600f55660c6f3b40b6c000601055600a6011556001601255600a60135560036014556107d0601555610fa0601655611e61601755600060185560006019556001601a60006101000a81548160ff0219169083151502179055506000601a60016101000a81548160ff0219169083151502179055503480156200010857600080fd5b506040518060400160405280600681526020017f484f5a554b4900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f485a4b000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200018d929190620003d2565b508060029080519060200190620001a6929190620003d2565b505050620001c9620001bd6200021d60201b60201c565b6200022560201b60201c565b6001600881905550620002176040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002eb60201b60201c565b6200056a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002fb6200031760201b60201c565b80600e908051906020019062000313929190620003d2565b5050565b620003276200021d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034d620003a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039d90620004a9565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e090620004dc565b90600052602060002090601f01602090048101928262000404576000855562000450565b82601f106200041f57805160ff191683800117855562000450565b8280016001018555821562000450579182015b828111156200044f57825182559160200191906001019062000432565b5b5090506200045f919062000463565b5090565b5b808211156200047e57600081600090555060010162000464565b5090565b600062000491602083620004cb565b91506200049e8262000541565b602082019050919050565b60006020820190508181036000830152620004c48162000482565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004f557607f821691505b602082108114156200050c576200050b62000512565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615907806200057a6000396000f3fe6080604052600436106103975760003560e01c80637ec4a659116101dc578063c87b56dd11610102578063e945971c116100a0578063f27a9c0b1161006f578063f27a9c0b14610d5b578063f2fde38b14610d86578063f3b2db3f14610daf578063f43a22dc14610dda57610397565b8063e945971c14610c8d578063e985e9c514610cb6578063ed475f6314610cf3578063ef8319cd14610d3057610397565b8063d43f0476116100dc578063d43f047614610bd1578063db4bec4414610bfc578063e0a8085314610c39578063e930838614610c6257610397565b8063c87b56dd14610b4d578063cd94e4d314610b8a578063d2cab05614610bb557610397565b8063958aedeb1161017a578063b88d4fde11610149578063b88d4fde14610aa7578063bc33718214610ad0578063c56acc8f14610af9578063c6f6f21614610b2457610397565b8063958aedeb146109eb57806395d89b4114610a285780639ac7f28014610a53578063a22cb46514610a7e57610397565b806384584d07116101b657806384584d071461094557806385f692a01461096e5780638ba4cc3c146109975780638da5cb5b146109c057610397565b80637ec4a659146108c65780637f205a74146108ef57806381511e231461091a57610397565b806342842e0e116102c15780635c975abb1161025f5780636f8b44b01161022e5780636f8b44b01461082d57806370a0823114610856578063715018a6146108935780637bc9200e146108aa57610397565b80635c975abb146107715780636015ed5b1461079c5780636352211e146107c55780636c18c3311461080257610397565b80634f6ccce71161029b5780634f6ccce7146106b55780634fdd43cb146106f2578063518302271461071b5780635503a0e81461074657610397565b806342842e0e14610626578063438b63001461064f578063440bc7f31461068c57610397565b80631919fed7116103395780632f745c59116103085780632f745c591461057e5780632fbba115146105bb57806332cb6b0c146105e45780633ccfd60b1461060f57610397565b80631919fed7146104e757806323b872dd146105105780632db11544146105395780632e65cd061461055557610397565b8063095ea7b311610375578063095ea7b31461044157806316ba10e01461046a57806316c38b3c1461049357806318160ddd146104bc57610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613fa9565b610e05565b6040516103d091906147d7565b60405180910390f35b3480156103e557600080fd5b506103ee610f4f565b6040516103fb919061480d565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061404c565b610fe1565b604051610438919061474e565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613ec2565b611066565b005b34801561047657600080fd5b50610491600480360381019061048c9190614003565b61117f565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613f4f565b6111a1565b005b3480156104c857600080fd5b506104d16111c6565b6040516104de9190614bcf565b60405180910390f35b3480156104f357600080fd5b5061050e6004803603810190610509919061404c565b6111cf565b005b34801561051c57600080fd5b5061053760048036038101906105329190613dac565b6111e1565b005b610553600480360381019061054e919061404c565b6111f1565b005b34801561056157600080fd5b5061057c6004803603810190610577919061404c565b6113e6565b005b34801561058a57600080fd5b506105a560048036038101906105a09190613ec2565b6113f8565b6040516105b29190614bcf565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd919061404c565b6115ea565b005b3480156105f057600080fd5b506105f96116e9565b6040516106069190614bcf565b60405180910390f35b34801561061b57600080fd5b506106246116ef565b005b34801561063257600080fd5b5061064d60048036038101906106489190613dac565b6117a6565b005b34801561065b57600080fd5b5061067660048036038101906106719190613d3f565b6117c6565b60405161068391906147b5565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613f7c565b6118d1565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061404c565b6118e3565b6040516106e99190614bcf565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190614003565b611936565b005b34801561072757600080fd5b50610730611958565b60405161073d91906147d7565b60405180910390f35b34801561075257600080fd5b5061075b61196b565b604051610768919061480d565b60405180910390f35b34801561077d57600080fd5b506107866119f9565b60405161079391906147d7565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be919061404c565b611a0c565b005b3480156107d157600080fd5b506107ec60048036038101906107e7919061404c565b611a1e565b6040516107f9919061474e565b60405180910390f35b34801561080e57600080fd5b50610817611a34565b6040516108249190614bcf565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f919061404c565b611a3a565b005b34801561086257600080fd5b5061087d60048036038101906108789190613d3f565b611a4c565b60405161088a9190614bcf565b60405180910390f35b34801561089f57600080fd5b506108a8611b35565b005b6108c460048036038101906108bf9190614079565b611b49565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190614003565b611de2565b005b3480156108fb57600080fd5b50610904611e04565b6040516109119190614bcf565b60405180910390f35b34801561092657600080fd5b5061092f611e0a565b60405161093c9190614bcf565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190613f7c565b611e10565b005b34801561097a57600080fd5b506109956004803603810190610990919061404c565b611e22565b005b3480156109a357600080fd5b506109be60048036038101906109b99190613ec2565b611e34565b005b3480156109cc57600080fd5b506109d5611ef1565b6040516109e2919061474e565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613f02565b611f1b565b604051610a1f91906147d7565b60405180910390f35b348015610a3457600080fd5b50610a3d611fb0565b604051610a4a919061480d565b60405180910390f35b348015610a5f57600080fd5b50610a68612042565b604051610a759190614bcf565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa09190613e82565b612048565b005b348015610ab357600080fd5b50610ace6004803603810190610ac99190613dff565b6121c9565b005b348015610adc57600080fd5b50610af76004803603810190610af2919061404c565b612225565b005b348015610b0557600080fd5b50610b0e612237565b604051610b1b9190614bcf565b60405180910390f35b348015610b3057600080fd5b50610b4b6004803603810190610b46919061404c565b61223d565b005b348015610b5957600080fd5b50610b746004803603810190610b6f919061404c565b61224f565b604051610b81919061480d565b60405180910390f35b348015610b9657600080fd5b50610b9f6123a8565b604051610bac9190614bcf565b60405180910390f35b610bcf6004803603810190610bca9190614079565b6123ae565b005b348015610bdd57600080fd5b50610be6612721565b604051610bf39190614bcf565b60405180910390f35b348015610c0857600080fd5b50610c236004803603810190610c1e9190613d3f565b612727565b604051610c3091906147d7565b60405180910390f35b348015610c4557600080fd5b50610c606004803603810190610c5b9190613f4f565b612747565b005b348015610c6e57600080fd5b50610c7761276c565b604051610c849190614bcf565b60405180910390f35b348015610c9957600080fd5b50610cb46004803603810190610caf919061404c565b612772565b005b348015610cc257600080fd5b50610cdd6004803603810190610cd89190613d6c565b612784565b604051610cea91906147d7565b60405180910390f35b348015610cff57600080fd5b50610d1a6004803603810190610d159190613f02565b612818565b604051610d2791906147d7565b60405180910390f35b348015610d3c57600080fd5b50610d456128ad565b604051610d5291906147f2565b60405180910390f35b348015610d6757600080fd5b50610d706128b3565b604051610d7d91906147f2565b60405180910390f35b348015610d9257600080fd5b50610dad6004803603810190610da89190613d3f565b6128b9565b005b348015610dbb57600080fd5b50610dc461293d565b604051610dd19190614bcf565b60405180910390f35b348015610de657600080fd5b50610def612943565b604051610dfc9190614bcf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ed057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f3857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f485750610f4782612949565b5b9050919050565b606060018054610f5e90614ee2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8a90614ee2565b8015610fd75780601f10610fac57610100808354040283529160200191610fd7565b820191906000526020600020905b815481529060010190602001808311610fba57829003601f168201915b5050505050905090565b6000610fec826129b3565b61102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290614b8f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061107182611a1e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614a8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111016129c0565b73ffffffffffffffffffffffffffffffffffffffff161480611130575061112f8161112a6129c0565b612784565b5b61116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061492f565b60405180910390fd5b61117a8383836129c8565b505050565b611187612a7a565b80600d908051906020019061119d929190613aae565b5050565b6111a9612a7a565b80601a60006101000a81548160ff02191690831515021790555050565b60008054905090565b6111d7612a7a565b80600f8190555050565b6111ec838383612af8565b505050565b601a60009054906101000a900460ff1615611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906149cf565b60405180910390fd5b6015546017546112519190614dee565b8161125a6111c6565b6112649190614d0d565b11156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90614baf565b60405180910390fd5b6000811180156112b757506011548111155b6112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906148af565b60405180910390fd5b6112fe611ef1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113d9576013548161133d33611a4c565b6113479190614d0d565b1115611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061490f565b60405180910390fd5b600f54816113969190614d94565b3410156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90614a6f565b60405180910390fd5b5b6113e33382613038565b50565b6113ee612a7a565b8060168190555050565b600061140383611a4c565b8210611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b9061482f565b60405180910390fd5b600061144e6111c6565b905060008060005b838110156115a8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461154857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561159a57868414156115915781955050505050506115e4565b83806001019450505b508080600101915050611456565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90614b4f565b60405180910390fd5b92915050565b6115f2612a7a565b601a60009054906101000a900460ff1615611642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611639906149cf565b60405180910390fd5b60008111611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061484f565b60405180910390fd5b601754816116916111c6565b61169b9190614d0d565b11156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390614acf565b60405180910390fd5b6116e63382613038565b50565b60175481565b6116f7612a7a565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161171d90614739565b60006040518083038185875af1925050503d806000811461175a576040519150601f19603f3d011682016040523d82523d6000602084013e61175f565b606091505b50509050806117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614aaf565b60405180910390fd5b50565b6117c1838383604051806020016040528060008152506121c9565b505050565b606060006117d383611a4c565b905060008167ffffffffffffffff8111156117f1576117f061509f565b5b60405190808252806020026020018201604052801561181f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561183c57506017548211155b156118c557600061184c83611a1e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b1578284838151811061189657611895615070565b5b60200260200101818152505081806118ad90614f45565b9250505b82806118bc90614f45565b9350505061182b565b82945050505050919050565b6118d9612a7a565b8060098190555050565b60006118ed6111c6565b821061192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906148cf565b60405180910390fd5b819050919050565b61193e612a7a565b80600e9080519060200190611954929190613aae565b5050565b601a60019054906101000a900460ff1681565b600d805461197890614ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546119a490614ee2565b80156119f15780601f106119c6576101008083540402835291602001916119f1565b820191906000526020600020905b8154815290600101906020018083116119d457829003601f168201915b505050505081565b601a60009054906101000a900460ff1681565b611a14612a7a565b8060148190555050565b6000611a2982613056565b600001519050919050565b60195481565b611a42612a7a565b8060178190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab49061494f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611b3d612a7a565b611b4760006131f0565b565b601a60009054906101000a900460ff1615611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906149cf565b60405180910390fd5b60165483601954611baa9190614d0d565b1115611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be29061490f565b60405180910390fd5b60175483611bf76111c6565b611c019190614d0d565b1115611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614baf565b60405180910390fd5b600083118015611c5457506011548311155b611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a906148af565b60405180910390fd5b611c9d8282611f1b565b611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614a4f565b60405180910390fd5b611ce4611ef1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dbf5760145483611d2333611a4c565b611d2d9190614d0d565b1115611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061490f565b60405180910390fd5b60105483611d7c9190614d94565b341015611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590614a6f565b60405180910390fd5b5b82601954611dcd9190614d0d565b601981905550611ddd3384613038565b505050565b611dea612a7a565b80600c9080519060200190611e00929190613aae565b5050565b600f5481565b60125481565b611e18612a7a565b80600a8190555050565b611e2a612a7a565b8060158190555050565b611e3c612a7a565b601a60009054906101000a900460ff1615611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e83906149cf565b60405180910390fd5b601754611e976111c6565b82611ea29190614d0d565b1115611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90614acf565b60405180910390fd5b611eed8282613038565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008033604051602001611f2f91906146ed565b604051602081830303815290604052805190602001209050611f95848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836132b6565b15611fa4576001915050611faa565b60009150505b92915050565b606060028054611fbf90614ee2565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb90614ee2565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b5050505050905090565b60105481565b6120506129c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614a0f565b60405180910390fd5b80600660006120cb6129c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121786129c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121bd91906147d7565b60405180910390a35050565b6121d4848484612af8565b6121e0848484846132cd565b61221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614aef565b60405180910390fd5b50505050565b61222d612a7a565b8060138190555050565b60155481565b612245612a7a565b8060118190555050565b606061225a826129b3565b612299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612290906149ef565b60405180910390fd5b60001515601a60019054906101000a900460ff161515141561234757600e80546122c290614ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546122ee90614ee2565b801561233b5780601f106123105761010080835404028352916020019161233b565b820191906000526020600020905b81548152906001019060200180831161231e57829003601f168201915b505050505090506123a3565b6000612351613464565b90506000815111612371576040518060200160405280600081525061239f565b8061237b846134f6565b600d60405160200161238f93929190614708565b6040516020818303038152906040525b9150505b919050565b60185481565b601a60009054906101000a900460ff16156123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f5906149cf565b60405180910390fd5b6015548360185461240f9190614d0d565b1115612450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124479061490f565b60405180910390fd5b6017548361245c6111c6565b6124669190614d0d565b11156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90614baf565b60405180910390fd5b6000831180156124b957506012548311155b6124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef906148af565b60405180910390fd5b6125028282612818565b612541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125389061496f565b60405180910390fd5b612549611ef1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126fe57600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff9061490f565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126fd57600034101561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490614a6f565b60405180910390fd5b6001600b60006126ab6129c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b8260185461270c9190614d0d565b60188190555061271c3384613038565b505050565b60165481565b600b6020528060005260406000206000915054906101000a900460ff1681565b61274f612a7a565b80601a60016101000a81548160ff02191690831515021790555050565b60145481565b61277a612a7a565b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000803360405160200161282c91906146ed565b604051602081830303815290604052805190602001209050612892848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954836132b6565b156128a15760019150506128a7565b60009150505b92915050565b60095481565b600a5481565b6128c1612a7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129289061486f565b60405180910390fd5b61293a816131f0565b50565b60135481565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612a826129c0565b73ffffffffffffffffffffffffffffffffffffffff16612aa0611ef1565b73ffffffffffffffffffffffffffffffffffffffff1614612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906149af565b60405180910390fd5b565b6000612b0382613056565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612b2a6129c0565b73ffffffffffffffffffffffffffffffffffffffff161480612b865750612b4f6129c0565b73ffffffffffffffffffffffffffffffffffffffff16612b6e84610fe1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ba25750612ba18260000151612b9c6129c0565b612784565b5b905080612be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdb90614a2f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d9061498f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbd906148ef565b60405180910390fd5b612cd38585856001613657565b612ce360008484600001516129c8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612fc857612f27816129b3565b15612fc75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613031858585600161365d565b5050505050565b613052828260405180602001604052806000815250613663565b5050565b61305e613b34565b613067826129b3565b6130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d9061488f565b60405180910390fd5b60008290505b600081106131af576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131a05780925050506131eb565b508080600190039150506130ac565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e290614b6f565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826132c38584613675565b1490509392505050565b60006132ee8473ffffffffffffffffffffffffffffffffffffffff166136cb565b15613457578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133176129c0565b8786866040518563ffffffff1660e01b81526004016133399493929190614769565b602060405180830381600087803b15801561335357600080fd5b505af192505050801561338457506040513d601f19601f820116820180604052508101906133819190613fd6565b60015b613407573d80600081146133b4576040519150601f19603f3d011682016040523d82523d6000602084013e6133b9565b606091505b506000815114156133ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f690614aef565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061345c565b600190505b949350505050565b6060600c805461347390614ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461349f90614ee2565b80156134ec5780601f106134c1576101008083540402835291602001916134ec565b820191906000526020600020905b8154815290600101906020018083116134cf57829003601f168201915b5050505050905090565b6060600082141561353e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613652565b600082905060005b6000821461357057808061355990614f45565b915050600a826135699190614d63565b9150613546565b60008167ffffffffffffffff81111561358c5761358b61509f565b5b6040519080825280601f01601f1916602001820160405280156135be5781602001600182028036833780820191505090505b5090505b6000851461364b576001826135d79190614dee565b9150600a856135e69190614fb2565b60306135f29190614d0d565b60f81b81838151811061360857613607615070565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136449190614d63565b94506135c2565b8093505050505b919050565b50505050565b50505050565b61367083838360016136ee565b505050565b60008082905060005b84518110156136c0576136ab8286838151811061369e5761369d615070565b5b6020026020010151613a6c565b915080806136b890614f45565b91505061367e565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375b90614b0f565b60405180910390fd5b60008414156137a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379f90614b2f565b60405180910390fd5b6137b56000868387613657565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a4f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a3a576139fa60008884886132cd565b613a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3090614aef565b60405180910390fd5b5b81806001019250508080600101915050613983565b508060008190555050613a65600086838761365d565b5050505050565b6000818310613a8457613a7f8284613a97565b613a8f565b613a8e8383613a97565b5b905092915050565b600082600052816020526040600020905092915050565b828054613aba90614ee2565b90600052602060002090601f016020900481019282613adc5760008555613b23565b82601f10613af557805160ff1916838001178555613b23565b82800160010185558215613b23579182015b82811115613b22578251825591602001919060010190613b07565b5b509050613b309190613b6e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b87576000816000905550600101613b6f565b5090565b6000613b9e613b9984614c0f565b614bea565b905082815260208101848484011115613bba57613bb96150dd565b5b613bc5848285614ea0565b509392505050565b6000613be0613bdb84614c40565b614bea565b905082815260208101848484011115613bfc57613bfb6150dd565b5b613c07848285614ea0565b509392505050565b600081359050613c1e8161585e565b92915050565b60008083601f840112613c3a57613c396150d3565b5b8235905067ffffffffffffffff811115613c5757613c566150ce565b5b602083019150836020820283011115613c7357613c726150d8565b5b9250929050565b600081359050613c8981615875565b92915050565b600081359050613c9e8161588c565b92915050565b600081359050613cb3816158a3565b92915050565b600081519050613cc8816158a3565b92915050565b600082601f830112613ce357613ce26150d3565b5b8135613cf3848260208601613b8b565b91505092915050565b600082601f830112613d1157613d106150d3565b5b8135613d21848260208601613bcd565b91505092915050565b600081359050613d39816158ba565b92915050565b600060208284031215613d5557613d546150e7565b5b6000613d6384828501613c0f565b91505092915050565b60008060408385031215613d8357613d826150e7565b5b6000613d9185828601613c0f565b9250506020613da285828601613c0f565b9150509250929050565b600080600060608486031215613dc557613dc46150e7565b5b6000613dd386828701613c0f565b9350506020613de486828701613c0f565b9250506040613df586828701613d2a565b9150509250925092565b60008060008060808587031215613e1957613e186150e7565b5b6000613e2787828801613c0f565b9450506020613e3887828801613c0f565b9350506040613e4987828801613d2a565b925050606085013567ffffffffffffffff811115613e6a57613e696150e2565b5b613e7687828801613cce565b91505092959194509250565b60008060408385031215613e9957613e986150e7565b5b6000613ea785828601613c0f565b9250506020613eb885828601613c7a565b9150509250929050565b60008060408385031215613ed957613ed86150e7565b5b6000613ee785828601613c0f565b9250506020613ef885828601613d2a565b9150509250929050565b60008060208385031215613f1957613f186150e7565b5b600083013567ffffffffffffffff811115613f3757613f366150e2565b5b613f4385828601613c24565b92509250509250929050565b600060208284031215613f6557613f646150e7565b5b6000613f7384828501613c7a565b91505092915050565b600060208284031215613f9257613f916150e7565b5b6000613fa084828501613c8f565b91505092915050565b600060208284031215613fbf57613fbe6150e7565b5b6000613fcd84828501613ca4565b91505092915050565b600060208284031215613fec57613feb6150e7565b5b6000613ffa84828501613cb9565b91505092915050565b600060208284031215614019576140186150e7565b5b600082013567ffffffffffffffff811115614037576140366150e2565b5b61404384828501613cfc565b91505092915050565b600060208284031215614062576140616150e7565b5b600061407084828501613d2a565b91505092915050565b600080600060408486031215614092576140916150e7565b5b60006140a086828701613d2a565b935050602084013567ffffffffffffffff8111156140c1576140c06150e2565b5b6140cd86828701613c24565b92509250509250925092565b60006140e583836146cf565b60208301905092915050565b6140fa81614e22565b82525050565b61411161410c82614e22565b614f8e565b82525050565b600061412282614c96565b61412c8185614cc4565b935061413783614c71565b8060005b8381101561416857815161414f88826140d9565b975061415a83614cb7565b92505060018101905061413b565b5085935050505092915050565b61417e81614e34565b82525050565b61418d81614e40565b82525050565b600061419e82614ca1565b6141a88185614cd5565b93506141b8818560208601614eaf565b6141c1816150ec565b840191505092915050565b60006141d782614cac565b6141e18185614cf1565b93506141f1818560208601614eaf565b6141fa816150ec565b840191505092915050565b600061421082614cac565b61421a8185614d02565b935061422a818560208601614eaf565b80840191505092915050565b6000815461424381614ee2565b61424d8186614d02565b945060018216600081146142685760018114614279576142ac565b60ff198316865281860193506142ac565b61428285614c81565b60005b838110156142a457815481890152600182019150602081019050614285565b838801955050505b50505092915050565b60006142c2602283614cf1565b91506142cd8261510a565b604082019050919050565b60006142e5602e83614cf1565b91506142f082615159565b604082019050919050565b6000614308602683614cf1565b9150614313826151a8565b604082019050919050565b600061432b602a83614cf1565b9150614336826151f7565b604082019050919050565b600061434e601483614cf1565b915061435982615246565b602082019050919050565b6000614371602383614cf1565b915061437c8261526f565b604082019050919050565b6000614394602583614cf1565b915061439f826152be565b604082019050919050565b60006143b7600883614cf1565b91506143c28261530d565b602082019050919050565b60006143da603983614cf1565b91506143e582615336565b604082019050919050565b60006143fd602b83614cf1565b915061440882615385565b604082019050919050565b6000614420601b83614cf1565b915061442b826153d4565b602082019050919050565b6000614443602683614cf1565b915061444e826153fd565b604082019050919050565b6000614466602083614cf1565b91506144718261544c565b602082019050919050565b6000614489601783614cf1565b915061449482615475565b602082019050919050565b60006144ac602f83614cf1565b91506144b78261549e565b604082019050919050565b60006144cf601a83614cf1565b91506144da826154ed565b602082019050919050565b60006144f2603283614cf1565b91506144fd82615516565b604082019050919050565b6000614515601b83614cf1565b915061452082615565565b602082019050919050565b6000614538601d83614cf1565b91506145438261558e565b602082019050919050565b600061455b602283614cf1565b9150614566826155b7565b604082019050919050565b600061457e600083614ce6565b915061458982615606565b600082019050919050565b60006145a1601083614cf1565b91506145ac82615609565b602082019050919050565b60006145c4600883614cf1565b91506145cf82615632565b602082019050919050565b60006145e7603383614cf1565b91506145f28261565b565b604082019050919050565b600061460a602183614cf1565b9150614615826156aa565b604082019050919050565b600061462d602883614cf1565b9150614638826156f9565b604082019050919050565b6000614650602e83614cf1565b915061465b82615748565b604082019050919050565b6000614673602f83614cf1565b915061467e82615797565b604082019050919050565b6000614696602d83614cf1565b91506146a1826157e6565b604082019050919050565b60006146b9600983614cf1565b91506146c482615835565b602082019050919050565b6146d881614e96565b82525050565b6146e781614e96565b82525050565b60006146f98284614100565b60148201915081905092915050565b60006147148286614205565b91506147208285614205565b915061472c8284614236565b9150819050949350505050565b600061474482614571565b9150819050919050565b600060208201905061476360008301846140f1565b92915050565b600060808201905061477e60008301876140f1565b61478b60208301866140f1565b61479860408301856146de565b81810360608301526147aa8184614193565b905095945050505050565b600060208201905081810360008301526147cf8184614117565b905092915050565b60006020820190506147ec6000830184614175565b92915050565b60006020820190506148076000830184614184565b92915050565b6000602082019050818103600083015261482781846141cc565b905092915050565b60006020820190508181036000830152614848816142b5565b9050919050565b60006020820190508181036000830152614868816142d8565b9050919050565b60006020820190508181036000830152614888816142fb565b9050919050565b600060208201905081810360008301526148a88161431e565b9050919050565b600060208201905081810360008301526148c881614341565b9050919050565b600060208201905081810360008301526148e881614364565b9050919050565b6000602082019050818103600083015261490881614387565b9050919050565b60006020820190508181036000830152614928816143aa565b9050919050565b60006020820190508181036000830152614948816143cd565b9050919050565b60006020820190508181036000830152614968816143f0565b9050919050565b6000602082019050818103600083015261498881614413565b9050919050565b600060208201905081810360008301526149a881614436565b9050919050565b600060208201905081810360008301526149c881614459565b9050919050565b600060208201905081810360008301526149e88161447c565b9050919050565b60006020820190508181036000830152614a088161449f565b9050919050565b60006020820190508181036000830152614a28816144c2565b9050919050565b60006020820190508181036000830152614a48816144e5565b9050919050565b60006020820190508181036000830152614a6881614508565b9050919050565b60006020820190508181036000830152614a888161452b565b9050919050565b60006020820190508181036000830152614aa88161454e565b9050919050565b60006020820190508181036000830152614ac881614594565b9050919050565b60006020820190508181036000830152614ae8816145b7565b9050919050565b60006020820190508181036000830152614b08816145da565b9050919050565b60006020820190508181036000830152614b28816145fd565b9050919050565b60006020820190508181036000830152614b4881614620565b9050919050565b60006020820190508181036000830152614b6881614643565b9050919050565b60006020820190508181036000830152614b8881614666565b9050919050565b60006020820190508181036000830152614ba881614689565b9050919050565b60006020820190508181036000830152614bc8816146ac565b9050919050565b6000602082019050614be460008301846146de565b92915050565b6000614bf4614c05565b9050614c008282614f14565b919050565b6000604051905090565b600067ffffffffffffffff821115614c2a57614c2961509f565b5b614c33826150ec565b9050602081019050919050565b600067ffffffffffffffff821115614c5b57614c5a61509f565b5b614c64826150ec565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1882614e96565b9150614d2383614e96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5857614d57614fe3565b5b828201905092915050565b6000614d6e82614e96565b9150614d7983614e96565b925082614d8957614d88615012565b5b828204905092915050565b6000614d9f82614e96565b9150614daa83614e96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de357614de2614fe3565b5b828202905092915050565b6000614df982614e96565b9150614e0483614e96565b925082821015614e1757614e16614fe3565b5b828203905092915050565b6000614e2d82614e76565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ecd578082015181840152602081019050614eb2565b83811115614edc576000848401525b50505050565b60006002820490506001821680614efa57607f821691505b60208210811415614f0e57614f0d615041565b5b50919050565b614f1d826150ec565b810181811067ffffffffffffffff82111715614f3c57614f3b61509f565b5b80604052505050565b6000614f5082614e96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8357614f82614fe3565b5b600182019050919050565b6000614f9982614fa0565b9050919050565b6000614fab826150fd565b9050919050565b6000614fbd82614e96565b9150614fc883614e96565b925082614fd857614fd7615012565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420616c6c6f776c6973746564210000000000600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b61586781614e22565b811461587257600080fd5b50565b61587e81614e34565b811461588957600080fd5b50565b61589581614e40565b81146158a057600080fd5b50565b6158ac81614e4a565b81146158b757600080fd5b50565b6158c381614e96565b81146158ce57600080fd5b5056fea2646970667358221220b790281d806a681b3de193c908fdb332e95ba4c98770527bc3026e5397bd6a6264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106103975760003560e01c80637ec4a659116101dc578063c87b56dd11610102578063e945971c116100a0578063f27a9c0b1161006f578063f27a9c0b14610d5b578063f2fde38b14610d86578063f3b2db3f14610daf578063f43a22dc14610dda57610397565b8063e945971c14610c8d578063e985e9c514610cb6578063ed475f6314610cf3578063ef8319cd14610d3057610397565b8063d43f0476116100dc578063d43f047614610bd1578063db4bec4414610bfc578063e0a8085314610c39578063e930838614610c6257610397565b8063c87b56dd14610b4d578063cd94e4d314610b8a578063d2cab05614610bb557610397565b8063958aedeb1161017a578063b88d4fde11610149578063b88d4fde14610aa7578063bc33718214610ad0578063c56acc8f14610af9578063c6f6f21614610b2457610397565b8063958aedeb146109eb57806395d89b4114610a285780639ac7f28014610a53578063a22cb46514610a7e57610397565b806384584d07116101b657806384584d071461094557806385f692a01461096e5780638ba4cc3c146109975780638da5cb5b146109c057610397565b80637ec4a659146108c65780637f205a74146108ef57806381511e231461091a57610397565b806342842e0e116102c15780635c975abb1161025f5780636f8b44b01161022e5780636f8b44b01461082d57806370a0823114610856578063715018a6146108935780637bc9200e146108aa57610397565b80635c975abb146107715780636015ed5b1461079c5780636352211e146107c55780636c18c3311461080257610397565b80634f6ccce71161029b5780634f6ccce7146106b55780634fdd43cb146106f2578063518302271461071b5780635503a0e81461074657610397565b806342842e0e14610626578063438b63001461064f578063440bc7f31461068c57610397565b80631919fed7116103395780632f745c59116103085780632f745c591461057e5780632fbba115146105bb57806332cb6b0c146105e45780633ccfd60b1461060f57610397565b80631919fed7146104e757806323b872dd146105105780632db11544146105395780632e65cd061461055557610397565b8063095ea7b311610375578063095ea7b31461044157806316ba10e01461046a57806316c38b3c1461049357806318160ddd146104bc57610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613fa9565b610e05565b6040516103d091906147d7565b60405180910390f35b3480156103e557600080fd5b506103ee610f4f565b6040516103fb919061480d565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061404c565b610fe1565b604051610438919061474e565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613ec2565b611066565b005b34801561047657600080fd5b50610491600480360381019061048c9190614003565b61117f565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613f4f565b6111a1565b005b3480156104c857600080fd5b506104d16111c6565b6040516104de9190614bcf565b60405180910390f35b3480156104f357600080fd5b5061050e6004803603810190610509919061404c565b6111cf565b005b34801561051c57600080fd5b5061053760048036038101906105329190613dac565b6111e1565b005b610553600480360381019061054e919061404c565b6111f1565b005b34801561056157600080fd5b5061057c6004803603810190610577919061404c565b6113e6565b005b34801561058a57600080fd5b506105a560048036038101906105a09190613ec2565b6113f8565b6040516105b29190614bcf565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd919061404c565b6115ea565b005b3480156105f057600080fd5b506105f96116e9565b6040516106069190614bcf565b60405180910390f35b34801561061b57600080fd5b506106246116ef565b005b34801561063257600080fd5b5061064d60048036038101906106489190613dac565b6117a6565b005b34801561065b57600080fd5b5061067660048036038101906106719190613d3f565b6117c6565b60405161068391906147b5565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613f7c565b6118d1565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061404c565b6118e3565b6040516106e99190614bcf565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190614003565b611936565b005b34801561072757600080fd5b50610730611958565b60405161073d91906147d7565b60405180910390f35b34801561075257600080fd5b5061075b61196b565b604051610768919061480d565b60405180910390f35b34801561077d57600080fd5b506107866119f9565b60405161079391906147d7565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be919061404c565b611a0c565b005b3480156107d157600080fd5b506107ec60048036038101906107e7919061404c565b611a1e565b6040516107f9919061474e565b60405180910390f35b34801561080e57600080fd5b50610817611a34565b6040516108249190614bcf565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f919061404c565b611a3a565b005b34801561086257600080fd5b5061087d60048036038101906108789190613d3f565b611a4c565b60405161088a9190614bcf565b60405180910390f35b34801561089f57600080fd5b506108a8611b35565b005b6108c460048036038101906108bf9190614079565b611b49565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190614003565b611de2565b005b3480156108fb57600080fd5b50610904611e04565b6040516109119190614bcf565b60405180910390f35b34801561092657600080fd5b5061092f611e0a565b60405161093c9190614bcf565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190613f7c565b611e10565b005b34801561097a57600080fd5b506109956004803603810190610990919061404c565b611e22565b005b3480156109a357600080fd5b506109be60048036038101906109b99190613ec2565b611e34565b005b3480156109cc57600080fd5b506109d5611ef1565b6040516109e2919061474e565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613f02565b611f1b565b604051610a1f91906147d7565b60405180910390f35b348015610a3457600080fd5b50610a3d611fb0565b604051610a4a919061480d565b60405180910390f35b348015610a5f57600080fd5b50610a68612042565b604051610a759190614bcf565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa09190613e82565b612048565b005b348015610ab357600080fd5b50610ace6004803603810190610ac99190613dff565b6121c9565b005b348015610adc57600080fd5b50610af76004803603810190610af2919061404c565b612225565b005b348015610b0557600080fd5b50610b0e612237565b604051610b1b9190614bcf565b60405180910390f35b348015610b3057600080fd5b50610b4b6004803603810190610b46919061404c565b61223d565b005b348015610b5957600080fd5b50610b746004803603810190610b6f919061404c565b61224f565b604051610b81919061480d565b60405180910390f35b348015610b9657600080fd5b50610b9f6123a8565b604051610bac9190614bcf565b60405180910390f35b610bcf6004803603810190610bca9190614079565b6123ae565b005b348015610bdd57600080fd5b50610be6612721565b604051610bf39190614bcf565b60405180910390f35b348015610c0857600080fd5b50610c236004803603810190610c1e9190613d3f565b612727565b604051610c3091906147d7565b60405180910390f35b348015610c4557600080fd5b50610c606004803603810190610c5b9190613f4f565b612747565b005b348015610c6e57600080fd5b50610c7761276c565b604051610c849190614bcf565b60405180910390f35b348015610c9957600080fd5b50610cb46004803603810190610caf919061404c565b612772565b005b348015610cc257600080fd5b50610cdd6004803603810190610cd89190613d6c565b612784565b604051610cea91906147d7565b60405180910390f35b348015610cff57600080fd5b50610d1a6004803603810190610d159190613f02565b612818565b604051610d2791906147d7565b60405180910390f35b348015610d3c57600080fd5b50610d456128ad565b604051610d5291906147f2565b60405180910390f35b348015610d6757600080fd5b50610d706128b3565b604051610d7d91906147f2565b60405180910390f35b348015610d9257600080fd5b50610dad6004803603810190610da89190613d3f565b6128b9565b005b348015610dbb57600080fd5b50610dc461293d565b604051610dd19190614bcf565b60405180910390f35b348015610de657600080fd5b50610def612943565b604051610dfc9190614bcf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ed057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f3857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f485750610f4782612949565b5b9050919050565b606060018054610f5e90614ee2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8a90614ee2565b8015610fd75780601f10610fac57610100808354040283529160200191610fd7565b820191906000526020600020905b815481529060010190602001808311610fba57829003601f168201915b5050505050905090565b6000610fec826129b3565b61102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290614b8f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061107182611a1e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614a8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111016129c0565b73ffffffffffffffffffffffffffffffffffffffff161480611130575061112f8161112a6129c0565b612784565b5b61116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061492f565b60405180910390fd5b61117a8383836129c8565b505050565b611187612a7a565b80600d908051906020019061119d929190613aae565b5050565b6111a9612a7a565b80601a60006101000a81548160ff02191690831515021790555050565b60008054905090565b6111d7612a7a565b80600f8190555050565b6111ec838383612af8565b505050565b601a60009054906101000a900460ff1615611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906149cf565b60405180910390fd5b6015546017546112519190614dee565b8161125a6111c6565b6112649190614d0d565b11156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90614baf565b60405180910390fd5b6000811180156112b757506011548111155b6112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906148af565b60405180910390fd5b6112fe611ef1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113d9576013548161133d33611a4c565b6113479190614d0d565b1115611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061490f565b60405180910390fd5b600f54816113969190614d94565b3410156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90614a6f565b60405180910390fd5b5b6113e33382613038565b50565b6113ee612a7a565b8060168190555050565b600061140383611a4c565b8210611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b9061482f565b60405180910390fd5b600061144e6111c6565b905060008060005b838110156115a8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461154857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561159a57868414156115915781955050505050506115e4565b83806001019450505b508080600101915050611456565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90614b4f565b60405180910390fd5b92915050565b6115f2612a7a565b601a60009054906101000a900460ff1615611642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611639906149cf565b60405180910390fd5b60008111611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061484f565b60405180910390fd5b601754816116916111c6565b61169b9190614d0d565b11156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390614acf565b60405180910390fd5b6116e63382613038565b50565b60175481565b6116f7612a7a565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161171d90614739565b60006040518083038185875af1925050503d806000811461175a576040519150601f19603f3d011682016040523d82523d6000602084013e61175f565b606091505b50509050806117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614aaf565b60405180910390fd5b50565b6117c1838383604051806020016040528060008152506121c9565b505050565b606060006117d383611a4c565b905060008167ffffffffffffffff8111156117f1576117f061509f565b5b60405190808252806020026020018201604052801561181f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561183c57506017548211155b156118c557600061184c83611a1e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b1578284838151811061189657611895615070565b5b60200260200101818152505081806118ad90614f45565b9250505b82806118bc90614f45565b9350505061182b565b82945050505050919050565b6118d9612a7a565b8060098190555050565b60006118ed6111c6565b821061192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906148cf565b60405180910390fd5b819050919050565b61193e612a7a565b80600e9080519060200190611954929190613aae565b5050565b601a60019054906101000a900460ff1681565b600d805461197890614ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546119a490614ee2565b80156119f15780601f106119c6576101008083540402835291602001916119f1565b820191906000526020600020905b8154815290600101906020018083116119d457829003601f168201915b505050505081565b601a60009054906101000a900460ff1681565b611a14612a7a565b8060148190555050565b6000611a2982613056565b600001519050919050565b60195481565b611a42612a7a565b8060178190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab49061494f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611b3d612a7a565b611b4760006131f0565b565b601a60009054906101000a900460ff1615611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906149cf565b60405180910390fd5b60165483601954611baa9190614d0d565b1115611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be29061490f565b60405180910390fd5b60175483611bf76111c6565b611c019190614d0d565b1115611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614baf565b60405180910390fd5b600083118015611c5457506011548311155b611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a906148af565b60405180910390fd5b611c9d8282611f1b565b611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614a4f565b60405180910390fd5b611ce4611ef1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dbf5760145483611d2333611a4c565b611d2d9190614d0d565b1115611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061490f565b60405180910390fd5b60105483611d7c9190614d94565b341015611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590614a6f565b60405180910390fd5b5b82601954611dcd9190614d0d565b601981905550611ddd3384613038565b505050565b611dea612a7a565b80600c9080519060200190611e00929190613aae565b5050565b600f5481565b60125481565b611e18612a7a565b80600a8190555050565b611e2a612a7a565b8060158190555050565b611e3c612a7a565b601a60009054906101000a900460ff1615611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e83906149cf565b60405180910390fd5b601754611e976111c6565b82611ea29190614d0d565b1115611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90614acf565b60405180910390fd5b611eed8282613038565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008033604051602001611f2f91906146ed565b604051602081830303815290604052805190602001209050611f95848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836132b6565b15611fa4576001915050611faa565b60009150505b92915050565b606060028054611fbf90614ee2565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb90614ee2565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b5050505050905090565b60105481565b6120506129c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614a0f565b60405180910390fd5b80600660006120cb6129c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121786129c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121bd91906147d7565b60405180910390a35050565b6121d4848484612af8565b6121e0848484846132cd565b61221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614aef565b60405180910390fd5b50505050565b61222d612a7a565b8060138190555050565b60155481565b612245612a7a565b8060118190555050565b606061225a826129b3565b612299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612290906149ef565b60405180910390fd5b60001515601a60019054906101000a900460ff161515141561234757600e80546122c290614ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546122ee90614ee2565b801561233b5780601f106123105761010080835404028352916020019161233b565b820191906000526020600020905b81548152906001019060200180831161231e57829003601f168201915b505050505090506123a3565b6000612351613464565b90506000815111612371576040518060200160405280600081525061239f565b8061237b846134f6565b600d60405160200161238f93929190614708565b6040516020818303038152906040525b9150505b919050565b60185481565b601a60009054906101000a900460ff16156123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f5906149cf565b60405180910390fd5b6015548360185461240f9190614d0d565b1115612450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124479061490f565b60405180910390fd5b6017548361245c6111c6565b6124669190614d0d565b11156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90614baf565b60405180910390fd5b6000831180156124b957506012548311155b6124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef906148af565b60405180910390fd5b6125028282612818565b612541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125389061496f565b60405180910390fd5b612549611ef1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126fe57600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff9061490f565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126fd57600034101561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490614a6f565b60405180910390fd5b6001600b60006126ab6129c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b8260185461270c9190614d0d565b60188190555061271c3384613038565b505050565b60165481565b600b6020528060005260406000206000915054906101000a900460ff1681565b61274f612a7a565b80601a60016101000a81548160ff02191690831515021790555050565b60145481565b61277a612a7a565b8060128190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000803360405160200161282c91906146ed565b604051602081830303815290604052805190602001209050612892848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954836132b6565b156128a15760019150506128a7565b60009150505b92915050565b60095481565b600a5481565b6128c1612a7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129289061486f565b60405180910390fd5b61293a816131f0565b50565b60135481565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612a826129c0565b73ffffffffffffffffffffffffffffffffffffffff16612aa0611ef1565b73ffffffffffffffffffffffffffffffffffffffff1614612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906149af565b60405180910390fd5b565b6000612b0382613056565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612b2a6129c0565b73ffffffffffffffffffffffffffffffffffffffff161480612b865750612b4f6129c0565b73ffffffffffffffffffffffffffffffffffffffff16612b6e84610fe1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ba25750612ba18260000151612b9c6129c0565b612784565b5b905080612be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdb90614a2f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d9061498f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbd906148ef565b60405180910390fd5b612cd38585856001613657565b612ce360008484600001516129c8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612fc857612f27816129b3565b15612fc75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613031858585600161365d565b5050505050565b613052828260405180602001604052806000815250613663565b5050565b61305e613b34565b613067826129b3565b6130a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309d9061488f565b60405180910390fd5b60008290505b600081106131af576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131a05780925050506131eb565b508080600190039150506130ac565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e290614b6f565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826132c38584613675565b1490509392505050565b60006132ee8473ffffffffffffffffffffffffffffffffffffffff166136cb565b15613457578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133176129c0565b8786866040518563ffffffff1660e01b81526004016133399493929190614769565b602060405180830381600087803b15801561335357600080fd5b505af192505050801561338457506040513d601f19601f820116820180604052508101906133819190613fd6565b60015b613407573d80600081146133b4576040519150601f19603f3d011682016040523d82523d6000602084013e6133b9565b606091505b506000815114156133ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f690614aef565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061345c565b600190505b949350505050565b6060600c805461347390614ee2565b80601f016020809104026020016040519081016040528092919081815260200182805461349f90614ee2565b80156134ec5780601f106134c1576101008083540402835291602001916134ec565b820191906000526020600020905b8154815290600101906020018083116134cf57829003601f168201915b5050505050905090565b6060600082141561353e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613652565b600082905060005b6000821461357057808061355990614f45565b915050600a826135699190614d63565b9150613546565b60008167ffffffffffffffff81111561358c5761358b61509f565b5b6040519080825280601f01601f1916602001820160405280156135be5781602001600182028036833780820191505090505b5090505b6000851461364b576001826135d79190614dee565b9150600a856135e69190614fb2565b60306135f29190614d0d565b60f81b81838151811061360857613607615070565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136449190614d63565b94506135c2565b8093505050505b919050565b50505050565b50505050565b61367083838360016136ee565b505050565b60008082905060005b84518110156136c0576136ab8286838151811061369e5761369d615070565b5b6020026020010151613a6c565b915080806136b890614f45565b91505061367e565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375b90614b0f565b60405180910390fd5b60008414156137a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379f90614b2f565b60405180910390fd5b6137b56000868387613657565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a4f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a3a576139fa60008884886132cd565b613a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3090614aef565b60405180910390fd5b5b81806001019250508080600101915050613983565b508060008190555050613a65600086838761365d565b5050505050565b6000818310613a8457613a7f8284613a97565b613a8f565b613a8e8383613a97565b5b905092915050565b600082600052816020526040600020905092915050565b828054613aba90614ee2565b90600052602060002090601f016020900481019282613adc5760008555613b23565b82601f10613af557805160ff1916838001178555613b23565b82800160010185558215613b23579182015b82811115613b22578251825591602001919060010190613b07565b5b509050613b309190613b6e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b87576000816000905550600101613b6f565b5090565b6000613b9e613b9984614c0f565b614bea565b905082815260208101848484011115613bba57613bb96150dd565b5b613bc5848285614ea0565b509392505050565b6000613be0613bdb84614c40565b614bea565b905082815260208101848484011115613bfc57613bfb6150dd565b5b613c07848285614ea0565b509392505050565b600081359050613c1e8161585e565b92915050565b60008083601f840112613c3a57613c396150d3565b5b8235905067ffffffffffffffff811115613c5757613c566150ce565b5b602083019150836020820283011115613c7357613c726150d8565b5b9250929050565b600081359050613c8981615875565b92915050565b600081359050613c9e8161588c565b92915050565b600081359050613cb3816158a3565b92915050565b600081519050613cc8816158a3565b92915050565b600082601f830112613ce357613ce26150d3565b5b8135613cf3848260208601613b8b565b91505092915050565b600082601f830112613d1157613d106150d3565b5b8135613d21848260208601613bcd565b91505092915050565b600081359050613d39816158ba565b92915050565b600060208284031215613d5557613d546150e7565b5b6000613d6384828501613c0f565b91505092915050565b60008060408385031215613d8357613d826150e7565b5b6000613d9185828601613c0f565b9250506020613da285828601613c0f565b9150509250929050565b600080600060608486031215613dc557613dc46150e7565b5b6000613dd386828701613c0f565b9350506020613de486828701613c0f565b9250506040613df586828701613d2a565b9150509250925092565b60008060008060808587031215613e1957613e186150e7565b5b6000613e2787828801613c0f565b9450506020613e3887828801613c0f565b9350506040613e4987828801613d2a565b925050606085013567ffffffffffffffff811115613e6a57613e696150e2565b5b613e7687828801613cce565b91505092959194509250565b60008060408385031215613e9957613e986150e7565b5b6000613ea785828601613c0f565b9250506020613eb885828601613c7a565b9150509250929050565b60008060408385031215613ed957613ed86150e7565b5b6000613ee785828601613c0f565b9250506020613ef885828601613d2a565b9150509250929050565b60008060208385031215613f1957613f186150e7565b5b600083013567ffffffffffffffff811115613f3757613f366150e2565b5b613f4385828601613c24565b92509250509250929050565b600060208284031215613f6557613f646150e7565b5b6000613f7384828501613c7a565b91505092915050565b600060208284031215613f9257613f916150e7565b5b6000613fa084828501613c8f565b91505092915050565b600060208284031215613fbf57613fbe6150e7565b5b6000613fcd84828501613ca4565b91505092915050565b600060208284031215613fec57613feb6150e7565b5b6000613ffa84828501613cb9565b91505092915050565b600060208284031215614019576140186150e7565b5b600082013567ffffffffffffffff811115614037576140366150e2565b5b61404384828501613cfc565b91505092915050565b600060208284031215614062576140616150e7565b5b600061407084828501613d2a565b91505092915050565b600080600060408486031215614092576140916150e7565b5b60006140a086828701613d2a565b935050602084013567ffffffffffffffff8111156140c1576140c06150e2565b5b6140cd86828701613c24565b92509250509250925092565b60006140e583836146cf565b60208301905092915050565b6140fa81614e22565b82525050565b61411161410c82614e22565b614f8e565b82525050565b600061412282614c96565b61412c8185614cc4565b935061413783614c71565b8060005b8381101561416857815161414f88826140d9565b975061415a83614cb7565b92505060018101905061413b565b5085935050505092915050565b61417e81614e34565b82525050565b61418d81614e40565b82525050565b600061419e82614ca1565b6141a88185614cd5565b93506141b8818560208601614eaf565b6141c1816150ec565b840191505092915050565b60006141d782614cac565b6141e18185614cf1565b93506141f1818560208601614eaf565b6141fa816150ec565b840191505092915050565b600061421082614cac565b61421a8185614d02565b935061422a818560208601614eaf565b80840191505092915050565b6000815461424381614ee2565b61424d8186614d02565b945060018216600081146142685760018114614279576142ac565b60ff198316865281860193506142ac565b61428285614c81565b60005b838110156142a457815481890152600182019150602081019050614285565b838801955050505b50505092915050565b60006142c2602283614cf1565b91506142cd8261510a565b604082019050919050565b60006142e5602e83614cf1565b91506142f082615159565b604082019050919050565b6000614308602683614cf1565b9150614313826151a8565b604082019050919050565b600061432b602a83614cf1565b9150614336826151f7565b604082019050919050565b600061434e601483614cf1565b915061435982615246565b602082019050919050565b6000614371602383614cf1565b915061437c8261526f565b604082019050919050565b6000614394602583614cf1565b915061439f826152be565b604082019050919050565b60006143b7600883614cf1565b91506143c28261530d565b602082019050919050565b60006143da603983614cf1565b91506143e582615336565b604082019050919050565b60006143fd602b83614cf1565b915061440882615385565b604082019050919050565b6000614420601b83614cf1565b915061442b826153d4565b602082019050919050565b6000614443602683614cf1565b915061444e826153fd565b604082019050919050565b6000614466602083614cf1565b91506144718261544c565b602082019050919050565b6000614489601783614cf1565b915061449482615475565b602082019050919050565b60006144ac602f83614cf1565b91506144b78261549e565b604082019050919050565b60006144cf601a83614cf1565b91506144da826154ed565b602082019050919050565b60006144f2603283614cf1565b91506144fd82615516565b604082019050919050565b6000614515601b83614cf1565b915061452082615565565b602082019050919050565b6000614538601d83614cf1565b91506145438261558e565b602082019050919050565b600061455b602283614cf1565b9150614566826155b7565b604082019050919050565b600061457e600083614ce6565b915061458982615606565b600082019050919050565b60006145a1601083614cf1565b91506145ac82615609565b602082019050919050565b60006145c4600883614cf1565b91506145cf82615632565b602082019050919050565b60006145e7603383614cf1565b91506145f28261565b565b604082019050919050565b600061460a602183614cf1565b9150614615826156aa565b604082019050919050565b600061462d602883614cf1565b9150614638826156f9565b604082019050919050565b6000614650602e83614cf1565b915061465b82615748565b604082019050919050565b6000614673602f83614cf1565b915061467e82615797565b604082019050919050565b6000614696602d83614cf1565b91506146a1826157e6565b604082019050919050565b60006146b9600983614cf1565b91506146c482615835565b602082019050919050565b6146d881614e96565b82525050565b6146e781614e96565b82525050565b60006146f98284614100565b60148201915081905092915050565b60006147148286614205565b91506147208285614205565b915061472c8284614236565b9150819050949350505050565b600061474482614571565b9150819050919050565b600060208201905061476360008301846140f1565b92915050565b600060808201905061477e60008301876140f1565b61478b60208301866140f1565b61479860408301856146de565b81810360608301526147aa8184614193565b905095945050505050565b600060208201905081810360008301526147cf8184614117565b905092915050565b60006020820190506147ec6000830184614175565b92915050565b60006020820190506148076000830184614184565b92915050565b6000602082019050818103600083015261482781846141cc565b905092915050565b60006020820190508181036000830152614848816142b5565b9050919050565b60006020820190508181036000830152614868816142d8565b9050919050565b60006020820190508181036000830152614888816142fb565b9050919050565b600060208201905081810360008301526148a88161431e565b9050919050565b600060208201905081810360008301526148c881614341565b9050919050565b600060208201905081810360008301526148e881614364565b9050919050565b6000602082019050818103600083015261490881614387565b9050919050565b60006020820190508181036000830152614928816143aa565b9050919050565b60006020820190508181036000830152614948816143cd565b9050919050565b60006020820190508181036000830152614968816143f0565b9050919050565b6000602082019050818103600083015261498881614413565b9050919050565b600060208201905081810360008301526149a881614436565b9050919050565b600060208201905081810360008301526149c881614459565b9050919050565b600060208201905081810360008301526149e88161447c565b9050919050565b60006020820190508181036000830152614a088161449f565b9050919050565b60006020820190508181036000830152614a28816144c2565b9050919050565b60006020820190508181036000830152614a48816144e5565b9050919050565b60006020820190508181036000830152614a6881614508565b9050919050565b60006020820190508181036000830152614a888161452b565b9050919050565b60006020820190508181036000830152614aa88161454e565b9050919050565b60006020820190508181036000830152614ac881614594565b9050919050565b60006020820190508181036000830152614ae8816145b7565b9050919050565b60006020820190508181036000830152614b08816145da565b9050919050565b60006020820190508181036000830152614b28816145fd565b9050919050565b60006020820190508181036000830152614b4881614620565b9050919050565b60006020820190508181036000830152614b6881614643565b9050919050565b60006020820190508181036000830152614b8881614666565b9050919050565b60006020820190508181036000830152614ba881614689565b9050919050565b60006020820190508181036000830152614bc8816146ac565b9050919050565b6000602082019050614be460008301846146de565b92915050565b6000614bf4614c05565b9050614c008282614f14565b919050565b6000604051905090565b600067ffffffffffffffff821115614c2a57614c2961509f565b5b614c33826150ec565b9050602081019050919050565b600067ffffffffffffffff821115614c5b57614c5a61509f565b5b614c64826150ec565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1882614e96565b9150614d2383614e96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5857614d57614fe3565b5b828201905092915050565b6000614d6e82614e96565b9150614d7983614e96565b925082614d8957614d88615012565b5b828204905092915050565b6000614d9f82614e96565b9150614daa83614e96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de357614de2614fe3565b5b828202905092915050565b6000614df982614e96565b9150614e0483614e96565b925082821015614e1757614e16614fe3565b5b828203905092915050565b6000614e2d82614e76565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ecd578082015181840152602081019050614eb2565b83811115614edc576000848401525b50505050565b60006002820490506001821680614efa57607f821691505b60208210811415614f0e57614f0d615041565b5b50919050565b614f1d826150ec565b810181811067ffffffffffffffff82111715614f3c57614f3b61509f565b5b80604052505050565b6000614f5082614e96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8357614f82614fe3565b5b600182019050919050565b6000614f9982614fa0565b9050919050565b6000614fab826150fd565b9050919050565b6000614fbd82614e96565b9150614fc883614e96565b925082614fd857614fd7615012565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f41646472657373206973206e6f7420616c6c6f776c6973746564210000000000600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b61586781614e22565b811461587257600080fd5b50565b61587e81614e34565b811461588957600080fd5b50565b61589581614e40565b81146158a057600080fd5b50565b6158ac81614e4a565b81146158b757600080fd5b50565b6158c381614e96565b81146158ce57600080fd5b5056fea2646970667358221220b790281d806a681b3de193c908fdb332e95ba4c98770527bc3026e5397bd6a6264736f6c63430008070033

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.