ETH Price: $3,139.67 (-8.64%)
Gas: 9 Gwei

Token

Lazy Tiger Wood Club (LTWC)
 

Overview

Max Total Supply

1,519 LTWC

Holders

948

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 LTWC
0xf16e2f666d1931041aa5dd246d99cde02608c6ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Lazy Tiger Wood Club is a collection of 5,000 , randomly generated Tiger Humanoids adventuring on the Ethereum blockchain. Every LTWC NFT is and made from over 80+ possible attributes and traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LTWC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : LTWC.sol
// SPDX-License-Identifier: GPL-3.0

// Created by HashLips
// The Nerdy Coder Clones

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract LTWC is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public contractURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.055 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 10;
  uint256 public nftPresaleLimit = 250;
  bool public paused = true;
  bool public presaleActive = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
  ) ERC721("Lazy Tiger Wood Club", "LTWC") {
    setBaseURI("https://gateway.pinata.cloud/ipfs/QmUzBkeEfVqp73BUuFvSFUgyX2vbcBwkEW8KSvf73SwY3Z/");
    mint(20);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    if (msg.sender != owner()) {
      require(!paused, "the contract is paused");
      require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
      require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");

      if(presaleActive == true && isWhitelisted(msg.sender) == false) {
        require(supply + _mintAmount <= nftPresaleLimit, "OG LTWC presale sold out");
      }

      require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setNftPresaleLimit(uint256 _newNftPresaleLimitt) public onlyOwner {
    nftPresaleLimit = _newNftPresaleLimitt;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function setPresaleActive(bool _state) public onlyOwner {
    presaleActive = _state;
  }

  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

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

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

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 tokenId);

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPresaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNftPresaleLimitt","type":"uint256"}],"name":"setNftPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620011b9565b5066c3663566a58000600e55612710600f55600a601055600a60115560fa6012556001601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff021916908315150217905550348015620000b557600080fd5b506040518060400160405280601481526020017f4c617a7920546967657220576f6f6420436c75620000000000000000000000008152506040518060400160405280600481526020017f4c5457430000000000000000000000000000000000000000000000000000000081525081600090805190602001906200013a929190620011b9565b50806001908051906020019062000153929190620011b9565b505050620001766200016a620001b860201b60201c565b620001c060201b60201c565b620001a060405180608001604052806051815260200162006b66605191396200028660201b60201c565b620001b260146200033160201b60201c565b62001c69565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000296620001b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bc620006e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000315576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030c906200164d565b60405180910390fd5b80600b90805190602001906200032d929190620011b9565b5050565b6000620003436200070c60201b60201c565b9050600082116200038b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038290620016b3565b60405180910390fd5b600f5482826200039c919062001702565b1115620003e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d790620015e7565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905062000434620006e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200064157601360009054906101000a900460ff1615620004ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b1906200166f565b60405180910390fd5b6011548382620004cb919062001702565b11156200050f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050690620015a3565b60405180910390fd5b60105483111562000557576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054e9062001609565b60405180910390fd5b60011515601360019054906101000a900460ff1615151480156200058f5750600015156200058b336200071960201b60201c565b1515145b15620005eb576012548383620005a6919062001702565b1115620005ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e1906200153d565b60405180910390fd5b5b82600e54620005fb91906200175f565b34101562000640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006379062001691565b60405180910390fd5b5b6000600190505b838111620006dc57601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190620006a290620018d1565b9190505550620006c6338285620006ba919062001702565b620007d160201b60201c565b8080620006d390620018d1565b91505062000648565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b600080600090505b601480549050811015620007c6578273ffffffffffffffffffffffffffffffffffffffff16601482815481106200075d576200075c620019ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415620007b0576001915050620007cc565b8080620007bd90620018d1565b91505062000721565b50600090505b919050565b620007f3828260405180602001604052806000815250620007f760201b60201c565b5050565b6200080983836200086560201b60201c565b6200081e600084848462000a4b60201b60201c565b62000860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000857906200155f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cf906200162b565b60405180910390fd5b620008e98162000c0560201b60201c565b156200092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009239062001581565b60405180910390fd5b620009406000838362000c7160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000992919062001702565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000a798473ffffffffffffffffffffffffffffffffffffffff1662000db860201b6200210b1760201c565b1562000bf8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000aab620001b860201b60201c565b8786866040518563ffffffff1660e01b815260040162000acf9493929190620014e9565b602060405180830381600087803b15801562000aea57600080fd5b505af192505050801562000b1e57506040513d601f19601f8201168201806040525081019062000b1b919062001280565b60015b62000ba7573d806000811462000b51576040519150601f19603f3d011682016040523d82523d6000602084013e62000b56565b606091505b5060008151141562000b9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b96906200155f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000bfd565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000c8983838362000dcb60201b6200211e1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000cd65762000cd08162000dd060201b60201c565b62000d1e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000d1d5762000d1c838262000e1960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d6b5762000d658162000f9660201b60201c565b62000db3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000db25762000db182826200107260201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000e3384620010fe60201b620014c31760201c565b62000e3f9190620017c0565b905060006007600084815260200190815260200160002054905081811462000f25576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000fac9190620017c0565b905060006009600084815260200190815260200160002054905060006008838154811062000fdf5762000fde620019ac565b5b906000526020600020015490508060088381548110620010045762001003620019ac565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806200105657620010556200197d565b5b6001900381819060005260206000200160009055905550505050565b60006200108a83620010fe60201b620014c31760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200116990620015c5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620011c7906200189b565b90600052602060002090601f016020900481019282620011eb576000855562001237565b82601f106200120657805160ff191683800117855562001237565b8280016001018555821562001237579182015b828111156200123657825182559160200191906001019062001219565b5b5090506200124691906200124a565b5090565b5b80821115620012655760008160009055506001016200124b565b5090565b6000815190506200127a8162001c4f565b92915050565b600060208284031215620012995762001298620019db565b5b6000620012a98482850162001269565b91505092915050565b620012bd81620017fb565b82525050565b6000620012d082620016d5565b620012dc8185620016e0565b9350620012ee81856020860162001865565b620012f981620019e0565b840191505092915050565b600062001313601883620016f1565b91506200132082620019f1565b602082019050919050565b60006200133a603283620016f1565b9150620013478262001a1a565b604082019050919050565b600062001361601c83620016f1565b91506200136e8262001a69565b602082019050919050565b600062001388601c83620016f1565b9150620013958262001a92565b602082019050919050565b6000620013af602a83620016f1565b9150620013bc8262001abb565b604082019050919050565b6000620013d6601683620016f1565b9150620013e38262001b0a565b602082019050919050565b6000620013fd602483620016f1565b91506200140a8262001b33565b604082019050919050565b600062001424602083620016f1565b9150620014318262001b82565b602082019050919050565b60006200144b602083620016f1565b9150620014588262001bab565b602082019050919050565b600062001472601683620016f1565b91506200147f8262001bd4565b602082019050919050565b600062001499601283620016f1565b9150620014a68262001bfd565b602082019050919050565b6000620014c0601b83620016f1565b9150620014cd8262001c26565b602082019050919050565b620014e3816200185b565b82525050565b6000608082019050620015006000830187620012b2565b6200150f6020830186620012b2565b6200151e6040830185620014d8565b8181036060830152620015328184620012c3565b905095945050505050565b60006020820190508181036000830152620015588162001304565b9050919050565b600060208201905081810360008301526200157a816200132b565b9050919050565b600060208201905081810360008301526200159c8162001352565b9050919050565b60006020820190508181036000830152620015be8162001379565b9050919050565b60006020820190508181036000830152620015e081620013a0565b9050919050565b600060208201905081810360008301526200160281620013c7565b9050919050565b600060208201905081810360008301526200162481620013ee565b9050919050565b60006020820190508181036000830152620016468162001415565b9050919050565b6000602082019050818103600083015262001668816200143c565b9050919050565b600060208201905081810360008301526200168a8162001463565b9050919050565b60006020820190508181036000830152620016ac816200148a565b9050919050565b60006020820190508181036000830152620016ce81620014b1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200170f826200185b565b91506200171c836200185b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200175457620017536200191f565b5b828201905092915050565b60006200176c826200185b565b915062001779836200185b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620017b557620017b46200191f565b5b828202905092915050565b6000620017cd826200185b565b9150620017da836200185b565b925082821015620017f057620017ef6200191f565b5b828203905092915050565b600062001808826200183b565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200188557808201518184015260208101905062001868565b8381111562001895576000848401525b50505050565b60006002820490506001821680620018b457607f821691505b60208210811415620018cb57620018ca6200194e565b5b50919050565b6000620018de826200185b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200191457620019136200191f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f47204c5457432070726573616c6520736f6c64206f75740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b62001c5a816200180f565b811462001c6657600080fd5b50565b614eed8062001c796000396000f3fe6080604052600436106102675760003560e01c80636c0360eb11610144578063c6682862116100b6578063da3ef23f1161007a578063da3ef23f14610938578063e8a3d48514610961578063e985e9c51461098c578063edec5f27146109c9578063f2fde38b146109f2578063f9689f4c14610a1b57610267565b8063c668286214610853578063c87b56dd1461087e578063cde0490b146108bb578063d0eb26b0146108e4578063d5abeb011461090d57610267565b806395d89b411161010857806395d89b4114610752578063a0712d681461077d578063a22cb46514610799578063b88d4fde146107c2578063ba4e5c49146107eb578063ba7d2c761461082857610267565b80636c0360eb1461067f57806370a08231146106aa578063715018a6146106e75780637f00c7a6146106fe5780638da5cb5b1461072757610267565b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a1461055d5780634f6ccce71461058657806353135ca0146105c357806355f804b3146105ee5780635c975abb146106175780636352211e1461064257610267565b80633af32abf146104875780633ccfd60b146104c45780633f8121a2146104ce57806342842e0e146104f7578063438b63001461052057610267565b806313faede61161022f57806313faede61461036357806318160ddd1461038e57806318cae269146103b9578063239c70ae146103f657806323b872dd146104215780632f745c591461044a57610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613890565b610a46565b6040516102a09190613f91565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613863565b610ac0565b005b3480156102de57600080fd5b506102e7610b59565b6040516102f49190613fac565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613933565b610beb565b6040516103319190613f08565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906137d6565b610c70565b005b34801561036f57600080fd5b50610378610d88565b60405161038591906142ee565b60405180910390f35b34801561039a57600080fd5b506103a3610d8e565b6040516103b091906142ee565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613653565b610d9b565b6040516103ed91906142ee565b60405180910390f35b34801561040257600080fd5b5061040b610db3565b60405161041891906142ee565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906136c0565b610db9565b005b34801561045657600080fd5b50610471600480360381019061046c91906137d6565b610e19565b60405161047e91906142ee565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613653565b610ebe565b6040516104bb9190613f91565b60405180910390f35b6104cc610f6d565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613863565b611069565b005b34801561050357600080fd5b5061051e600480360381019061051991906136c0565b611102565b005b34801561052c57600080fd5b5061054760048036038101906105429190613653565b611122565b6040516105549190613f6f565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613933565b6111d0565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613933565b611256565b6040516105ba91906142ee565b60405180910390f35b3480156105cf57600080fd5b506105d86112c7565b6040516105e59190613f91565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906138ea565b6112da565b005b34801561062357600080fd5b5061062c611370565b6040516106399190613f91565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613933565b611383565b6040516106769190613f08565b60405180910390f35b34801561068b57600080fd5b50610694611435565b6040516106a19190613fac565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613653565b6114c3565b6040516106de91906142ee565b60405180910390f35b3480156106f357600080fd5b506106fc61157b565b005b34801561070a57600080fd5b5061072560048036038101906107209190613933565b611603565b005b34801561073357600080fd5b5061073c611689565b6040516107499190613f08565b60405180910390f35b34801561075e57600080fd5b506107676116b3565b6040516107749190613fac565b60405180910390f35b61079760048036038101906107929190613933565b611745565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613796565b611aae565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613713565b611ac4565b005b3480156107f757600080fd5b50610812600480360381019061080d9190613933565b611b26565b60405161081f9190613f08565b60405180910390f35b34801561083457600080fd5b5061083d611b65565b60405161084a91906142ee565b60405180910390f35b34801561085f57600080fd5b50610868611b6b565b6040516108759190613fac565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613933565b611bf9565b6040516108b29190613fac565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613933565b611ca3565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613933565b611d29565b005b34801561091957600080fd5b50610922611daf565b60405161092f91906142ee565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a91906138ea565b611db5565b005b34801561096d57600080fd5b50610976611e4b565b6040516109839190613fac565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613680565b611ed9565b6040516109c09190613f91565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb9190613816565b611f6d565b005b3480156109fe57600080fd5b50610a196004803603810190610a149190613653565b61200d565b005b348015610a2757600080fd5b50610a30612105565b604051610a3d91906142ee565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab95750610ab882612123565b5b9050919050565b610ac8612205565b73ffffffffffffffffffffffffffffffffffffffff16610ae6611689565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906141ce565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610b68906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b94906145f7565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b6000610bf68261220d565b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906141ae565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7b82611383565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061424e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0b612205565b73ffffffffffffffffffffffffffffffffffffffff161480610d3a5750610d3981610d34612205565b611ed9565b5b610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d70906140ee565b60405180910390fd5b610d838383612279565b505050565b600e5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60105481565b610dca610dc4612205565b82612332565b610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e009061428e565b60405180910390fd5b610e14838383612410565b505050565b6000610e24836114c3565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613fee565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015610f62578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610efe57610efd614790565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f4f576001915050610f68565b8080610f5a9061465a565b915050610ec6565b50600090505b919050565b610f75612205565b73ffffffffffffffffffffffffffffffffffffffff16610f93611689565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906141ce565b60405180910390fd5b6000610ff3611689565b73ffffffffffffffffffffffffffffffffffffffff164760405161101690613ef3565b60006040518083038185875af1925050503d8060008114611053576040519150601f19603f3d011682016040523d82523d6000602084013e611058565b606091505b505090508061106657600080fd5b50565b611071612205565b73ffffffffffffffffffffffffffffffffffffffff1661108f611689565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906141ce565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b61111d83838360405180602001604052806000815250611ac4565b505050565b6060600061112f836114c3565b905060008167ffffffffffffffff81111561114d5761114c6147bf565b5b60405190808252806020026020018201604052801561117b5781602001602082028036833780820191505090505b50905060005b828110156111c5576111938582610e19565b8282815181106111a6576111a5614790565b5b60200260200101818152505080806111bd9061465a565b915050611181565b508092505050919050565b6111d8612205565b73ffffffffffffffffffffffffffffffffffffffff166111f6611689565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906141ce565b60405180910390fd5b80600e8190555050565b6000611260610d8e565b82106112a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611298906142ae565b60405180910390fd5b600882815481106112b5576112b4614790565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b6112e2612205565b73ffffffffffffffffffffffffffffffffffffffff16611300611689565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d906141ce565b60405180910390fd5b80600b908051906020019061136c929190613350565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114239061412e565b60405180910390fd5b80915050919050565b600b8054611442906145f7565b80601f016020809104026020016040519081016040528092919081815260200182805461146e906145f7565b80156114bb5780601f10611490576101008083540402835291602001916114bb565b820191906000526020600020905b81548152906001019060200180831161149e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b9061410e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611583612205565b73ffffffffffffffffffffffffffffffffffffffff166115a1611689565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906141ce565b60405180910390fd5b611601600061266c565b565b61160b612205565b73ffffffffffffffffffffffffffffffffffffffff16611629611689565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906141ce565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116c2906145f7565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee906145f7565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b5050505050905090565b600061174f610d8e565b905060008211611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906142ce565b60405180910390fd5b600f5482826117a3919061442c565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db9061414e565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611830611689565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a1d57601360009054906101000a900460ff16156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a9906141ee565b60405180910390fd5b60115483826118c1919061442c565b1115611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f99061406e565b60405180910390fd5b601054831115611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061416e565b60405180910390fd5b60011515601360019054906101000a900460ff16151514801561197657506000151561197233610ebe565b1515145b156119cc57601254838361198a919061442c565b11156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290613fce565b60405180910390fd5b5b82600e546119da91906144b3565b341015611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a139061426e565b60405180910390fd5b5b6000600190505b838111611aa857601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a7b9061465a565b9190505550611a95338285611a90919061442c565b612732565b8080611aa09061465a565b915050611a24565b50505050565b611ac0611ab9612205565b8383612750565b5050565b611ad5611acf612205565b83612332565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b9061428e565b60405180910390fd5b611b20848484846128bd565b50505050565b60148181548110611b3657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600d8054611b78906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba4906145f7565b8015611bf15780601f10611bc657610100808354040283529160200191611bf1565b820191906000526020600020905b815481529060010190602001808311611bd457829003601f168201915b505050505081565b6060611c048261220d565b611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a9061422e565b60405180910390fd5b6000611c4d612919565b90506000815111611c6d5760405180602001604052806000815250611c9b565b80611c77846129ab565b600d604051602001611c8b93929190613ec2565b6040516020818303038152906040525b915050919050565b611cab612205565b73ffffffffffffffffffffffffffffffffffffffff16611cc9611689565b73ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d16906141ce565b60405180910390fd5b8060128190555050565b611d31612205565b73ffffffffffffffffffffffffffffffffffffffff16611d4f611689565b73ffffffffffffffffffffffffffffffffffffffff1614611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c906141ce565b60405180910390fd5b8060118190555050565b600f5481565b611dbd612205565b73ffffffffffffffffffffffffffffffffffffffff16611ddb611689565b73ffffffffffffffffffffffffffffffffffffffff1614611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906141ce565b60405180910390fd5b80600d9080519060200190611e47929190613350565b5050565b600c8054611e58906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611e84906145f7565b8015611ed15780601f10611ea657610100808354040283529160200191611ed1565b820191906000526020600020905b815481529060010190602001808311611eb457829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f75612205565b73ffffffffffffffffffffffffffffffffffffffff16611f93611689565b73ffffffffffffffffffffffffffffffffffffffff1614611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe0906141ce565b60405180910390fd5b60146000611ff791906133d6565b8181601491906120089291906133f7565b505050565b612015612205565b73ffffffffffffffffffffffffffffffffffffffff16612033611689565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612080906141ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f09061402e565b60405180910390fd5b6121028161266c565b50565b60125481565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121fe57506121fd82612b0c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122ec83611383565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061233d8261220d565b61237c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612373906140ce565b60405180910390fd5b600061238783611383565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f657508373ffffffffffffffffffffffffffffffffffffffff166123de84610beb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240757506124068185611ed9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661243082611383565b73ffffffffffffffffffffffffffffffffffffffff1614612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d9061420e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed9061408e565b60405180910390fd5b612501838383612b76565b61250c600082612279565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255c919061450d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b3919061442c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61274c828260405180602001604052806000815250612c8a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b6906140ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128b09190613f91565b60405180910390a3505050565b6128c8848484612410565b6128d484848484612ce5565b612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a9061400e565b60405180910390fd5b50505050565b6060600b8054612928906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054612954906145f7565b80156129a15780601f10612976576101008083540402835291602001916129a1565b820191906000526020600020905b81548152906001019060200180831161298457829003601f168201915b5050505050905090565b606060008214156129f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b07565b600082905060005b60008214612a25578080612a0e9061465a565b915050600a82612a1e9190614482565b91506129fb565b60008167ffffffffffffffff811115612a4157612a406147bf565b5b6040519080825280601f01601f191660200182016040528015612a735781602001600182028036833780820191505090505b5090505b60008514612b0057600182612a8c919061450d565b9150600a85612a9b91906146a3565b6030612aa7919061442c565b60f81b818381518110612abd57612abc614790565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612af99190614482565b9450612a77565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b8183838361211e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc457612bbf81612e7c565b612c03565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c0257612c018382612ec5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c4657612c4181613032565b612c85565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c8457612c838282613103565b5b5b505050565b612c948383613182565b612ca16000848484612ce5565b612ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd79061400e565b60405180910390fd5b505050565b6000612d068473ffffffffffffffffffffffffffffffffffffffff1661210b565b15612e6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2f612205565b8786866040518563ffffffff1660e01b8152600401612d519493929190613f23565b602060405180830381600087803b158015612d6b57600080fd5b505af1925050508015612d9c57506040513d601f19601f82011682018060405250810190612d9991906138bd565b60015b612e1f573d8060008114612dcc576040519150601f19603f3d011682016040523d82523d6000602084013e612dd1565b606091505b50600081511415612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e9061400e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e74565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ed2846114c3565b612edc919061450d565b9050600060076000848152602001908152602001600020549050818114612fc1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613046919061450d565b905060006009600084815260200190815260200160002054905060006008838154811061307657613075614790565b5b90600052602060002001549050806008838154811061309857613097614790565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130e7576130e6614761565b5b6001900381819060005260206000200160009055905550505050565b600061310e836114c3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e99061418e565b60405180910390fd5b6131fb8161220d565b1561323b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132329061404e565b60405180910390fd5b61324760008383612b76565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613297919061442c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461335c906145f7565b90600052602060002090601f01602090048101928261337e57600085556133c5565b82601f1061339757805160ff19168380011785556133c5565b828001600101855582156133c5579182015b828111156133c45782518255916020019190600101906133a9565b5b5090506133d29190613497565b5090565b50805460008255906000526020600020908101906133f49190613497565b50565b828054828255906000526020600020908101928215613486579160200282015b8281111561348557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613417565b5b5090506134939190613497565b5090565b5b808211156134b0576000816000905550600101613498565b5090565b60006134c76134c28461432e565b614309565b9050828152602081018484840111156134e3576134e26147fd565b5b6134ee8482856145b5565b509392505050565b60006135096135048461435f565b614309565b905082815260208101848484011115613525576135246147fd565b5b6135308482856145b5565b509392505050565b60008135905061354781614e5b565b92915050565b60008083601f840112613563576135626147f3565b5b8235905067ffffffffffffffff8111156135805761357f6147ee565b5b60208301915083602082028301111561359c5761359b6147f8565b5b9250929050565b6000813590506135b281614e72565b92915050565b6000813590506135c781614e89565b92915050565b6000815190506135dc81614e89565b92915050565b600082601f8301126135f7576135f66147f3565b5b81356136078482602086016134b4565b91505092915050565b600082601f830112613625576136246147f3565b5b81356136358482602086016134f6565b91505092915050565b60008135905061364d81614ea0565b92915050565b60006020828403121561366957613668614807565b5b600061367784828501613538565b91505092915050565b6000806040838503121561369757613696614807565b5b60006136a585828601613538565b92505060206136b685828601613538565b9150509250929050565b6000806000606084860312156136d9576136d8614807565b5b60006136e786828701613538565b93505060206136f886828701613538565b92505060406137098682870161363e565b9150509250925092565b6000806000806080858703121561372d5761372c614807565b5b600061373b87828801613538565b945050602061374c87828801613538565b935050604061375d8782880161363e565b925050606085013567ffffffffffffffff81111561377e5761377d614802565b5b61378a878288016135e2565b91505092959194509250565b600080604083850312156137ad576137ac614807565b5b60006137bb85828601613538565b92505060206137cc858286016135a3565b9150509250929050565b600080604083850312156137ed576137ec614807565b5b60006137fb85828601613538565b925050602061380c8582860161363e565b9150509250929050565b6000806020838503121561382d5761382c614807565b5b600083013567ffffffffffffffff81111561384b5761384a614802565b5b6138578582860161354d565b92509250509250929050565b60006020828403121561387957613878614807565b5b6000613887848285016135a3565b91505092915050565b6000602082840312156138a6576138a5614807565b5b60006138b4848285016135b8565b91505092915050565b6000602082840312156138d3576138d2614807565b5b60006138e1848285016135cd565b91505092915050565b600060208284031215613900576138ff614807565b5b600082013567ffffffffffffffff81111561391e5761391d614802565b5b61392a84828501613610565b91505092915050565b60006020828403121561394957613948614807565b5b60006139578482850161363e565b91505092915050565b600061396c8383613ea4565b60208301905092915050565b61398181614541565b82525050565b6000613992826143b5565b61399c81856143e3565b93506139a783614390565b8060005b838110156139d85781516139bf8882613960565b97506139ca836143d6565b9250506001810190506139ab565b5085935050505092915050565b6139ee81614553565b82525050565b60006139ff826143c0565b613a0981856143f4565b9350613a198185602086016145c4565b613a228161480c565b840191505092915050565b6000613a38826143cb565b613a428185614410565b9350613a528185602086016145c4565b613a5b8161480c565b840191505092915050565b6000613a71826143cb565b613a7b8185614421565b9350613a8b8185602086016145c4565b80840191505092915050565b60008154613aa4816145f7565b613aae8186614421565b94506001821660008114613ac95760018114613ada57613b0d565b60ff19831686528186019350613b0d565b613ae3856143a0565b60005b83811015613b0557815481890152600182019150602081019050613ae6565b838801955050505b50505092915050565b6000613b23601883614410565b9150613b2e8261481d565b602082019050919050565b6000613b46602b83614410565b9150613b5182614846565b604082019050919050565b6000613b69603283614410565b9150613b7482614895565b604082019050919050565b6000613b8c602683614410565b9150613b97826148e4565b604082019050919050565b6000613baf601c83614410565b9150613bba82614933565b602082019050919050565b6000613bd2601c83614410565b9150613bdd8261495c565b602082019050919050565b6000613bf5602483614410565b9150613c0082614985565b604082019050919050565b6000613c18601983614410565b9150613c23826149d4565b602082019050919050565b6000613c3b602c83614410565b9150613c46826149fd565b604082019050919050565b6000613c5e603883614410565b9150613c6982614a4c565b604082019050919050565b6000613c81602a83614410565b9150613c8c82614a9b565b604082019050919050565b6000613ca4602983614410565b9150613caf82614aea565b604082019050919050565b6000613cc7601683614410565b9150613cd282614b39565b602082019050919050565b6000613cea602483614410565b9150613cf582614b62565b604082019050919050565b6000613d0d602083614410565b9150613d1882614bb1565b602082019050919050565b6000613d30602c83614410565b9150613d3b82614bda565b604082019050919050565b6000613d53602083614410565b9150613d5e82614c29565b602082019050919050565b6000613d76601683614410565b9150613d8182614c52565b602082019050919050565b6000613d99602983614410565b9150613da482614c7b565b604082019050919050565b6000613dbc602f83614410565b9150613dc782614cca565b604082019050919050565b6000613ddf602183614410565b9150613dea82614d19565b604082019050919050565b6000613e02600083614405565b9150613e0d82614d68565b600082019050919050565b6000613e25601283614410565b9150613e3082614d6b565b602082019050919050565b6000613e48603183614410565b9150613e5382614d94565b604082019050919050565b6000613e6b602c83614410565b9150613e7682614de3565b604082019050919050565b6000613e8e601b83614410565b9150613e9982614e32565b602082019050919050565b613ead816145ab565b82525050565b613ebc816145ab565b82525050565b6000613ece8286613a66565b9150613eda8285613a66565b9150613ee68284613a97565b9150819050949350505050565b6000613efe82613df5565b9150819050919050565b6000602082019050613f1d6000830184613978565b92915050565b6000608082019050613f386000830187613978565b613f456020830186613978565b613f526040830185613eb3565b8181036060830152613f6481846139f4565b905095945050505050565b60006020820190508181036000830152613f898184613987565b905092915050565b6000602082019050613fa660008301846139e5565b92915050565b60006020820190508181036000830152613fc68184613a2d565b905092915050565b60006020820190508181036000830152613fe781613b16565b9050919050565b6000602082019050818103600083015261400781613b39565b9050919050565b6000602082019050818103600083015261402781613b5c565b9050919050565b6000602082019050818103600083015261404781613b7f565b9050919050565b6000602082019050818103600083015261406781613ba2565b9050919050565b6000602082019050818103600083015261408781613bc5565b9050919050565b600060208201905081810360008301526140a781613be8565b9050919050565b600060208201905081810360008301526140c781613c0b565b9050919050565b600060208201905081810360008301526140e781613c2e565b9050919050565b6000602082019050818103600083015261410781613c51565b9050919050565b6000602082019050818103600083015261412781613c74565b9050919050565b6000602082019050818103600083015261414781613c97565b9050919050565b6000602082019050818103600083015261416781613cba565b9050919050565b6000602082019050818103600083015261418781613cdd565b9050919050565b600060208201905081810360008301526141a781613d00565b9050919050565b600060208201905081810360008301526141c781613d23565b9050919050565b600060208201905081810360008301526141e781613d46565b9050919050565b6000602082019050818103600083015261420781613d69565b9050919050565b6000602082019050818103600083015261422781613d8c565b9050919050565b6000602082019050818103600083015261424781613daf565b9050919050565b6000602082019050818103600083015261426781613dd2565b9050919050565b6000602082019050818103600083015261428781613e18565b9050919050565b600060208201905081810360008301526142a781613e3b565b9050919050565b600060208201905081810360008301526142c781613e5e565b9050919050565b600060208201905081810360008301526142e781613e81565b9050919050565b60006020820190506143036000830184613eb3565b92915050565b6000614313614324565b905061431f8282614629565b919050565b6000604051905090565b600067ffffffffffffffff821115614349576143486147bf565b5b6143528261480c565b9050602081019050919050565b600067ffffffffffffffff82111561437a576143796147bf565b5b6143838261480c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614437826145ab565b9150614442836145ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614477576144766146d4565b5b828201905092915050565b600061448d826145ab565b9150614498836145ab565b9250826144a8576144a7614703565b5b828204905092915050565b60006144be826145ab565b91506144c9836145ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614502576145016146d4565b5b828202905092915050565b6000614518826145ab565b9150614523836145ab565b925082821015614536576145356146d4565b5b828203905092915050565b600061454c8261458b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145e25780820151818401526020810190506145c7565b838111156145f1576000848401525b50505050565b6000600282049050600182168061460f57607f821691505b6020821081141561462357614622614732565b5b50919050565b6146328261480c565b810181811067ffffffffffffffff82111715614651576146506147bf565b5b80604052505050565b6000614665826145ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614698576146976146d4565b5b600182019050919050565b60006146ae826145ab565b91506146b9836145ab565b9250826146c9576146c8614703565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f47204c5457432070726573616c6520736f6c64206f75740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614e6481614541565b8114614e6f57600080fd5b50565b614e7b81614553565b8114614e8657600080fd5b50565b614e928161455f565b8114614e9d57600080fd5b50565b614ea9816145ab565b8114614eb457600080fd5b5056fea2646970667358221220206f3600d5fc11fcee581e58aab14853113ee682d3746c9f90267bc0b2132b7264736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d557a426b654566567170373342557546765346556779583276626342776b4557384b5376663733537759335a2f

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636c0360eb11610144578063c6682862116100b6578063da3ef23f1161007a578063da3ef23f14610938578063e8a3d48514610961578063e985e9c51461098c578063edec5f27146109c9578063f2fde38b146109f2578063f9689f4c14610a1b57610267565b8063c668286214610853578063c87b56dd1461087e578063cde0490b146108bb578063d0eb26b0146108e4578063d5abeb011461090d57610267565b806395d89b411161010857806395d89b4114610752578063a0712d681461077d578063a22cb46514610799578063b88d4fde146107c2578063ba4e5c49146107eb578063ba7d2c761461082857610267565b80636c0360eb1461067f57806370a08231146106aa578063715018a6146106e75780637f00c7a6146106fe5780638da5cb5b1461072757610267565b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a1461055d5780634f6ccce71461058657806353135ca0146105c357806355f804b3146105ee5780635c975abb146106175780636352211e1461064257610267565b80633af32abf146104875780633ccfd60b146104c45780633f8121a2146104ce57806342842e0e146104f7578063438b63001461052057610267565b806313faede61161022f57806313faede61461036357806318160ddd1461038e57806318cae269146103b9578063239c70ae146103f657806323b872dd146104215780632f745c591461044a57610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613890565b610a46565b6040516102a09190613f91565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613863565b610ac0565b005b3480156102de57600080fd5b506102e7610b59565b6040516102f49190613fac565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613933565b610beb565b6040516103319190613f08565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906137d6565b610c70565b005b34801561036f57600080fd5b50610378610d88565b60405161038591906142ee565b60405180910390f35b34801561039a57600080fd5b506103a3610d8e565b6040516103b091906142ee565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613653565b610d9b565b6040516103ed91906142ee565b60405180910390f35b34801561040257600080fd5b5061040b610db3565b60405161041891906142ee565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906136c0565b610db9565b005b34801561045657600080fd5b50610471600480360381019061046c91906137d6565b610e19565b60405161047e91906142ee565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613653565b610ebe565b6040516104bb9190613f91565b60405180910390f35b6104cc610f6d565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613863565b611069565b005b34801561050357600080fd5b5061051e600480360381019061051991906136c0565b611102565b005b34801561052c57600080fd5b5061054760048036038101906105429190613653565b611122565b6040516105549190613f6f565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613933565b6111d0565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613933565b611256565b6040516105ba91906142ee565b60405180910390f35b3480156105cf57600080fd5b506105d86112c7565b6040516105e59190613f91565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906138ea565b6112da565b005b34801561062357600080fd5b5061062c611370565b6040516106399190613f91565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613933565b611383565b6040516106769190613f08565b60405180910390f35b34801561068b57600080fd5b50610694611435565b6040516106a19190613fac565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613653565b6114c3565b6040516106de91906142ee565b60405180910390f35b3480156106f357600080fd5b506106fc61157b565b005b34801561070a57600080fd5b5061072560048036038101906107209190613933565b611603565b005b34801561073357600080fd5b5061073c611689565b6040516107499190613f08565b60405180910390f35b34801561075e57600080fd5b506107676116b3565b6040516107749190613fac565b60405180910390f35b61079760048036038101906107929190613933565b611745565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613796565b611aae565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613713565b611ac4565b005b3480156107f757600080fd5b50610812600480360381019061080d9190613933565b611b26565b60405161081f9190613f08565b60405180910390f35b34801561083457600080fd5b5061083d611b65565b60405161084a91906142ee565b60405180910390f35b34801561085f57600080fd5b50610868611b6b565b6040516108759190613fac565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613933565b611bf9565b6040516108b29190613fac565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613933565b611ca3565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613933565b611d29565b005b34801561091957600080fd5b50610922611daf565b60405161092f91906142ee565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a91906138ea565b611db5565b005b34801561096d57600080fd5b50610976611e4b565b6040516109839190613fac565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae9190613680565b611ed9565b6040516109c09190613f91565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb9190613816565b611f6d565b005b3480156109fe57600080fd5b50610a196004803603810190610a149190613653565b61200d565b005b348015610a2757600080fd5b50610a30612105565b604051610a3d91906142ee565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab95750610ab882612123565b5b9050919050565b610ac8612205565b73ffffffffffffffffffffffffffffffffffffffff16610ae6611689565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906141ce565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610b68906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b94906145f7565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b6000610bf68261220d565b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906141ae565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7b82611383565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061424e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d0b612205565b73ffffffffffffffffffffffffffffffffffffffff161480610d3a5750610d3981610d34612205565b611ed9565b5b610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d70906140ee565b60405180910390fd5b610d838383612279565b505050565b600e5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60105481565b610dca610dc4612205565b82612332565b610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e009061428e565b60405180910390fd5b610e14838383612410565b505050565b6000610e24836114c3565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613fee565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015610f62578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610efe57610efd614790565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f4f576001915050610f68565b8080610f5a9061465a565b915050610ec6565b50600090505b919050565b610f75612205565b73ffffffffffffffffffffffffffffffffffffffff16610f93611689565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906141ce565b60405180910390fd5b6000610ff3611689565b73ffffffffffffffffffffffffffffffffffffffff164760405161101690613ef3565b60006040518083038185875af1925050503d8060008114611053576040519150601f19603f3d011682016040523d82523d6000602084013e611058565b606091505b505090508061106657600080fd5b50565b611071612205565b73ffffffffffffffffffffffffffffffffffffffff1661108f611689565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906141ce565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b61111d83838360405180602001604052806000815250611ac4565b505050565b6060600061112f836114c3565b905060008167ffffffffffffffff81111561114d5761114c6147bf565b5b60405190808252806020026020018201604052801561117b5781602001602082028036833780820191505090505b50905060005b828110156111c5576111938582610e19565b8282815181106111a6576111a5614790565b5b60200260200101818152505080806111bd9061465a565b915050611181565b508092505050919050565b6111d8612205565b73ffffffffffffffffffffffffffffffffffffffff166111f6611689565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906141ce565b60405180910390fd5b80600e8190555050565b6000611260610d8e565b82106112a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611298906142ae565b60405180910390fd5b600882815481106112b5576112b4614790565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b6112e2612205565b73ffffffffffffffffffffffffffffffffffffffff16611300611689565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d906141ce565b60405180910390fd5b80600b908051906020019061136c929190613350565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114239061412e565b60405180910390fd5b80915050919050565b600b8054611442906145f7565b80601f016020809104026020016040519081016040528092919081815260200182805461146e906145f7565b80156114bb5780601f10611490576101008083540402835291602001916114bb565b820191906000526020600020905b81548152906001019060200180831161149e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b9061410e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611583612205565b73ffffffffffffffffffffffffffffffffffffffff166115a1611689565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906141ce565b60405180910390fd5b611601600061266c565b565b61160b612205565b73ffffffffffffffffffffffffffffffffffffffff16611629611689565b73ffffffffffffffffffffffffffffffffffffffff161461167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906141ce565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116c2906145f7565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee906145f7565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b5050505050905090565b600061174f610d8e565b905060008211611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906142ce565b60405180910390fd5b600f5482826117a3919061442c565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db9061414e565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611830611689565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a1d57601360009054906101000a900460ff16156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a9906141ee565b60405180910390fd5b60115483826118c1919061442c565b1115611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f99061406e565b60405180910390fd5b601054831115611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061416e565b60405180910390fd5b60011515601360019054906101000a900460ff16151514801561197657506000151561197233610ebe565b1515145b156119cc57601254838361198a919061442c565b11156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290613fce565b60405180910390fd5b5b82600e546119da91906144b3565b341015611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a139061426e565b60405180910390fd5b5b6000600190505b838111611aa857601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a7b9061465a565b9190505550611a95338285611a90919061442c565b612732565b8080611aa09061465a565b915050611a24565b50505050565b611ac0611ab9612205565b8383612750565b5050565b611ad5611acf612205565b83612332565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b9061428e565b60405180910390fd5b611b20848484846128bd565b50505050565b60148181548110611b3657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600d8054611b78906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba4906145f7565b8015611bf15780601f10611bc657610100808354040283529160200191611bf1565b820191906000526020600020905b815481529060010190602001808311611bd457829003601f168201915b505050505081565b6060611c048261220d565b611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a9061422e565b60405180910390fd5b6000611c4d612919565b90506000815111611c6d5760405180602001604052806000815250611c9b565b80611c77846129ab565b600d604051602001611c8b93929190613ec2565b6040516020818303038152906040525b915050919050565b611cab612205565b73ffffffffffffffffffffffffffffffffffffffff16611cc9611689565b73ffffffffffffffffffffffffffffffffffffffff1614611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d16906141ce565b60405180910390fd5b8060128190555050565b611d31612205565b73ffffffffffffffffffffffffffffffffffffffff16611d4f611689565b73ffffffffffffffffffffffffffffffffffffffff1614611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c906141ce565b60405180910390fd5b8060118190555050565b600f5481565b611dbd612205565b73ffffffffffffffffffffffffffffffffffffffff16611ddb611689565b73ffffffffffffffffffffffffffffffffffffffff1614611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906141ce565b60405180910390fd5b80600d9080519060200190611e47929190613350565b5050565b600c8054611e58906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611e84906145f7565b8015611ed15780601f10611ea657610100808354040283529160200191611ed1565b820191906000526020600020905b815481529060010190602001808311611eb457829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f75612205565b73ffffffffffffffffffffffffffffffffffffffff16611f93611689565b73ffffffffffffffffffffffffffffffffffffffff1614611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe0906141ce565b60405180910390fd5b60146000611ff791906133d6565b8181601491906120089291906133f7565b505050565b612015612205565b73ffffffffffffffffffffffffffffffffffffffff16612033611689565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612080906141ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f09061402e565b60405180910390fd5b6121028161266c565b50565b60125481565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121fe57506121fd82612b0c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122ec83611383565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061233d8261220d565b61237c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612373906140ce565b60405180910390fd5b600061238783611383565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f657508373ffffffffffffffffffffffffffffffffffffffff166123de84610beb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240757506124068185611ed9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661243082611383565b73ffffffffffffffffffffffffffffffffffffffff1614612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d9061420e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ed9061408e565b60405180910390fd5b612501838383612b76565b61250c600082612279565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255c919061450d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b3919061442c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61274c828260405180602001604052806000815250612c8a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b6906140ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128b09190613f91565b60405180910390a3505050565b6128c8848484612410565b6128d484848484612ce5565b612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a9061400e565b60405180910390fd5b50505050565b6060600b8054612928906145f7565b80601f0160208091040260200160405190810160405280929190818152602001828054612954906145f7565b80156129a15780601f10612976576101008083540402835291602001916129a1565b820191906000526020600020905b81548152906001019060200180831161298457829003601f168201915b5050505050905090565b606060008214156129f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b07565b600082905060005b60008214612a25578080612a0e9061465a565b915050600a82612a1e9190614482565b91506129fb565b60008167ffffffffffffffff811115612a4157612a406147bf565b5b6040519080825280601f01601f191660200182016040528015612a735781602001600182028036833780820191505090505b5090505b60008514612b0057600182612a8c919061450d565b9150600a85612a9b91906146a3565b6030612aa7919061442c565b60f81b818381518110612abd57612abc614790565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612af99190614482565b9450612a77565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b8183838361211e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc457612bbf81612e7c565b612c03565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c0257612c018382612ec5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c4657612c4181613032565b612c85565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c8457612c838282613103565b5b5b505050565b612c948383613182565b612ca16000848484612ce5565b612ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd79061400e565b60405180910390fd5b505050565b6000612d068473ffffffffffffffffffffffffffffffffffffffff1661210b565b15612e6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2f612205565b8786866040518563ffffffff1660e01b8152600401612d519493929190613f23565b602060405180830381600087803b158015612d6b57600080fd5b505af1925050508015612d9c57506040513d601f19601f82011682018060405250810190612d9991906138bd565b60015b612e1f573d8060008114612dcc576040519150601f19603f3d011682016040523d82523d6000602084013e612dd1565b606091505b50600081511415612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e9061400e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e74565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ed2846114c3565b612edc919061450d565b9050600060076000848152602001908152602001600020549050818114612fc1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613046919061450d565b905060006009600084815260200190815260200160002054905060006008838154811061307657613075614790565b5b90600052602060002001549050806008838154811061309857613097614790565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130e7576130e6614761565b5b6001900381819060005260206000200160009055905550505050565b600061310e836114c3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e99061418e565b60405180910390fd5b6131fb8161220d565b1561323b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132329061404e565b60405180910390fd5b61324760008383612b76565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613297919061442c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461335c906145f7565b90600052602060002090601f01602090048101928261337e57600085556133c5565b82601f1061339757805160ff19168380011785556133c5565b828001600101855582156133c5579182015b828111156133c45782518255916020019190600101906133a9565b5b5090506133d29190613497565b5090565b50805460008255906000526020600020908101906133f49190613497565b50565b828054828255906000526020600020908101928215613486579160200282015b8281111561348557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613417565b5b5090506134939190613497565b5090565b5b808211156134b0576000816000905550600101613498565b5090565b60006134c76134c28461432e565b614309565b9050828152602081018484840111156134e3576134e26147fd565b5b6134ee8482856145b5565b509392505050565b60006135096135048461435f565b614309565b905082815260208101848484011115613525576135246147fd565b5b6135308482856145b5565b509392505050565b60008135905061354781614e5b565b92915050565b60008083601f840112613563576135626147f3565b5b8235905067ffffffffffffffff8111156135805761357f6147ee565b5b60208301915083602082028301111561359c5761359b6147f8565b5b9250929050565b6000813590506135b281614e72565b92915050565b6000813590506135c781614e89565b92915050565b6000815190506135dc81614e89565b92915050565b600082601f8301126135f7576135f66147f3565b5b81356136078482602086016134b4565b91505092915050565b600082601f830112613625576136246147f3565b5b81356136358482602086016134f6565b91505092915050565b60008135905061364d81614ea0565b92915050565b60006020828403121561366957613668614807565b5b600061367784828501613538565b91505092915050565b6000806040838503121561369757613696614807565b5b60006136a585828601613538565b92505060206136b685828601613538565b9150509250929050565b6000806000606084860312156136d9576136d8614807565b5b60006136e786828701613538565b93505060206136f886828701613538565b92505060406137098682870161363e565b9150509250925092565b6000806000806080858703121561372d5761372c614807565b5b600061373b87828801613538565b945050602061374c87828801613538565b935050604061375d8782880161363e565b925050606085013567ffffffffffffffff81111561377e5761377d614802565b5b61378a878288016135e2565b91505092959194509250565b600080604083850312156137ad576137ac614807565b5b60006137bb85828601613538565b92505060206137cc858286016135a3565b9150509250929050565b600080604083850312156137ed576137ec614807565b5b60006137fb85828601613538565b925050602061380c8582860161363e565b9150509250929050565b6000806020838503121561382d5761382c614807565b5b600083013567ffffffffffffffff81111561384b5761384a614802565b5b6138578582860161354d565b92509250509250929050565b60006020828403121561387957613878614807565b5b6000613887848285016135a3565b91505092915050565b6000602082840312156138a6576138a5614807565b5b60006138b4848285016135b8565b91505092915050565b6000602082840312156138d3576138d2614807565b5b60006138e1848285016135cd565b91505092915050565b600060208284031215613900576138ff614807565b5b600082013567ffffffffffffffff81111561391e5761391d614802565b5b61392a84828501613610565b91505092915050565b60006020828403121561394957613948614807565b5b60006139578482850161363e565b91505092915050565b600061396c8383613ea4565b60208301905092915050565b61398181614541565b82525050565b6000613992826143b5565b61399c81856143e3565b93506139a783614390565b8060005b838110156139d85781516139bf8882613960565b97506139ca836143d6565b9250506001810190506139ab565b5085935050505092915050565b6139ee81614553565b82525050565b60006139ff826143c0565b613a0981856143f4565b9350613a198185602086016145c4565b613a228161480c565b840191505092915050565b6000613a38826143cb565b613a428185614410565b9350613a528185602086016145c4565b613a5b8161480c565b840191505092915050565b6000613a71826143cb565b613a7b8185614421565b9350613a8b8185602086016145c4565b80840191505092915050565b60008154613aa4816145f7565b613aae8186614421565b94506001821660008114613ac95760018114613ada57613b0d565b60ff19831686528186019350613b0d565b613ae3856143a0565b60005b83811015613b0557815481890152600182019150602081019050613ae6565b838801955050505b50505092915050565b6000613b23601883614410565b9150613b2e8261481d565b602082019050919050565b6000613b46602b83614410565b9150613b5182614846565b604082019050919050565b6000613b69603283614410565b9150613b7482614895565b604082019050919050565b6000613b8c602683614410565b9150613b97826148e4565b604082019050919050565b6000613baf601c83614410565b9150613bba82614933565b602082019050919050565b6000613bd2601c83614410565b9150613bdd8261495c565b602082019050919050565b6000613bf5602483614410565b9150613c0082614985565b604082019050919050565b6000613c18601983614410565b9150613c23826149d4565b602082019050919050565b6000613c3b602c83614410565b9150613c46826149fd565b604082019050919050565b6000613c5e603883614410565b9150613c6982614a4c565b604082019050919050565b6000613c81602a83614410565b9150613c8c82614a9b565b604082019050919050565b6000613ca4602983614410565b9150613caf82614aea565b604082019050919050565b6000613cc7601683614410565b9150613cd282614b39565b602082019050919050565b6000613cea602483614410565b9150613cf582614b62565b604082019050919050565b6000613d0d602083614410565b9150613d1882614bb1565b602082019050919050565b6000613d30602c83614410565b9150613d3b82614bda565b604082019050919050565b6000613d53602083614410565b9150613d5e82614c29565b602082019050919050565b6000613d76601683614410565b9150613d8182614c52565b602082019050919050565b6000613d99602983614410565b9150613da482614c7b565b604082019050919050565b6000613dbc602f83614410565b9150613dc782614cca565b604082019050919050565b6000613ddf602183614410565b9150613dea82614d19565b604082019050919050565b6000613e02600083614405565b9150613e0d82614d68565b600082019050919050565b6000613e25601283614410565b9150613e3082614d6b565b602082019050919050565b6000613e48603183614410565b9150613e5382614d94565b604082019050919050565b6000613e6b602c83614410565b9150613e7682614de3565b604082019050919050565b6000613e8e601b83614410565b9150613e9982614e32565b602082019050919050565b613ead816145ab565b82525050565b613ebc816145ab565b82525050565b6000613ece8286613a66565b9150613eda8285613a66565b9150613ee68284613a97565b9150819050949350505050565b6000613efe82613df5565b9150819050919050565b6000602082019050613f1d6000830184613978565b92915050565b6000608082019050613f386000830187613978565b613f456020830186613978565b613f526040830185613eb3565b8181036060830152613f6481846139f4565b905095945050505050565b60006020820190508181036000830152613f898184613987565b905092915050565b6000602082019050613fa660008301846139e5565b92915050565b60006020820190508181036000830152613fc68184613a2d565b905092915050565b60006020820190508181036000830152613fe781613b16565b9050919050565b6000602082019050818103600083015261400781613b39565b9050919050565b6000602082019050818103600083015261402781613b5c565b9050919050565b6000602082019050818103600083015261404781613b7f565b9050919050565b6000602082019050818103600083015261406781613ba2565b9050919050565b6000602082019050818103600083015261408781613bc5565b9050919050565b600060208201905081810360008301526140a781613be8565b9050919050565b600060208201905081810360008301526140c781613c0b565b9050919050565b600060208201905081810360008301526140e781613c2e565b9050919050565b6000602082019050818103600083015261410781613c51565b9050919050565b6000602082019050818103600083015261412781613c74565b9050919050565b6000602082019050818103600083015261414781613c97565b9050919050565b6000602082019050818103600083015261416781613cba565b9050919050565b6000602082019050818103600083015261418781613cdd565b9050919050565b600060208201905081810360008301526141a781613d00565b9050919050565b600060208201905081810360008301526141c781613d23565b9050919050565b600060208201905081810360008301526141e781613d46565b9050919050565b6000602082019050818103600083015261420781613d69565b9050919050565b6000602082019050818103600083015261422781613d8c565b9050919050565b6000602082019050818103600083015261424781613daf565b9050919050565b6000602082019050818103600083015261426781613dd2565b9050919050565b6000602082019050818103600083015261428781613e18565b9050919050565b600060208201905081810360008301526142a781613e3b565b9050919050565b600060208201905081810360008301526142c781613e5e565b9050919050565b600060208201905081810360008301526142e781613e81565b9050919050565b60006020820190506143036000830184613eb3565b92915050565b6000614313614324565b905061431f8282614629565b919050565b6000604051905090565b600067ffffffffffffffff821115614349576143486147bf565b5b6143528261480c565b9050602081019050919050565b600067ffffffffffffffff82111561437a576143796147bf565b5b6143838261480c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614437826145ab565b9150614442836145ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614477576144766146d4565b5b828201905092915050565b600061448d826145ab565b9150614498836145ab565b9250826144a8576144a7614703565b5b828204905092915050565b60006144be826145ab565b91506144c9836145ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614502576145016146d4565b5b828202905092915050565b6000614518826145ab565b9150614523836145ab565b925082821015614536576145356146d4565b5b828203905092915050565b600061454c8261458b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145e25780820151818401526020810190506145c7565b838111156145f1576000848401525b50505050565b6000600282049050600182168061460f57607f821691505b6020821081141561462357614622614732565b5b50919050565b6146328261480c565b810181811067ffffffffffffffff82111715614651576146506147bf565b5b80604052505050565b6000614665826145ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614698576146976146d4565b5b600182019050919050565b60006146ae826145ab565b91506146b9836145ab565b9250826146c9576146c8614703565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f47204c5457432070726573616c6520736f6c64206f75740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614e6481614541565b8114614e6f57600080fd5b50565b614e7b81614553565b8114614e8657600080fd5b50565b614e928161455f565b8114614e9d57600080fd5b50565b614ea9816145ab565b8114614eb457600080fd5b5056fea2646970667358221220206f3600d5fc11fcee581e58aab14853113ee682d3746c9f90267bc0b2132b7264736f6c63430008070033

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.