ETH Price: $2,979.70 (+2.04%)
Gas: 2 Gwei

Token

Lonely Legends: Genesis (LLG)
 

Overview

Max Total Supply

468 LLG

Holders

294

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
degen3369.eth
Balance
1 LLG
0x6958136b0ed4f162a4ecfab966b12b5e1ea657c4
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:
LonelyLegendsGenesis

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

/*
    __                     __         __                              __    
   / /   ____  ____  ___  / /_  __   / /   ___  ____ ____  ____  ____/ /____
  / /   / __ \/ __ \/ _ \/ / / / /  / /   / _ \/ __ `/ _ \/ __ \/ __  / ___/
 / /___/ /_/ / / / /  __/ / /_/ /  / /___/  __/ /_/ /  __/ / / / /_/ (__  ) 
/_____/\____/_/ /_/\___/_/\__, /  /_____/\___/\__, /\___/_/ /_/\__,_/____/  
                         /____/              /____/   

This ERC721A smart contract is made by syane on 
behalf of Lonely Legends.
Project twitter:    https://twitter.com/LonelyLegendNFT
Site:               https://lonelylegends.io/
For inquiries:      https://twitter.com/syane_eth
*/

pragma solidity ^0.8.9;


import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract LonelyLegendsGenesis is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// Configuration 
  uint256 public maxSupply = 5555;
  uint256 public publicSalePrice = 0.069 ether;
  uint256 public teamMintedAmount = 0;
  uint256 public constant teamMintAmount = 55;
  mapping(address => uint) public userMintedPublicSale;
  bool public publicSale = false;
  constructor() ERC721A("Lonely Legends: Genesis", "LLG") {}
  
// Dutch auction configuration

  mapping(address => uint) public userMintedDA;
  mapping(address => paidAmountPerBatch[]) public minterPaidAmountPerBatch;
  struct paidAmountPerBatch {
    uint128 etherPaid;
    uint8 legendsMinted;
  }
  uint256 public startTimeDA = 1650830400;
  uint256 public startPriceDA = 0.3 ether;
  uint256 public decreaseDA = 0.05 ether;
  uint256 public lastPriceDA = 0.1 ether;
  uint256 public decreaseDAFrequency = 900;
  uint256 public allocationDA = 3250;
  uint256 public finalPriceDA;
  bool public dutchAuctionFinished = false;


// Legends list & OG configuration
  bool public preSale = false;
  uint256 public preSaleSold;
  uint256 public preSalePrice = 0.069 ether;
  uint256 public constant preSaleAllocation = 2250;
  mapping(address => uint256) public legendsLists;

// Metadata configuration
  string public MetadataURI;
  string public MetadataURIext = '.json';
  string public preRevealMetadataURI = 'ipfs://QmazRV8kJzDVEjAv5hebg6jFDj3ZdznrdAcefoXRJx6Rw5/';
  bool public metadataReveal = false;
  
  
// Presale functions
  function activatePreSale(bool state) public onlyOwner {
    preSale = state;
  }

  function preSaleMint (uint256 _mintAmount) external payable nonReentrant {
    uint256 remaining = legendsLists[msg.sender];
    require(msg.sender == tx.origin, "You cant mint using a smart contract.");
    require(preSale, "Presale hasn't started yet.");
    require(preSaleSold + _mintAmount <= preSaleAllocation, "The presale is finished!");
    require(remaining != 0 && _mintAmount <= remaining, "You're not allowed to do this.");
    require(msg.value == preSalePrice * _mintAmount, "It costs 0.069 to mint a legend.");
    if (_mintAmount == remaining) {
        delete legendsLists[msg.sender];
    } else {
        legendsLists[msg.sender] = legendsLists[msg.sender] - _mintAmount;
    }
    preSaleSold = preSaleSold + _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function setlegendsList(address[] calldata legendsListers, bool ogRank) external onlyOwner {
    uint256 quantity = ogRank ? 2 : 1;
    for (uint256 i; i < legendsListers.length; i++) {
      legendsLists[legendsListers[i]] = quantity;
    }
  }

// Dutch Auction
  function setStartTimeDA(uint256 newStartTimeDA) external onlyOwner {
    startTimeDA = newStartTimeDA;
  }

  function finishDutchAuction(uint256 lastPrice) external onlyOwner {
    dutchAuctionFinished = true;
    finalPriceDA = lastPrice;
  }

  function currentDAPrice() public view returns (uint256) {
    require(block.timestamp >= startTimeDA, "We haven't started yet legend.");
    if (finalPriceDA > 0) return finalPriceDA;
      uint256 timeSinceStart = block.timestamp - startTimeDA;
      uint256 decrementsSinceStart = timeSinceStart / decreaseDAFrequency;
      uint256 totalDecrement = decrementsSinceStart * decreaseDA; 
    if (totalDecrement >= startPriceDA - lastPriceDA) {
      return lastPriceDA;
    }
    return startPriceDA - totalDecrement;
  }

  function dutchAuctionMint(uint8 _mintAmount) public payable nonReentrant {    
    require(block.timestamp >= startTimeDA, "We haven't started yet legend.");
    require(!dutchAuctionFinished, "The dutch auction is over.");
    require(_mintAmount > 0 && _mintAmount <= 5, "You can only mint 5 legends per transaction.");
    require(userMintedDA[msg.sender] + _mintAmount <= 5, "You can only mint 5 Legends during the Dutch Auction.");

    uint256 _currentDAPrice = currentDAPrice();

    require(msg.value >= _mintAmount * _currentDAPrice, "Insufficient amount of ETH.");
    require(totalSupply() + _mintAmount <= allocationDA, "This amount exceeds the allocation.");
    require(totalSupply() + _mintAmount <= maxSupply - (teamMintAmount - teamMintedAmount), "This amount exceeds the allocation.");
    require(msg.sender == tx.origin, "You cant mint using a smart contract.");
        
    if (totalSupply() + _mintAmount == allocationDA)
      finalPriceDA = _currentDAPrice;

    minterPaidAmountPerBatch[msg.sender].push(paidAmountPerBatch(uint128(msg.value), _mintAmount));
    userMintedDA[msg.sender] += _mintAmount;

    _safeMint(msg.sender, _mintAmount);
  }

  function refundETH() public nonReentrant {
    require(finalPriceDA > 0, "Dutch auction is still ongoing.");
    require(msg.sender == tx.origin, "Only use this function from a wallet.");
    uint256 totalRefundAmount;
    for (uint256 i = minterPaidAmountPerBatch[msg.sender].length; i > 0; i--) {
    uint256 expectedPrice = minterPaidAmountPerBatch[msg.sender][i - 1].legendsMinted * finalPriceDA;
    uint256 refund = minterPaidAmountPerBatch[msg.sender][i - 1].etherPaid - expectedPrice;
    minterPaidAmountPerBatch[msg.sender].pop();
    totalRefundAmount += refund;
    }
    (bool success, ) = payable(msg.sender).call{value: totalRefundAmount}("");
    require(success, "Something went wrong.");
  }

// Team Mint function

  function teamMint(address to, uint256 _mintAmount) external onlyOwner {
    require(teamMintedAmount + _mintAmount <= teamMintAmount, "The team is allowed to mint 55 legends.");
    teamMintedAmount+= _mintAmount;
    _safeMint(to, _mintAmount); 
  }

// Public Sale functions
  function activatePublicSale(bool state) public onlyOwner {
    publicSale = state;
  }

  function publicSaleMint(uint256 _mintAmount) external payable nonReentrant {
    require(msg.sender == tx.origin, "You cant mint using a smart contract.");
    require(publicSale, "There is no public sale ongoing right now.");
    require(_mintAmount > 0 && _mintAmount <= 5, "You can only mint 5 legends per transaction.");
    require(userMintedPublicSale[msg.sender] + _mintAmount <= 5, "You can only mint 5 Legends during the public sale.");
    require(msg.value == publicSalePrice * _mintAmount, "It costs 0.069 to mint a legend.");
    require(totalSupply() + _mintAmount <= maxSupply - (teamMintAmount - teamMintedAmount), "Try a lower amount of legends.");
    userMintedPublicSale[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

// Later to be used for airdrops.

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

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

// Metadata functions

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

    if (metadataReveal == false) {
      return preRevealMetadataURI;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), MetadataURIext))
        : '';
  }

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

  function revealMetadata(bool state) public onlyOwner {
    metadataReveal = state;
  }

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

  function setMetadataURI(string memory newMetadataURI) public onlyOwner {
    MetadataURI = newMetadataURI;
  }

// Function to withdraw funds
  function transferFunds() public onlyOwner nonReentrant {
    (bool os, ) = payable(0x70D8f886B4852A02B5a332DcE07C9917F0aDd22d).call{value: address(this).balance}('');
    require(os);
  }
}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 9 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 10 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 11 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 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MetadataURIext","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"activatePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allocationDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDAPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decreaseDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decreaseDAFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"dutchAuctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"finalPriceDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"lastPrice","type":"uint256"}],"name":"finishDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastPriceDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"legendsLists","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"minterPaidAmountPerBatch","outputs":[{"internalType":"uint128","name":"etherPaid","type":"uint128"},{"internalType":"uint8","name":"legendsMinted","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"revealMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newMetadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTimeDA","type":"uint256"}],"name":"setStartTimeDA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"legendsListers","type":"address[]"},{"internalType":"bool","name":"ogRank","type":"bool"}],"name":"setlegendsList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPriceDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimeDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMintedAmount","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":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040526115b3600a5566f5232269808000600b556000600c556000600e60006101000a81548160ff021916908315150217905550636265ac40601155670429d069189e000060125566b1a2bc2ec5000060135567016345785d8a0000601455610384601555610cb26016556000601860006101000a81548160ff0219169083151502179055506000601860016101000a81548160ff02191690831515021790555066f5232269808000601a556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601d9080519060200190620000fa92919062000311565b50604051806060016040528060368152602001620063e160369139601e90805190602001906200012c92919062000311565b506000601f60006101000a81548160ff0219169083151502179055503480156200015557600080fd5b506040518060400160405280601781526020017f4c6f6e656c79204c6567656e64733a2047656e657369730000000000000000008152506040518060400160405280600381526020017f4c4c4700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001da92919062000311565b508060039080519060200190620001f392919062000311565b50620002046200023a60201b60201c565b60008190555050506200022c620002206200024360201b60201c565b6200024b60201b60201c565b600160098190555062000426565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200031f90620003f0565b90600052602060002090601f0160209004810192826200034357600085556200038f565b82601f106200035e57805160ff19168380011785556200038f565b828001600101855582156200038f579182015b828111156200038e57825182559160200191906001019062000371565b5b5090506200039e9190620003a2565b5090565b5b80821115620003bd576000816000905550600101620003a3565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040957607f821691505b6020821081141562000420576200041f620003c1565b5b50919050565b615fab80620004366000396000f3fe6080604052600436106103815760003560e01c806370a08231116101d1578063a4e98f1a11610102578063d4862a41116100a0578063e757c17d1161006f578063e757c17d14610cb6578063e985e9c514610ce1578063f2fde38b14610d1e578063f43de19d14610d4757610381565b8063d4862a4114610c0e578063d5abeb0114610c37578063da72baff14610c62578063e316380814610c8b57610381565b8063b4bc159a116100dc578063b4bc159a14610b52578063b88d4fde14610b7d578063c87b56dd14610ba6578063cb80937d14610be357610381565b8063a4e98f1a14610ae2578063add5a4fa14610b0d578063b3ab66b014610b3657610381565b80639192b4a61161016f5780639b6860c8116101495780639b6860c814610a385780639b7c9ff514610a635780639e98ecf614610a8e578063a22cb46514610ab957610381565b80639192b4a6146109a557806394ac9978146109d057806395d89b4114610a0d57610381565b80637835c635116101ab5780637835c635146108f857806389823655146109145780638da5cb5b1461095157806391922d421461097c57610381565b806370a082311461087b578063715018a6146108b8578063750521f5146108cf57610381565b80633c68eb81116102b65780635a7adf7f116102545780636352211e116102235780636352211e146107bf57806366490a91146107fc578063688ab30b146108255780636fbf3db61461085057610381565b80635a7adf7f146107155780635af8d823146107405780635d7e6eb61461076957806361f3d3b51461079457610381565b806347888d911161029057806347888d91146106585780634fdd43cb14610683578063538ccf2d146106ac578063581b90c5146106d757610381565b80633c68eb81146105db57806342842e0e146105f2578063438b63001461061b57610381565b806318160ddd1161032357806323b872dd116102fd57806323b872dd14610533578063298e40561461055c5780632e677fa81461058557806333bc1c5c146105b057610381565b806318160ddd146104c15780631fbc5f9d146104ec578063202957241461050857610381565b8063081812fc1161035f578063081812fc14610419578063095ea7b31461045657806312210e8a1461047f578063159b2b9f1461049657610381565b806301ffc9a714610386578063031107bf146103c357806306fdde03146103ee575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a891906146da565b610d84565b6040516103ba9190614722565b60405180910390f35b3480156103cf57600080fd5b506103d8610e66565b6040516103e59190614756565b60405180910390f35b3480156103fa57600080fd5b50610403610e6c565b604051610410919061480a565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190614858565b610efe565b60405161044d91906148c6565b60405180910390f35b34801561046257600080fd5b5061047d6004803603810190610478919061490d565b610f7a565b005b34801561048b57600080fd5b50610494611085565b005b3480156104a257600080fd5b506104ab611483565b6040516104b8919061480a565b60405180910390f35b3480156104cd57600080fd5b506104d6611511565b6040516104e39190614756565b60405180910390f35b61050660048036038101906105019190614986565b611528565b005b34801561051457600080fd5b5061051d611a13565b60405161052a9190614756565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906149b3565b611a19565b005b34801561056857600080fd5b50610583600480360381019061057e9190614858565b611a29565b005b34801561059157600080fd5b5061059a611aca565b6040516105a79190614722565b60405180910390f35b3480156105bc57600080fd5b506105c5611add565b6040516105d29190614722565b60405180910390f35b3480156105e757600080fd5b506105f0611af0565b005b3480156105fe57600080fd5b50610619600480360381019061061491906149b3565b611c4f565b005b34801561062757600080fd5b50610642600480360381019061063d9190614a06565b611c6f565b60405161064f9190614af1565b60405180910390f35b34801561066457600080fd5b5061066d611e8a565b60405161067a9190614756565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190614c48565b611e90565b005b3480156106b857600080fd5b506106c1611f26565b6040516106ce9190614722565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061490d565b611f39565b60405161070c929190614ccb565b60405180910390f35b34801561072157600080fd5b5061072a611f9f565b6040516107379190614722565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190614d80565b611fb2565b005b34801561077557600080fd5b5061077e6120d7565b60405161078b9190614756565b60405180910390f35b3480156107a057600080fd5b506107a96120dd565b6040516107b6919061480a565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190614858565b61216b565b6040516107f391906148c6565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190614de0565b612181565b005b34801561083157600080fd5b5061083a61221a565b604051610847919061480a565b60405180910390f35b34801561085c57600080fd5b506108656122a8565b6040516108729190614756565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190614a06565b6122ae565b6040516108af9190614756565b60405180910390f35b3480156108c457600080fd5b506108cd61237e565b005b3480156108db57600080fd5b506108f660048036038101906108f19190614c48565b612406565b005b610912600480360381019061090d9190614858565b61249c565b005b34801561092057600080fd5b5061093b60048036038101906109369190614a06565b6127e5565b6040516109489190614756565b60405180910390f35b34801561095d57600080fd5b506109666127fd565b60405161097391906148c6565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614858565b612827565b005b3480156109b157600080fd5b506109ba6128ad565b6040516109c79190614756565b60405180910390f35b3480156109dc57600080fd5b506109f760048036038101906109f29190614a06565b6128b3565b604051610a049190614756565b60405180910390f35b348015610a1957600080fd5b50610a226128cb565b604051610a2f919061480a565b60405180910390f35b348015610a4457600080fd5b50610a4d61295d565b604051610a5a9190614756565b60405180910390f35b348015610a6f57600080fd5b50610a78612963565b604051610a859190614756565b60405180910390f35b348015610a9a57600080fd5b50610aa3612a2f565b604051610ab09190614756565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614e0d565b612a35565b005b348015610aee57600080fd5b50610af7612bad565b604051610b049190614756565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f919061490d565b612bb3565b005b610b506004803603810190610b4b9190614858565b612ca7565b005b348015610b5e57600080fd5b50610b67612fba565b604051610b749190614756565b60405180910390f35b348015610b8957600080fd5b50610ba46004803603810190610b9f9190614eee565b612fbf565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc89190614858565b61303b565b604051610bda919061480a565b60405180910390f35b348015610bef57600080fd5b50610bf8613194565b604051610c059190614756565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190614de0565b61319a565b005b348015610c4357600080fd5b50610c4c613233565b604051610c599190614756565b60405180910390f35b348015610c6e57600080fd5b50610c896004803603810190610c849190614de0565b613239565b005b348015610c9757600080fd5b50610ca06132d2565b604051610cad9190614756565b60405180910390f35b348015610cc257600080fd5b50610ccb6132d8565b604051610cd89190614756565b60405180910390f35b348015610ced57600080fd5b50610d086004803603810190610d039190614f71565b6132de565b604051610d159190614722565b60405180910390f35b348015610d2a57600080fd5b50610d456004803603810190610d409190614a06565b613372565b005b348015610d5357600080fd5b50610d6e6004803603810190610d699190614a06565b61346a565b604051610d7b9190614756565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5f5750610e5e82613482565b5b9050919050565b60115481565b606060028054610e7b90614fe0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea790614fe0565b8015610ef45780601f10610ec957610100808354040283529160200191610ef4565b820191906000526020600020905b815481529060010190602001808311610ed757829003601f168201915b5050505050905090565b6000610f09826134ec565b610f3f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f858261216b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661100c61353a565b73ffffffffffffffffffffffffffffffffffffffff161415801561103e575061103c8161103761353a565b6132de565b155b15611075576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611080838383613542565b505050565b600260095414156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c29061505e565b60405180910390fd5b6002600981905550600060175411611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906150ca565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061515c565b60405180910390fd5b600080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090505b60008111156113ca576000601754601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018461122991906151ab565b8154811061123a576112396151df565b5b9060005260206000200160000160109054906101000a900460ff1660ff16611262919061520e565b9050600081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001856112b391906151ab565b815481106112c4576112c36151df565b5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1661130a91906151ab565b9050601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061135b5761135a615268565b5b60019003818190600052602060002001600080820160006101000a8154906fffffffffffffffffffffffffffffffff02191690556000820160106101000a81549060ff02191690555050905580846113b39190615297565b9350505080806113c2906152ed565b9150506111cf565b5060003373ffffffffffffffffffffffffffffffffffffffff16826040516113f190615348565b60006040518083038185875af1925050503d806000811461142e576040519150601f19603f3d011682016040523d82523d6000602084013e611433565b606091505b5050905080611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e906153a9565b60405180910390fd5b50506001600981905550565b601d805461149090614fe0565b80601f01602080910402602001604051908101604052809291908181526020018280546114bc90614fe0565b80156115095780601f106114de57610100808354040283529160200191611509565b820191906000526020600020905b8154815290600101906020018083116114ec57829003601f168201915b505050505081565b600061151b6135f4565b6001546000540303905090565b6002600954141561156e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115659061505e565b60405180910390fd5b60026009819055506011544210156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290615415565b60405180910390fd5b601860009054906101000a900460ff161561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290615481565b60405180910390fd5b60008160ff16118015611622575060058160ff1611155b611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890615513565b60405180910390fd5b60058160ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b19190615297565b11156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e9906155a5565b60405180910390fd5b60006116fc612963565b9050808260ff1661170d919061520e565b34101561174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690615611565b60405180910390fd5b6016548260ff1661175e611511565b6117689190615297565b11156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a0906156a3565b60405180910390fd5b600c5460376117b891906151ab565b600a546117c591906151ab565b8260ff166117d1611511565b6117db9190615297565b111561181c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611813906156a3565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190615735565b60405180910390fd5b6016548260ff16611899611511565b6118a39190615297565b14156118b157806017819055505b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405280346fffffffffffffffffffffffffffffffff1681526020018460ff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a81548160ff021916908360ff16021790555050508160ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f39190615297565b92505081905550611a07338360ff166135fd565b50600160098190555050565b60145481565b611a2483838361361b565b505050565b611a3161353a565b73ffffffffffffffffffffffffffffffffffffffff16611a4f6127fd565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c906157a1565b60405180910390fd5b6001601860006101000a81548160ff0219169083151502179055508060178190555050565b601f60009054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b611af861353a565b73ffffffffffffffffffffffffffffffffffffffff16611b166127fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b63906157a1565b60405180910390fd5b60026009541415611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba99061505e565b60405180910390fd5b600260098190555060007370d8f886b4852a02b5a332dce07c9917f0add22d73ffffffffffffffffffffffffffffffffffffffff1647604051611bf490615348565b60006040518083038185875af1925050503d8060008114611c31576040519150601f19603f3d011682016040523d82523d6000602084013e611c36565b606091505b5050905080611c4457600080fd5b506001600981905550565b611c6a83838360405180602001604052806000815250612fbf565b505050565b60606000611c7c836122ae565b905060008167ffffffffffffffff811115611c9a57611c99614b1d565b5b604051908082528060200260200182016040528015611cc85781602001602082028036833780820191505090505b5090506000611cd56135f4565b90506000805b8482108015611cec5750600a548311155b15611e7d576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151158015611df95750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b15611e0657806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e695783858481518110611e4e57611e4d6151df565b5b6020026020010181815250508280611e65906157c1565b9350505b8380611e74906157c1565b94505050611cdb565b8395505050505050919050565b6108ca81565b611e9861353a565b73ffffffffffffffffffffffffffffffffffffffff16611eb66127fd565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906157a1565b60405180910390fd5b80601e9080519060200190611f22929190614588565b5050565b601860009054906101000a900460ff1681565b60106020528160005260406000208181548110611f5557600080fd5b90600052602060002001600091509150508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a900460ff16905082565b601860019054906101000a900460ff1681565b611fba61353a565b73ffffffffffffffffffffffffffffffffffffffff16611fd86127fd565b73ffffffffffffffffffffffffffffffffffffffff161461202e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612025906157a1565b60405180910390fd5b60008161203c57600161203f565b60025b60ff16905060005b848490508110156120d05781601b600087878581811061206a576120696151df565b5b905060200201602081019061207f9190614a06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806120c8906157c1565b915050612047565b5050505050565b60155481565b601c80546120ea90614fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461211690614fe0565b80156121635780601f1061213857610100808354040283529160200191612163565b820191906000526020600020905b81548152906001019060200180831161214657829003601f168201915b505050505081565b600061217682613ad1565b600001519050919050565b61218961353a565b73ffffffffffffffffffffffffffffffffffffffff166121a76127fd565b73ffffffffffffffffffffffffffffffffffffffff16146121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f4906157a1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b601e805461222790614fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461225390614fe0565b80156122a05780601f10612275576101008083540402835291602001916122a0565b820191906000526020600020905b81548152906001019060200180831161228357829003601f168201915b505050505081565b60195481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612316576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61238661353a565b73ffffffffffffffffffffffffffffffffffffffff166123a46127fd565b73ffffffffffffffffffffffffffffffffffffffff16146123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f1906157a1565b60405180910390fd5b6124046000613d60565b565b61240e61353a565b73ffffffffffffffffffffffffffffffffffffffff1661242c6127fd565b73ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612479906157a1565b60405180910390fd5b80601c9080519060200190612498929190614588565b5050565b600260095414156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d99061505e565b60405180910390fd5b60026009819055506000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461259c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259390615735565b60405180910390fd5b601860019054906101000a900460ff166125eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e290615856565b60405180910390fd5b6108ca826019546125fc9190615297565b111561263d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612634906158c2565b60405180910390fd5b6000811415801561264e5750808211155b61268d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126849061592e565b60405180910390fd5b81601a5461269b919061520e565b34146126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d39061599a565b60405180910390fd5b8082141561272c57601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090556127bb565b81601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277791906151ab565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b816019546127c99190615297565b6019819055506127d933836135fd565b50600160098190555050565b601b6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61282f61353a565b73ffffffffffffffffffffffffffffffffffffffff1661284d6127fd565b73ffffffffffffffffffffffffffffffffffffffff16146128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a906157a1565b60405180910390fd5b8060118190555050565b60135481565b600d6020528060005260406000206000915090505481565b6060600380546128da90614fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461290690614fe0565b80156129535780601f1061292857610100808354040283529160200191612953565b820191906000526020600020905b81548152906001019060200180831161293657829003601f168201915b5050505050905090565b600b5481565b60006011544210156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190615415565b60405180910390fd5b600060175411156129bf576017549050612a2c565b6000601154426129cf91906151ab565b90506000601554826129e191906159e9565b90506000601354826129f3919061520e565b9050601454601254612a0591906151ab565b8110612a18576014549350505050612a2c565b80601254612a2691906151ab565b93505050505b90565b60175481565b612a3d61353a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612aaf61353a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b5c61353a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ba19190614722565b60405180910390a35050565b60165481565b612bbb61353a565b73ffffffffffffffffffffffffffffffffffffffff16612bd96127fd565b73ffffffffffffffffffffffffffffffffffffffff1614612c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c26906157a1565b60405180910390fd5b603781600c54612c3f9190615297565b1115612c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7790615a8c565b60405180910390fd5b80600c6000828254612c929190615297565b92505081905550612ca382826135fd565b5050565b60026009541415612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce49061505e565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90615735565b60405180910390fd5b600e60009054906101000a900460ff16612db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da990615b1e565b60405180910390fd5b600081118015612dc3575060058111155b612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990615513565b60405180910390fd5b600581600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e4f9190615297565b1115612e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8790615bb0565b60405180910390fd5b80600b54612e9e919061520e565b3414612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed69061599a565b60405180910390fd5b600c546037612eee91906151ab565b600a54612efb91906151ab565b81612f04611511565b612f0e9190615297565b1115612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690615c1c565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9e9190615297565b92505081905550612faf33826135fd565b600160098190555050565b603781565b612fca84848461361b565b612fe98373ffffffffffffffffffffffffffffffffffffffff16613e26565b8015612ffe5750612ffc84848484613e49565b155b15613035576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060613046826134ec565b613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90615cae565b60405180910390fd5b60001515601f60009054906101000a900460ff161515141561313357601e80546130ae90614fe0565b80601f01602080910402602001604051908101604052809291908181526020018280546130da90614fe0565b80156131275780601f106130fc57610100808354040283529160200191613127565b820191906000526020600020905b81548152906001019060200180831161310a57829003601f168201915b5050505050905061318f565b600061313d613fa9565b9050600081511161315d576040518060200160405280600081525061318b565b806131678461403b565b601d60405160200161317b93929190615d9e565b6040516020818303038152906040525b9150505b919050565b60125481565b6131a261353a565b73ffffffffffffffffffffffffffffffffffffffff166131c06127fd565b73ffffffffffffffffffffffffffffffffffffffff1614613216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320d906157a1565b60405180910390fd5b80601860016101000a81548160ff02191690831515021790555050565b600a5481565b61324161353a565b73ffffffffffffffffffffffffffffffffffffffff1661325f6127fd565b73ffffffffffffffffffffffffffffffffffffffff16146132b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ac906157a1565b60405180910390fd5b80601f60006101000a81548160ff02191690831515021790555050565b600c5481565b601a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61337a61353a565b73ffffffffffffffffffffffffffffffffffffffff166133986127fd565b73ffffffffffffffffffffffffffffffffffffffff16146133ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e5906157a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561345e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345590615e41565b60405180910390fd5b61346781613d60565b50565b600f6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816134f76135f4565b11158015613506575060005482105b8015613533575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61361782826040518060200160405280600081525061419c565b5050565b600061362682613ad1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613691576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166136b261353a565b73ffffffffffffffffffffffffffffffffffffffff1614806136e157506136e0856136db61353a565b6132de565b5b8061372657506136ef61353a565b73ffffffffffffffffffffffffffffffffffffffff1661370e84610efe565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061375f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156137c6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137d385858560016141ae565b6137df60008487613542565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613a5f576000548214613a5e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613aca85858560016141b4565b5050505050565b613ad961460e565b600082905080613ae76135f4565b11158015613af6575060005481105b15613d29576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613d2757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c0b578092505050613d5b565b5b600115613d2657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613d21578092505050613d5b565b613c0c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613e6f61353a565b8786866040518563ffffffff1660e01b8152600401613e919493929190615eb6565b602060405180830381600087803b158015613eab57600080fd5b505af1925050508015613edc57506040513d601f19601f82011682018060405250810190613ed99190615f17565b60015b613f56573d8060008114613f0c576040519150601f19603f3d011682016040523d82523d6000602084013e613f11565b606091505b50600081511415613f4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601c8054613fb890614fe0565b80601f0160208091040260200160405190810160405280929190818152602001828054613fe490614fe0565b80156140315780601f1061400657610100808354040283529160200191614031565b820191906000526020600020905b81548152906001019060200180831161401457829003601f168201915b5050505050905090565b60606000821415614083576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614197565b600082905060005b600082146140b557808061409e906157c1565b915050600a826140ae91906159e9565b915061408b565b60008167ffffffffffffffff8111156140d1576140d0614b1d565b5b6040519080825280601f01601f1916602001820160405280156141035781602001600182028036833780820191505090505b5090505b600085146141905760018261411c91906151ab565b9150600a8561412b9190615f44565b60306141379190615297565b60f81b81838151811061414d5761414c6151df565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561418991906159e9565b9450614107565b8093505050505b919050565b6141a983838360016141ba565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614227576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415614262576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61426f60008683876141ae565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561443957506144388773ffffffffffffffffffffffffffffffffffffffff16613e26565b5b156144ff575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46144ae6000888480600101955088613e49565b6144e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561443f5782600054146144fa57600080fd5b61456b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614500575b81600081905550505061458160008683876141b4565b5050505050565b82805461459490614fe0565b90600052602060002090601f0160209004810192826145b657600085556145fd565b82601f106145cf57805160ff19168380011785556145fd565b828001600101855582156145fd579182015b828111156145fc5782518255916020019190600101906145e1565b5b50905061460a9190614651565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561466a576000816000905550600101614652565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6146b781614682565b81146146c257600080fd5b50565b6000813590506146d4816146ae565b92915050565b6000602082840312156146f0576146ef614678565b5b60006146fe848285016146c5565b91505092915050565b60008115159050919050565b61471c81614707565b82525050565b60006020820190506147376000830184614713565b92915050565b6000819050919050565b6147508161473d565b82525050565b600060208201905061476b6000830184614747565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156147ab578082015181840152602081019050614790565b838111156147ba576000848401525b50505050565b6000601f19601f8301169050919050565b60006147dc82614771565b6147e6818561477c565b93506147f681856020860161478d565b6147ff816147c0565b840191505092915050565b6000602082019050818103600083015261482481846147d1565b905092915050565b6148358161473d565b811461484057600080fd5b50565b6000813590506148528161482c565b92915050565b60006020828403121561486e5761486d614678565b5b600061487c84828501614843565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006148b082614885565b9050919050565b6148c0816148a5565b82525050565b60006020820190506148db60008301846148b7565b92915050565b6148ea816148a5565b81146148f557600080fd5b50565b600081359050614907816148e1565b92915050565b6000806040838503121561492457614923614678565b5b6000614932858286016148f8565b925050602061494385828601614843565b9150509250929050565b600060ff82169050919050565b6149638161494d565b811461496e57600080fd5b50565b6000813590506149808161495a565b92915050565b60006020828403121561499c5761499b614678565b5b60006149aa84828501614971565b91505092915050565b6000806000606084860312156149cc576149cb614678565b5b60006149da868287016148f8565b93505060206149eb868287016148f8565b92505060406149fc86828701614843565b9150509250925092565b600060208284031215614a1c57614a1b614678565b5b6000614a2a848285016148f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a688161473d565b82525050565b6000614a7a8383614a5f565b60208301905092915050565b6000602082019050919050565b6000614a9e82614a33565b614aa88185614a3e565b9350614ab383614a4f565b8060005b83811015614ae4578151614acb8882614a6e565b9750614ad683614a86565b925050600181019050614ab7565b5085935050505092915050565b60006020820190508181036000830152614b0b8184614a93565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614b55826147c0565b810181811067ffffffffffffffff82111715614b7457614b73614b1d565b5b80604052505050565b6000614b8761466e565b9050614b938282614b4c565b919050565b600067ffffffffffffffff821115614bb357614bb2614b1d565b5b614bbc826147c0565b9050602081019050919050565b82818337600083830152505050565b6000614beb614be684614b98565b614b7d565b905082815260208101848484011115614c0757614c06614b18565b5b614c12848285614bc9565b509392505050565b600082601f830112614c2f57614c2e614b13565b5b8135614c3f848260208601614bd8565b91505092915050565b600060208284031215614c5e57614c5d614678565b5b600082013567ffffffffffffffff811115614c7c57614c7b61467d565b5b614c8884828501614c1a565b91505092915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b614cb681614c91565b82525050565b614cc58161494d565b82525050565b6000604082019050614ce06000830185614cad565b614ced6020830184614cbc565b9392505050565b600080fd5b600080fd5b60008083601f840112614d1457614d13614b13565b5b8235905067ffffffffffffffff811115614d3157614d30614cf4565b5b602083019150836020820283011115614d4d57614d4c614cf9565b5b9250929050565b614d5d81614707565b8114614d6857600080fd5b50565b600081359050614d7a81614d54565b92915050565b600080600060408486031215614d9957614d98614678565b5b600084013567ffffffffffffffff811115614db757614db661467d565b5b614dc386828701614cfe565b93509350506020614dd686828701614d6b565b9150509250925092565b600060208284031215614df657614df5614678565b5b6000614e0484828501614d6b565b91505092915050565b60008060408385031215614e2457614e23614678565b5b6000614e32858286016148f8565b9250506020614e4385828601614d6b565b9150509250929050565b600067ffffffffffffffff821115614e6857614e67614b1d565b5b614e71826147c0565b9050602081019050919050565b6000614e91614e8c84614e4d565b614b7d565b905082815260208101848484011115614ead57614eac614b18565b5b614eb8848285614bc9565b509392505050565b600082601f830112614ed557614ed4614b13565b5b8135614ee5848260208601614e7e565b91505092915050565b60008060008060808587031215614f0857614f07614678565b5b6000614f16878288016148f8565b9450506020614f27878288016148f8565b9350506040614f3887828801614843565b925050606085013567ffffffffffffffff811115614f5957614f5861467d565b5b614f6587828801614ec0565b91505092959194509250565b60008060408385031215614f8857614f87614678565b5b6000614f96858286016148f8565b9250506020614fa7858286016148f8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614ff857607f821691505b6020821081141561500c5761500b614fb1565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615048601f8361477c565b915061505382615012565b602082019050919050565b600060208201905081810360008301526150778161503b565b9050919050565b7f44757463682061756374696f6e206973207374696c6c206f6e676f696e672e00600082015250565b60006150b4601f8361477c565b91506150bf8261507e565b602082019050919050565b600060208201905081810360008301526150e3816150a7565b9050919050565b7f4f6e6c792075736520746869732066756e6374696f6e2066726f6d206120776160008201527f6c6c65742e000000000000000000000000000000000000000000000000000000602082015250565b600061514660258361477c565b9150615151826150ea565b604082019050919050565b6000602082019050818103600083015261517581615139565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006151b68261473d565b91506151c18361473d565b9250828210156151d4576151d361517c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006152198261473d565b91506152248361473d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561525d5761525c61517c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006152a28261473d565b91506152ad8361473d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152e2576152e161517c565b5b828201905092915050565b60006152f88261473d565b9150600082141561530c5761530b61517c565b5b600182039050919050565b600081905092915050565b50565b6000615332600083615317565b915061533d82615322565b600082019050919050565b600061535382615325565b9150819050919050565b7f536f6d657468696e672077656e742077726f6e672e0000000000000000000000600082015250565b600061539360158361477c565b915061539e8261535d565b602082019050919050565b600060208201905081810360008301526153c281615386565b9050919050565b7f576520686176656e2774207374617274656420796574206c6567656e642e0000600082015250565b60006153ff601e8361477c565b915061540a826153c9565b602082019050919050565b6000602082019050818103600083015261542e816153f2565b9050919050565b7f5468652064757463682061756374696f6e206973206f7665722e000000000000600082015250565b600061546b601a8361477c565b915061547682615435565b602082019050919050565b6000602082019050818103600083015261549a8161545e565b9050919050565b7f596f752063616e206f6e6c79206d696e742035206c6567656e6473207065722060008201527f7472616e73616374696f6e2e0000000000000000000000000000000000000000602082015250565b60006154fd602c8361477c565b9150615508826154a1565b604082019050919050565b6000602082019050818103600083015261552c816154f0565b9050919050565b7f596f752063616e206f6e6c79206d696e742035204c6567656e6473206475726960008201527f6e67207468652044757463682041756374696f6e2e0000000000000000000000602082015250565b600061558f60358361477c565b915061559a82615533565b604082019050919050565b600060208201905081810360008301526155be81615582565b9050919050565b7f496e73756666696369656e7420616d6f756e74206f66204554482e0000000000600082015250565b60006155fb601b8361477c565b9150615606826155c5565b602082019050919050565b6000602082019050818103600083015261562a816155ee565b9050919050565b7f5468697320616d6f756e7420657863656564732074686520616c6c6f6361746960008201527f6f6e2e0000000000000000000000000000000000000000000000000000000000602082015250565b600061568d60238361477c565b915061569882615631565b604082019050919050565b600060208201905081810360008301526156bc81615680565b9050919050565b7f596f752063616e74206d696e74207573696e67206120736d61727420636f6e7460008201527f726163742e000000000000000000000000000000000000000000000000000000602082015250565b600061571f60258361477c565b915061572a826156c3565b604082019050919050565b6000602082019050818103600083015261574e81615712565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061578b60208361477c565b915061579682615755565b602082019050919050565b600060208201905081810360008301526157ba8161577e565b9050919050565b60006157cc8261473d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157ff576157fe61517c565b5b600182019050919050565b7f50726573616c65206861736e27742073746172746564207965742e0000000000600082015250565b6000615840601b8361477c565b915061584b8261580a565b602082019050919050565b6000602082019050818103600083015261586f81615833565b9050919050565b7f5468652070726573616c652069732066696e6973686564210000000000000000600082015250565b60006158ac60188361477c565b91506158b782615876565b602082019050919050565b600060208201905081810360008301526158db8161589f565b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f20646f20746869732e0000600082015250565b6000615918601e8361477c565b9150615923826158e2565b602082019050919050565b600060208201905081810360008301526159478161590b565b9050919050565b7f497420636f73747320302e30363920746f206d696e742061206c6567656e642e600082015250565b600061598460208361477c565b915061598f8261594e565b602082019050919050565b600060208201905081810360008301526159b381615977565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006159f48261473d565b91506159ff8361473d565b925082615a0f57615a0e6159ba565b5b828204905092915050565b7f546865207465616d20697320616c6c6f77656420746f206d696e74203535206c60008201527f6567656e64732e00000000000000000000000000000000000000000000000000602082015250565b6000615a7660278361477c565b9150615a8182615a1a565b604082019050919050565b60006020820190508181036000830152615aa581615a69565b9050919050565b7f5468657265206973206e6f207075626c69632073616c65206f6e676f696e672060008201527f7269676874206e6f772e00000000000000000000000000000000000000000000602082015250565b6000615b08602a8361477c565b9150615b1382615aac565b604082019050919050565b60006020820190508181036000830152615b3781615afb565b9050919050565b7f596f752063616e206f6e6c79206d696e742035204c6567656e6473206475726960008201527f6e6720746865207075626c69632073616c652e00000000000000000000000000602082015250565b6000615b9a60338361477c565b9150615ba582615b3e565b604082019050919050565b60006020820190508181036000830152615bc981615b8d565b9050919050565b7f5472792061206c6f77657220616d6f756e74206f66206c6567656e64732e0000600082015250565b6000615c06601e8361477c565b9150615c1182615bd0565b602082019050919050565b60006020820190508181036000830152615c3581615bf9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615c98602f8361477c565b9150615ca382615c3c565b604082019050919050565b60006020820190508181036000830152615cc781615c8b565b9050919050565b600081905092915050565b6000615ce482614771565b615cee8185615cce565b9350615cfe81856020860161478d565b80840191505092915050565b60008190508160005260206000209050919050565b60008154615d2c81614fe0565b615d368186615cce565b94506001821660008114615d515760018114615d6257615d95565b60ff19831686528186019350615d95565b615d6b85615d0a565b60005b83811015615d8d57815481890152600182019150602081019050615d6e565b838801955050505b50505092915050565b6000615daa8286615cd9565b9150615db68285615cd9565b9150615dc28284615d1f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615e2b60268361477c565b9150615e3682615dcf565b604082019050919050565b60006020820190508181036000830152615e5a81615e1e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615e8882615e61565b615e928185615e6c565b9350615ea281856020860161478d565b615eab816147c0565b840191505092915050565b6000608082019050615ecb60008301876148b7565b615ed860208301866148b7565b615ee56040830185614747565b8181036060830152615ef78184615e7d565b905095945050505050565b600081519050615f11816146ae565b92915050565b600060208284031215615f2d57615f2c614678565b5b6000615f3b84828501615f02565b91505092915050565b6000615f4f8261473d565b9150615f5a8361473d565b925082615f6a57615f696159ba565b5b82820690509291505056fea2646970667358221220eb6939bdd92804cfb1c5e0ec6972bec202cba17011a0d620f635fcd877c387a964736f6c63430008090033697066733a2f2f516d617a5256386b4a7a4456456a41763568656267366a46446a335a647a6e7264416365666f58524a78365277352f

Deployed Bytecode

0x6080604052600436106103815760003560e01c806370a08231116101d1578063a4e98f1a11610102578063d4862a41116100a0578063e757c17d1161006f578063e757c17d14610cb6578063e985e9c514610ce1578063f2fde38b14610d1e578063f43de19d14610d4757610381565b8063d4862a4114610c0e578063d5abeb0114610c37578063da72baff14610c62578063e316380814610c8b57610381565b8063b4bc159a116100dc578063b4bc159a14610b52578063b88d4fde14610b7d578063c87b56dd14610ba6578063cb80937d14610be357610381565b8063a4e98f1a14610ae2578063add5a4fa14610b0d578063b3ab66b014610b3657610381565b80639192b4a61161016f5780639b6860c8116101495780639b6860c814610a385780639b7c9ff514610a635780639e98ecf614610a8e578063a22cb46514610ab957610381565b80639192b4a6146109a557806394ac9978146109d057806395d89b4114610a0d57610381565b80637835c635116101ab5780637835c635146108f857806389823655146109145780638da5cb5b1461095157806391922d421461097c57610381565b806370a082311461087b578063715018a6146108b8578063750521f5146108cf57610381565b80633c68eb81116102b65780635a7adf7f116102545780636352211e116102235780636352211e146107bf57806366490a91146107fc578063688ab30b146108255780636fbf3db61461085057610381565b80635a7adf7f146107155780635af8d823146107405780635d7e6eb61461076957806361f3d3b51461079457610381565b806347888d911161029057806347888d91146106585780634fdd43cb14610683578063538ccf2d146106ac578063581b90c5146106d757610381565b80633c68eb81146105db57806342842e0e146105f2578063438b63001461061b57610381565b806318160ddd1161032357806323b872dd116102fd57806323b872dd14610533578063298e40561461055c5780632e677fa81461058557806333bc1c5c146105b057610381565b806318160ddd146104c15780631fbc5f9d146104ec578063202957241461050857610381565b8063081812fc1161035f578063081812fc14610419578063095ea7b31461045657806312210e8a1461047f578063159b2b9f1461049657610381565b806301ffc9a714610386578063031107bf146103c357806306fdde03146103ee575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a891906146da565b610d84565b6040516103ba9190614722565b60405180910390f35b3480156103cf57600080fd5b506103d8610e66565b6040516103e59190614756565b60405180910390f35b3480156103fa57600080fd5b50610403610e6c565b604051610410919061480a565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190614858565b610efe565b60405161044d91906148c6565b60405180910390f35b34801561046257600080fd5b5061047d6004803603810190610478919061490d565b610f7a565b005b34801561048b57600080fd5b50610494611085565b005b3480156104a257600080fd5b506104ab611483565b6040516104b8919061480a565b60405180910390f35b3480156104cd57600080fd5b506104d6611511565b6040516104e39190614756565b60405180910390f35b61050660048036038101906105019190614986565b611528565b005b34801561051457600080fd5b5061051d611a13565b60405161052a9190614756565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906149b3565b611a19565b005b34801561056857600080fd5b50610583600480360381019061057e9190614858565b611a29565b005b34801561059157600080fd5b5061059a611aca565b6040516105a79190614722565b60405180910390f35b3480156105bc57600080fd5b506105c5611add565b6040516105d29190614722565b60405180910390f35b3480156105e757600080fd5b506105f0611af0565b005b3480156105fe57600080fd5b50610619600480360381019061061491906149b3565b611c4f565b005b34801561062757600080fd5b50610642600480360381019061063d9190614a06565b611c6f565b60405161064f9190614af1565b60405180910390f35b34801561066457600080fd5b5061066d611e8a565b60405161067a9190614756565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190614c48565b611e90565b005b3480156106b857600080fd5b506106c1611f26565b6040516106ce9190614722565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061490d565b611f39565b60405161070c929190614ccb565b60405180910390f35b34801561072157600080fd5b5061072a611f9f565b6040516107379190614722565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190614d80565b611fb2565b005b34801561077557600080fd5b5061077e6120d7565b60405161078b9190614756565b60405180910390f35b3480156107a057600080fd5b506107a96120dd565b6040516107b6919061480a565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190614858565b61216b565b6040516107f391906148c6565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190614de0565b612181565b005b34801561083157600080fd5b5061083a61221a565b604051610847919061480a565b60405180910390f35b34801561085c57600080fd5b506108656122a8565b6040516108729190614756565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190614a06565b6122ae565b6040516108af9190614756565b60405180910390f35b3480156108c457600080fd5b506108cd61237e565b005b3480156108db57600080fd5b506108f660048036038101906108f19190614c48565b612406565b005b610912600480360381019061090d9190614858565b61249c565b005b34801561092057600080fd5b5061093b60048036038101906109369190614a06565b6127e5565b6040516109489190614756565b60405180910390f35b34801561095d57600080fd5b506109666127fd565b60405161097391906148c6565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614858565b612827565b005b3480156109b157600080fd5b506109ba6128ad565b6040516109c79190614756565b60405180910390f35b3480156109dc57600080fd5b506109f760048036038101906109f29190614a06565b6128b3565b604051610a049190614756565b60405180910390f35b348015610a1957600080fd5b50610a226128cb565b604051610a2f919061480a565b60405180910390f35b348015610a4457600080fd5b50610a4d61295d565b604051610a5a9190614756565b60405180910390f35b348015610a6f57600080fd5b50610a78612963565b604051610a859190614756565b60405180910390f35b348015610a9a57600080fd5b50610aa3612a2f565b604051610ab09190614756565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614e0d565b612a35565b005b348015610aee57600080fd5b50610af7612bad565b604051610b049190614756565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f919061490d565b612bb3565b005b610b506004803603810190610b4b9190614858565b612ca7565b005b348015610b5e57600080fd5b50610b67612fba565b604051610b749190614756565b60405180910390f35b348015610b8957600080fd5b50610ba46004803603810190610b9f9190614eee565b612fbf565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc89190614858565b61303b565b604051610bda919061480a565b60405180910390f35b348015610bef57600080fd5b50610bf8613194565b604051610c059190614756565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190614de0565b61319a565b005b348015610c4357600080fd5b50610c4c613233565b604051610c599190614756565b60405180910390f35b348015610c6e57600080fd5b50610c896004803603810190610c849190614de0565b613239565b005b348015610c9757600080fd5b50610ca06132d2565b604051610cad9190614756565b60405180910390f35b348015610cc257600080fd5b50610ccb6132d8565b604051610cd89190614756565b60405180910390f35b348015610ced57600080fd5b50610d086004803603810190610d039190614f71565b6132de565b604051610d159190614722565b60405180910390f35b348015610d2a57600080fd5b50610d456004803603810190610d409190614a06565b613372565b005b348015610d5357600080fd5b50610d6e6004803603810190610d699190614a06565b61346a565b604051610d7b9190614756565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e5f5750610e5e82613482565b5b9050919050565b60115481565b606060028054610e7b90614fe0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea790614fe0565b8015610ef45780601f10610ec957610100808354040283529160200191610ef4565b820191906000526020600020905b815481529060010190602001808311610ed757829003601f168201915b5050505050905090565b6000610f09826134ec565b610f3f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f858261216b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661100c61353a565b73ffffffffffffffffffffffffffffffffffffffff161415801561103e575061103c8161103761353a565b6132de565b155b15611075576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611080838383613542565b505050565b600260095414156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c29061505e565b60405180910390fd5b6002600981905550600060175411611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906150ca565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061515c565b60405180910390fd5b600080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090505b60008111156113ca576000601754601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018461122991906151ab565b8154811061123a576112396151df565b5b9060005260206000200160000160109054906101000a900460ff1660ff16611262919061520e565b9050600081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001856112b391906151ab565b815481106112c4576112c36151df565b5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1661130a91906151ab565b9050601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061135b5761135a615268565b5b60019003818190600052602060002001600080820160006101000a8154906fffffffffffffffffffffffffffffffff02191690556000820160106101000a81549060ff02191690555050905580846113b39190615297565b9350505080806113c2906152ed565b9150506111cf565b5060003373ffffffffffffffffffffffffffffffffffffffff16826040516113f190615348565b60006040518083038185875af1925050503d806000811461142e576040519150601f19603f3d011682016040523d82523d6000602084013e611433565b606091505b5050905080611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e906153a9565b60405180910390fd5b50506001600981905550565b601d805461149090614fe0565b80601f01602080910402602001604051908101604052809291908181526020018280546114bc90614fe0565b80156115095780601f106114de57610100808354040283529160200191611509565b820191906000526020600020905b8154815290600101906020018083116114ec57829003601f168201915b505050505081565b600061151b6135f4565b6001546000540303905090565b6002600954141561156e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115659061505e565b60405180910390fd5b60026009819055506011544210156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290615415565b60405180910390fd5b601860009054906101000a900460ff161561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290615481565b60405180910390fd5b60008160ff16118015611622575060058160ff1611155b611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890615513565b60405180910390fd5b60058160ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b19190615297565b11156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e9906155a5565b60405180910390fd5b60006116fc612963565b9050808260ff1661170d919061520e565b34101561174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690615611565b60405180910390fd5b6016548260ff1661175e611511565b6117689190615297565b11156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a0906156a3565b60405180910390fd5b600c5460376117b891906151ab565b600a546117c591906151ab565b8260ff166117d1611511565b6117db9190615297565b111561181c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611813906156a3565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190615735565b60405180910390fd5b6016548260ff16611899611511565b6118a39190615297565b14156118b157806017819055505b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405280346fffffffffffffffffffffffffffffffff1681526020018460ff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a81548160ff021916908360ff16021790555050508160ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f39190615297565b92505081905550611a07338360ff166135fd565b50600160098190555050565b60145481565b611a2483838361361b565b505050565b611a3161353a565b73ffffffffffffffffffffffffffffffffffffffff16611a4f6127fd565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c906157a1565b60405180910390fd5b6001601860006101000a81548160ff0219169083151502179055508060178190555050565b601f60009054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b611af861353a565b73ffffffffffffffffffffffffffffffffffffffff16611b166127fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b63906157a1565b60405180910390fd5b60026009541415611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba99061505e565b60405180910390fd5b600260098190555060007370d8f886b4852a02b5a332dce07c9917f0add22d73ffffffffffffffffffffffffffffffffffffffff1647604051611bf490615348565b60006040518083038185875af1925050503d8060008114611c31576040519150601f19603f3d011682016040523d82523d6000602084013e611c36565b606091505b5050905080611c4457600080fd5b506001600981905550565b611c6a83838360405180602001604052806000815250612fbf565b505050565b60606000611c7c836122ae565b905060008167ffffffffffffffff811115611c9a57611c99614b1d565b5b604051908082528060200260200182016040528015611cc85781602001602082028036833780820191505090505b5090506000611cd56135f4565b90506000805b8482108015611cec5750600a548311155b15611e7d576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151158015611df95750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b15611e0657806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e695783858481518110611e4e57611e4d6151df565b5b6020026020010181815250508280611e65906157c1565b9350505b8380611e74906157c1565b94505050611cdb565b8395505050505050919050565b6108ca81565b611e9861353a565b73ffffffffffffffffffffffffffffffffffffffff16611eb66127fd565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906157a1565b60405180910390fd5b80601e9080519060200190611f22929190614588565b5050565b601860009054906101000a900460ff1681565b60106020528160005260406000208181548110611f5557600080fd5b90600052602060002001600091509150508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a900460ff16905082565b601860019054906101000a900460ff1681565b611fba61353a565b73ffffffffffffffffffffffffffffffffffffffff16611fd86127fd565b73ffffffffffffffffffffffffffffffffffffffff161461202e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612025906157a1565b60405180910390fd5b60008161203c57600161203f565b60025b60ff16905060005b848490508110156120d05781601b600087878581811061206a576120696151df565b5b905060200201602081019061207f9190614a06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806120c8906157c1565b915050612047565b5050505050565b60155481565b601c80546120ea90614fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461211690614fe0565b80156121635780601f1061213857610100808354040283529160200191612163565b820191906000526020600020905b81548152906001019060200180831161214657829003601f168201915b505050505081565b600061217682613ad1565b600001519050919050565b61218961353a565b73ffffffffffffffffffffffffffffffffffffffff166121a76127fd565b73ffffffffffffffffffffffffffffffffffffffff16146121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f4906157a1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b601e805461222790614fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461225390614fe0565b80156122a05780601f10612275576101008083540402835291602001916122a0565b820191906000526020600020905b81548152906001019060200180831161228357829003601f168201915b505050505081565b60195481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612316576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61238661353a565b73ffffffffffffffffffffffffffffffffffffffff166123a46127fd565b73ffffffffffffffffffffffffffffffffffffffff16146123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f1906157a1565b60405180910390fd5b6124046000613d60565b565b61240e61353a565b73ffffffffffffffffffffffffffffffffffffffff1661242c6127fd565b73ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612479906157a1565b60405180910390fd5b80601c9080519060200190612498929190614588565b5050565b600260095414156124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d99061505e565b60405180910390fd5b60026009819055506000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461259c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259390615735565b60405180910390fd5b601860019054906101000a900460ff166125eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e290615856565b60405180910390fd5b6108ca826019546125fc9190615297565b111561263d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612634906158c2565b60405180910390fd5b6000811415801561264e5750808211155b61268d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126849061592e565b60405180910390fd5b81601a5461269b919061520e565b34146126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d39061599a565b60405180910390fd5b8082141561272c57601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090556127bb565b81601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277791906151ab565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b816019546127c99190615297565b6019819055506127d933836135fd565b50600160098190555050565b601b6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61282f61353a565b73ffffffffffffffffffffffffffffffffffffffff1661284d6127fd565b73ffffffffffffffffffffffffffffffffffffffff16146128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a906157a1565b60405180910390fd5b8060118190555050565b60135481565b600d6020528060005260406000206000915090505481565b6060600380546128da90614fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461290690614fe0565b80156129535780601f1061292857610100808354040283529160200191612953565b820191906000526020600020905b81548152906001019060200180831161293657829003601f168201915b5050505050905090565b600b5481565b60006011544210156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190615415565b60405180910390fd5b600060175411156129bf576017549050612a2c565b6000601154426129cf91906151ab565b90506000601554826129e191906159e9565b90506000601354826129f3919061520e565b9050601454601254612a0591906151ab565b8110612a18576014549350505050612a2c565b80601254612a2691906151ab565b93505050505b90565b60175481565b612a3d61353a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612aaf61353a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b5c61353a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ba19190614722565b60405180910390a35050565b60165481565b612bbb61353a565b73ffffffffffffffffffffffffffffffffffffffff16612bd96127fd565b73ffffffffffffffffffffffffffffffffffffffff1614612c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c26906157a1565b60405180910390fd5b603781600c54612c3f9190615297565b1115612c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7790615a8c565b60405180910390fd5b80600c6000828254612c929190615297565b92505081905550612ca382826135fd565b5050565b60026009541415612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce49061505e565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90615735565b60405180910390fd5b600e60009054906101000a900460ff16612db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da990615b1e565b60405180910390fd5b600081118015612dc3575060058111155b612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990615513565b60405180910390fd5b600581600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e4f9190615297565b1115612e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8790615bb0565b60405180910390fd5b80600b54612e9e919061520e565b3414612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed69061599a565b60405180910390fd5b600c546037612eee91906151ab565b600a54612efb91906151ab565b81612f04611511565b612f0e9190615297565b1115612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690615c1c565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9e9190615297565b92505081905550612faf33826135fd565b600160098190555050565b603781565b612fca84848461361b565b612fe98373ffffffffffffffffffffffffffffffffffffffff16613e26565b8015612ffe5750612ffc84848484613e49565b155b15613035576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060613046826134ec565b613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90615cae565b60405180910390fd5b60001515601f60009054906101000a900460ff161515141561313357601e80546130ae90614fe0565b80601f01602080910402602001604051908101604052809291908181526020018280546130da90614fe0565b80156131275780601f106130fc57610100808354040283529160200191613127565b820191906000526020600020905b81548152906001019060200180831161310a57829003601f168201915b5050505050905061318f565b600061313d613fa9565b9050600081511161315d576040518060200160405280600081525061318b565b806131678461403b565b601d60405160200161317b93929190615d9e565b6040516020818303038152906040525b9150505b919050565b60125481565b6131a261353a565b73ffffffffffffffffffffffffffffffffffffffff166131c06127fd565b73ffffffffffffffffffffffffffffffffffffffff1614613216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320d906157a1565b60405180910390fd5b80601860016101000a81548160ff02191690831515021790555050565b600a5481565b61324161353a565b73ffffffffffffffffffffffffffffffffffffffff1661325f6127fd565b73ffffffffffffffffffffffffffffffffffffffff16146132b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ac906157a1565b60405180910390fd5b80601f60006101000a81548160ff02191690831515021790555050565b600c5481565b601a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61337a61353a565b73ffffffffffffffffffffffffffffffffffffffff166133986127fd565b73ffffffffffffffffffffffffffffffffffffffff16146133ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e5906157a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561345e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345590615e41565b60405180910390fd5b61346781613d60565b50565b600f6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816134f76135f4565b11158015613506575060005482105b8015613533575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61361782826040518060200160405280600081525061419c565b5050565b600061362682613ad1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613691576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166136b261353a565b73ffffffffffffffffffffffffffffffffffffffff1614806136e157506136e0856136db61353a565b6132de565b5b8061372657506136ef61353a565b73ffffffffffffffffffffffffffffffffffffffff1661370e84610efe565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061375f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156137c6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137d385858560016141ae565b6137df60008487613542565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613a5f576000548214613a5e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613aca85858560016141b4565b5050505050565b613ad961460e565b600082905080613ae76135f4565b11158015613af6575060005481105b15613d29576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613d2757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c0b578092505050613d5b565b5b600115613d2657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613d21578092505050613d5b565b613c0c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613e6f61353a565b8786866040518563ffffffff1660e01b8152600401613e919493929190615eb6565b602060405180830381600087803b158015613eab57600080fd5b505af1925050508015613edc57506040513d601f19601f82011682018060405250810190613ed99190615f17565b60015b613f56573d8060008114613f0c576040519150601f19603f3d011682016040523d82523d6000602084013e613f11565b606091505b50600081511415613f4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601c8054613fb890614fe0565b80601f0160208091040260200160405190810160405280929190818152602001828054613fe490614fe0565b80156140315780601f1061400657610100808354040283529160200191614031565b820191906000526020600020905b81548152906001019060200180831161401457829003601f168201915b5050505050905090565b60606000821415614083576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614197565b600082905060005b600082146140b557808061409e906157c1565b915050600a826140ae91906159e9565b915061408b565b60008167ffffffffffffffff8111156140d1576140d0614b1d565b5b6040519080825280601f01601f1916602001820160405280156141035781602001600182028036833780820191505090505b5090505b600085146141905760018261411c91906151ab565b9150600a8561412b9190615f44565b60306141379190615297565b60f81b81838151811061414d5761414c6151df565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561418991906159e9565b9450614107565b8093505050505b919050565b6141a983838360016141ba565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614227576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415614262576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61426f60008683876141ae565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561443957506144388773ffffffffffffffffffffffffffffffffffffffff16613e26565b5b156144ff575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46144ae6000888480600101955088613e49565b6144e4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561443f5782600054146144fa57600080fd5b61456b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614500575b81600081905550505061458160008683876141b4565b5050505050565b82805461459490614fe0565b90600052602060002090601f0160209004810192826145b657600085556145fd565b82601f106145cf57805160ff19168380011785556145fd565b828001600101855582156145fd579182015b828111156145fc5782518255916020019190600101906145e1565b5b50905061460a9190614651565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561466a576000816000905550600101614652565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6146b781614682565b81146146c257600080fd5b50565b6000813590506146d4816146ae565b92915050565b6000602082840312156146f0576146ef614678565b5b60006146fe848285016146c5565b91505092915050565b60008115159050919050565b61471c81614707565b82525050565b60006020820190506147376000830184614713565b92915050565b6000819050919050565b6147508161473d565b82525050565b600060208201905061476b6000830184614747565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156147ab578082015181840152602081019050614790565b838111156147ba576000848401525b50505050565b6000601f19601f8301169050919050565b60006147dc82614771565b6147e6818561477c565b93506147f681856020860161478d565b6147ff816147c0565b840191505092915050565b6000602082019050818103600083015261482481846147d1565b905092915050565b6148358161473d565b811461484057600080fd5b50565b6000813590506148528161482c565b92915050565b60006020828403121561486e5761486d614678565b5b600061487c84828501614843565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006148b082614885565b9050919050565b6148c0816148a5565b82525050565b60006020820190506148db60008301846148b7565b92915050565b6148ea816148a5565b81146148f557600080fd5b50565b600081359050614907816148e1565b92915050565b6000806040838503121561492457614923614678565b5b6000614932858286016148f8565b925050602061494385828601614843565b9150509250929050565b600060ff82169050919050565b6149638161494d565b811461496e57600080fd5b50565b6000813590506149808161495a565b92915050565b60006020828403121561499c5761499b614678565b5b60006149aa84828501614971565b91505092915050565b6000806000606084860312156149cc576149cb614678565b5b60006149da868287016148f8565b93505060206149eb868287016148f8565b92505060406149fc86828701614843565b9150509250925092565b600060208284031215614a1c57614a1b614678565b5b6000614a2a848285016148f8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a688161473d565b82525050565b6000614a7a8383614a5f565b60208301905092915050565b6000602082019050919050565b6000614a9e82614a33565b614aa88185614a3e565b9350614ab383614a4f565b8060005b83811015614ae4578151614acb8882614a6e565b9750614ad683614a86565b925050600181019050614ab7565b5085935050505092915050565b60006020820190508181036000830152614b0b8184614a93565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614b55826147c0565b810181811067ffffffffffffffff82111715614b7457614b73614b1d565b5b80604052505050565b6000614b8761466e565b9050614b938282614b4c565b919050565b600067ffffffffffffffff821115614bb357614bb2614b1d565b5b614bbc826147c0565b9050602081019050919050565b82818337600083830152505050565b6000614beb614be684614b98565b614b7d565b905082815260208101848484011115614c0757614c06614b18565b5b614c12848285614bc9565b509392505050565b600082601f830112614c2f57614c2e614b13565b5b8135614c3f848260208601614bd8565b91505092915050565b600060208284031215614c5e57614c5d614678565b5b600082013567ffffffffffffffff811115614c7c57614c7b61467d565b5b614c8884828501614c1a565b91505092915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b614cb681614c91565b82525050565b614cc58161494d565b82525050565b6000604082019050614ce06000830185614cad565b614ced6020830184614cbc565b9392505050565b600080fd5b600080fd5b60008083601f840112614d1457614d13614b13565b5b8235905067ffffffffffffffff811115614d3157614d30614cf4565b5b602083019150836020820283011115614d4d57614d4c614cf9565b5b9250929050565b614d5d81614707565b8114614d6857600080fd5b50565b600081359050614d7a81614d54565b92915050565b600080600060408486031215614d9957614d98614678565b5b600084013567ffffffffffffffff811115614db757614db661467d565b5b614dc386828701614cfe565b93509350506020614dd686828701614d6b565b9150509250925092565b600060208284031215614df657614df5614678565b5b6000614e0484828501614d6b565b91505092915050565b60008060408385031215614e2457614e23614678565b5b6000614e32858286016148f8565b9250506020614e4385828601614d6b565b9150509250929050565b600067ffffffffffffffff821115614e6857614e67614b1d565b5b614e71826147c0565b9050602081019050919050565b6000614e91614e8c84614e4d565b614b7d565b905082815260208101848484011115614ead57614eac614b18565b5b614eb8848285614bc9565b509392505050565b600082601f830112614ed557614ed4614b13565b5b8135614ee5848260208601614e7e565b91505092915050565b60008060008060808587031215614f0857614f07614678565b5b6000614f16878288016148f8565b9450506020614f27878288016148f8565b9350506040614f3887828801614843565b925050606085013567ffffffffffffffff811115614f5957614f5861467d565b5b614f6587828801614ec0565b91505092959194509250565b60008060408385031215614f8857614f87614678565b5b6000614f96858286016148f8565b9250506020614fa7858286016148f8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614ff857607f821691505b6020821081141561500c5761500b614fb1565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615048601f8361477c565b915061505382615012565b602082019050919050565b600060208201905081810360008301526150778161503b565b9050919050565b7f44757463682061756374696f6e206973207374696c6c206f6e676f696e672e00600082015250565b60006150b4601f8361477c565b91506150bf8261507e565b602082019050919050565b600060208201905081810360008301526150e3816150a7565b9050919050565b7f4f6e6c792075736520746869732066756e6374696f6e2066726f6d206120776160008201527f6c6c65742e000000000000000000000000000000000000000000000000000000602082015250565b600061514660258361477c565b9150615151826150ea565b604082019050919050565b6000602082019050818103600083015261517581615139565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006151b68261473d565b91506151c18361473d565b9250828210156151d4576151d361517c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006152198261473d565b91506152248361473d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561525d5761525c61517c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006152a28261473d565b91506152ad8361473d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152e2576152e161517c565b5b828201905092915050565b60006152f88261473d565b9150600082141561530c5761530b61517c565b5b600182039050919050565b600081905092915050565b50565b6000615332600083615317565b915061533d82615322565b600082019050919050565b600061535382615325565b9150819050919050565b7f536f6d657468696e672077656e742077726f6e672e0000000000000000000000600082015250565b600061539360158361477c565b915061539e8261535d565b602082019050919050565b600060208201905081810360008301526153c281615386565b9050919050565b7f576520686176656e2774207374617274656420796574206c6567656e642e0000600082015250565b60006153ff601e8361477c565b915061540a826153c9565b602082019050919050565b6000602082019050818103600083015261542e816153f2565b9050919050565b7f5468652064757463682061756374696f6e206973206f7665722e000000000000600082015250565b600061546b601a8361477c565b915061547682615435565b602082019050919050565b6000602082019050818103600083015261549a8161545e565b9050919050565b7f596f752063616e206f6e6c79206d696e742035206c6567656e6473207065722060008201527f7472616e73616374696f6e2e0000000000000000000000000000000000000000602082015250565b60006154fd602c8361477c565b9150615508826154a1565b604082019050919050565b6000602082019050818103600083015261552c816154f0565b9050919050565b7f596f752063616e206f6e6c79206d696e742035204c6567656e6473206475726960008201527f6e67207468652044757463682041756374696f6e2e0000000000000000000000602082015250565b600061558f60358361477c565b915061559a82615533565b604082019050919050565b600060208201905081810360008301526155be81615582565b9050919050565b7f496e73756666696369656e7420616d6f756e74206f66204554482e0000000000600082015250565b60006155fb601b8361477c565b9150615606826155c5565b602082019050919050565b6000602082019050818103600083015261562a816155ee565b9050919050565b7f5468697320616d6f756e7420657863656564732074686520616c6c6f6361746960008201527f6f6e2e0000000000000000000000000000000000000000000000000000000000602082015250565b600061568d60238361477c565b915061569882615631565b604082019050919050565b600060208201905081810360008301526156bc81615680565b9050919050565b7f596f752063616e74206d696e74207573696e67206120736d61727420636f6e7460008201527f726163742e000000000000000000000000000000000000000000000000000000602082015250565b600061571f60258361477c565b915061572a826156c3565b604082019050919050565b6000602082019050818103600083015261574e81615712565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061578b60208361477c565b915061579682615755565b602082019050919050565b600060208201905081810360008301526157ba8161577e565b9050919050565b60006157cc8261473d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157ff576157fe61517c565b5b600182019050919050565b7f50726573616c65206861736e27742073746172746564207965742e0000000000600082015250565b6000615840601b8361477c565b915061584b8261580a565b602082019050919050565b6000602082019050818103600083015261586f81615833565b9050919050565b7f5468652070726573616c652069732066696e6973686564210000000000000000600082015250565b60006158ac60188361477c565b91506158b782615876565b602082019050919050565b600060208201905081810360008301526158db8161589f565b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f20646f20746869732e0000600082015250565b6000615918601e8361477c565b9150615923826158e2565b602082019050919050565b600060208201905081810360008301526159478161590b565b9050919050565b7f497420636f73747320302e30363920746f206d696e742061206c6567656e642e600082015250565b600061598460208361477c565b915061598f8261594e565b602082019050919050565b600060208201905081810360008301526159b381615977565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006159f48261473d565b91506159ff8361473d565b925082615a0f57615a0e6159ba565b5b828204905092915050565b7f546865207465616d20697320616c6c6f77656420746f206d696e74203535206c60008201527f6567656e64732e00000000000000000000000000000000000000000000000000602082015250565b6000615a7660278361477c565b9150615a8182615a1a565b604082019050919050565b60006020820190508181036000830152615aa581615a69565b9050919050565b7f5468657265206973206e6f207075626c69632073616c65206f6e676f696e672060008201527f7269676874206e6f772e00000000000000000000000000000000000000000000602082015250565b6000615b08602a8361477c565b9150615b1382615aac565b604082019050919050565b60006020820190508181036000830152615b3781615afb565b9050919050565b7f596f752063616e206f6e6c79206d696e742035204c6567656e6473206475726960008201527f6e6720746865207075626c69632073616c652e00000000000000000000000000602082015250565b6000615b9a60338361477c565b9150615ba582615b3e565b604082019050919050565b60006020820190508181036000830152615bc981615b8d565b9050919050565b7f5472792061206c6f77657220616d6f756e74206f66206c6567656e64732e0000600082015250565b6000615c06601e8361477c565b9150615c1182615bd0565b602082019050919050565b60006020820190508181036000830152615c3581615bf9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615c98602f8361477c565b9150615ca382615c3c565b604082019050919050565b60006020820190508181036000830152615cc781615c8b565b9050919050565b600081905092915050565b6000615ce482614771565b615cee8185615cce565b9350615cfe81856020860161478d565b80840191505092915050565b60008190508160005260206000209050919050565b60008154615d2c81614fe0565b615d368186615cce565b94506001821660008114615d515760018114615d6257615d95565b60ff19831686528186019350615d95565b615d6b85615d0a565b60005b83811015615d8d57815481890152600182019150602081019050615d6e565b838801955050505b50505092915050565b6000615daa8286615cd9565b9150615db68285615cd9565b9150615dc28284615d1f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615e2b60268361477c565b9150615e3682615dcf565b604082019050919050565b60006020820190508181036000830152615e5a81615e1e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615e8882615e61565b615e928185615e6c565b9350615ea281856020860161478d565b615eab816147c0565b840191505092915050565b6000608082019050615ecb60008301876148b7565b615ed860208301866148b7565b615ee56040830185614747565b8181036060830152615ef78184615e7d565b905095945050505050565b600081519050615f11816146ae565b92915050565b600060208284031215615f2d57615f2c614678565b5b6000615f3b84828501615f02565b91505092915050565b6000615f4f8261473d565b9150615f5a8361473d565b925082615f6a57615f696159ba565b5b82820690509291505056fea2646970667358221220eb6939bdd92804cfb1c5e0ec6972bec202cba17011a0d620f635fcd877c387a964736f6c63430008090033

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.