ETH Price: $3,456.03 (-0.68%)
Gas: 5 Gwei

Token

Killing machines (KLM)
 

Overview

Max Total Supply

410 KLM

Holders

89

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ofofo.eth
Balance
3 KLM
0xe8C0Fe3699dB673486C391A4eEfA5a18c7CFD4d6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KillingMachines

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

/**
 ____  __.__.__  .__  .__                                       .__    .__                      
|    |/ _|__|  | |  | |__| ____    ____     _____ _____    ____ |  |__ |__| ____   ____   ______
|      < |  |  | |  | |  |/    \  / ___\   /     \\__  \ _/ ___\|  |  \|  |/    \_/ __ \ /  ___/
|    |  \|  |  |_|  |_|  |   |  \/ /_/  > |  Y Y  \/ __ \\  \___|   Y  \  |   |  \  ___/ \___ \ 
|____|__ \__|____/____/__|___|  /\___  /  |__|_|  (____  /\___  >___|  /__|___|  /\___  >____  >
        \/                    \//_____/         \/     \/     \/     \/        \/     \/     \/ 
                                                                                                
                                                                                               

 @powered by: amadeus-nft.io
*/

pragma solidity ^0.8.0;

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

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

contract KillingMachines is Ownable, ERC721A, ReentrancyGuard {
    constructor(
    ) ERC721A("Killing machines", "KLM", 22, 2222) {}

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

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

    // metadata URI
    string private _baseTokenURI;

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

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

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

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

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

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }
    // allowList mint
    uint256 public allowListMintPrice = 0.000000 ether;
    // default false
    bool public allowListStatus = false;
    uint256 public amountForAllowList = 22;
    uint256 public immutable maxPerAddressDuringMint = 22;

    bytes32 private merkleRoot;

    mapping(address => bool) public allowListAppeared;
    mapping(address => uint256) public allowListStock;

    function allowListMint(uint256 quantity, bytes32[] memory proof) external payable {
        require(allowListStatus, "not begun");
        require(totalSupply() + quantity <= collectionSize, "reached max supply");
        require(amountForAllowList >= quantity, "reached max amount");
        require(isInAllowList(msg.sender, proof), "Invalid Merkle Proof.");
        if(!allowListAppeared[msg.sender]){
            allowListAppeared[msg.sender] = true;
            allowListStock[msg.sender] = maxPerAddressDuringMint;
        }
        require(allowListStock[msg.sender] >= quantity, "reached amount per address");
        allowListStock[msg.sender] -= quantity;
        _safeMint(msg.sender, quantity);
        amountForAllowList -= quantity;
        refundIfOver(allowListMintPrice*quantity);
    }

    function setRoot(bytes32 root) external onlyOwner{
        merkleRoot = root;
    }

    function setAllowListStatus(bool status) external onlyOwner {
        allowListStatus = status;
    }

    function isInAllowList(address addr, bytes32[] memory proof) public view returns(bool) {
        bytes32 leaf = keccak256(abi.encodePacked(addr));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    //public sale
    function getPuiblicSalePrice(uint256 offset) public view returns(uint256){
        if (2200 < 1100 + amountForPublicSale - offset){
            return 0.000000 ether;
        }
        return 0.002000 ether;
    }
    function getPuiblicSalePriceTotal(uint256 quantity) public view returns(uint256){
        uint256 totalPrice = 0;
        for(uint256 i = 0;i < quantity;i++){
            totalPrice += getPuiblicSalePrice(i);
        }
        return totalPrice;
    }
    bool public publicSaleStatus = false;
    uint256 public amountForPublicSale = 2200;
    // per mint public sale limitation
    uint256 public immutable publicSalePerMint = 3;

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

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

        _safeMint(msg.sender, quantity);
        refundIfOver(getPuiblicSalePriceTotal(quantity));
        amountForPublicSale -= quantity;
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    revert("find owner failed");
  }

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListAppeared","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListStock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"offset","type":"uint256"}],"name":"getPuiblicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPuiblicSalePriceTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"addr","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isInAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"address[]","name":"tos","type":"address[]"}],"name":"reserveMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setAllowListStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260006001556000600a556000600b60006101000a81548160ff0219169083151502179055506016600c55601660c0908152506000601060006101000a81548160ff021916908315150217905550610898601155600360e0908152503480156200006d57600080fd5b506040518060400160405280601081526020017f4b696c6c696e67206d616368696e6573000000000000000000000000000000008152506040518060400160405280600381526020017f4b4c4d000000000000000000000000000000000000000000000000000000000081525060166108ae620000ff620000f3620001df60201b60201c565b620001e760201b60201c565b6000811162000145576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013c90620003cb565b60405180910390fd5b600082116200018b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018290620003a9565b60405180910390fd5b8360029080519060200190620001a3929190620002ab565b508260039080519060200190620001bc929190620002ab565b508160a081815250508060808181525050505050506001600881905550620004db565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b990620003fe565b90600052602060002090601f016020900481019282620002dd576000855562000329565b82601f10620002f857805160ff191683800117855562000329565b8280016001018555821562000329579182015b82811115620003285782518255916020019190600101906200030b565b5b5090506200033891906200033c565b5090565b5b80821115620003575760008160009055506001016200033d565b5090565b60006200036a601e83620003ed565b9150620003778262000463565b602082019050919050565b600062000391602583620003ed565b91506200039e826200048c565b604082019050919050565b60006020820190508181036000830152620003c4816200035b565b9050919050565b60006020820190508181036000830152620003e68162000382565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041757607f821691505b602082108114156200042e576200042d62000434565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f6d61782062617463682073697a65206d757374206265206e6f6e7a65726f0000600082015250565b7f636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b60805160a05160c05160e0516156ca6200055b600039600081816110250152611c520152600081816115e70152612224015260008181611163015281816111e00152818161121c0152818161129101528181612c3001528181612c59015261349c0152600081816110d301528181611b98015261207801526156ca6000f3fe6080604052600436106102465760003560e01c80638626eb1811610139578063b6c693e5116100b6578063dc33e6811161007a578063dc33e681146108a7578063e1ab4f68146108e4578063e985e9c514610921578063ec8bda8e1461095e578063f2fde38b1461097a578063f839a57a146109a357610246565b8063b6c693e5146107b0578063b88d4fde146107db578063c5d98bb314610804578063c87b56dd14610841578063dab5f3401461087e57610246565b80639dc74e63116100fd5780639dc74e6314610700578063a22cb4651461072b578063ac44600214610754578063b3ab66b01461076b578063b423fe671461078757610246565b80638626eb18146106175780638bc35c2f146106425780638da5cb5b1461066d5780639231ab2a1461069857806395d89b41146106d557610246565b80633cd47537116101c75780636352211e1161018b5780636352211e1461053057806368855b641461056d57806370a0823114610598578063715018a6146105d5578063802751ca146105ec57610246565b80633cd475371461043b57806342842e0e14610464578063491abac11461048d5780634f6ccce7146104ca57806355f804b31461050757610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063300bc3a1146103e75780633ba5ae241461041057610246565b806301ffc9a71461024b578063050c8ffc1461028857806306fdde03146102c5578063081812fc146102f0578063095ea7b31461032d575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613fce565b6109e0565b60405161027f9190614707565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613cd4565b610b2a565b6040516102bc9190614aff565b60405180910390f35b3480156102d157600080fd5b506102da610b42565b6040516102e79190614722565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190614075565b610bd4565b60405161032491906146a0565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613eb3565b610c59565b005b34801561036257600080fd5b5061036b610d72565b6040516103789190614aff565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613d41565b610d7c565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613eb3565b610d8c565b6040516103de9190614aff565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613f74565b610f8a565b005b34801561041c57600080fd5b50610425611023565b6040516104329190614aff565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190613ef3565b611047565b005b34801561047057600080fd5b5061048b60048036038101906104869190613d41565b6112f5565b005b34801561049957600080fd5b506104b460048036038101906104af9190614075565b611315565b6040516104c19190614aff565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190614075565b61135a565b6040516104fe9190614aff565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190614028565b6113ad565b005b34801561053c57600080fd5b5061055760048036038101906105529190614075565b61143f565b60405161056491906146a0565b60405180910390f35b34801561057957600080fd5b50610582611455565b60405161058f9190614aff565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613cd4565b61145b565b6040516105cc9190614aff565b60405180910390f35b3480156105e157600080fd5b506105ea611544565b005b3480156105f857600080fd5b506106016115cc565b60405161060e9190614707565b60405180910390f35b34801561062357600080fd5b5061062c6115df565b6040516106399190614aff565b60405180910390f35b34801561064e57600080fd5b506106576115e5565b6040516106649190614aff565b60405180910390f35b34801561067957600080fd5b50610682611609565b60405161068f91906146a0565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190614075565b611632565b6040516106cc9190614ae4565b60405180910390f35b3480156106e157600080fd5b506106ea61164a565b6040516106f79190614722565b60405180910390f35b34801561070c57600080fd5b506107156116dc565b6040516107229190614aff565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190613e73565b6116e2565b005b34801561076057600080fd5b50610769611863565b005b61078560048036038101906107809190614075565b611ad9565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613f74565b611cea565b005b3480156107bc57600080fd5b506107c5611d83565b6040516107d29190614707565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613d94565b611d96565b005b34801561081057600080fd5b5061082b60048036038101906108269190613e17565b611df2565b6040516108389190614707565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190614075565b611e34565b6040516108759190614722565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613fa1565b611edb565b005b3480156108b357600080fd5b506108ce60048036038101906108c99190613cd4565b611f61565b6040516108db9190614aff565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190613cd4565b611f73565b6040516109189190614707565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613d01565b611f93565b6040516109559190614707565b60405180910390f35b610978600480360381019061097391906140a2565b612027565b005b34801561098657600080fd5b506109a1600480360381019061099c9190613cd4565b61239c565b005b3480156109af57600080fd5b506109ca60048036038101906109c59190614075565b612494565b6040516109d79190614aff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b235750610b22826124d3565b5b9050919050565b600f6020528060005260406000206000915090505481565b606060028054610b5190614e93565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d90614e93565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b5050505050905090565b6000610bdf8261253d565b610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590614804565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c648261143f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906147a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf461254b565b73ffffffffffffffffffffffffffffffffffffffff161480610d235750610d2281610d1d61254b565b611f93565b5b610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614764565b60405180910390fd5b610d6d838383612553565b505050565b6000600154905090565b610d87838383612605565b505050565b6000610d978361145b565b8210610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90614aa4565b60405180910390fd5b6000610de2610d72565b905060008060005b83811015610f48576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610edc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f345786841415610f25578195505050505050610f84565b8380610f3090614ef6565b9450505b508080610f4090614ef6565b915050610dea565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906149a4565b60405180910390fd5b92915050565b610f9261254b565b73ffffffffffffffffffffffffffffffffffffffff16610fb0611609565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90614944565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61104f61254b565b73ffffffffffffffffffffffffffffffffffffffff1661106d611609565b73ffffffffffffffffffffffffffffffffffffffff16146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90614944565b60405180910390fd5b60005b848490508110156112ee577f000000000000000000000000000000000000000000000000000000000000000085858381811061110557611104615021565b5b90506020020135611114610d72565b61111e9190614c30565b111561115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906148a4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000086868481811061119557611194615021565b5b905060200201356111a69190614c86565b905060005b81811015611217576112048585858181106111c9576111c8615021565b5b90506020020160208101906111de9190613cd4565b7f0000000000000000000000000000000000000000000000000000000000000000612bbe565b808061120f90614ef6565b9150506111ab565b5060007f000000000000000000000000000000000000000000000000000000000000000087878581811061124e5761124d615021565b5b9050602002013561125f9190614f63565b146112da576112d984848481811061127a57611279615021565b5b905060200201602081019061128f9190613cd4565b7f00000000000000000000000000000000000000000000000000000000000000008888868181106112c3576112c2615021565b5b905060200201356112d49190614f63565b612bbe565b5b5080806112e690614ef6565b9150506110c6565b5050505050565b61131083838360405180602001604052806000815250611d96565b505050565b6000806000905060005b838110156113505761133081612494565b8261133b9190614c30565b9150808061134890614ef6565b91505061131f565b5080915050919050565b6000611364610d72565b82106113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614aa4565b60405180910390fd5b819050919050565b6113b561254b565b73ffffffffffffffffffffffffffffffffffffffff166113d3611609565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090614944565b60405180910390fd5b81816009919061143a929190613969565b505050565b600061144a82612bdc565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390614744565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61154c61254b565b73ffffffffffffffffffffffffffffffffffffffff1661156a611609565b73ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790614944565b60405180910390fd5b6115ca6000612ddf565b565b600b60009054906101000a900460ff1681565b600c5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163a6139ef565b61164382612bdc565b9050919050565b60606003805461165990614e93565b80601f016020809104026020016040519081016040528092919081815260200182805461168590614e93565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b5050505050905090565b60115481565b6116ea61254b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614984565b60405180910390fd5b806007600061176561254b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181261254b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118579190614707565b60405180910390a35050565b61186b61254b565b73ffffffffffffffffffffffffffffffffffffffff16611889611609565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690614944565b60405180910390fd5b60026008541415611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614a84565b60405180910390fd5b6002600881905550600073718a7438297ac14382f25802bb18422a4dadd31b90506000600a6064476119579190614c86565b6119619190614cb7565b9050600081476119719190614d45565b905060008373ffffffffffffffffffffffffffffffffffffffff16836040516119999061468b565b60006040518083038185875af1925050503d80600081146119d6576040519150601f19603f3d011682016040523d82523d6000602084013e6119db565b606091505b5050905080611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614a04565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1682604051611a439061468b565b60006040518083038185875af1925050503d8060008114611a80576040519150601f19603f3d011682016040523d82523d6000602084013e611a85565b606091505b50508091505080611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290614a04565b60405180910390fd5b505050506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614824565b60405180910390fd5b601060009054906101000a900460ff16611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614864565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611bc0610d72565b611bca9190614c30565b1115611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906148e4565b60405180910390fd5b806011541015611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4790614844565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000811115611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa906149c4565b60405180910390fd5b611cbd3382612bbe565b611cce611cc982611315565b612ea3565b8060116000828254611ce09190614d45565b9250508190555050565b611cf261254b565b73ffffffffffffffffffffffffffffffffffffffff16611d10611609565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90614944565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b601060009054906101000a900460ff1681565b611da1848484612605565b611dad84848484612f44565b611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614964565b60405180910390fd5b50505050565b60008083604051602001611e06919061464c565b604051602081830303815290604052805190602001209050611e2b83600d54836130db565b91505092915050565b6060611e3f8261253d565b611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590614804565b60405180910390fd5b6000611e886130f2565b90506000815111611ea85760405180602001604052806000815250611ed3565b80611eb284613184565b604051602001611ec3929190614667565b6040516020818303038152906040525b915050919050565b611ee361254b565b73ffffffffffffffffffffffffffffffffffffffff16611f01611609565b73ffffffffffffffffffffffffffffffffffffffff1614611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614944565b60405180910390fd5b80600d8190555050565b6000611f6c826132e5565b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff16612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614864565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000826120a0610d72565b6120aa9190614c30565b11156120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e2906148e4565b60405180910390fd5b81600c541015612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614844565b60405180910390fd5b61213a3382611df2565b612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906147c4565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612287576001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0000000000000000000000000000000000000000000000000000000000000000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090614924565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123589190614d45565b925050819055506123693383612bbe565b81600c600082825461237b9190614d45565b9250508190555061239882600a546123939190614cb7565b612ea3565b5050565b6123a461254b565b73ffffffffffffffffffffffffffffffffffffffff166123c2611609565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90614944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90614784565b60405180910390fd5b61249181612ddf565b50565b60008160115461044c6124a79190614c30565b6124b19190614d45565b61089810156124c357600090506124ce565b66071afd498d000090505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061261082612bdc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661263761254b565b73ffffffffffffffffffffffffffffffffffffffff161480612693575061265c61254b565b73ffffffffffffffffffffffffffffffffffffffff1661267b84610bd4565b73ffffffffffffffffffffffffffffffffffffffff16145b806126af57506126ae82600001516126a961254b565b611f93565b5b9050806126f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e8906148c4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614904565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca90614a64565b60405180910390fd5b6127e085858560016133ce565b6127f06000848460000151612553565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661285e9190614d11565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129029190614bea565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a089190614c30565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b4e57612a7e8161253d565b15612b4d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb686868660016133d4565b505050505050565b612bd88282604051806020016040528060008152506133da565b5050565b612be46139ef565b612bed8261253d565b612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614804565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612c905760017f000000000000000000000000000000000000000000000000000000000000000084612c839190614d45565b612c8d9190614c30565b90505b60008390505b818110612d9e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d8a57809350505050612dda565b508080612d9690614e69565b915050612c96565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd1906147e4565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015612ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edd90614a24565b60405180910390fd5b80341115612f41573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612f149190614d45565b9081150290604051600060405180830381858888f19350505050158015612f3f573d6000803e3d6000fd5b505b50565b6000612f658473ffffffffffffffffffffffffffffffffffffffff166138ba565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e61254b565b8786866040518563ffffffff1660e01b8152600401612fb094939291906146bb565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613ffb565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d90614884565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b6000826130e885846138dd565b1490509392505050565b60606009805461310190614e93565b80601f016020809104026020016040519081016040528092919081815260200182805461312d90614e93565b801561317a5780601f1061314f5761010080835404028352916020019161317a565b820191906000526020600020905b81548152906001019060200180831161315d57829003601f168201915b5050505050905090565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e790614ef6565b915050600a826131f79190614c86565b91506131d4565b60008167ffffffffffffffff81111561321a57613219615050565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d9576001826132659190614d45565b9150600a856132749190614f63565b60306132809190614c30565b60f81b81838151811061329657613295615021565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614c86565b9450613250565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d90614744565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613448906149e4565b60405180910390fd5b61345a8161253d565b1561349a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349190614ac4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156134fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f490614a44565b60405180910390fd5b61350a60008583866133ce565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136079190614bea565b6fffffffffffffffffffffffffffffffff16815260200185836020015161362e9190614bea565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561389d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461383d6000888488612f44565b61387c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387390614964565b60405180910390fd5b818061388790614ef6565b925050808061389590614ef6565b9150506137cc565b50806001819055506138b260008785886133d4565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561394757600085828151811061390457613903615021565b5b602002602001015190508083116139265761391f8382613952565b9250613933565b6139308184613952565b92505b50808061393f90614ef6565b9150506138e6565b508091505092915050565b600082600052816020526040600020905092915050565b82805461397590614e93565b90600052602060002090601f01602090048101928261399757600085556139de565b82601f106139b057803560ff19168380011785556139de565b828001600101855582156139de579182015b828111156139dd5782358255916020019190600101906139c2565b5b5090506139eb9190613a29565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a42576000816000905550600101613a2a565b5090565b6000613a59613a5484614b3f565b614b1a565b90508083825260208201905082856020860282011115613a7c57613a7b615089565b5b60005b85811015613aac5781613a928882613bfc565b845260208401935060208301925050600181019050613a7f565b5050509392505050565b6000613ac9613ac484614b6b565b614b1a565b905082815260208101848484011115613ae557613ae461508e565b5b613af0848285614e27565b509392505050565b600081359050613b0781615621565b92915050565b60008083601f840112613b2357613b22615084565b5b8235905067ffffffffffffffff811115613b4057613b3f61507f565b5b602083019150836020820283011115613b5c57613b5b615089565b5b9250929050565b600082601f830112613b7857613b77615084565b5b8135613b88848260208601613a46565b91505092915050565b60008083601f840112613ba757613ba6615084565b5b8235905067ffffffffffffffff811115613bc457613bc361507f565b5b602083019150836020820283011115613be057613bdf615089565b5b9250929050565b600081359050613bf681615638565b92915050565b600081359050613c0b8161564f565b92915050565b600081359050613c2081615666565b92915050565b600081519050613c3581615666565b92915050565b600082601f830112613c5057613c4f615084565b5b8135613c60848260208601613ab6565b91505092915050565b60008083601f840112613c7f57613c7e615084565b5b8235905067ffffffffffffffff811115613c9c57613c9b61507f565b5b602083019150836001820283011115613cb857613cb7615089565b5b9250929050565b600081359050613cce8161567d565b92915050565b600060208284031215613cea57613ce9615098565b5b6000613cf884828501613af8565b91505092915050565b60008060408385031215613d1857613d17615098565b5b6000613d2685828601613af8565b9250506020613d3785828601613af8565b9150509250929050565b600080600060608486031215613d5a57613d59615098565b5b6000613d6886828701613af8565b9350506020613d7986828701613af8565b9250506040613d8a86828701613cbf565b9150509250925092565b60008060008060808587031215613dae57613dad615098565b5b6000613dbc87828801613af8565b9450506020613dcd87828801613af8565b9350506040613dde87828801613cbf565b925050606085013567ffffffffffffffff811115613dff57613dfe615093565b5b613e0b87828801613c3b565b91505092959194509250565b60008060408385031215613e2e57613e2d615098565b5b6000613e3c85828601613af8565b925050602083013567ffffffffffffffff811115613e5d57613e5c615093565b5b613e6985828601613b63565b9150509250929050565b60008060408385031215613e8a57613e89615098565b5b6000613e9885828601613af8565b9250506020613ea985828601613be7565b9150509250929050565b60008060408385031215613eca57613ec9615098565b5b6000613ed885828601613af8565b9250506020613ee985828601613cbf565b9150509250929050565b60008060008060408587031215613f0d57613f0c615098565b5b600085013567ffffffffffffffff811115613f2b57613f2a615093565b5b613f3787828801613b91565b9450945050602085013567ffffffffffffffff811115613f5a57613f59615093565b5b613f6687828801613b0d565b925092505092959194509250565b600060208284031215613f8a57613f89615098565b5b6000613f9884828501613be7565b91505092915050565b600060208284031215613fb757613fb6615098565b5b6000613fc584828501613bfc565b91505092915050565b600060208284031215613fe457613fe3615098565b5b6000613ff284828501613c11565b91505092915050565b60006020828403121561401157614010615098565b5b600061401f84828501613c26565b91505092915050565b6000806020838503121561403f5761403e615098565b5b600083013567ffffffffffffffff81111561405d5761405c615093565b5b61406985828601613c69565b92509250509250929050565b60006020828403121561408b5761408a615098565b5b600061409984828501613cbf565b91505092915050565b600080604083850312156140b9576140b8615098565b5b60006140c785828601613cbf565b925050602083013567ffffffffffffffff8111156140e8576140e7615093565b5b6140f485828601613b63565b9150509250929050565b61410781614d79565b82525050565b61411681614d79565b82525050565b61412d61412882614d79565b614f3f565b82525050565b61413c81614d8b565b82525050565b600061414d82614b9c565b6141578185614bb2565b9350614167818560208601614e36565b6141708161509d565b840191505092915050565b600061418682614ba7565b6141908185614bce565b93506141a0818560208601614e36565b6141a98161509d565b840191505092915050565b60006141bf82614ba7565b6141c98185614bdf565b93506141d9818560208601614e36565b80840191505092915050565b60006141f2601283614bce565b91506141fd826150bb565b602082019050919050565b6000614215603083614bce565b9150614220826150e4565b604082019050919050565b6000614238602683614bce565b915061424382615133565b604082019050919050565b600061425b601983614bce565b915061426682615182565b602082019050919050565b600061427e601583614bce565b9150614289826151ab565b602082019050919050565b60006142a1601183614bce565b91506142ac826151d4565b602082019050919050565b60006142c4601b83614bce565b91506142cf826151fd565b602082019050919050565b60006142e7601e83614bce565b91506142f282615226565b602082019050919050565b600061430a601283614bce565b91506143158261524f565b602082019050919050565b600061432d600983614bce565b915061433882615278565b602082019050919050565b6000614350602a83614bce565b915061435b826152a1565b604082019050919050565b6000614373602883614bce565b915061437e826152f0565b604082019050919050565b6000614396602983614bce565b91506143a18261533f565b604082019050919050565b60006143b9601283614bce565b91506143c48261538e565b602082019050919050565b60006143dc601d83614bce565b91506143e7826153b7565b602082019050919050565b60006143ff601a83614bce565b915061440a826153e0565b602082019050919050565b6000614422602083614bce565b915061442d82615409565b602082019050919050565b6000614445601e83614bce565b915061445082615432565b602082019050919050565b6000614468601183614bce565b91506144738261545b565b602082019050919050565b600061448b601c83614bce565b915061449682615484565b602082019050919050565b60006144ae601b83614bce565b91506144b9826154ad565b602082019050919050565b60006144d1600083614bc3565b91506144dc826154d6565b600082019050919050565b60006144f4601083614bce565b91506144ff826154d9565b602082019050919050565b6000614517601083614bce565b915061452282615502565b602082019050919050565b600061453a601683614bce565b91506145458261552b565b602082019050919050565b600061455d601183614bce565b915061456882615554565b602082019050919050565b6000614580601483614bce565b915061458b8261557d565b602082019050919050565b60006145a3601f83614bce565b91506145ae826155a6565b602082019050919050565b60006145c6601383614bce565b91506145d1826155cf565b602082019050919050565b60006145e9600e83614bce565b91506145f4826155f8565b602082019050919050565b60408201600082015161461560008501826140fe565b506020820151614628602085018261463d565b50505050565b61463781614e09565b82525050565b61464681614e13565b82525050565b6000614658828461411c565b60148201915081905092915050565b600061467382856141b4565b915061467f82846141b4565b91508190509392505050565b6000614696826144c4565b9150819050919050565b60006020820190506146b5600083018461410d565b92915050565b60006080820190506146d0600083018761410d565b6146dd602083018661410d565b6146ea604083018561462e565b81810360608301526146fc8184614142565b905095945050505050565b600060208201905061471c6000830184614133565b92915050565b6000602082019050818103600083015261473c818461417b565b905092915050565b6000602082019050818103600083015261475d816141e5565b9050919050565b6000602082019050818103600083015261477d81614208565b9050919050565b6000602082019050818103600083015261479d8161422b565b9050919050565b600060208201905081810360008301526147bd8161424e565b9050919050565b600060208201905081810360008301526147dd81614271565b9050919050565b600060208201905081810360008301526147fd81614294565b9050919050565b6000602082019050818103600083015261481d816142b7565b9050919050565b6000602082019050818103600083015261483d816142da565b9050919050565b6000602082019050818103600083015261485d816142fd565b9050919050565b6000602082019050818103600083015261487d81614320565b9050919050565b6000602082019050818103600083015261489d81614343565b9050919050565b600060208201905081810360008301526148bd81614366565b9050919050565b600060208201905081810360008301526148dd81614389565b9050919050565b600060208201905081810360008301526148fd816143ac565b9050919050565b6000602082019050818103600083015261491d816143cf565b9050919050565b6000602082019050818103600083015261493d816143f2565b9050919050565b6000602082019050818103600083015261495d81614415565b9050919050565b6000602082019050818103600083015261497d81614438565b9050919050565b6000602082019050818103600083015261499d8161445b565b9050919050565b600060208201905081810360008301526149bd8161447e565b9050919050565b600060208201905081810360008301526149dd816144a1565b9050919050565b600060208201905081810360008301526149fd816144e7565b9050919050565b60006020820190508181036000830152614a1d8161450a565b9050919050565b60006020820190508181036000830152614a3d8161452d565b9050919050565b60006020820190508181036000830152614a5d81614550565b9050919050565b60006020820190508181036000830152614a7d81614573565b9050919050565b60006020820190508181036000830152614a9d81614596565b9050919050565b60006020820190508181036000830152614abd816145b9565b9050919050565b60006020820190508181036000830152614add816145dc565b9050919050565b6000604082019050614af960008301846145ff565b92915050565b6000602082019050614b14600083018461462e565b92915050565b6000614b24614b35565b9050614b308282614ec5565b919050565b6000604051905090565b600067ffffffffffffffff821115614b5a57614b59615050565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b8657614b85615050565b5b614b8f8261509d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf582614dcd565b9150614c0083614dcd565b9250826fffffffffffffffffffffffffffffffff03821115614c2557614c24614f94565b5b828201905092915050565b6000614c3b82614e09565b9150614c4683614e09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7b57614c7a614f94565b5b828201905092915050565b6000614c9182614e09565b9150614c9c83614e09565b925082614cac57614cab614fc3565b5b828204905092915050565b6000614cc282614e09565b9150614ccd83614e09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d0657614d05614f94565b5b828202905092915050565b6000614d1c82614dcd565b9150614d2783614dcd565b925082821015614d3a57614d39614f94565b5b828203905092915050565b6000614d5082614e09565b9150614d5b83614e09565b925082821015614d6e57614d6d614f94565b5b828203905092915050565b6000614d8482614de9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614e54578082015181840152602081019050614e39565b83811115614e63576000848401525b50505050565b6000614e7482614e09565b91506000821415614e8857614e87614f94565b5b600182039050919050565b60006002820490506001821680614eab57607f821691505b60208210811415614ebf57614ebe614ff2565b5b50919050565b614ece8261509d565b810181811067ffffffffffffffff82111715614eed57614eec615050565b5b80604052505050565b6000614f0182614e09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f3457614f33614f94565b5b600182019050919050565b6000614f4a82614f51565b9050919050565b6000614f5c826150ae565b9050919050565b6000614f6e82614e09565b9150614f7983614e09565b925082614f8957614f88614fc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f717565727920666f7220746865207a65726f0000000000000000000000000000600082015250565b7f617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f722060008201527f617070726f76656420666f7220616c6c00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f617070726f76616c20746f2063757272656e74206f776e657200000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b7f66696e64206f776e6572206661696c6564000000000000000000000000000000600082015250565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f72656163686564206d617820616d6f756e740000000000000000000000000000600082015250565b7f6e6f7420626567756e0000000000000000000000000000000000000000000000600082015250565b7f7472616e7366657220746f206e6f6e204552433732315265636569766572206960008201527f6d706c656d656e74657200000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e742e000000000000000000000000000000000000000000000000602082015250565b7f7472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f7472616e736665722066726f6d20696e636f7272656374206f776e6572000000600082015250565b7f7265616368656420616d6f756e74207065722061646472657373000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7472616e7366657220746f206e6f6e2045524337323152656365697665720000600082015250565b7f617070726f766520746f2063616c6c6572000000000000000000000000000000600082015250565b7f756e61626c6520746f2067657420746f6b656e206f66206f776e657200000000600082015250565b7f72656163686564206d617820616d6f756e7420706572206d696e740000000000600082015250565b50565b7f6d696e7420746f20746865207a65726f00000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f7175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b7f7472616e7366657220746f20746865207a65726f000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646578206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b61562a81614d79565b811461563557600080fd5b50565b61564181614d8b565b811461564c57600080fd5b50565b61565881614d97565b811461566357600080fd5b50565b61566f81614da1565b811461567a57600080fd5b50565b61568681614e09565b811461569157600080fd5b5056fea2646970667358221220b21eea433688250d3b0e115b003f543d09cf03e55fcd53f92c4754aec262150964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638626eb1811610139578063b6c693e5116100b6578063dc33e6811161007a578063dc33e681146108a7578063e1ab4f68146108e4578063e985e9c514610921578063ec8bda8e1461095e578063f2fde38b1461097a578063f839a57a146109a357610246565b8063b6c693e5146107b0578063b88d4fde146107db578063c5d98bb314610804578063c87b56dd14610841578063dab5f3401461087e57610246565b80639dc74e63116100fd5780639dc74e6314610700578063a22cb4651461072b578063ac44600214610754578063b3ab66b01461076b578063b423fe671461078757610246565b80638626eb18146106175780638bc35c2f146106425780638da5cb5b1461066d5780639231ab2a1461069857806395d89b41146106d557610246565b80633cd47537116101c75780636352211e1161018b5780636352211e1461053057806368855b641461056d57806370a0823114610598578063715018a6146105d5578063802751ca146105ec57610246565b80633cd475371461043b57806342842e0e14610464578063491abac11461048d5780634f6ccce7146104ca57806355f804b31461050757610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063300bc3a1146103e75780633ba5ae241461041057610246565b806301ffc9a71461024b578063050c8ffc1461028857806306fdde03146102c5578063081812fc146102f0578063095ea7b31461032d575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613fce565b6109e0565b60405161027f9190614707565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613cd4565b610b2a565b6040516102bc9190614aff565b60405180910390f35b3480156102d157600080fd5b506102da610b42565b6040516102e79190614722565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190614075565b610bd4565b60405161032491906146a0565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613eb3565b610c59565b005b34801561036257600080fd5b5061036b610d72565b6040516103789190614aff565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613d41565b610d7c565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613eb3565b610d8c565b6040516103de9190614aff565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613f74565b610f8a565b005b34801561041c57600080fd5b50610425611023565b6040516104329190614aff565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190613ef3565b611047565b005b34801561047057600080fd5b5061048b60048036038101906104869190613d41565b6112f5565b005b34801561049957600080fd5b506104b460048036038101906104af9190614075565b611315565b6040516104c19190614aff565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190614075565b61135a565b6040516104fe9190614aff565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190614028565b6113ad565b005b34801561053c57600080fd5b5061055760048036038101906105529190614075565b61143f565b60405161056491906146a0565b60405180910390f35b34801561057957600080fd5b50610582611455565b60405161058f9190614aff565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613cd4565b61145b565b6040516105cc9190614aff565b60405180910390f35b3480156105e157600080fd5b506105ea611544565b005b3480156105f857600080fd5b506106016115cc565b60405161060e9190614707565b60405180910390f35b34801561062357600080fd5b5061062c6115df565b6040516106399190614aff565b60405180910390f35b34801561064e57600080fd5b506106576115e5565b6040516106649190614aff565b60405180910390f35b34801561067957600080fd5b50610682611609565b60405161068f91906146a0565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190614075565b611632565b6040516106cc9190614ae4565b60405180910390f35b3480156106e157600080fd5b506106ea61164a565b6040516106f79190614722565b60405180910390f35b34801561070c57600080fd5b506107156116dc565b6040516107229190614aff565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190613e73565b6116e2565b005b34801561076057600080fd5b50610769611863565b005b61078560048036038101906107809190614075565b611ad9565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613f74565b611cea565b005b3480156107bc57600080fd5b506107c5611d83565b6040516107d29190614707565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613d94565b611d96565b005b34801561081057600080fd5b5061082b60048036038101906108269190613e17565b611df2565b6040516108389190614707565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190614075565b611e34565b6040516108759190614722565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613fa1565b611edb565b005b3480156108b357600080fd5b506108ce60048036038101906108c99190613cd4565b611f61565b6040516108db9190614aff565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190613cd4565b611f73565b6040516109189190614707565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613d01565b611f93565b6040516109559190614707565b60405180910390f35b610978600480360381019061097391906140a2565b612027565b005b34801561098657600080fd5b506109a1600480360381019061099c9190613cd4565b61239c565b005b3480156109af57600080fd5b506109ca60048036038101906109c59190614075565b612494565b6040516109d79190614aff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b235750610b22826124d3565b5b9050919050565b600f6020528060005260406000206000915090505481565b606060028054610b5190614e93565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d90614e93565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b5050505050905090565b6000610bdf8261253d565b610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590614804565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c648261143f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906147a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf461254b565b73ffffffffffffffffffffffffffffffffffffffff161480610d235750610d2281610d1d61254b565b611f93565b5b610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614764565b60405180910390fd5b610d6d838383612553565b505050565b6000600154905090565b610d87838383612605565b505050565b6000610d978361145b565b8210610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90614aa4565b60405180910390fd5b6000610de2610d72565b905060008060005b83811015610f48576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610edc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f345786841415610f25578195505050505050610f84565b8380610f3090614ef6565b9450505b508080610f4090614ef6565b915050610dea565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906149a4565b60405180910390fd5b92915050565b610f9261254b565b73ffffffffffffffffffffffffffffffffffffffff16610fb0611609565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90614944565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000381565b61104f61254b565b73ffffffffffffffffffffffffffffffffffffffff1661106d611609565b73ffffffffffffffffffffffffffffffffffffffff16146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90614944565b60405180910390fd5b60005b848490508110156112ee577f00000000000000000000000000000000000000000000000000000000000008ae85858381811061110557611104615021565b5b90506020020135611114610d72565b61111e9190614c30565b111561115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906148a4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001686868481811061119557611194615021565b5b905060200201356111a69190614c86565b905060005b81811015611217576112048585858181106111c9576111c8615021565b5b90506020020160208101906111de9190613cd4565b7f0000000000000000000000000000000000000000000000000000000000000016612bbe565b808061120f90614ef6565b9150506111ab565b5060007f000000000000000000000000000000000000000000000000000000000000001687878581811061124e5761124d615021565b5b9050602002013561125f9190614f63565b146112da576112d984848481811061127a57611279615021565b5b905060200201602081019061128f9190613cd4565b7f00000000000000000000000000000000000000000000000000000000000000168888868181106112c3576112c2615021565b5b905060200201356112d49190614f63565b612bbe565b5b5080806112e690614ef6565b9150506110c6565b5050505050565b61131083838360405180602001604052806000815250611d96565b505050565b6000806000905060005b838110156113505761133081612494565b8261133b9190614c30565b9150808061134890614ef6565b91505061131f565b5080915050919050565b6000611364610d72565b82106113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614aa4565b60405180910390fd5b819050919050565b6113b561254b565b73ffffffffffffffffffffffffffffffffffffffff166113d3611609565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090614944565b60405180910390fd5b81816009919061143a929190613969565b505050565b600061144a82612bdc565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390614744565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61154c61254b565b73ffffffffffffffffffffffffffffffffffffffff1661156a611609565b73ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790614944565b60405180910390fd5b6115ca6000612ddf565b565b600b60009054906101000a900460ff1681565b600c5481565b7f000000000000000000000000000000000000000000000000000000000000001681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163a6139ef565b61164382612bdc565b9050919050565b60606003805461165990614e93565b80601f016020809104026020016040519081016040528092919081815260200182805461168590614e93565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b5050505050905090565b60115481565b6116ea61254b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614984565b60405180910390fd5b806007600061176561254b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181261254b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118579190614707565b60405180910390a35050565b61186b61254b565b73ffffffffffffffffffffffffffffffffffffffff16611889611609565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690614944565b60405180910390fd5b60026008541415611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614a84565b60405180910390fd5b6002600881905550600073718a7438297ac14382f25802bb18422a4dadd31b90506000600a6064476119579190614c86565b6119619190614cb7565b9050600081476119719190614d45565b905060008373ffffffffffffffffffffffffffffffffffffffff16836040516119999061468b565b60006040518083038185875af1925050503d80600081146119d6576040519150601f19603f3d011682016040523d82523d6000602084013e6119db565b606091505b5050905080611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690614a04565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1682604051611a439061468b565b60006040518083038185875af1925050503d8060008114611a80576040519150601f19603f3d011682016040523d82523d6000602084013e611a85565b606091505b50508091505080611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290614a04565b60405180910390fd5b505050506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614824565b60405180910390fd5b601060009054906101000a900460ff16611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614864565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000008ae81611bc0610d72565b611bca9190614c30565b1115611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906148e4565b60405180910390fd5b806011541015611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4790614844565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000003811115611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa906149c4565b60405180910390fd5b611cbd3382612bbe565b611cce611cc982611315565b612ea3565b8060116000828254611ce09190614d45565b9250508190555050565b611cf261254b565b73ffffffffffffffffffffffffffffffffffffffff16611d10611609565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90614944565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b601060009054906101000a900460ff1681565b611da1848484612605565b611dad84848484612f44565b611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614964565b60405180910390fd5b50505050565b60008083604051602001611e06919061464c565b604051602081830303815290604052805190602001209050611e2b83600d54836130db565b91505092915050565b6060611e3f8261253d565b611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590614804565b60405180910390fd5b6000611e886130f2565b90506000815111611ea85760405180602001604052806000815250611ed3565b80611eb284613184565b604051602001611ec3929190614667565b6040516020818303038152906040525b915050919050565b611ee361254b565b73ffffffffffffffffffffffffffffffffffffffff16611f01611609565b73ffffffffffffffffffffffffffffffffffffffff1614611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614944565b60405180910390fd5b80600d8190555050565b6000611f6c826132e5565b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff16612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614864565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000008ae826120a0610d72565b6120aa9190614c30565b11156120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e2906148e4565b60405180910390fd5b81600c541015612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614844565b60405180910390fd5b61213a3382611df2565b612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906147c4565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612287576001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0000000000000000000000000000000000000000000000000000000000000016600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090614924565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123589190614d45565b925050819055506123693383612bbe565b81600c600082825461237b9190614d45565b9250508190555061239882600a546123939190614cb7565b612ea3565b5050565b6123a461254b565b73ffffffffffffffffffffffffffffffffffffffff166123c2611609565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f90614944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90614784565b60405180910390fd5b61249181612ddf565b50565b60008160115461044c6124a79190614c30565b6124b19190614d45565b61089810156124c357600090506124ce565b66071afd498d000090505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061261082612bdc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661263761254b565b73ffffffffffffffffffffffffffffffffffffffff161480612693575061265c61254b565b73ffffffffffffffffffffffffffffffffffffffff1661267b84610bd4565b73ffffffffffffffffffffffffffffffffffffffff16145b806126af57506126ae82600001516126a961254b565b611f93565b5b9050806126f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e8906148c4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614904565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca90614a64565b60405180910390fd5b6127e085858560016133ce565b6127f06000848460000151612553565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661285e9190614d11565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129029190614bea565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a089190614c30565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b4e57612a7e8161253d565b15612b4d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb686868660016133d4565b505050505050565b612bd88282604051806020016040528060008152506133da565b5050565b612be46139ef565b612bed8261253d565b612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614804565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000168310612c905760017f000000000000000000000000000000000000000000000000000000000000001684612c839190614d45565b612c8d9190614c30565b90505b60008390505b818110612d9e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d8a57809350505050612dda565b508080612d9690614e69565b915050612c96565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd1906147e4565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80341015612ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edd90614a24565b60405180910390fd5b80341115612f41573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612f149190614d45565b9081150290604051600060405180830381858888f19350505050158015612f3f573d6000803e3d6000fd5b505b50565b6000612f658473ffffffffffffffffffffffffffffffffffffffff166138ba565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e61254b565b8786866040518563ffffffff1660e01b8152600401612fb094939291906146bb565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613ffb565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d90614884565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b6000826130e885846138dd565b1490509392505050565b60606009805461310190614e93565b80601f016020809104026020016040519081016040528092919081815260200182805461312d90614e93565b801561317a5780601f1061314f5761010080835404028352916020019161317a565b820191906000526020600020905b81548152906001019060200180831161315d57829003601f168201915b5050505050905090565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e790614ef6565b915050600a826131f79190614c86565b91506131d4565b60008167ffffffffffffffff81111561321a57613219615050565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d9576001826132659190614d45565b9150600a856132749190614f63565b60306132809190614c30565b60f81b81838151811061329657613295615021565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614c86565b9450613250565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d90614744565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613448906149e4565b60405180910390fd5b61345a8161253d565b1561349a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349190614ac4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000168311156134fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f490614a44565b60405180910390fd5b61350a60008583866133ce565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516136079190614bea565b6fffffffffffffffffffffffffffffffff16815260200185836020015161362e9190614bea565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561389d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461383d6000888488612f44565b61387c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387390614964565b60405180910390fd5b818061388790614ef6565b925050808061389590614ef6565b9150506137cc565b50806001819055506138b260008785886133d4565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561394757600085828151811061390457613903615021565b5b602002602001015190508083116139265761391f8382613952565b9250613933565b6139308184613952565b92505b50808061393f90614ef6565b9150506138e6565b508091505092915050565b600082600052816020526040600020905092915050565b82805461397590614e93565b90600052602060002090601f01602090048101928261399757600085556139de565b82601f106139b057803560ff19168380011785556139de565b828001600101855582156139de579182015b828111156139dd5782358255916020019190600101906139c2565b5b5090506139eb9190613a29565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a42576000816000905550600101613a2a565b5090565b6000613a59613a5484614b3f565b614b1a565b90508083825260208201905082856020860282011115613a7c57613a7b615089565b5b60005b85811015613aac5781613a928882613bfc565b845260208401935060208301925050600181019050613a7f565b5050509392505050565b6000613ac9613ac484614b6b565b614b1a565b905082815260208101848484011115613ae557613ae461508e565b5b613af0848285614e27565b509392505050565b600081359050613b0781615621565b92915050565b60008083601f840112613b2357613b22615084565b5b8235905067ffffffffffffffff811115613b4057613b3f61507f565b5b602083019150836020820283011115613b5c57613b5b615089565b5b9250929050565b600082601f830112613b7857613b77615084565b5b8135613b88848260208601613a46565b91505092915050565b60008083601f840112613ba757613ba6615084565b5b8235905067ffffffffffffffff811115613bc457613bc361507f565b5b602083019150836020820283011115613be057613bdf615089565b5b9250929050565b600081359050613bf681615638565b92915050565b600081359050613c0b8161564f565b92915050565b600081359050613c2081615666565b92915050565b600081519050613c3581615666565b92915050565b600082601f830112613c5057613c4f615084565b5b8135613c60848260208601613ab6565b91505092915050565b60008083601f840112613c7f57613c7e615084565b5b8235905067ffffffffffffffff811115613c9c57613c9b61507f565b5b602083019150836001820283011115613cb857613cb7615089565b5b9250929050565b600081359050613cce8161567d565b92915050565b600060208284031215613cea57613ce9615098565b5b6000613cf884828501613af8565b91505092915050565b60008060408385031215613d1857613d17615098565b5b6000613d2685828601613af8565b9250506020613d3785828601613af8565b9150509250929050565b600080600060608486031215613d5a57613d59615098565b5b6000613d6886828701613af8565b9350506020613d7986828701613af8565b9250506040613d8a86828701613cbf565b9150509250925092565b60008060008060808587031215613dae57613dad615098565b5b6000613dbc87828801613af8565b9450506020613dcd87828801613af8565b9350506040613dde87828801613cbf565b925050606085013567ffffffffffffffff811115613dff57613dfe615093565b5b613e0b87828801613c3b565b91505092959194509250565b60008060408385031215613e2e57613e2d615098565b5b6000613e3c85828601613af8565b925050602083013567ffffffffffffffff811115613e5d57613e5c615093565b5b613e6985828601613b63565b9150509250929050565b60008060408385031215613e8a57613e89615098565b5b6000613e9885828601613af8565b9250506020613ea985828601613be7565b9150509250929050565b60008060408385031215613eca57613ec9615098565b5b6000613ed885828601613af8565b9250506020613ee985828601613cbf565b9150509250929050565b60008060008060408587031215613f0d57613f0c615098565b5b600085013567ffffffffffffffff811115613f2b57613f2a615093565b5b613f3787828801613b91565b9450945050602085013567ffffffffffffffff811115613f5a57613f59615093565b5b613f6687828801613b0d565b925092505092959194509250565b600060208284031215613f8a57613f89615098565b5b6000613f9884828501613be7565b91505092915050565b600060208284031215613fb757613fb6615098565b5b6000613fc584828501613bfc565b91505092915050565b600060208284031215613fe457613fe3615098565b5b6000613ff284828501613c11565b91505092915050565b60006020828403121561401157614010615098565b5b600061401f84828501613c26565b91505092915050565b6000806020838503121561403f5761403e615098565b5b600083013567ffffffffffffffff81111561405d5761405c615093565b5b61406985828601613c69565b92509250509250929050565b60006020828403121561408b5761408a615098565b5b600061409984828501613cbf565b91505092915050565b600080604083850312156140b9576140b8615098565b5b60006140c785828601613cbf565b925050602083013567ffffffffffffffff8111156140e8576140e7615093565b5b6140f485828601613b63565b9150509250929050565b61410781614d79565b82525050565b61411681614d79565b82525050565b61412d61412882614d79565b614f3f565b82525050565b61413c81614d8b565b82525050565b600061414d82614b9c565b6141578185614bb2565b9350614167818560208601614e36565b6141708161509d565b840191505092915050565b600061418682614ba7565b6141908185614bce565b93506141a0818560208601614e36565b6141a98161509d565b840191505092915050565b60006141bf82614ba7565b6141c98185614bdf565b93506141d9818560208601614e36565b80840191505092915050565b60006141f2601283614bce565b91506141fd826150bb565b602082019050919050565b6000614215603083614bce565b9150614220826150e4565b604082019050919050565b6000614238602683614bce565b915061424382615133565b604082019050919050565b600061425b601983614bce565b915061426682615182565b602082019050919050565b600061427e601583614bce565b9150614289826151ab565b602082019050919050565b60006142a1601183614bce565b91506142ac826151d4565b602082019050919050565b60006142c4601b83614bce565b91506142cf826151fd565b602082019050919050565b60006142e7601e83614bce565b91506142f282615226565b602082019050919050565b600061430a601283614bce565b91506143158261524f565b602082019050919050565b600061432d600983614bce565b915061433882615278565b602082019050919050565b6000614350602a83614bce565b915061435b826152a1565b604082019050919050565b6000614373602883614bce565b915061437e826152f0565b604082019050919050565b6000614396602983614bce565b91506143a18261533f565b604082019050919050565b60006143b9601283614bce565b91506143c48261538e565b602082019050919050565b60006143dc601d83614bce565b91506143e7826153b7565b602082019050919050565b60006143ff601a83614bce565b915061440a826153e0565b602082019050919050565b6000614422602083614bce565b915061442d82615409565b602082019050919050565b6000614445601e83614bce565b915061445082615432565b602082019050919050565b6000614468601183614bce565b91506144738261545b565b602082019050919050565b600061448b601c83614bce565b915061449682615484565b602082019050919050565b60006144ae601b83614bce565b91506144b9826154ad565b602082019050919050565b60006144d1600083614bc3565b91506144dc826154d6565b600082019050919050565b60006144f4601083614bce565b91506144ff826154d9565b602082019050919050565b6000614517601083614bce565b915061452282615502565b602082019050919050565b600061453a601683614bce565b91506145458261552b565b602082019050919050565b600061455d601183614bce565b915061456882615554565b602082019050919050565b6000614580601483614bce565b915061458b8261557d565b602082019050919050565b60006145a3601f83614bce565b91506145ae826155a6565b602082019050919050565b60006145c6601383614bce565b91506145d1826155cf565b602082019050919050565b60006145e9600e83614bce565b91506145f4826155f8565b602082019050919050565b60408201600082015161461560008501826140fe565b506020820151614628602085018261463d565b50505050565b61463781614e09565b82525050565b61464681614e13565b82525050565b6000614658828461411c565b60148201915081905092915050565b600061467382856141b4565b915061467f82846141b4565b91508190509392505050565b6000614696826144c4565b9150819050919050565b60006020820190506146b5600083018461410d565b92915050565b60006080820190506146d0600083018761410d565b6146dd602083018661410d565b6146ea604083018561462e565b81810360608301526146fc8184614142565b905095945050505050565b600060208201905061471c6000830184614133565b92915050565b6000602082019050818103600083015261473c818461417b565b905092915050565b6000602082019050818103600083015261475d816141e5565b9050919050565b6000602082019050818103600083015261477d81614208565b9050919050565b6000602082019050818103600083015261479d8161422b565b9050919050565b600060208201905081810360008301526147bd8161424e565b9050919050565b600060208201905081810360008301526147dd81614271565b9050919050565b600060208201905081810360008301526147fd81614294565b9050919050565b6000602082019050818103600083015261481d816142b7565b9050919050565b6000602082019050818103600083015261483d816142da565b9050919050565b6000602082019050818103600083015261485d816142fd565b9050919050565b6000602082019050818103600083015261487d81614320565b9050919050565b6000602082019050818103600083015261489d81614343565b9050919050565b600060208201905081810360008301526148bd81614366565b9050919050565b600060208201905081810360008301526148dd81614389565b9050919050565b600060208201905081810360008301526148fd816143ac565b9050919050565b6000602082019050818103600083015261491d816143cf565b9050919050565b6000602082019050818103600083015261493d816143f2565b9050919050565b6000602082019050818103600083015261495d81614415565b9050919050565b6000602082019050818103600083015261497d81614438565b9050919050565b6000602082019050818103600083015261499d8161445b565b9050919050565b600060208201905081810360008301526149bd8161447e565b9050919050565b600060208201905081810360008301526149dd816144a1565b9050919050565b600060208201905081810360008301526149fd816144e7565b9050919050565b60006020820190508181036000830152614a1d8161450a565b9050919050565b60006020820190508181036000830152614a3d8161452d565b9050919050565b60006020820190508181036000830152614a5d81614550565b9050919050565b60006020820190508181036000830152614a7d81614573565b9050919050565b60006020820190508181036000830152614a9d81614596565b9050919050565b60006020820190508181036000830152614abd816145b9565b9050919050565b60006020820190508181036000830152614add816145dc565b9050919050565b6000604082019050614af960008301846145ff565b92915050565b6000602082019050614b14600083018461462e565b92915050565b6000614b24614b35565b9050614b308282614ec5565b919050565b6000604051905090565b600067ffffffffffffffff821115614b5a57614b59615050565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b8657614b85615050565b5b614b8f8261509d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf582614dcd565b9150614c0083614dcd565b9250826fffffffffffffffffffffffffffffffff03821115614c2557614c24614f94565b5b828201905092915050565b6000614c3b82614e09565b9150614c4683614e09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7b57614c7a614f94565b5b828201905092915050565b6000614c9182614e09565b9150614c9c83614e09565b925082614cac57614cab614fc3565b5b828204905092915050565b6000614cc282614e09565b9150614ccd83614e09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d0657614d05614f94565b5b828202905092915050565b6000614d1c82614dcd565b9150614d2783614dcd565b925082821015614d3a57614d39614f94565b5b828203905092915050565b6000614d5082614e09565b9150614d5b83614e09565b925082821015614d6e57614d6d614f94565b5b828203905092915050565b6000614d8482614de9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614e54578082015181840152602081019050614e39565b83811115614e63576000848401525b50505050565b6000614e7482614e09565b91506000821415614e8857614e87614f94565b5b600182039050919050565b60006002820490506001821680614eab57607f821691505b60208210811415614ebf57614ebe614ff2565b5b50919050565b614ece8261509d565b810181811067ffffffffffffffff82111715614eed57614eec615050565b5b80604052505050565b6000614f0182614e09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f3457614f33614f94565b5b600182019050919050565b6000614f4a82614f51565b9050919050565b6000614f5c826150ae565b9050919050565b6000614f6e82614e09565b9150614f7983614e09565b925082614f8957614f88614fc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f717565727920666f7220746865207a65726f0000000000000000000000000000600082015250565b7f617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f722060008201527f617070726f76656420666f7220616c6c00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f617070726f76616c20746f2063757272656e74206f776e657200000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b7f66696e64206f776e6572206661696c6564000000000000000000000000000000600082015250565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f72656163686564206d617820616d6f756e740000000000000000000000000000600082015250565b7f6e6f7420626567756e0000000000000000000000000000000000000000000000600082015250565b7f7472616e7366657220746f206e6f6e204552433732315265636569766572206960008201527f6d706c656d656e74657200000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e742e000000000000000000000000000000000000000000000000602082015250565b7f7472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f7472616e736665722066726f6d20696e636f7272656374206f776e6572000000600082015250565b7f7265616368656420616d6f756e74207065722061646472657373000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7472616e7366657220746f206e6f6e2045524337323152656365697665720000600082015250565b7f617070726f766520746f2063616c6c6572000000000000000000000000000000600082015250565b7f756e61626c6520746f2067657420746f6b656e206f66206f776e657200000000600082015250565b7f72656163686564206d617820616d6f756e7420706572206d696e740000000000600082015250565b50565b7f6d696e7420746f20746865207a65726f00000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f7175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b7f7472616e7366657220746f20746865207a65726f000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646578206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b61562a81614d79565b811461563557600080fd5b50565b61564181614d8b565b811461564c57600080fd5b50565b61565881614d97565b811461566357600080fd5b50565b61566f81614da1565b811461567a57600080fd5b50565b61568681614e09565b811461569157600080fd5b5056fea2646970667358221220b21eea433688250d3b0e115b003f543d09cf03e55fcd53f92c4754aec262150964736f6c63430008070033

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.