ETH Price: $2,631.14 (+2.25%)

Token

Dickheads Club (DICKHEADS)
 

Overview

Max Total Supply

2,222 DICKHEADS

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nouside.eth
Balance
3 DICKHEADS
0x97B10F1d005C8edee0FB004af3Bb6E7B47c954fF
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:
DickheadsClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : DickheadsClub.sol
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
//
//                                      ████████╗██╗  ██╗███████╗
//                                      ╚══██╔══╝██║  ██║██╔════╝
//                                         ██║   ███████║█████╗
//                                         ██║   ██╔══██║██╔══╝
//                                         ██║   ██║  ██║███████╗
//                                         ╚═╝   ╚═╝  ╚═╝╚══════╝
//
//  ██████╗ ██╗ ██████╗██╗  ██╗██╗  ██╗███████╗ █████╗ ██████╗ ███████╗     ██████╗██╗     ██╗   ██╗██████╗
//  ██╔══██╗██║██╔════╝██║ ██╔╝██║  ██║██╔════╝██╔══██╗██╔══██╗██╔════╝    ██╔════╝██║     ██║   ██║██╔══██╗
//  ██║  ██║██║██║     █████╔╝ ███████║█████╗  ███████║██║  ██║███████╗    ██║     ██║     ██║   ██║██████╔╝
//  ██║  ██║██║██║     ██╔═██╗ ██╔══██║██╔══╝  ██╔══██║██║  ██║╚════██║    ██║     ██║     ██║   ██║██╔══██╗
//  ██████╔╝██║╚██████╗██║  ██╗██║  ██║███████╗██║  ██║██████╔╝███████║    ╚██████╗███████╗╚██████╔╝██████╔╝
//  ╚═════╝ ╚═╝ ╚═════╝╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚══════╝     ╚═════╝╚══════╝ ╚═════╝ ╚═════╝
//
//
///////////////////////////     Made with love in Belgium by 0x Odyssey Studio     //////////////////////////
///////////////////////////                 https://0xOdyssey.com                  //////////////////////////

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract DickheadsClub is ERC721A, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  mapping(address => uint256) public claimed;

  address proxyRegistryAddress;

  // Define starting contract state
  bytes32 public merkleRoot;
  string public notRevealedUri = 'ipfs://QmPcfXW3FZyZUT32fYsbxkYDUCUeztEB8LYeTErKj8kbis';
  string public _contractURI = 'ipfs://QmeP1hEj9ZcmCdU8z7oYxFGsL2ZYQKsj4fBN2XAajGzmv8';
	string public baseURI = ''; // First Proxy then ipfs://CID/

  uint256 public wlSalePrice = 0.007 ether;
  uint256 public salePrice = 0.01 ether;
  uint256 public maxSupply = 2222;

  uint256 public constant RESERVED_TOKENS = 49; // 50 with genesis token
  uint256 public constant MAX_MINTS_ON_WL = 20;
  uint256 public constant INITIAL_TOKEN_ID = 1;

  bool public mintingIsActive = false;
  bool public whiteListIsActive = false;
  bool public reservedTokensMinted = false;
  bool public genesisTokenMinted = false;
  bool public revealed = false;
  bool public supplyLocked = false;

  constructor() ERC721A("Dickheads Club", "DICKHEADS") {
  }

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

  function toggleWhiteList() external onlyOwner {
    whiteListIsActive = !whiteListIsActive;

    if (whiteListIsActive) {
      mintingIsActive = false;
    }
  }

  function toggleMinting() external onlyOwner {
    mintingIsActive = !mintingIsActive;
    if (mintingIsActive) {
      whiteListIsActive = false;
    }
  }

  function toggleReveal() public onlyOwner {
    revealed = !revealed;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setBaseURI(string memory _newURI) external onlyOwner {
    baseURI = _newURI;
  }

  function setNotRevealedURI(string memory _newURI) public onlyOwner {
    notRevealedUri = _newURI;
  }

  function setContractURI(string memory _newURI) public onlyOwner {
    _contractURI = _newURI;
  }

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

  function setWlSalePrice(uint256 _newPrice) external onlyOwner {
    wlSalePrice = _newPrice;
  }

  // Update maxSupply if needed
  function setMaxSupply(uint256 _newSupply) external onlyOwner {
    require(supplyLocked == false, "Supply is locked and cannot be updated");
    maxSupply = _newSupply;
  }

  // Lock the possibility to update maxSupply
  function lockSupply() external onlyOwner {
    supplyLocked = true;
  }

  // Reserve the first token
  function reserveGenesisToken(address toAddress) external onlyOwner {
    // Only allow one-time reservation of genesis token
    require(genesisTokenMinted == false, "Genesis token already minted");
    if (!genesisTokenMinted) {
      _mintTokens(1, toAddress);
      genesisTokenMinted = true;
    }
  }

  // Reserve some tokens for the team
  function reserveTokens(address toAddress) external onlyOwner {
    // Only allow one-time reservation of tokens
    require(genesisTokenMinted == true, "Genesis token must be minted first");
    require(reservedTokensMinted == false, "Reserved tokens already minted");

    if (!reservedTokensMinted) {
      _mintTokens(RESERVED_TOKENS, toAddress);
      reservedTokensMinted = true;
    }
  }

  // Internal mint function (default buyer)
  function _mintTokens(uint256 numberOfTokens) private {
    require(numberOfTokens > 0, "Must mint at least 1 token");
    // Mint number of tokens requested
    _safeMint(msg.sender, numberOfTokens);

    // Disable minting if max supply of tokens is reached
    if (totalSupply() == maxSupply) {
      mintingIsActive = false;
    }
  }

	// Internal mint function WITH specific destination address
  function _mintTokens(uint256 numberOfTokens, address toAddress) private {
    require(numberOfTokens > 0, "Must mint at least 1 token");
    _safeMint(toAddress, numberOfTokens);

    // Disable minting if max supply of tokens is reached
    if (totalSupply() == maxSupply) {
      mintingIsActive = false;
    }
  }

  // Public mint functions
  function mintTokens(uint256 numberOfTokens) external payable nonReentrant {
    require(mintingIsActive, "Minting is not active");
    require(msg.value == numberOfTokens.mul(salePrice), "Incorrect Ether supplied");
    require(totalSupply().add(numberOfTokens) <= maxSupply, "Minting would exceed max supply");
    _mintTokens(numberOfTokens);
  }

  function mintTokenWL(bytes32[] calldata merkleProof, uint256 numberOfTokens) external payable nonReentrant {
    require(whiteListIsActive, "Whitelist minting is not active");
    require(merkleRoot != "", "Whitelist minting is not active (merckle root not set)");
    require((claimed[msg.sender] + numberOfTokens) <= MAX_MINTS_ON_WL, "Minting would exceed max minting for this address");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "invalid merkle proof");
    require(msg.value == numberOfTokens.mul(wlSalePrice), "Incorrect Ether supplied");
    require(totalSupply().add(numberOfTokens) <= maxSupply, "Minting would exceed max supply");

    claimed[msg.sender] += numberOfTokens;
    _mintTokens(numberOfTokens);
  }

  // Override the below functions from parent contracts
  function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (!revealed) {
      return notRevealedUri;
    }

  	return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }

  function withdraw() external onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }
}

File 2 of 15 : 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/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 15 : 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 5 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 15 : 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 7 of 15 : 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 8 of 15 : 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 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : 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 13 of 15 : 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 14 of 15 : 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 15 of 15 : 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":"INITIAL_TOKEN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_ON_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisTokenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokenWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"}],"name":"reserveGenesisToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWlSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526040518060600160405280603581526020016200534160359139600d90805190602001906200003592919062000317565b506040518060600160405280603581526020016200537660359139600e90805190602001906200006792919062000317565b5060405180602001604052806000815250600f90805190602001906200008f92919062000317565b506618de76816d8000601055662386f26fc100006011556108ae6012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506000601360036101000a81548160ff0219169083151502179055506000601360046101000a81548160ff0219169083151502179055506000601360056101000a81548160ff0219169083151502179055503480156200015b57600080fd5b506040518060400160405280600e81526020017f4469636b686561647320436c75620000000000000000000000000000000000008152506040518060400160405280600981526020017f4449434b484541445300000000000000000000000000000000000000000000008152508160029080519060200190620001e092919062000317565b508060039080519060200190620001f992919062000317565b506200020a6200024060201b60201c565b600081905550505062000232620002266200024960201b60201c565b6200025160201b60201c565b60016009819055506200042c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032590620003c7565b90600052602060002090601f01602090048101928262000349576000855562000395565b82601f106200036457805160ff191683800117855562000395565b8280016001018555821562000395579182015b828111156200039457825182559160200191906001019062000377565b5b509050620003a49190620003a8565b5090565b5b80821115620003c3576000816000905550600101620003a9565b5090565b60006002820490506001821680620003e057607f821691505b60208210811415620003f757620003f6620003fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614f05806200043c6000396000f3fe6080604052600436106102e45760003560e01c8063734c66bd11610190578063bf332d61116100dc578063d5abeb0111610095578063f2c4ce1e1161006f578063f2c4ce1e14610a9c578063f2fde38b14610ac5578063f3e3882114610aee578063f51f96dd14610b19576102e4565b8063d5abeb0114610a09578063e8a3d48514610a34578063e985e9c514610a5f576102e4565b8063bf332d61146108e5578063c0e727401461090e578063c279726f14610939578063c87b56dd14610964578063c884ef83146109a1578063c94a4218146109de576102e4565b8063938e3d7b1161014957806397304ced1161012357806397304ced1461084e578063a22cb4651461086a578063b7063ed214610893578063b88d4fde146108bc576102e4565b8063938e3d7b146107cf578063943eb504146107f857806395d89b4114610823576102e4565b8063734c66bd146106f95780637cb64759146107245780637d55094d1461074d57806381eaf99b14610764578063835bbd551461077b5780638da5cb5b146107a4576102e4565b80634728b9f41161024f5780636352211e116102085780636c0360eb116101e25780636c0360eb146106515780636f8b44b01461067c57806370a08231146106a5578063715018a6146106e2576102e4565b80636352211e146105be57806368fc68c7146105fb5780636b2036fb14610626576102e4565b80634728b9f4146104e6578063518302271461051157806351f1e1771461053c57806355f804b3146105675780635b8ad4291461059057806363430b38146105a7576102e4565b80631919fed7116102a15780631919fed71461040d5780631f37240d1461043657806323b872dd146104525780632eb4a7ab1461047b5780633ccfd60b146104a657806342842e0e146104bd576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063081c8c441461038e578063095ea7b3146103b957806318160ddd146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613edf565b610b44565b60405161031d91906143e6565b60405180910390f35b34801561033257600080fd5b5061033b610c26565b604051610348919061441c565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613f72565b610cb8565b604051610385919061437f565b60405180910390f35b34801561039a57600080fd5b506103a3610d34565b6040516103b0919061441c565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613e22565b610dc2565b005b3480156103ee57600080fd5b506103f7610ecd565b604051610404919061463e565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613f72565b610ee4565b005b610450600480360381019061044b9190613e5e565b610f6a565b005b34801561045e57600080fd5b5061047960048036038101906104749190613d1c565b6112ae565b005b34801561048757600080fd5b506104906112be565b60405161049d9190614401565b60405180910390f35b3480156104b257600080fd5b506104bb6112c4565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613d1c565b611390565b005b3480156104f257600080fd5b506104fb6113b0565b60405161050891906143e6565b60405180910390f35b34801561051d57600080fd5b506105266113c3565b60405161053391906143e6565b60405180910390f35b34801561054857600080fd5b506105516113d6565b60405161055e91906143e6565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613f31565b6113e9565b005b34801561059c57600080fd5b506105a561147f565b005b3480156105b357600080fd5b506105bc611527565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613f72565b611600565b6040516105f2919061437f565b60405180910390f35b34801561060757600080fd5b50610610611616565b60405161061d919061463e565b60405180910390f35b34801561063257600080fd5b5061063b61161b565b604051610648919061463e565b60405180910390f35b34801561065d57600080fd5b50610666611620565b604051610673919061441c565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190613f72565b6116ae565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190613cb7565b61178a565b6040516106d9919061463e565b60405180910390f35b3480156106ee57600080fd5b506106f761185a565b005b34801561070557600080fd5b5061070e6118e2565b60405161071b919061463e565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613eb6565b6118e8565b005b34801561075957600080fd5b5061076261196e565b005b34801561077057600080fd5b50610779611a47565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613cb7565b611ae0565b005b3480156107b057600080fd5b506107b9611c46565b6040516107c6919061437f565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613f31565b611c70565b005b34801561080457600080fd5b5061080d611d06565b60405161081a91906143e6565b60405180910390f35b34801561082f57600080fd5b50610838611d19565b604051610845919061441c565b60405180910390f35b61086860048036038101906108639190613f72565b611dab565b005b34801561087657600080fd5b50610891600480360381019061088c9190613de6565b611f10565b005b34801561089f57600080fd5b506108ba60048036038101906108b59190613cb7565b612088565b005b3480156108c857600080fd5b506108e360048036038101906108de9190613d6b565b612198565b005b3480156108f157600080fd5b5061090c60048036038101906109079190613f72565b612214565b005b34801561091a57600080fd5b5061092361229a565b604051610930919061441c565b60405180910390f35b34801561094557600080fd5b5061094e612328565b60405161095b91906143e6565b60405180910390f35b34801561097057600080fd5b5061098b60048036038101906109869190613f72565b61233b565b604051610998919061441c565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c39190613cb7565b61245e565b6040516109d5919061463e565b60405180910390f35b3480156109ea57600080fd5b506109f3612476565b604051610a00919061463e565b60405180910390f35b348015610a1557600080fd5b50610a1e61247b565b604051610a2b919061463e565b60405180910390f35b348015610a4057600080fd5b50610a49612481565b604051610a56919061441c565b60405180910390f35b348015610a6b57600080fd5b50610a866004803603810190610a819190613ce0565b612513565b604051610a9391906143e6565b60405180910390f35b348015610aa857600080fd5b50610ac36004803603810190610abe9190613f31565b6125a7565b005b348015610ad157600080fd5b50610aec6004803603810190610ae79190613cb7565b61263d565b005b348015610afa57600080fd5b50610b03612735565b604051610b1091906143e6565b60405180910390f35b348015610b2557600080fd5b50610b2e612748565b604051610b3b919061463e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c0f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c1f5750610c1e8261274e565b5b9050919050565b606060028054610c359061490d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c619061490d565b8015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b5050505050905090565b6000610cc3826127b8565b610cf9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610d419061490d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6d9061490d565b8015610dba5780601f10610d8f57610100808354040283529160200191610dba565b820191906000526020600020905b815481529060010190602001808311610d9d57829003601f168201915b505050505081565b6000610dcd82611600565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e35576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e54612806565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e865750610e8481610e7f612806565b612513565b155b15610ebd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec883838361280e565b505050565b6000610ed76128c0565b6001546000540303905090565b610eec612806565b73ffffffffffffffffffffffffffffffffffffffff16610f0a611c46565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f579061459e565b60405180910390fd5b8060118190555050565b60026009541415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa79061461e565b60405180910390fd5b6002600981905550601360019054906101000a900460ff16611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906144fe565b60405180910390fd5b6000600c54141561104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061457e565b60405180910390fd5b601481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109a9190614738565b11156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d29061449e565b60405180910390fd5b61114f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016111349190614340565b604051602081830303815290604052805190602001206128c9565b61118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906144be565b60405180910390fd5b6111a3601054826128e090919063ffffffff16565b34146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db9061443e565b60405180910390fd5b601254611201826111f3610ecd565b6128f690919063ffffffff16565b1115611242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112399061453e565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112919190614738565b925050819055506112a18161290c565b6001600981905550505050565b6112b9838383612989565b505050565b600c5481565b6112cc612806565b73ffffffffffffffffffffffffffffffffffffffff166112ea611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061459e565b60405180910390fd5b611348611c46565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561138d573d6000803e3d6000fd5b50565b6113ab83838360405180602001604052806000815250612198565b505050565b601360009054906101000a900460ff1681565b601360049054906101000a900460ff1681565b601360039054906101000a900460ff1681565b6113f1612806565b73ffffffffffffffffffffffffffffffffffffffff1661140f611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c9061459e565b60405180910390fd5b80600f908051906020019061147b929190613a39565b5050565b611487612806565b73ffffffffffffffffffffffffffffffffffffffff166114a5611c46565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f29061459e565b60405180910390fd5b601360049054906101000a900460ff1615601360046101000a81548160ff021916908315150217905550565b61152f612806565b73ffffffffffffffffffffffffffffffffffffffff1661154d611c46565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a9061459e565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550601360019054906101000a900460ff16156115fe576000601360006101000a81548160ff0219169083151502179055505b565b600061160b82612e7a565b600001519050919050565b603181565b600181565b600f805461162d9061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546116599061490d565b80156116a65780601f1061167b576101008083540402835291602001916116a6565b820191906000526020600020905b81548152906001019060200180831161168957829003601f168201915b505050505081565b6116b6612806565b73ffffffffffffffffffffffffffffffffffffffff166116d4611c46565b73ffffffffffffffffffffffffffffffffffffffff161461172a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117219061459e565b60405180910390fd5b60001515601360059054906101000a900460ff16151514611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906145fe565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611862612806565b73ffffffffffffffffffffffffffffffffffffffff16611880611c46565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061459e565b60405180910390fd5b6118e06000613109565b565b60105481565b6118f0612806565b73ffffffffffffffffffffffffffffffffffffffff1661190e611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b9061459e565b60405180910390fd5b80600c8190555050565b611976612806565b73ffffffffffffffffffffffffffffffffffffffff16611994611c46565b73ffffffffffffffffffffffffffffffffffffffff16146119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e19061459e565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550601360009054906101000a900460ff1615611a45576000601360016101000a81548160ff0219169083151502179055505b565b611a4f612806565b73ffffffffffffffffffffffffffffffffffffffff16611a6d611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba9061459e565b60405180910390fd5b6001601360056101000a81548160ff021916908315150217905550565b611ae8612806565b73ffffffffffffffffffffffffffffffffffffffff16611b06611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b539061459e565b60405180910390fd5b60011515601360039054906101000a900460ff16151514611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba99061455e565b60405180910390fd5b60001515601360029054906101000a900460ff16151514611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff9061445e565b60405180910390fd5b601360029054906101000a900460ff16611c4357611c276031826131cf565b6001601360026101000a81548160ff0219169083151502179055505b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c78612806565b73ffffffffffffffffffffffffffffffffffffffff16611c96611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce39061459e565b60405180910390fd5b80600e9080519060200190611d02929190613a39565b5050565b601360059054906101000a900460ff1681565b606060038054611d289061490d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d549061490d565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b5050505050905090565b60026009541415611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de89061461e565b60405180910390fd5b6002600981905550601360009054906101000a900460ff16611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f906145be565b60405180910390fd5b611e5d601154826128e090919063ffffffff16565b3414611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e959061443e565b60405180910390fd5b601254611ebb82611ead610ecd565b6128f690919063ffffffff16565b1115611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef39061453e565b60405180910390fd5b611f058161290c565b600160098190555050565b611f18612806565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f8a612806565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612037612806565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161207c91906143e6565b60405180910390a35050565b612090612806565b73ffffffffffffffffffffffffffffffffffffffff166120ae611c46565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061459e565b60405180910390fd5b60001515601360039054906101000a900460ff1615151461215a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121519061451e565b60405180910390fd5b601360039054906101000a900460ff16612195576121796001826131cf565b6001601360036101000a81548160ff0219169083151502179055505b50565b6121a3848484612989565b6121c28373ffffffffffffffffffffffffffffffffffffffff1661324d565b80156121d757506121d584848484613270565b155b1561220e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61221c612806565b73ffffffffffffffffffffffffffffffffffffffff1661223a611c46565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061459e565b60405180910390fd5b8060108190555050565b600e80546122a79061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546122d39061490d565b80156123205780601f106122f557610100808354040283529160200191612320565b820191906000526020600020905b81548152906001019060200180831161230357829003601f168201915b505050505081565b601360019054906101000a900460ff1681565b6060612346826127b8565b612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c906145de565b60405180910390fd5b601360049054906101000a900460ff1661242b57600d80546123a69061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546123d29061490d565b801561241f5780601f106123f45761010080835404028352916020019161241f565b820191906000526020600020905b81548152906001019060200180831161240257829003601f168201915b50505050509050612459565b600f612436836133d0565b60405160200161244792919061435b565b60405160208183030381529060405290505b919050565b600a6020528060005260406000206000915090505481565b601481565b60125481565b6060600e80546124909061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546124bc9061490d565b80156125095780601f106124de57610100808354040283529160200191612509565b820191906000526020600020905b8154815290600101906020018083116124ec57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125af612806565b73ffffffffffffffffffffffffffffffffffffffff166125cd611c46565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a9061459e565b60405180910390fd5b80600d9080519060200190612639929190613a39565b5050565b612645612806565b73ffffffffffffffffffffffffffffffffffffffff16612663611c46565b73ffffffffffffffffffffffffffffffffffffffff16146126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b09061459e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127209061447e565b60405180910390fd5b61273281613109565b50565b601360029054906101000a900460ff1681565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816127c36128c0565b111580156127d2575060005482105b80156127ff575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000826128d6858461357d565b1490509392505050565b600081836128ee91906147bf565b905092915050565b600081836129049190614738565b905092915050565b6000811161294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906144de565b60405180910390fd5b6129593382613618565b601254612964610ecd565b1415612986576000601360006101000a81548160ff0219169083151502179055505b50565b600061299482612e7a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166129bb612806565b73ffffffffffffffffffffffffffffffffffffffff1614806129ee57506129ed82600001516129e8612806565b612513565b5b80612a3357506129fc612806565b73ffffffffffffffffffffffffffffffffffffffff16612a1b84610cb8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a6c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612ad5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b498585856001613636565b612b59600084846000015161280e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e0a57600054811015612e095782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e73858585600161363c565b5050505050565b612e82613abf565b600082905080612e906128c0565b11158015612e9f575060005481105b156130d2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516130d057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb4578092505050613104565b5b6001156130cf57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ca578092505050613104565b612fb5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008211613212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613209906144de565b60405180910390fd5b61321c8183613618565b601254613227610ecd565b1415613249576000601360006101000a81548160ff0219169083151502179055505b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613296612806565b8786866040518563ffffffff1660e01b81526004016132b8949392919061439a565b602060405180830381600087803b1580156132d257600080fd5b505af192505050801561330357506040513d601f19601f820116820180604052508101906133009190613f08565b60015b61337d573d8060008114613333576040519150601f19603f3d011682016040523d82523d6000602084013e613338565b606091505b50600081511415613375576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613418576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613578565b600082905060005b6000821461344a57808061343390614970565b915050600a82613443919061478e565b9150613420565b60008167ffffffffffffffff81111561348c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134be5781602001600182028036833780820191505090505b5090505b60008514613571576001826134d79190614819565b9150600a856134e691906149dd565b60306134f29190614738565b60f81b81838151811061352e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561356a919061478e565b94506134c2565b8093505050505b919050565b60008082905060005b845181101561360d5760008582815181106135ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116135ec576135e58382613642565b92506135f9565b6135f68184613642565b92505b50808061360590614970565b915050613586565b508091505092915050565b613632828260405180602001604052806000815250613659565b5050565b50505050565b50505050565b600082600052816020526040600020905092915050565b613666838383600161366b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156136d8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613713576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137206000868387613636565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138ea57506138e98773ffffffffffffffffffffffffffffffffffffffff1661324d565b5b156139b0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461395f6000888480600101955088613270565b613995576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138f05782600054146139ab57600080fd5b613a1c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156139b1575b816000819055505050613a32600086838761363c565b5050505050565b828054613a459061490d565b90600052602060002090601f016020900481019282613a675760008555613aae565b82601f10613a8057805160ff1916838001178555613aae565b82800160010185558215613aae579182015b82811115613aad578251825591602001919060010190613a92565b5b509050613abb9190613b02565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b1b576000816000905550600101613b03565b5090565b6000613b32613b2d8461467e565b614659565b905082815260208101848484011115613b4a57600080fd5b613b558482856148cb565b509392505050565b6000613b70613b6b846146af565b614659565b905082815260208101848484011115613b8857600080fd5b613b938482856148cb565b509392505050565b600081359050613baa81614e5c565b92915050565b60008083601f840112613bc257600080fd5b8235905067ffffffffffffffff811115613bdb57600080fd5b602083019150836020820283011115613bf357600080fd5b9250929050565b600081359050613c0981614e73565b92915050565b600081359050613c1e81614e8a565b92915050565b600081359050613c3381614ea1565b92915050565b600081519050613c4881614ea1565b92915050565b600082601f830112613c5f57600080fd5b8135613c6f848260208601613b1f565b91505092915050565b600082601f830112613c8957600080fd5b8135613c99848260208601613b5d565b91505092915050565b600081359050613cb181614eb8565b92915050565b600060208284031215613cc957600080fd5b6000613cd784828501613b9b565b91505092915050565b60008060408385031215613cf357600080fd5b6000613d0185828601613b9b565b9250506020613d1285828601613b9b565b9150509250929050565b600080600060608486031215613d3157600080fd5b6000613d3f86828701613b9b565b9350506020613d5086828701613b9b565b9250506040613d6186828701613ca2565b9150509250925092565b60008060008060808587031215613d8157600080fd5b6000613d8f87828801613b9b565b9450506020613da087828801613b9b565b9350506040613db187828801613ca2565b925050606085013567ffffffffffffffff811115613dce57600080fd5b613dda87828801613c4e565b91505092959194509250565b60008060408385031215613df957600080fd5b6000613e0785828601613b9b565b9250506020613e1885828601613bfa565b9150509250929050565b60008060408385031215613e3557600080fd5b6000613e4385828601613b9b565b9250506020613e5485828601613ca2565b9150509250929050565b600080600060408486031215613e7357600080fd5b600084013567ffffffffffffffff811115613e8d57600080fd5b613e9986828701613bb0565b93509350506020613eac86828701613ca2565b9150509250925092565b600060208284031215613ec857600080fd5b6000613ed684828501613c0f565b91505092915050565b600060208284031215613ef157600080fd5b6000613eff84828501613c24565b91505092915050565b600060208284031215613f1a57600080fd5b6000613f2884828501613c39565b91505092915050565b600060208284031215613f4357600080fd5b600082013567ffffffffffffffff811115613f5d57600080fd5b613f6984828501613c78565b91505092915050565b600060208284031215613f8457600080fd5b6000613f9284828501613ca2565b91505092915050565b613fa48161484d565b82525050565b613fbb613fb68261484d565b6149b9565b82525050565b613fca8161485f565b82525050565b613fd98161486b565b82525050565b6000613fea826146f5565b613ff4818561470b565b93506140048185602086016148da565b61400d81614aca565b840191505092915050565b600061402382614700565b61402d818561471c565b935061403d8185602086016148da565b61404681614aca565b840191505092915050565b600061405c82614700565b614066818561472d565b93506140768185602086016148da565b80840191505092915050565b6000815461408f8161490d565b614099818661472d565b945060018216600081146140b457600181146140c5576140f8565b60ff198316865281860193506140f8565b6140ce856146e0565b60005b838110156140f0578154818901526001820191506020810190506140d1565b838801955050505b50505092915050565b600061410e60188361471c565b915061411982614ae8565b602082019050919050565b6000614131601e8361471c565b915061413c82614b11565b602082019050919050565b600061415460268361471c565b915061415f82614b3a565b604082019050919050565b600061417760318361471c565b915061418282614b89565b604082019050919050565b600061419a60148361471c565b91506141a582614bd8565b602082019050919050565b60006141bd601a8361471c565b91506141c882614c01565b602082019050919050565b60006141e0601f8361471c565b91506141eb82614c2a565b602082019050919050565b6000614203601c8361471c565b915061420e82614c53565b602082019050919050565b6000614226601f8361471c565b915061423182614c7c565b602082019050919050565b600061424960228361471c565b915061425482614ca5565b604082019050919050565b600061426c60368361471c565b915061427782614cf4565b604082019050919050565b600061428f60208361471c565b915061429a82614d43565b602082019050919050565b60006142b260158361471c565b91506142bd82614d6c565b602082019050919050565b60006142d5602f8361471c565b91506142e082614d95565b604082019050919050565b60006142f860268361471c565b915061430382614de4565b604082019050919050565b600061431b601f8361471c565b915061432682614e33565b602082019050919050565b61433a816148c1565b82525050565b600061434c8284613faa565b60148201915081905092915050565b60006143678285614082565b91506143738284614051565b91508190509392505050565b60006020820190506143946000830184613f9b565b92915050565b60006080820190506143af6000830187613f9b565b6143bc6020830186613f9b565b6143c96040830185614331565b81810360608301526143db8184613fdf565b905095945050505050565b60006020820190506143fb6000830184613fc1565b92915050565b60006020820190506144166000830184613fd0565b92915050565b600060208201905081810360008301526144368184614018565b905092915050565b6000602082019050818103600083015261445781614101565b9050919050565b6000602082019050818103600083015261447781614124565b9050919050565b6000602082019050818103600083015261449781614147565b9050919050565b600060208201905081810360008301526144b78161416a565b9050919050565b600060208201905081810360008301526144d78161418d565b9050919050565b600060208201905081810360008301526144f7816141b0565b9050919050565b60006020820190508181036000830152614517816141d3565b9050919050565b60006020820190508181036000830152614537816141f6565b9050919050565b6000602082019050818103600083015261455781614219565b9050919050565b600060208201905081810360008301526145778161423c565b9050919050565b600060208201905081810360008301526145978161425f565b9050919050565b600060208201905081810360008301526145b781614282565b9050919050565b600060208201905081810360008301526145d7816142a5565b9050919050565b600060208201905081810360008301526145f7816142c8565b9050919050565b60006020820190508181036000830152614617816142eb565b9050919050565b600060208201905081810360008301526146378161430e565b9050919050565b60006020820190506146536000830184614331565b92915050565b6000614663614674565b905061466f828261493f565b919050565b6000604051905090565b600067ffffffffffffffff82111561469957614698614a9b565b5b6146a282614aca565b9050602081019050919050565b600067ffffffffffffffff8211156146ca576146c9614a9b565b5b6146d382614aca565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614743826148c1565b915061474e836148c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478357614782614a0e565b5b828201905092915050565b6000614799826148c1565b91506147a4836148c1565b9250826147b4576147b3614a3d565b5b828204905092915050565b60006147ca826148c1565b91506147d5836148c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480e5761480d614a0e565b5b828202905092915050565b6000614824826148c1565b915061482f836148c1565b92508282101561484257614841614a0e565b5b828203905092915050565b6000614858826148a1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148f85780820151818401526020810190506148dd565b83811115614907576000848401525b50505050565b6000600282049050600182168061492557607f821691505b6020821081141561493957614938614a6c565b5b50919050565b61494882614aca565b810181811067ffffffffffffffff8211171561496757614966614a9b565b5b80604052505050565b600061497b826148c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ae576149ad614a0e565b5b600182019050919050565b60006149c4826149cb565b9050919050565b60006149d682614adb565b9050919050565b60006149e8826148c1565b91506149f3836148c1565b925082614a0357614a02614a3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f727265637420457468657220737570706c6965640000000000000000600082015250565b7f526573657276656420746f6b656e7320616c7265616479206d696e7465640000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c6420657863656564206d6178206d696e74696e6760008201527f20666f7220746869732061646472657373000000000000000000000000000000602082015250565b7f696e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f57686974656c697374206d696e74696e67206973206e6f742061637469766500600082015250565b7f47656e6573697320746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f47656e6573697320746f6b656e206d757374206265206d696e7465642066697260008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206e6f74206163746976652060008201527f286d6572636b6c6520726f6f74206e6f74207365742900000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f537570706c79206973206c6f636b656420616e642063616e6e6f74206265207560008201527f7064617465640000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614e658161484d565b8114614e7057600080fd5b50565b614e7c8161485f565b8114614e8757600080fd5b50565b614e938161486b565b8114614e9e57600080fd5b50565b614eaa81614875565b8114614eb557600080fd5b50565b614ec1816148c1565b8114614ecc57600080fd5b5056fea2646970667358221220d9de536b5410418f570577132d4d1be60b61501773d6711060a57d97da26086764736f6c63430008040033697066733a2f2f516d506366585733465a795a5554333266597362786b5944554355657a744542384c59655445724b6a386b626973697066733a2f2f516d65503168456a395a636d436455387a376f59784647734c325a59514b736a3466424e325841616a477a6d7638

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063734c66bd11610190578063bf332d61116100dc578063d5abeb0111610095578063f2c4ce1e1161006f578063f2c4ce1e14610a9c578063f2fde38b14610ac5578063f3e3882114610aee578063f51f96dd14610b19576102e4565b8063d5abeb0114610a09578063e8a3d48514610a34578063e985e9c514610a5f576102e4565b8063bf332d61146108e5578063c0e727401461090e578063c279726f14610939578063c87b56dd14610964578063c884ef83146109a1578063c94a4218146109de576102e4565b8063938e3d7b1161014957806397304ced1161012357806397304ced1461084e578063a22cb4651461086a578063b7063ed214610893578063b88d4fde146108bc576102e4565b8063938e3d7b146107cf578063943eb504146107f857806395d89b4114610823576102e4565b8063734c66bd146106f95780637cb64759146107245780637d55094d1461074d57806381eaf99b14610764578063835bbd551461077b5780638da5cb5b146107a4576102e4565b80634728b9f41161024f5780636352211e116102085780636c0360eb116101e25780636c0360eb146106515780636f8b44b01461067c57806370a08231146106a5578063715018a6146106e2576102e4565b80636352211e146105be57806368fc68c7146105fb5780636b2036fb14610626576102e4565b80634728b9f4146104e6578063518302271461051157806351f1e1771461053c57806355f804b3146105675780635b8ad4291461059057806363430b38146105a7576102e4565b80631919fed7116102a15780631919fed71461040d5780631f37240d1461043657806323b872dd146104525780632eb4a7ab1461047b5780633ccfd60b146104a657806342842e0e146104bd576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063081c8c441461038e578063095ea7b3146103b957806318160ddd146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613edf565b610b44565b60405161031d91906143e6565b60405180910390f35b34801561033257600080fd5b5061033b610c26565b604051610348919061441c565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613f72565b610cb8565b604051610385919061437f565b60405180910390f35b34801561039a57600080fd5b506103a3610d34565b6040516103b0919061441c565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613e22565b610dc2565b005b3480156103ee57600080fd5b506103f7610ecd565b604051610404919061463e565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613f72565b610ee4565b005b610450600480360381019061044b9190613e5e565b610f6a565b005b34801561045e57600080fd5b5061047960048036038101906104749190613d1c565b6112ae565b005b34801561048757600080fd5b506104906112be565b60405161049d9190614401565b60405180910390f35b3480156104b257600080fd5b506104bb6112c4565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613d1c565b611390565b005b3480156104f257600080fd5b506104fb6113b0565b60405161050891906143e6565b60405180910390f35b34801561051d57600080fd5b506105266113c3565b60405161053391906143e6565b60405180910390f35b34801561054857600080fd5b506105516113d6565b60405161055e91906143e6565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613f31565b6113e9565b005b34801561059c57600080fd5b506105a561147f565b005b3480156105b357600080fd5b506105bc611527565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613f72565b611600565b6040516105f2919061437f565b60405180910390f35b34801561060757600080fd5b50610610611616565b60405161061d919061463e565b60405180910390f35b34801561063257600080fd5b5061063b61161b565b604051610648919061463e565b60405180910390f35b34801561065d57600080fd5b50610666611620565b604051610673919061441c565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190613f72565b6116ae565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190613cb7565b61178a565b6040516106d9919061463e565b60405180910390f35b3480156106ee57600080fd5b506106f761185a565b005b34801561070557600080fd5b5061070e6118e2565b60405161071b919061463e565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190613eb6565b6118e8565b005b34801561075957600080fd5b5061076261196e565b005b34801561077057600080fd5b50610779611a47565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613cb7565b611ae0565b005b3480156107b057600080fd5b506107b9611c46565b6040516107c6919061437f565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613f31565b611c70565b005b34801561080457600080fd5b5061080d611d06565b60405161081a91906143e6565b60405180910390f35b34801561082f57600080fd5b50610838611d19565b604051610845919061441c565b60405180910390f35b61086860048036038101906108639190613f72565b611dab565b005b34801561087657600080fd5b50610891600480360381019061088c9190613de6565b611f10565b005b34801561089f57600080fd5b506108ba60048036038101906108b59190613cb7565b612088565b005b3480156108c857600080fd5b506108e360048036038101906108de9190613d6b565b612198565b005b3480156108f157600080fd5b5061090c60048036038101906109079190613f72565b612214565b005b34801561091a57600080fd5b5061092361229a565b604051610930919061441c565b60405180910390f35b34801561094557600080fd5b5061094e612328565b60405161095b91906143e6565b60405180910390f35b34801561097057600080fd5b5061098b60048036038101906109869190613f72565b61233b565b604051610998919061441c565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c39190613cb7565b61245e565b6040516109d5919061463e565b60405180910390f35b3480156109ea57600080fd5b506109f3612476565b604051610a00919061463e565b60405180910390f35b348015610a1557600080fd5b50610a1e61247b565b604051610a2b919061463e565b60405180910390f35b348015610a4057600080fd5b50610a49612481565b604051610a56919061441c565b60405180910390f35b348015610a6b57600080fd5b50610a866004803603810190610a819190613ce0565b612513565b604051610a9391906143e6565b60405180910390f35b348015610aa857600080fd5b50610ac36004803603810190610abe9190613f31565b6125a7565b005b348015610ad157600080fd5b50610aec6004803603810190610ae79190613cb7565b61263d565b005b348015610afa57600080fd5b50610b03612735565b604051610b1091906143e6565b60405180910390f35b348015610b2557600080fd5b50610b2e612748565b604051610b3b919061463e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c0f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c1f5750610c1e8261274e565b5b9050919050565b606060028054610c359061490d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c619061490d565b8015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b5050505050905090565b6000610cc3826127b8565b610cf9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610d419061490d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6d9061490d565b8015610dba5780601f10610d8f57610100808354040283529160200191610dba565b820191906000526020600020905b815481529060010190602001808311610d9d57829003601f168201915b505050505081565b6000610dcd82611600565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e35576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e54612806565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e865750610e8481610e7f612806565b612513565b155b15610ebd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec883838361280e565b505050565b6000610ed76128c0565b6001546000540303905090565b610eec612806565b73ffffffffffffffffffffffffffffffffffffffff16610f0a611c46565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f579061459e565b60405180910390fd5b8060118190555050565b60026009541415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa79061461e565b60405180910390fd5b6002600981905550601360019054906101000a900460ff16611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906144fe565b60405180910390fd5b6000600c54141561104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061457e565b60405180910390fd5b601481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109a9190614738565b11156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d29061449e565b60405180910390fd5b61114f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016111349190614340565b604051602081830303815290604052805190602001206128c9565b61118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906144be565b60405180910390fd5b6111a3601054826128e090919063ffffffff16565b34146111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db9061443e565b60405180910390fd5b601254611201826111f3610ecd565b6128f690919063ffffffff16565b1115611242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112399061453e565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112919190614738565b925050819055506112a18161290c565b6001600981905550505050565b6112b9838383612989565b505050565b600c5481565b6112cc612806565b73ffffffffffffffffffffffffffffffffffffffff166112ea611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061459e565b60405180910390fd5b611348611c46565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561138d573d6000803e3d6000fd5b50565b6113ab83838360405180602001604052806000815250612198565b505050565b601360009054906101000a900460ff1681565b601360049054906101000a900460ff1681565b601360039054906101000a900460ff1681565b6113f1612806565b73ffffffffffffffffffffffffffffffffffffffff1661140f611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c9061459e565b60405180910390fd5b80600f908051906020019061147b929190613a39565b5050565b611487612806565b73ffffffffffffffffffffffffffffffffffffffff166114a5611c46565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f29061459e565b60405180910390fd5b601360049054906101000a900460ff1615601360046101000a81548160ff021916908315150217905550565b61152f612806565b73ffffffffffffffffffffffffffffffffffffffff1661154d611c46565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a9061459e565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550601360019054906101000a900460ff16156115fe576000601360006101000a81548160ff0219169083151502179055505b565b600061160b82612e7a565b600001519050919050565b603181565b600181565b600f805461162d9061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546116599061490d565b80156116a65780601f1061167b576101008083540402835291602001916116a6565b820191906000526020600020905b81548152906001019060200180831161168957829003601f168201915b505050505081565b6116b6612806565b73ffffffffffffffffffffffffffffffffffffffff166116d4611c46565b73ffffffffffffffffffffffffffffffffffffffff161461172a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117219061459e565b60405180910390fd5b60001515601360059054906101000a900460ff16151514611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906145fe565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611862612806565b73ffffffffffffffffffffffffffffffffffffffff16611880611c46565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061459e565b60405180910390fd5b6118e06000613109565b565b60105481565b6118f0612806565b73ffffffffffffffffffffffffffffffffffffffff1661190e611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b9061459e565b60405180910390fd5b80600c8190555050565b611976612806565b73ffffffffffffffffffffffffffffffffffffffff16611994611c46565b73ffffffffffffffffffffffffffffffffffffffff16146119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e19061459e565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550601360009054906101000a900460ff1615611a45576000601360016101000a81548160ff0219169083151502179055505b565b611a4f612806565b73ffffffffffffffffffffffffffffffffffffffff16611a6d611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba9061459e565b60405180910390fd5b6001601360056101000a81548160ff021916908315150217905550565b611ae8612806565b73ffffffffffffffffffffffffffffffffffffffff16611b06611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b539061459e565b60405180910390fd5b60011515601360039054906101000a900460ff16151514611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba99061455e565b60405180910390fd5b60001515601360029054906101000a900460ff16151514611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff9061445e565b60405180910390fd5b601360029054906101000a900460ff16611c4357611c276031826131cf565b6001601360026101000a81548160ff0219169083151502179055505b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c78612806565b73ffffffffffffffffffffffffffffffffffffffff16611c96611c46565b73ffffffffffffffffffffffffffffffffffffffff1614611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce39061459e565b60405180910390fd5b80600e9080519060200190611d02929190613a39565b5050565b601360059054906101000a900460ff1681565b606060038054611d289061490d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d549061490d565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b5050505050905090565b60026009541415611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de89061461e565b60405180910390fd5b6002600981905550601360009054906101000a900460ff16611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f906145be565b60405180910390fd5b611e5d601154826128e090919063ffffffff16565b3414611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e959061443e565b60405180910390fd5b601254611ebb82611ead610ecd565b6128f690919063ffffffff16565b1115611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef39061453e565b60405180910390fd5b611f058161290c565b600160098190555050565b611f18612806565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f8a612806565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612037612806565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161207c91906143e6565b60405180910390a35050565b612090612806565b73ffffffffffffffffffffffffffffffffffffffff166120ae611c46565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061459e565b60405180910390fd5b60001515601360039054906101000a900460ff1615151461215a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121519061451e565b60405180910390fd5b601360039054906101000a900460ff16612195576121796001826131cf565b6001601360036101000a81548160ff0219169083151502179055505b50565b6121a3848484612989565b6121c28373ffffffffffffffffffffffffffffffffffffffff1661324d565b80156121d757506121d584848484613270565b155b1561220e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61221c612806565b73ffffffffffffffffffffffffffffffffffffffff1661223a611c46565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061459e565b60405180910390fd5b8060108190555050565b600e80546122a79061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546122d39061490d565b80156123205780601f106122f557610100808354040283529160200191612320565b820191906000526020600020905b81548152906001019060200180831161230357829003601f168201915b505050505081565b601360019054906101000a900460ff1681565b6060612346826127b8565b612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c906145de565b60405180910390fd5b601360049054906101000a900460ff1661242b57600d80546123a69061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546123d29061490d565b801561241f5780601f106123f45761010080835404028352916020019161241f565b820191906000526020600020905b81548152906001019060200180831161240257829003601f168201915b50505050509050612459565b600f612436836133d0565b60405160200161244792919061435b565b60405160208183030381529060405290505b919050565b600a6020528060005260406000206000915090505481565b601481565b60125481565b6060600e80546124909061490d565b80601f01602080910402602001604051908101604052809291908181526020018280546124bc9061490d565b80156125095780601f106124de57610100808354040283529160200191612509565b820191906000526020600020905b8154815290600101906020018083116124ec57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125af612806565b73ffffffffffffffffffffffffffffffffffffffff166125cd611c46565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a9061459e565b60405180910390fd5b80600d9080519060200190612639929190613a39565b5050565b612645612806565b73ffffffffffffffffffffffffffffffffffffffff16612663611c46565b73ffffffffffffffffffffffffffffffffffffffff16146126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b09061459e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127209061447e565b60405180910390fd5b61273281613109565b50565b601360029054906101000a900460ff1681565b60115481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816127c36128c0565b111580156127d2575060005482105b80156127ff575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000826128d6858461357d565b1490509392505050565b600081836128ee91906147bf565b905092915050565b600081836129049190614738565b905092915050565b6000811161294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906144de565b60405180910390fd5b6129593382613618565b601254612964610ecd565b1415612986576000601360006101000a81548160ff0219169083151502179055505b50565b600061299482612e7a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166129bb612806565b73ffffffffffffffffffffffffffffffffffffffff1614806129ee57506129ed82600001516129e8612806565b612513565b5b80612a3357506129fc612806565b73ffffffffffffffffffffffffffffffffffffffff16612a1b84610cb8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a6c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612ad5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b498585856001613636565b612b59600084846000015161280e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e0a57600054811015612e095782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e73858585600161363c565b5050505050565b612e82613abf565b600082905080612e906128c0565b11158015612e9f575060005481105b156130d2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516130d057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb4578092505050613104565b5b6001156130cf57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ca578092505050613104565b612fb5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008211613212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613209906144de565b60405180910390fd5b61321c8183613618565b601254613227610ecd565b1415613249576000601360006101000a81548160ff0219169083151502179055505b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613296612806565b8786866040518563ffffffff1660e01b81526004016132b8949392919061439a565b602060405180830381600087803b1580156132d257600080fd5b505af192505050801561330357506040513d601f19601f820116820180604052508101906133009190613f08565b60015b61337d573d8060008114613333576040519150601f19603f3d011682016040523d82523d6000602084013e613338565b606091505b50600081511415613375576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613418576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613578565b600082905060005b6000821461344a57808061343390614970565b915050600a82613443919061478e565b9150613420565b60008167ffffffffffffffff81111561348c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134be5781602001600182028036833780820191505090505b5090505b60008514613571576001826134d79190614819565b9150600a856134e691906149dd565b60306134f29190614738565b60f81b81838151811061352e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561356a919061478e565b94506134c2565b8093505050505b919050565b60008082905060005b845181101561360d5760008582815181106135ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116135ec576135e58382613642565b92506135f9565b6135f68184613642565b92505b50808061360590614970565b915050613586565b508091505092915050565b613632828260405180602001604052806000815250613659565b5050565b50505050565b50505050565b600082600052816020526040600020905092915050565b613666838383600161366b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156136d8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613713576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137206000868387613636565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156138ea57506138e98773ffffffffffffffffffffffffffffffffffffffff1661324d565b5b156139b0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461395f6000888480600101955088613270565b613995576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156138f05782600054146139ab57600080fd5b613a1c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156139b1575b816000819055505050613a32600086838761363c565b5050505050565b828054613a459061490d565b90600052602060002090601f016020900481019282613a675760008555613aae565b82601f10613a8057805160ff1916838001178555613aae565b82800160010185558215613aae579182015b82811115613aad578251825591602001919060010190613a92565b5b509050613abb9190613b02565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b1b576000816000905550600101613b03565b5090565b6000613b32613b2d8461467e565b614659565b905082815260208101848484011115613b4a57600080fd5b613b558482856148cb565b509392505050565b6000613b70613b6b846146af565b614659565b905082815260208101848484011115613b8857600080fd5b613b938482856148cb565b509392505050565b600081359050613baa81614e5c565b92915050565b60008083601f840112613bc257600080fd5b8235905067ffffffffffffffff811115613bdb57600080fd5b602083019150836020820283011115613bf357600080fd5b9250929050565b600081359050613c0981614e73565b92915050565b600081359050613c1e81614e8a565b92915050565b600081359050613c3381614ea1565b92915050565b600081519050613c4881614ea1565b92915050565b600082601f830112613c5f57600080fd5b8135613c6f848260208601613b1f565b91505092915050565b600082601f830112613c8957600080fd5b8135613c99848260208601613b5d565b91505092915050565b600081359050613cb181614eb8565b92915050565b600060208284031215613cc957600080fd5b6000613cd784828501613b9b565b91505092915050565b60008060408385031215613cf357600080fd5b6000613d0185828601613b9b565b9250506020613d1285828601613b9b565b9150509250929050565b600080600060608486031215613d3157600080fd5b6000613d3f86828701613b9b565b9350506020613d5086828701613b9b565b9250506040613d6186828701613ca2565b9150509250925092565b60008060008060808587031215613d8157600080fd5b6000613d8f87828801613b9b565b9450506020613da087828801613b9b565b9350506040613db187828801613ca2565b925050606085013567ffffffffffffffff811115613dce57600080fd5b613dda87828801613c4e565b91505092959194509250565b60008060408385031215613df957600080fd5b6000613e0785828601613b9b565b9250506020613e1885828601613bfa565b9150509250929050565b60008060408385031215613e3557600080fd5b6000613e4385828601613b9b565b9250506020613e5485828601613ca2565b9150509250929050565b600080600060408486031215613e7357600080fd5b600084013567ffffffffffffffff811115613e8d57600080fd5b613e9986828701613bb0565b93509350506020613eac86828701613ca2565b9150509250925092565b600060208284031215613ec857600080fd5b6000613ed684828501613c0f565b91505092915050565b600060208284031215613ef157600080fd5b6000613eff84828501613c24565b91505092915050565b600060208284031215613f1a57600080fd5b6000613f2884828501613c39565b91505092915050565b600060208284031215613f4357600080fd5b600082013567ffffffffffffffff811115613f5d57600080fd5b613f6984828501613c78565b91505092915050565b600060208284031215613f8457600080fd5b6000613f9284828501613ca2565b91505092915050565b613fa48161484d565b82525050565b613fbb613fb68261484d565b6149b9565b82525050565b613fca8161485f565b82525050565b613fd98161486b565b82525050565b6000613fea826146f5565b613ff4818561470b565b93506140048185602086016148da565b61400d81614aca565b840191505092915050565b600061402382614700565b61402d818561471c565b935061403d8185602086016148da565b61404681614aca565b840191505092915050565b600061405c82614700565b614066818561472d565b93506140768185602086016148da565b80840191505092915050565b6000815461408f8161490d565b614099818661472d565b945060018216600081146140b457600181146140c5576140f8565b60ff198316865281860193506140f8565b6140ce856146e0565b60005b838110156140f0578154818901526001820191506020810190506140d1565b838801955050505b50505092915050565b600061410e60188361471c565b915061411982614ae8565b602082019050919050565b6000614131601e8361471c565b915061413c82614b11565b602082019050919050565b600061415460268361471c565b915061415f82614b3a565b604082019050919050565b600061417760318361471c565b915061418282614b89565b604082019050919050565b600061419a60148361471c565b91506141a582614bd8565b602082019050919050565b60006141bd601a8361471c565b91506141c882614c01565b602082019050919050565b60006141e0601f8361471c565b91506141eb82614c2a565b602082019050919050565b6000614203601c8361471c565b915061420e82614c53565b602082019050919050565b6000614226601f8361471c565b915061423182614c7c565b602082019050919050565b600061424960228361471c565b915061425482614ca5565b604082019050919050565b600061426c60368361471c565b915061427782614cf4565b604082019050919050565b600061428f60208361471c565b915061429a82614d43565b602082019050919050565b60006142b260158361471c565b91506142bd82614d6c565b602082019050919050565b60006142d5602f8361471c565b91506142e082614d95565b604082019050919050565b60006142f860268361471c565b915061430382614de4565b604082019050919050565b600061431b601f8361471c565b915061432682614e33565b602082019050919050565b61433a816148c1565b82525050565b600061434c8284613faa565b60148201915081905092915050565b60006143678285614082565b91506143738284614051565b91508190509392505050565b60006020820190506143946000830184613f9b565b92915050565b60006080820190506143af6000830187613f9b565b6143bc6020830186613f9b565b6143c96040830185614331565b81810360608301526143db8184613fdf565b905095945050505050565b60006020820190506143fb6000830184613fc1565b92915050565b60006020820190506144166000830184613fd0565b92915050565b600060208201905081810360008301526144368184614018565b905092915050565b6000602082019050818103600083015261445781614101565b9050919050565b6000602082019050818103600083015261447781614124565b9050919050565b6000602082019050818103600083015261449781614147565b9050919050565b600060208201905081810360008301526144b78161416a565b9050919050565b600060208201905081810360008301526144d78161418d565b9050919050565b600060208201905081810360008301526144f7816141b0565b9050919050565b60006020820190508181036000830152614517816141d3565b9050919050565b60006020820190508181036000830152614537816141f6565b9050919050565b6000602082019050818103600083015261455781614219565b9050919050565b600060208201905081810360008301526145778161423c565b9050919050565b600060208201905081810360008301526145978161425f565b9050919050565b600060208201905081810360008301526145b781614282565b9050919050565b600060208201905081810360008301526145d7816142a5565b9050919050565b600060208201905081810360008301526145f7816142c8565b9050919050565b60006020820190508181036000830152614617816142eb565b9050919050565b600060208201905081810360008301526146378161430e565b9050919050565b60006020820190506146536000830184614331565b92915050565b6000614663614674565b905061466f828261493f565b919050565b6000604051905090565b600067ffffffffffffffff82111561469957614698614a9b565b5b6146a282614aca565b9050602081019050919050565b600067ffffffffffffffff8211156146ca576146c9614a9b565b5b6146d382614aca565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614743826148c1565b915061474e836148c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478357614782614a0e565b5b828201905092915050565b6000614799826148c1565b91506147a4836148c1565b9250826147b4576147b3614a3d565b5b828204905092915050565b60006147ca826148c1565b91506147d5836148c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480e5761480d614a0e565b5b828202905092915050565b6000614824826148c1565b915061482f836148c1565b92508282101561484257614841614a0e565b5b828203905092915050565b6000614858826148a1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148f85780820151818401526020810190506148dd565b83811115614907576000848401525b50505050565b6000600282049050600182168061492557607f821691505b6020821081141561493957614938614a6c565b5b50919050565b61494882614aca565b810181811067ffffffffffffffff8211171561496757614966614a9b565b5b80604052505050565b600061497b826148c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ae576149ad614a0e565b5b600182019050919050565b60006149c4826149cb565b9050919050565b60006149d682614adb565b9050919050565b60006149e8826148c1565b91506149f3836148c1565b925082614a0357614a02614a3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f727265637420457468657220737570706c6965640000000000000000600082015250565b7f526573657276656420746f6b656e7320616c7265616479206d696e7465640000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c6420657863656564206d6178206d696e74696e6760008201527f20666f7220746869732061646472657373000000000000000000000000000000602082015250565b7f696e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f57686974656c697374206d696e74696e67206973206e6f742061637469766500600082015250565b7f47656e6573697320746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f47656e6573697320746f6b656e206d757374206265206d696e7465642066697260008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206e6f74206163746976652060008201527f286d6572636b6c6520726f6f74206e6f74207365742900000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f537570706c79206973206c6f636b656420616e642063616e6e6f74206265207560008201527f7064617465640000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614e658161484d565b8114614e7057600080fd5b50565b614e7c8161485f565b8114614e8757600080fd5b50565b614e938161486b565b8114614e9e57600080fd5b50565b614eaa81614875565b8114614eb557600080fd5b50565b614ec1816148c1565b8114614ecc57600080fd5b5056fea2646970667358221220d9de536b5410418f570577132d4d1be60b61501773d6711060a57d97da26086764736f6c63430008040033

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.