ETH Price: $3,255.19 (+3.20%)
Gas: 3 Gwei

Token

Xoasis (XOASIS)
 

Overview

Max Total Supply

3,049 XOASIS

Holders

626

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 XOASIS
0xFF7A04BC252b9eC17e0A6F479E2C465e020aB3f6
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:
Xoasis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Xoasis.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

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

contract Xoasis is ERC721A, Ownable {
  using Strings for uint256;
  string public baseURI;

  bool public preSaleOpen = false;
  bool public publicSaleOpen = false;
  bool public revealed = false;

  uint256 public maxSupplyAmount = 11111;
  uint256 public preSalePrice = 0.18 ether;
  uint256 public publicSalePrice = 0.2 ether;

  uint8 public maxPreSaleMint = 1;
  uint8 public maxPublicSaleMint = 5;

  address public signer;

  //pre sale minted
  mapping (address => bool) private preSaleMinted;

  //public sale minted
  mapping (address => uint256) private publicSaleMinted;

  //LAUNCHPAD
  uint256 public LAUNCH_MAX_SUPPLY;    // max launch supply
  uint256 public LAUNCH_SUPPLY;        // current launch supply

  address public LAUNCHPAD;

  modifier onlyLaunchpad() {
      require(LAUNCHPAD != address(0), "launchpad address must set");
      require(msg.sender == LAUNCHPAD, "must call by launchpad");
      _;
  }

  function getMaxLaunchpadSupply() view public returns (uint256) {
      return LAUNCH_MAX_SUPPLY;
  }

  function getLaunchpadSupply() view public returns (uint256) {
      return LAUNCH_SUPPLY;
  }

  constructor(
    string memory baseURI_,
    address signer_, 
    address launchpad, 
    uint256 maxSupply
  ) ERC721A("Xoasis", "XOASIS", 500, 11111) {
    baseURI = baseURI_;
    signer = signer_;
    LAUNCHPAD = launchpad;
    LAUNCH_MAX_SUPPLY = maxSupply;
  }

  modifier contractVerify() {
    require(tx.origin == msg.sender, "THE CALLER CANT BE A CONTRACT");
    _;
  }

  //mint
  function preSaleMint(bytes memory signature) external payable contractVerify {
    require(preSaleOpen, "XOASIS PRE SALE HAS NOT OPEN YET");
    require(!isPreMinted(msg.sender), "SORRY, ONLY ONE CHANCE");
    require(totalSupply() + maxPreSaleMint <= maxSupplyAmount, "REACHED MAX SUPPLY AMOUNT");
    require(signer == signatureWallet(msg.sender, signature), "NOT AUTHORIZED TO PRE SALE MINT");
    require(msg.value >= maxPreSaleMint * preSalePrice, "INSUFFICIENT ETH AMOUNT");
    if (msg.value > maxPreSaleMint * preSalePrice) {
      payable(msg.sender).transfer(msg.value - maxPreSaleMint * preSalePrice);
    }
    preSaleMinted[msg.sender] = true;
    _safeMint(msg.sender, maxPreSaleMint);
  }

  function signatureWallet (address sender, bytes memory signature) private pure returns (address){
      bytes32 hash = keccak256(
        abi.encodePacked(
        "\x19Ethereum Signed Message:\n32",
        keccak256(abi.encodePacked(sender))
        )
      );
      return ECDSA.recover(hash, signature);
  }

  function publicSaleMint(uint256 amount) external payable contractVerify {
    require(publicSaleOpen, "XOASIS PUBLIC SALE HAS NOT OPEN YET");
    require(amount <= maxPublicSaleMint, "EXCEEDS MAX PUBLIC SALE MINT");
    require(totalSupply() + amount <= maxSupplyAmount, "REACHED MAX SUPPLY AMOUNT");
    uint256 mintedAmount = publicAmountMinted(msg.sender);
    require(mintedAmount + amount <= maxPublicSaleMint, "EXCEEDS MAX PUBLIC SALE MINT");
    require(msg.value >= amount * publicSalePrice, "INSUFFICIENT ETH AMOUNT");
    if (msg.value > amount * publicSalePrice) {
      payable(msg.sender).transfer(msg.value - amount * publicSalePrice);
    }
    publicSaleMinted[msg.sender] = mintedAmount + amount;
    _safeMint(msg.sender, amount);
  }

  function giftMint(address xer, uint256 amount) external onlyOwner {
    require(amount > 0, "GIFT AT LEAST ONE");
    require(amount + totalSupply() <= maxSupplyAmount, "REACHED MAX SUPPLY AMOUNT");
    _safeMint(xer, amount);
  }

  //read
  function isPreMinted(address owner) public view returns (bool) {
    require(owner != address(0), "ERC721A: number minted query for the zero address");
    return preSaleMinted[owner];
  }

  function publicAmountMinted(address owner) public view returns (uint256) {
    require(owner != address(0), "ERC721A: number minted query for the zero address");
    return publicSaleMinted[owner];
  }

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

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    
    return revealed ? string(abi.encodePacked(baseURI, '/', Strings.toString(tokenId), ".json")) : baseURI;
  }

  //setting
  function togglePreSale() external onlyOwner {
    preSaleOpen = !preSaleOpen;
  }

  function togglePublicSale() external onlyOwner {
    publicSaleOpen = !publicSaleOpen;
  }

  function toggleRevealed() external onlyOwner {
    revealed = !revealed;
  }

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

  function setPreSalePrice(uint256 newPreSalePrice) external onlyOwner {
    preSalePrice = newPreSalePrice;
  }

  function setPublicSalePrice(uint256 newPublicSalePrice) external onlyOwner {
    publicSalePrice = newPublicSalePrice;
  }

  function setSigner(address newSigner) external onlyOwner {
    signer = newSigner;
  }

  //withdraw
  address private wallet1 = 0xC6578bF58AFBEE73267807ff8C5065B869f3394A;
  address private wallet2 = 0xfe35028A0AAad06029185E15849a9c5CA78E8478;

  function withdraw() external onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0, "NOT ENOUTH BALANCE TO WITHDRAW");

    (bool success1, ) = payable(wallet1).call{value: balance / 2}("");
    require(success1, "Failed to withdraw to wallet1");

    (bool success2, ) = payable(wallet2).call{value: balance / 2}("");
    require(success2, "Failed to withdraw to wallet2");
  }

  function mintTo(address to, uint size) external onlyLaunchpad {
    require(to != address(0), "can't mint to empty address");
    require(size > 0, "size must greater than zero");
    require(LAUNCH_SUPPLY + size <= LAUNCH_MAX_SUPPLY, "max supply reached");

    require(size + totalSupply() <= maxSupplyAmount, "REACHED MAX SUPPLY AMOUNT");

    _safeMint(to, size);
    LAUNCH_SUPPLY = LAUNCH_SUPPLY + size;
  }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

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

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

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

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 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"signer_","type":"address"},{"internalType":"address","name":"launchpad","type":"address"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LAUNCHPAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAUNCH_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAUNCH_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLaunchpadSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxLaunchpadSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"xer","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"isPreMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSaleMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"size","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPreSalePrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000808055600755600a805462ffffff19169055612b67600b5567027f7d0bdb920000600c556702c68af0bb140000600d55600e805461ffff19166105011790556014805473c6578bf58afbee73267807ff8c5065b869f3394a6001600160a01b0319918216179091556015805473fe35028a0aaad06029185e15849a9c5ca78e847892169190911790553480156200009c57600080fd5b50604051620039c0380380620039c0833981016040819052620000bf9162000386565b60405180604001604052806006815260200165586f6173697360d01b81525060405180604001604052806006815260200165584f4153495360d01b8152506101f4612b6760008111620001705760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001d25760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000167565b8351620001e7906001906020870190620002c3565b508251620001fd906002906020860190620002c3565b5060a091909152608052506200021590503362000271565b83516200022a906009906020870190620002c3565b50600e805462010000600160b01b031916620100006001600160a01b0395861602179055601380546001600160a01b031916929093169190911790915560115550620004e4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002d19062000491565b90600052602060002090601f016020900481019282620002f5576000855562000340565b82601f106200031057805160ff191683800117855562000340565b8280016001018555821562000340579182015b828111156200034057825182559160200191906001019062000323565b506200034e92915062000352565b5090565b5b808211156200034e576000815560010162000353565b80516001600160a01b03811681146200038157600080fd5b919050565b600080600080608085870312156200039d57600080fd5b84516001600160401b0380821115620003b557600080fd5b818701915087601f830112620003ca57600080fd5b815181811115620003df57620003df620004ce565b604051601f8201601f19908116603f011681019083821181831017156200040a576200040a620004ce565b81604052828152602093508a848487010111156200042757600080fd5b600091505b828210156200044b57848201840151818301850152908301906200042c565b828211156200045d5760008484830101525b97506200046f91505087820162000369565b94505050620004816040860162000369565b6060959095015193969295505050565b600181811c90821680620004a657607f821691505b60208210811415620004c857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a0516134ab62000515600039600081816121f10152818161221b01526127170152600050506134ab6000f3fe6080604052600436106102c95760003560e01c8063715018a611610175578063c111fb91116100dc578063e757c17d11610095578063f2fde38b1161006f578063f2fde38b14610841578063f9e2379914610861578063fb1ace1814610880578063ff397d8d1461089657600080fd5b8063e757c17d146107cd578063e985e9c5146107e3578063eebb28b21461082c57600080fd5b8063c111fb911461073a578063c87b56dd1461074d578063ca3cb5221461076d578063d7224ba014610782578063dc33e68114610798578063e222c7f9146107b857600080fd5b8063a0d1685c1161012e578063a0d1685c146106a1578063a22cb465146106b7578063b0dc4efc146106d7578063b3ab66b0146106ed578063b88d4fde14610700578063ba11ecde1461072057600080fd5b8063715018a614610603578063791a2519146106185780637d7eee42146106385780638da5cb5b1461065857806395d89b41146106765780639b6860c81461068b57600080fd5b806345bf9b15116102345780635bc020bc116101ed5780636c0360eb116101c75780636c0360eb1461058f5780636c19e783146105a4578063704e3d9d146105c457806370a08231146105e357600080fd5b80635bc020bc1461052e5780636352211e1461054357806364c22f131461056357600080fd5b806345bf9b15146104795780634f6ccce71461049957806351431d4f146104b957806351830227146104d957806355f804b3146104f95780635b43bba11461051957600080fd5b806323b872dd1161028657806323b872dd146103c45780632f745c59146103e457806336967445146104045780633ccfd60b1461042457806342842e0e14610439578063449a52f81461045957600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d57806318160ddd1461037f578063238ac9331461039e575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612f4b565b6108b6565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610923565b6040516102fa919061316c565b34801561033157600080fd5b50610345610340366004613003565b6109b5565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612f21565b610a45565b005b34801561038b57600080fd5b506000545b6040519081526020016102fa565b3480156103aa57600080fd5b50600e54610345906201000090046001600160a01b031681565b3480156103d057600080fd5b5061037d6103df366004612e41565b610b5d565b3480156103f057600080fd5b506103906103ff366004612f21565b610b68565b34801561041057600080fd5b506102ee61041f366004612df3565b610cd6565b34801561043057600080fd5b5061037d610d1d565b34801561044557600080fd5b5061037d610454366004612e41565b610eed565b34801561046557600080fd5b5061037d610474366004612f21565b610f08565b34801561048557600080fd5b5061037d610494366004612f21565b6110fa565b3480156104a557600080fd5b506103906104b4366004613003565b6111a4565b3480156104c557600080fd5b50601354610345906001600160a01b031681565b3480156104e557600080fd5b50600a546102ee9062010000900460ff1681565b34801561050557600080fd5b5061037d610514366004612fba565b611206565b34801561052557600080fd5b50601154610390565b34801561053a57600080fd5b5061037d611243565b34801561054f57600080fd5b5061034561055e366004613003565b61128c565b34801561056f57600080fd5b50600e5461057d9060ff1681565b60405160ff90911681526020016102fa565b34801561059b57600080fd5b5061031861129e565b3480156105b057600080fd5b5061037d6105bf366004612df3565b61132c565b3480156105d057600080fd5b50600e5461057d90610100900460ff1681565b3480156105ef57600080fd5b506103906105fe366004612df3565b611380565b34801561060f57600080fd5b5061037d611411565b34801561062457600080fd5b5061037d610633366004613003565b611447565b34801561064457600080fd5b5061037d610653366004613003565b611476565b34801561066457600080fd5b506008546001600160a01b0316610345565b34801561068257600080fd5b506103186114a5565b34801561069757600080fd5b50610390600d5481565b3480156106ad57600080fd5b5061039060115481565b3480156106c357600080fd5b5061037d6106d2366004612ee5565b6114b4565b3480156106e357600080fd5b50610390600b5481565b61037d6106fb366004613003565b611579565b34801561070c57600080fd5b5061037d61071b366004612e7d565b611803565b34801561072c57600080fd5b50600a546102ee9060ff1681565b61037d610748366004612f85565b61183c565b34801561075957600080fd5b50610318610768366004613003565b611ac3565b34801561077957600080fd5b5061037d611c05565b34801561078e57600080fd5b5061039060075481565b3480156107a457600080fd5b506103906107b3366004612df3565b611c43565b3480156107c457600080fd5b5061037d611c4e565b3480156107d957600080fd5b50610390600c5481565b3480156107ef57600080fd5b506102ee6107fe366004612e0e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561083857600080fd5b50601254610390565b34801561084d57600080fd5b5061037d61085c366004612df3565b611c95565b34801561086d57600080fd5b50600a546102ee90610100900460ff1681565b34801561088c57600080fd5b5061039060125481565b3480156108a257600080fd5b506103906108b1366004612df3565b611d2d565b60006001600160e01b031982166380ac58cd60e01b14806108e757506001600160e01b03198216635b5e139f60e01b145b8061090257506001600160e01b0319821663780e9d6360e01b145b8061091d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461093290613387565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613387565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c2826000541190565b610a295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a508261128c565b9050806001600160a01b0316836001600160a01b03161415610abf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a20565b336001600160a01b0382161480610adb5750610adb81336107fe565b610b4d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a20565b610b58838383611d71565b505050565b610b58838383611dcd565b6000610b7383611380565b8210610bcc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a20565b600080549080805b83811015610c76576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c2757805192505b876001600160a01b0316836001600160a01b03161415610c635786841415610c555750935061091d92505050565b83610c5f816133c2565b9450505b5080610c6e816133c2565b915050610bd4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a20565b60006001600160a01b038216610cfe5760405162461bcd60e51b8152600401610a20906131b6565b506001600160a01b03166000908152600f602052604090205460ff1690565b6008546001600160a01b03163314610d475760405162461bcd60e51b8152600401610a2090613207565b4780610d955760405162461bcd60e51b815260206004820152601e60248201527f4e4f5420454e4f5554482042414c414e434520544f20574954484452415700006044820152606401610a20565b6014546000906001600160a01b0316610daf6002846132d2565b604051600081818185875af1925050503d8060008114610deb576040519150601f19603f3d011682016040523d82523d6000602084013e610df0565b606091505b5050905080610e415760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f20776974686472617720746f2077616c6c6574310000006044820152606401610a20565b6015546000906001600160a01b0316610e5b6002856132d2565b604051600081818185875af1925050503d8060008114610e97576040519150601f19603f3d011682016040523d82523d6000602084013e610e9c565b606091505b5050905080610b585760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f20776974686472617720746f2077616c6c6574320000006044820152606401610a20565b610b5883838360405180602001604052806000815250611803565b6013546001600160a01b0316610f605760405162461bcd60e51b815260206004820152601a60248201527f6c61756e63687061642061646472657373206d757374207365740000000000006044820152606401610a20565b6013546001600160a01b03163314610fb35760405162461bcd60e51b81526020600482015260166024820152751b5d5cdd0818d85b1b08189e481b185d5b98da1c185960521b6044820152606401610a20565b6001600160a01b0382166110095760405162461bcd60e51b815260206004820152601b60248201527f63616e2774206d696e7420746f20656d707479206164647265737300000000006044820152606401610a20565b600081116110595760405162461bcd60e51b815260206004820152601b60248201527f73697a65206d7573742067726561746572207468616e207a65726f00000000006044820152606401610a20565b6011548160125461106a91906132ba565b11156110ad5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610a20565b600b546000546110bd90836132ba565b11156110db5760405162461bcd60e51b8152600401610a209061317f565b6110e58282612155565b806012546110f391906132ba565b6012555050565b6008546001600160a01b031633146111245760405162461bcd60e51b8152600401610a2090613207565b600081116111685760405162461bcd60e51b815260206004820152601160248201527047494654204154204c45415354204f4e4560781b6044820152606401610a20565b600b5460005461117890836132ba565b11156111965760405162461bcd60e51b8152600401610a209061317f565b6111a08282612155565b5050565b6000805482106112025760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a20565b5090565b6008546001600160a01b031633146112305760405162461bcd60e51b8152600401610a2090613207565b80516111a0906009906020840190612caa565b6008546001600160a01b0316331461126d5760405162461bcd60e51b8152600401610a2090613207565b600a805462ff0000198116620100009182900460ff1615909102179055565b60006112978261216f565b5192915050565b600980546112ab90613387565b80601f01602080910402602001604051908101604052809291908181526020018280546112d790613387565b80156113245780601f106112f957610100808354040283529160200191611324565b820191906000526020600020905b81548152906001019060200180831161130757829003601f168201915b505050505081565b6008546001600160a01b031633146113565760405162461bcd60e51b8152600401610a2090613207565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60006001600160a01b0382166113ec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a20565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461143b5760405162461bcd60e51b8152600401610a2090613207565b6114456000612319565b565b6008546001600160a01b031633146114715760405162461bcd60e51b8152600401610a2090613207565b600d55565b6008546001600160a01b031633146114a05760405162461bcd60e51b8152600401610a2090613207565b600c55565b60606002805461093290613387565b6001600160a01b03821633141561150d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a20565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146115c85760405162461bcd60e51b815260206004820152601d60248201527f5448452043414c4c45522043414e54204245204120434f4e54524143540000006044820152606401610a20565b600a54610100900460ff1661162b5760405162461bcd60e51b815260206004820152602360248201527f584f41534953205055424c49432053414c4520484153204e4f54204f50454e2060448201526216515560ea1b6064820152608401610a20565b600e54610100900460ff168111156116855760405162461bcd60e51b815260206004820152601c60248201527f45584345454453204d4158205055424c49432053414c45204d494e54000000006044820152606401610a20565b600b548161169260005490565b61169c91906132ba565b11156116ba5760405162461bcd60e51b8152600401610a209061317f565b60006116c533611d2d565b600e54909150610100900460ff166116dd83836132ba565b111561172b5760405162461bcd60e51b815260206004820152601c60248201527f45584345454453204d4158205055424c49432053414c45204d494e54000000006044820152606401610a20565b600d5461173890836132e6565b3410156117815760405162461bcd60e51b8152602060048201526017602482015276125394d551919250d25153950811551208105353d55395604a1b6044820152606401610a20565b600d5461178e90836132e6565b3411156117dc57600d5433906108fc906117a890856132e6565b6117b2903461332d565b6040518115909202916000818181858888f193505050501580156117da573d6000803e3d6000fd5b505b6117e682826132ba565b336000818152601060205260409020919091556111a09083612155565b61180e848484611dcd565b61181a8484848461236b565b6118365760405162461bcd60e51b8152600401610a209061323c565b50505050565b32331461188b5760405162461bcd60e51b815260206004820152601d60248201527f5448452043414c4c45522043414e54204245204120434f4e54524143540000006044820152606401610a20565b600a5460ff166118dd5760405162461bcd60e51b815260206004820181905260248201527f584f41534953205052452053414c4520484153204e4f54204f50454e205945546044820152606401610a20565b6118e633610cd6565b1561192c5760405162461bcd60e51b8152602060048201526016602482015275534f5252592c204f4e4c59204f4e45204348414e434560501b6044820152606401610a20565b600b54600e5460ff1661193e60005490565b61194891906132ba565b11156119665760405162461bcd60e51b8152600401610a209061317f565b6119703382612479565b600e546201000090046001600160a01b039081169116146119d35760405162461bcd60e51b815260206004820152601f60248201527f4e4f5420415554484f52495a454420544f205052452053414c45204d494e54006044820152606401610a20565b600c54600e546119e6919060ff166132e6565b341015611a2f5760405162461bcd60e51b8152602060048201526017602482015276125394d551919250d25153950811551208105353d55395604a1b6044820152606401610a20565b600c54600e54611a42919060ff166132e6565b341115611a9657600c54600e5433916108fc91611a62919060ff166132e6565b611a6c903461332d565b6040518115909202916000818181858888f19350505050158015611a94573d6000803e3d6000fd5b505b336000818152600f60205260409020805460ff19166001179055600e54611ac0919060ff16612155565b50565b6060611ad0826000541190565b611b345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a20565b600a5462010000900460ff16611bd45760098054611b5190613387565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7d90613387565b8015611bca5780601f10611b9f57610100808354040283529160200191611bca565b820191906000526020600020905b815481529060010190602001808311611bad57829003601f168201915b505050505061091d565b6009611bdf83612508565b604051602001611bf0929190613064565b60405160208183030381529060405292915050565b6008546001600160a01b03163314611c2f5760405162461bcd60e51b8152600401610a2090613207565b600a805460ff19811660ff90911615179055565b600061091d82612606565b6008546001600160a01b03163314611c785760405162461bcd60e51b8152600401610a2090613207565b600a805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314611cbf5760405162461bcd60e51b8152600401610a2090613207565b6001600160a01b038116611d245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a20565b611ac081612319565b60006001600160a01b038216611d555760405162461bcd60e51b8152600401610a20906131b6565b506001600160a01b031660009081526010602052604090205490565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611dd88261216f565b80519091506000906001600160a01b0316336001600160a01b03161480611e0f575033611e04846109b5565b6001600160a01b0316145b80611e2157508151611e2190336107fe565b905080611e8b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a20565b846001600160a01b031682600001516001600160a01b031614611eff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a20565b6001600160a01b038416611f635760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a20565b611f736000848460000151611d71565b6001600160a01b0385166000908152600460205260408120805460019290611fa59084906001600160801b0316613305565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ff19185911661328f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556120798460016132ba565b6000818152600360205260409020549091506001600160a01b031661210b576120a3816000541190565b1561210b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111a082826040518060200160405280600081525061265a565b604080518082019091526000808252602082015261218e826000541190565b6121ed5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a20565b60007f0000000000000000000000000000000000000000000000000000000000000000831061224e576122407f00000000000000000000000000000000000000000000000000000000000000008461332d565b61224b9060016132ba565b90505b825b8181106122b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156122a557949350505050565b50806122b081613370565b915050612250565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a20565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561246d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123af90339089908890889060040161312f565b602060405180830381600087803b1580156123c957600080fd5b505af19250505080156123f9575060408051601f3d908101601f191682019092526123f691810190612f68565b60015b612453573d808015612427576040519150601f19603f3d011682016040523d82523d6000602084013e61242c565b606091505b50805161244b5760405162461bcd60e51b8152600401610a209061323c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612471565b5060015b949350505050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c016040516020818303038152906040528051906020012090506124718184612935565b60608161252c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125565780612540816133c2565b915061254f9050600a836132d2565b9150612530565b60008167ffffffffffffffff81111561257157612571613449565b6040519080825280601f01601f19166020018201604052801561259b576020820181803683370190505b5090505b8415612471576125b060018361332d565b91506125bd600a866133dd565b6125c89060306132ba565b60f81b8183815181106125dd576125dd613433565b60200101906001600160f81b031916908160001a9053506125ff600a866132d2565b945061259f565b60006001600160a01b03821661262e5760405162461bcd60e51b8152600401610a20906131b6565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166126bd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a20565b6126c8816000541190565b156127155760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a20565b7f00000000000000000000000000000000000000000000000000000000000000008311156127905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a20565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127ec90879061328f565b6001600160801b0316815260200185836020015161280a919061328f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561292a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128ee600088848861236b565b61290a5760405162461bcd60e51b8152600401610a209061323c565b81612914816133c2565b9250508080612922906133c2565b9150506128a1565b50600081905561214d565b60008060006129448585612959565b91509150612951816129c9565b509392505050565b6000808251604114156129905760208301516040840151606085015160001a61298487828585612b84565b945094505050506129c2565b8251604014156129ba57602083015160408401516129af868383612c71565b9350935050506129c2565b506000905060025b9250929050565b60008160048111156129dd576129dd61341d565b14156129e65750565b60018160048111156129fa576129fa61341d565b1415612a485760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a20565b6002816004811115612a5c57612a5c61341d565b1415612aaa5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a20565b6003816004811115612abe57612abe61341d565b1415612b175760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a20565b6004816004811115612b2b57612b2b61341d565b1415611ac05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a20565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612bbb5750600090506003612c68565b8460ff16601b14158015612bd357508460ff16601c14155b15612be45750600090506004612c68565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c38573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c6157600060019250925050612c68565b9150600090505b94509492505050565b6000806001600160ff1b03831681612c8e60ff86901c601b6132ba565b9050612c9c87828885612b84565b935093505050935093915050565b828054612cb690613387565b90600052602060002090601f016020900481019282612cd85760008555612d1e565b82601f10612cf157805160ff1916838001178555612d1e565b82800160010185558215612d1e579182015b82811115612d1e578251825591602001919060010190612d03565b506112029291505b808211156112025760008155600101612d26565b600067ffffffffffffffff80841115612d5557612d55613449565b604051601f8501601f19908116603f01168101908282118183101715612d7d57612d7d613449565b81604052809350858152868686011115612d9657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612dc757600080fd5b919050565b600082601f830112612ddd57600080fd5b612dec83833560208501612d3a565b9392505050565b600060208284031215612e0557600080fd5b612dec82612db0565b60008060408385031215612e2157600080fd5b612e2a83612db0565b9150612e3860208401612db0565b90509250929050565b600080600060608486031215612e5657600080fd5b612e5f84612db0565b9250612e6d60208501612db0565b9150604084013590509250925092565b60008060008060808587031215612e9357600080fd5b612e9c85612db0565b9350612eaa60208601612db0565b925060408501359150606085013567ffffffffffffffff811115612ecd57600080fd5b612ed987828801612dcc565b91505092959194509250565b60008060408385031215612ef857600080fd5b612f0183612db0565b915060208301358015158114612f1657600080fd5b809150509250929050565b60008060408385031215612f3457600080fd5b612f3d83612db0565b946020939093013593505050565b600060208284031215612f5d57600080fd5b8135612dec8161345f565b600060208284031215612f7a57600080fd5b8151612dec8161345f565b600060208284031215612f9757600080fd5b813567ffffffffffffffff811115612fae57600080fd5b61247184828501612dcc565b600060208284031215612fcc57600080fd5b813567ffffffffffffffff811115612fe357600080fd5b8201601f81018413612ff457600080fd5b61247184823560208401612d3a565b60006020828403121561301557600080fd5b5035919050565b60008151808452613034816020860160208601613344565b601f01601f19169290920160200192915050565b6000815161305a818560208601613344565b9290920192915050565b600080845481600182811c91508083168061308057607f831692505b60208084108214156130a057634e487b7160e01b86526022600452602486fd5b8180156130b457600181146130c5576130f2565b60ff198616895284890196506130f2565b60008b81526020902060005b868110156130ea5781548b8201529085019083016130d1565b505084890196505b50505050505061312661311561310f83602f60f81b815260010190565b86613048565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131629083018461301c565b9695505050505050565b602081526000612dec602083018461301c565b60208082526019908201527f52454143484544204d415820535550504c5920414d4f554e5400000000000000604082015260600190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156132b1576132b16133f1565b01949350505050565b600082198211156132cd576132cd6133f1565b500190565b6000826132e1576132e1613407565b500490565b6000816000190483118215151615613300576133006133f1565b500290565b60006001600160801b0383811690831681811015613325576133256133f1565b039392505050565b60008282101561333f5761333f6133f1565b500390565b60005b8381101561335f578181015183820152602001613347565b838111156118365750506000910152565b60008161337f5761337f6133f1565b506000190190565b600181811c9082168061339b57607f821691505b602082108114156133bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133d6576133d66133f1565b5060010190565b6000826133ec576133ec613407565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ac057600080fdfea2646970667358221220a5e1b345bfd431910ab08093060be4455ed66f6700a59d360164bb50b21cccc464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000080000000000000000000000000eafb2019a8e7ddfb52763d6b0d49f53983bc0764000000000000000000000000e832f3a1b181fcbeb83388fe01c97948147e9f0c00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d576e62666962546a776550447a3270413851656b354a78594a514d6b64694b573275576d33636d473656345900000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063715018a611610175578063c111fb91116100dc578063e757c17d11610095578063f2fde38b1161006f578063f2fde38b14610841578063f9e2379914610861578063fb1ace1814610880578063ff397d8d1461089657600080fd5b8063e757c17d146107cd578063e985e9c5146107e3578063eebb28b21461082c57600080fd5b8063c111fb911461073a578063c87b56dd1461074d578063ca3cb5221461076d578063d7224ba014610782578063dc33e68114610798578063e222c7f9146107b857600080fd5b8063a0d1685c1161012e578063a0d1685c146106a1578063a22cb465146106b7578063b0dc4efc146106d7578063b3ab66b0146106ed578063b88d4fde14610700578063ba11ecde1461072057600080fd5b8063715018a614610603578063791a2519146106185780637d7eee42146106385780638da5cb5b1461065857806395d89b41146106765780639b6860c81461068b57600080fd5b806345bf9b15116102345780635bc020bc116101ed5780636c0360eb116101c75780636c0360eb1461058f5780636c19e783146105a4578063704e3d9d146105c457806370a08231146105e357600080fd5b80635bc020bc1461052e5780636352211e1461054357806364c22f131461056357600080fd5b806345bf9b15146104795780634f6ccce71461049957806351431d4f146104b957806351830227146104d957806355f804b3146104f95780635b43bba11461051957600080fd5b806323b872dd1161028657806323b872dd146103c45780632f745c59146103e457806336967445146104045780633ccfd60b1461042457806342842e0e14610439578063449a52f81461045957600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d57806318160ddd1461037f578063238ac9331461039e575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612f4b565b6108b6565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610923565b6040516102fa919061316c565b34801561033157600080fd5b50610345610340366004613003565b6109b5565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612f21565b610a45565b005b34801561038b57600080fd5b506000545b6040519081526020016102fa565b3480156103aa57600080fd5b50600e54610345906201000090046001600160a01b031681565b3480156103d057600080fd5b5061037d6103df366004612e41565b610b5d565b3480156103f057600080fd5b506103906103ff366004612f21565b610b68565b34801561041057600080fd5b506102ee61041f366004612df3565b610cd6565b34801561043057600080fd5b5061037d610d1d565b34801561044557600080fd5b5061037d610454366004612e41565b610eed565b34801561046557600080fd5b5061037d610474366004612f21565b610f08565b34801561048557600080fd5b5061037d610494366004612f21565b6110fa565b3480156104a557600080fd5b506103906104b4366004613003565b6111a4565b3480156104c557600080fd5b50601354610345906001600160a01b031681565b3480156104e557600080fd5b50600a546102ee9062010000900460ff1681565b34801561050557600080fd5b5061037d610514366004612fba565b611206565b34801561052557600080fd5b50601154610390565b34801561053a57600080fd5b5061037d611243565b34801561054f57600080fd5b5061034561055e366004613003565b61128c565b34801561056f57600080fd5b50600e5461057d9060ff1681565b60405160ff90911681526020016102fa565b34801561059b57600080fd5b5061031861129e565b3480156105b057600080fd5b5061037d6105bf366004612df3565b61132c565b3480156105d057600080fd5b50600e5461057d90610100900460ff1681565b3480156105ef57600080fd5b506103906105fe366004612df3565b611380565b34801561060f57600080fd5b5061037d611411565b34801561062457600080fd5b5061037d610633366004613003565b611447565b34801561064457600080fd5b5061037d610653366004613003565b611476565b34801561066457600080fd5b506008546001600160a01b0316610345565b34801561068257600080fd5b506103186114a5565b34801561069757600080fd5b50610390600d5481565b3480156106ad57600080fd5b5061039060115481565b3480156106c357600080fd5b5061037d6106d2366004612ee5565b6114b4565b3480156106e357600080fd5b50610390600b5481565b61037d6106fb366004613003565b611579565b34801561070c57600080fd5b5061037d61071b366004612e7d565b611803565b34801561072c57600080fd5b50600a546102ee9060ff1681565b61037d610748366004612f85565b61183c565b34801561075957600080fd5b50610318610768366004613003565b611ac3565b34801561077957600080fd5b5061037d611c05565b34801561078e57600080fd5b5061039060075481565b3480156107a457600080fd5b506103906107b3366004612df3565b611c43565b3480156107c457600080fd5b5061037d611c4e565b3480156107d957600080fd5b50610390600c5481565b3480156107ef57600080fd5b506102ee6107fe366004612e0e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561083857600080fd5b50601254610390565b34801561084d57600080fd5b5061037d61085c366004612df3565b611c95565b34801561086d57600080fd5b50600a546102ee90610100900460ff1681565b34801561088c57600080fd5b5061039060125481565b3480156108a257600080fd5b506103906108b1366004612df3565b611d2d565b60006001600160e01b031982166380ac58cd60e01b14806108e757506001600160e01b03198216635b5e139f60e01b145b8061090257506001600160e01b0319821663780e9d6360e01b145b8061091d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461093290613387565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613387565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c2826000541190565b610a295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a508261128c565b9050806001600160a01b0316836001600160a01b03161415610abf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a20565b336001600160a01b0382161480610adb5750610adb81336107fe565b610b4d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a20565b610b58838383611d71565b505050565b610b58838383611dcd565b6000610b7383611380565b8210610bcc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a20565b600080549080805b83811015610c76576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c2757805192505b876001600160a01b0316836001600160a01b03161415610c635786841415610c555750935061091d92505050565b83610c5f816133c2565b9450505b5080610c6e816133c2565b915050610bd4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a20565b60006001600160a01b038216610cfe5760405162461bcd60e51b8152600401610a20906131b6565b506001600160a01b03166000908152600f602052604090205460ff1690565b6008546001600160a01b03163314610d475760405162461bcd60e51b8152600401610a2090613207565b4780610d955760405162461bcd60e51b815260206004820152601e60248201527f4e4f5420454e4f5554482042414c414e434520544f20574954484452415700006044820152606401610a20565b6014546000906001600160a01b0316610daf6002846132d2565b604051600081818185875af1925050503d8060008114610deb576040519150601f19603f3d011682016040523d82523d6000602084013e610df0565b606091505b5050905080610e415760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f20776974686472617720746f2077616c6c6574310000006044820152606401610a20565b6015546000906001600160a01b0316610e5b6002856132d2565b604051600081818185875af1925050503d8060008114610e97576040519150601f19603f3d011682016040523d82523d6000602084013e610e9c565b606091505b5050905080610b585760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f20776974686472617720746f2077616c6c6574320000006044820152606401610a20565b610b5883838360405180602001604052806000815250611803565b6013546001600160a01b0316610f605760405162461bcd60e51b815260206004820152601a60248201527f6c61756e63687061642061646472657373206d757374207365740000000000006044820152606401610a20565b6013546001600160a01b03163314610fb35760405162461bcd60e51b81526020600482015260166024820152751b5d5cdd0818d85b1b08189e481b185d5b98da1c185960521b6044820152606401610a20565b6001600160a01b0382166110095760405162461bcd60e51b815260206004820152601b60248201527f63616e2774206d696e7420746f20656d707479206164647265737300000000006044820152606401610a20565b600081116110595760405162461bcd60e51b815260206004820152601b60248201527f73697a65206d7573742067726561746572207468616e207a65726f00000000006044820152606401610a20565b6011548160125461106a91906132ba565b11156110ad5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610a20565b600b546000546110bd90836132ba565b11156110db5760405162461bcd60e51b8152600401610a209061317f565b6110e58282612155565b806012546110f391906132ba565b6012555050565b6008546001600160a01b031633146111245760405162461bcd60e51b8152600401610a2090613207565b600081116111685760405162461bcd60e51b815260206004820152601160248201527047494654204154204c45415354204f4e4560781b6044820152606401610a20565b600b5460005461117890836132ba565b11156111965760405162461bcd60e51b8152600401610a209061317f565b6111a08282612155565b5050565b6000805482106112025760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a20565b5090565b6008546001600160a01b031633146112305760405162461bcd60e51b8152600401610a2090613207565b80516111a0906009906020840190612caa565b6008546001600160a01b0316331461126d5760405162461bcd60e51b8152600401610a2090613207565b600a805462ff0000198116620100009182900460ff1615909102179055565b60006112978261216f565b5192915050565b600980546112ab90613387565b80601f01602080910402602001604051908101604052809291908181526020018280546112d790613387565b80156113245780601f106112f957610100808354040283529160200191611324565b820191906000526020600020905b81548152906001019060200180831161130757829003601f168201915b505050505081565b6008546001600160a01b031633146113565760405162461bcd60e51b8152600401610a2090613207565b600e80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60006001600160a01b0382166113ec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a20565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461143b5760405162461bcd60e51b8152600401610a2090613207565b6114456000612319565b565b6008546001600160a01b031633146114715760405162461bcd60e51b8152600401610a2090613207565b600d55565b6008546001600160a01b031633146114a05760405162461bcd60e51b8152600401610a2090613207565b600c55565b60606002805461093290613387565b6001600160a01b03821633141561150d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a20565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146115c85760405162461bcd60e51b815260206004820152601d60248201527f5448452043414c4c45522043414e54204245204120434f4e54524143540000006044820152606401610a20565b600a54610100900460ff1661162b5760405162461bcd60e51b815260206004820152602360248201527f584f41534953205055424c49432053414c4520484153204e4f54204f50454e2060448201526216515560ea1b6064820152608401610a20565b600e54610100900460ff168111156116855760405162461bcd60e51b815260206004820152601c60248201527f45584345454453204d4158205055424c49432053414c45204d494e54000000006044820152606401610a20565b600b548161169260005490565b61169c91906132ba565b11156116ba5760405162461bcd60e51b8152600401610a209061317f565b60006116c533611d2d565b600e54909150610100900460ff166116dd83836132ba565b111561172b5760405162461bcd60e51b815260206004820152601c60248201527f45584345454453204d4158205055424c49432053414c45204d494e54000000006044820152606401610a20565b600d5461173890836132e6565b3410156117815760405162461bcd60e51b8152602060048201526017602482015276125394d551919250d25153950811551208105353d55395604a1b6044820152606401610a20565b600d5461178e90836132e6565b3411156117dc57600d5433906108fc906117a890856132e6565b6117b2903461332d565b6040518115909202916000818181858888f193505050501580156117da573d6000803e3d6000fd5b505b6117e682826132ba565b336000818152601060205260409020919091556111a09083612155565b61180e848484611dcd565b61181a8484848461236b565b6118365760405162461bcd60e51b8152600401610a209061323c565b50505050565b32331461188b5760405162461bcd60e51b815260206004820152601d60248201527f5448452043414c4c45522043414e54204245204120434f4e54524143540000006044820152606401610a20565b600a5460ff166118dd5760405162461bcd60e51b815260206004820181905260248201527f584f41534953205052452053414c4520484153204e4f54204f50454e205945546044820152606401610a20565b6118e633610cd6565b1561192c5760405162461bcd60e51b8152602060048201526016602482015275534f5252592c204f4e4c59204f4e45204348414e434560501b6044820152606401610a20565b600b54600e5460ff1661193e60005490565b61194891906132ba565b11156119665760405162461bcd60e51b8152600401610a209061317f565b6119703382612479565b600e546201000090046001600160a01b039081169116146119d35760405162461bcd60e51b815260206004820152601f60248201527f4e4f5420415554484f52495a454420544f205052452053414c45204d494e54006044820152606401610a20565b600c54600e546119e6919060ff166132e6565b341015611a2f5760405162461bcd60e51b8152602060048201526017602482015276125394d551919250d25153950811551208105353d55395604a1b6044820152606401610a20565b600c54600e54611a42919060ff166132e6565b341115611a9657600c54600e5433916108fc91611a62919060ff166132e6565b611a6c903461332d565b6040518115909202916000818181858888f19350505050158015611a94573d6000803e3d6000fd5b505b336000818152600f60205260409020805460ff19166001179055600e54611ac0919060ff16612155565b50565b6060611ad0826000541190565b611b345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a20565b600a5462010000900460ff16611bd45760098054611b5190613387565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7d90613387565b8015611bca5780601f10611b9f57610100808354040283529160200191611bca565b820191906000526020600020905b815481529060010190602001808311611bad57829003601f168201915b505050505061091d565b6009611bdf83612508565b604051602001611bf0929190613064565b60405160208183030381529060405292915050565b6008546001600160a01b03163314611c2f5760405162461bcd60e51b8152600401610a2090613207565b600a805460ff19811660ff90911615179055565b600061091d82612606565b6008546001600160a01b03163314611c785760405162461bcd60e51b8152600401610a2090613207565b600a805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314611cbf5760405162461bcd60e51b8152600401610a2090613207565b6001600160a01b038116611d245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a20565b611ac081612319565b60006001600160a01b038216611d555760405162461bcd60e51b8152600401610a20906131b6565b506001600160a01b031660009081526010602052604090205490565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611dd88261216f565b80519091506000906001600160a01b0316336001600160a01b03161480611e0f575033611e04846109b5565b6001600160a01b0316145b80611e2157508151611e2190336107fe565b905080611e8b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a20565b846001600160a01b031682600001516001600160a01b031614611eff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a20565b6001600160a01b038416611f635760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a20565b611f736000848460000151611d71565b6001600160a01b0385166000908152600460205260408120805460019290611fa59084906001600160801b0316613305565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ff19185911661328f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556120798460016132ba565b6000818152600360205260409020549091506001600160a01b031661210b576120a3816000541190565b1561210b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111a082826040518060200160405280600081525061265a565b604080518082019091526000808252602082015261218e826000541190565b6121ed5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a20565b60007f00000000000000000000000000000000000000000000000000000000000001f4831061224e576122407f00000000000000000000000000000000000000000000000000000000000001f48461332d565b61224b9060016132ba565b90505b825b8181106122b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156122a557949350505050565b50806122b081613370565b915050612250565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a20565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561246d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123af90339089908890889060040161312f565b602060405180830381600087803b1580156123c957600080fd5b505af19250505080156123f9575060408051601f3d908101601f191682019092526123f691810190612f68565b60015b612453573d808015612427576040519150601f19603f3d011682016040523d82523d6000602084013e61242c565b606091505b50805161244b5760405162461bcd60e51b8152600401610a209061323c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612471565b5060015b949350505050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c016040516020818303038152906040528051906020012090506124718184612935565b60608161252c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125565780612540816133c2565b915061254f9050600a836132d2565b9150612530565b60008167ffffffffffffffff81111561257157612571613449565b6040519080825280601f01601f19166020018201604052801561259b576020820181803683370190505b5090505b8415612471576125b060018361332d565b91506125bd600a866133dd565b6125c89060306132ba565b60f81b8183815181106125dd576125dd613433565b60200101906001600160f81b031916908160001a9053506125ff600a866132d2565b945061259f565b60006001600160a01b03821661262e5760405162461bcd60e51b8152600401610a20906131b6565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166126bd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a20565b6126c8816000541190565b156127155760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a20565b7f00000000000000000000000000000000000000000000000000000000000001f48311156127905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a20565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127ec90879061328f565b6001600160801b0316815260200185836020015161280a919061328f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561292a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128ee600088848861236b565b61290a5760405162461bcd60e51b8152600401610a209061323c565b81612914816133c2565b9250508080612922906133c2565b9150506128a1565b50600081905561214d565b60008060006129448585612959565b91509150612951816129c9565b509392505050565b6000808251604114156129905760208301516040840151606085015160001a61298487828585612b84565b945094505050506129c2565b8251604014156129ba57602083015160408401516129af868383612c71565b9350935050506129c2565b506000905060025b9250929050565b60008160048111156129dd576129dd61341d565b14156129e65750565b60018160048111156129fa576129fa61341d565b1415612a485760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a20565b6002816004811115612a5c57612a5c61341d565b1415612aaa5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a20565b6003816004811115612abe57612abe61341d565b1415612b175760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a20565b6004816004811115612b2b57612b2b61341d565b1415611ac05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a20565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612bbb5750600090506003612c68565b8460ff16601b14158015612bd357508460ff16601c14155b15612be45750600090506004612c68565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c38573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c6157600060019250925050612c68565b9150600090505b94509492505050565b6000806001600160ff1b03831681612c8e60ff86901c601b6132ba565b9050612c9c87828885612b84565b935093505050935093915050565b828054612cb690613387565b90600052602060002090601f016020900481019282612cd85760008555612d1e565b82601f10612cf157805160ff1916838001178555612d1e565b82800160010185558215612d1e579182015b82811115612d1e578251825591602001919060010190612d03565b506112029291505b808211156112025760008155600101612d26565b600067ffffffffffffffff80841115612d5557612d55613449565b604051601f8501601f19908116603f01168101908282118183101715612d7d57612d7d613449565b81604052809350858152868686011115612d9657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612dc757600080fd5b919050565b600082601f830112612ddd57600080fd5b612dec83833560208501612d3a565b9392505050565b600060208284031215612e0557600080fd5b612dec82612db0565b60008060408385031215612e2157600080fd5b612e2a83612db0565b9150612e3860208401612db0565b90509250929050565b600080600060608486031215612e5657600080fd5b612e5f84612db0565b9250612e6d60208501612db0565b9150604084013590509250925092565b60008060008060808587031215612e9357600080fd5b612e9c85612db0565b9350612eaa60208601612db0565b925060408501359150606085013567ffffffffffffffff811115612ecd57600080fd5b612ed987828801612dcc565b91505092959194509250565b60008060408385031215612ef857600080fd5b612f0183612db0565b915060208301358015158114612f1657600080fd5b809150509250929050565b60008060408385031215612f3457600080fd5b612f3d83612db0565b946020939093013593505050565b600060208284031215612f5d57600080fd5b8135612dec8161345f565b600060208284031215612f7a57600080fd5b8151612dec8161345f565b600060208284031215612f9757600080fd5b813567ffffffffffffffff811115612fae57600080fd5b61247184828501612dcc565b600060208284031215612fcc57600080fd5b813567ffffffffffffffff811115612fe357600080fd5b8201601f81018413612ff457600080fd5b61247184823560208401612d3a565b60006020828403121561301557600080fd5b5035919050565b60008151808452613034816020860160208601613344565b601f01601f19169290920160200192915050565b6000815161305a818560208601613344565b9290920192915050565b600080845481600182811c91508083168061308057607f831692505b60208084108214156130a057634e487b7160e01b86526022600452602486fd5b8180156130b457600181146130c5576130f2565b60ff198616895284890196506130f2565b60008b81526020902060005b868110156130ea5781548b8201529085019083016130d1565b505084890196505b50505050505061312661311561310f83602f60f81b815260010190565b86613048565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131629083018461301c565b9695505050505050565b602081526000612dec602083018461301c565b60208082526019908201527f52454143484544204d415820535550504c5920414d4f554e5400000000000000604082015260600190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156132b1576132b16133f1565b01949350505050565b600082198211156132cd576132cd6133f1565b500190565b6000826132e1576132e1613407565b500490565b6000816000190483118215151615613300576133006133f1565b500290565b60006001600160801b0383811690831681811015613325576133256133f1565b039392505050565b60008282101561333f5761333f6133f1565b500390565b60005b8381101561335f578181015183820152602001613347565b838111156118365750506000910152565b60008161337f5761337f6133f1565b506000190190565b600181811c9082168061339b57607f821691505b602082108114156133bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133d6576133d66133f1565b5060010190565b6000826133ec576133ec613407565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ac057600080fdfea2646970667358221220a5e1b345bfd431910ab08093060be4455ed66f6700a59d360164bb50b21cccc464736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000eafb2019a8e7ddfb52763d6b0d49f53983bc0764000000000000000000000000e832f3a1b181fcbeb83388fe01c97948147e9f0c00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d576e62666962546a776550447a3270413851656b354a78594a514d6b64694b573275576d33636d473656345900000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmWnbfibTjwePDz2pA8Qek5JxYJQMkdiKW2uWm3cmG6V4Y
Arg [1] : signer_ (address): 0xeAFB2019a8E7ddFB52763D6B0D49f53983Bc0764
Arg [2] : launchpad (address): 0xE832F3A1B181FCbEb83388FE01C97948147E9f0c
Arg [3] : maxSupply (uint256): 500

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 000000000000000000000000eafb2019a8e7ddfb52763d6b0d49f53983bc0764
Arg [2] : 000000000000000000000000e832f3a1b181fcbeb83388fe01c97948147e9f0c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [5] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [6] : 732f516d576e62666962546a776550447a3270413851656b354a78594a514d6b
Arg [7] : 64694b573275576d33636d473656345900000000000000000000000000000000


Deployed Bytecode Sourcemap

666:6316:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;-1:-1:-1;4251:370:11;;;;;:::i;:::-;;:::i;:::-;;;8286:14:13;;8279:22;8261:41;;8249:2;8234:18;4251:370:11;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7502:204::-;;;;;;;;;;-1:-1:-1;7502:204:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7584:32:13;;;7566:51;;7554:2;7539:18;7502:204:11;7420:203:13;7065:379:11;;;;;;;;;;-1:-1:-1;7065:379:11;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;-1:-1:-1;2865:7:11;2888:12;2812:94;;;25164:25:13;;;25152:2;25137:18;2812:94:11;25018:177:13;1089:21:12;;;;;;;;;;-1:-1:-1;1089:21:12;;;;;;;-1:-1:-1;;;;;1089:21:12;;;8352:142:11;;;;;;;;;;-1:-1:-1;8352:142:11;;;;;:::i;:::-;;:::i;3443:744::-;;;;;;;;;;-1:-1:-1;3443:744:11;;;;;:::i;:::-;;:::i;4319:191:12:-;;;;;;;;;;-1:-1:-1;4319:191:12;;;;;:::i;:::-;;:::i;6137:414::-;;;;;;;;;;;;;:::i;8557:157:11:-;;;;;;;;;;-1:-1:-1;8557:157:11;;;;;:::i;:::-;;:::i;6557:422:12:-;;;;;;;;;;-1:-1:-1;6557:422:12;;;;;:::i;:::-;;:::i;4069:234::-;;;;;;;;;;-1:-1:-1;4069:234:12;;;;;:::i;:::-;;:::i;2975:177:11:-;;;;;;;;;;-1:-1:-1;2975:177:11;;;;;:::i;:::-;;:::i;1419:24:12:-;;;;;;;;;;-1:-1:-1;1419:24:12;;;;-1:-1:-1;;;;;1419:24:12;;;840:28;;;;;;;;;;-1:-1:-1;840:28:12;;;;;;;;;;;5529:98;;;;;;;;;;-1:-1:-1;5529:98:12;;;;;:::i;:::-;;:::i;1635:102::-;;;;;;;;;;-1:-1:-1;1714:17:12;;1635:102;;5445:78;;;;;;;;;;;;;:::i;5800:118:11:-;;;;;;;;;;-1:-1:-1;5800:118:11;;;;;:::i;:::-;;:::i;1012:31:12:-;;;;;;;;;;-1:-1:-1;1012:31:12;;;;;;;;;;;25372:4:13;25360:17;;;25342:36;;25330:2;25315:18;1012:31:12;25200:184:13;737:21:12;;;;;;;;;;;;;:::i;5881:88::-;;;;;;;;;;-1:-1:-1;5881:88:12;;;;;:::i;:::-;;:::i;1048:34::-;;;;;;;;;;-1:-1:-1;1048:34:12;;;;;;;;;;;4677:211:11;;;;;;;;;;-1:-1:-1;4677:211:11;;;;;:::i;:::-;;:::i;1605:92:0:-;;;;;;;;;;;;;:::i;5751:124:12:-;;;;;;;;;;-1:-1:-1;5751:124:12;;;;;:::i;:::-;;:::i;5633:112::-;;;;;;;;;;-1:-1:-1;5633:112:12;;;;;:::i;:::-;;:::i;973:85:0:-;;;;;;;;;;-1:-1:-1;1045:6:0;;-1:-1:-1;;;;;1045:6:0;973:85;;6132:98:11;;;;;;;;;;;;;:::i;963:42:12:-;;;;;;;;;;;;;;;;1291:32;;;;;;;;;;;;;;;;7770:274:11;;;;;;;;;;-1:-1:-1;7770:274:11;;;;;:::i;:::-;;:::i;875:38:12:-;;;;;;;;;;;;;;;;3299:764;;;;;;:::i;:::-;;:::i;8777:311:11:-;;;;;;;;;;-1:-1:-1;8777:311:11;;;;;:::i;:::-;;:::i;765:31:12:-;;;;;;;;;;-1:-1:-1;765:31:12;;;;;;;;2254:714;;;;;;:::i;:::-;;:::i;4947:292::-;;;;;;;;;;-1:-1:-1;4947:292:12;;;;;:::i;:::-;;:::i;5258:83::-;;;;;;;;;;;;;:::i;13192:43:11:-;;;;;;;;;;;;;;;;4726:107:12;;;;;;;;;;-1:-1:-1;4726:107:12;;;;;:::i;:::-;;:::i;5347:92::-;;;;;;;;;;;;;:::i;918:40::-;;;;;;;;;;;;;;;;8107:186:11;;;;;;;;;;-1:-1:-1;8107:186:11;;;;;:::i;:::-;-1:-1:-1;;;;;8252:25:11;;;8229:4;8252:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8107:186;1743:95:12;;;;;;;;;;-1:-1:-1;1819:13:12;;1743:95;;1846:189:0;;;;;;;;;;-1:-1:-1;1846:189:0;;;;;:::i;:::-;;:::i;801:34:12:-;;;;;;;;;;-1:-1:-1;801:34:12;;;;;;;;;;;1352:28;;;;;;;;;;;;;;;;4516:204;;;;;;;;;;-1:-1:-1;4516:204:12;;;;;:::i;:::-;;:::i;4251:370:11:-;4378:4;-1:-1:-1;;;;;;4408:40:11;;-1:-1:-1;;;4408:40:11;;:99;;-1:-1:-1;;;;;;;4459:48:11;;-1:-1:-1;;;4459:48:11;4408:99;:160;;;-1:-1:-1;;;;;;;4518:50:11;;-1:-1:-1;;;4518:50:11;4408:160;:207;;;-1:-1:-1;;;;;;;;;;871:40:9;;;4579:36:11;4394:221;4251:370;-1:-1:-1;;4251:370:11:o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;9384:4;9414:12;-1:-1:-1;9404:22:11;9327:105;7594:16;7586:74;;;;-1:-1:-1;;;7586:74:11;;24043:2:13;7586:74:11;;;24025:21:13;24082:2;24062:18;;;24055:30;24121:34;24101:18;;;24094:62;-1:-1:-1;;;24172:18:13;;;24165:43;24225:19;;7586:74:11;;;;;;;;;-1:-1:-1;7676:24:11;;;;:15;:24;;;;;;-1:-1:-1;;;;;7676:24:11;;7502:204::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;-1:-1:-1;;;;;7189:11:11;:2;-1:-1:-1;;;;;7189:11:11;;;7181:58;;;;-1:-1:-1;;;7181:58:11;;20910:2:13;7181:58:11;;;20892:21:13;20949:2;20929:18;;;20922:30;20988:34;20968:18;;;20961:62;-1:-1:-1;;;21039:18:13;;;21032:32;21081:19;;7181:58:11;20708:398:13;7181:58:11;666:10:6;-1:-1:-1;;;;;7264:21:11;;;;:62;;-1:-1:-1;7289:37:11;7306:5;666:10:6;8107:186:11;:::i;7289:37::-;7248:153;;;;-1:-1:-1;;;7248:153:11;;14841:2:13;7248:153:11;;;14823:21:13;14880:2;14860:18;;;14853:30;14919:34;14899:18;;;14892:62;14990:27;14970:18;;;14963:55;15035:19;;7248:153:11;14639:421:13;7248:153:11;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;3443:744::-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;-1:-1:-1;;;3571:71:11;;9495:2:13;3571:71:11;;;9477:21:13;9534:2;9514:18;;;9507:30;9573:34;9553:18;;;9546:62;-1:-1:-1;;;9624:18:13;;;9617:32;9666:19;;3571:71:11;9293:398:13;3571:71:11;3649:22;2888:12;;;3649:22;;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:14;;;:11;:14;;;;;;;;;3823:48;;;;;;;;;-1:-1:-1;;;;;3823:48:11;;;;;-1:-1:-1;;;3823:48:11;;;;;;;;;;;;3884:28;3880:89;;3945:14;;;-1:-1:-1;3880:89:11;4002:5;-1:-1:-1;;;;;3981:26:11;:17;-1:-1:-1;;;;;3981:26:11;;3977:135;;;4039:5;4024:11;:20;4020:59;;;-1:-1:-1;4066:1:11;-1:-1:-1;4059:8:11;;-1:-1:-1;;;4059:8:11;4020:59;4089:13;;;;:::i;:::-;;;;3977:135;-1:-1:-1;3809:3:11;;;;:::i;:::-;;;;3769:350;;;-1:-1:-1;4125:56:11;;-1:-1:-1;;;4125:56:11;;23212:2:13;4125:56:11;;;23194:21:13;23251:2;23231:18;;;23224:30;23290:34;23270:18;;;23263:62;-1:-1:-1;;;23341:18:13;;;23334:44;23395:19;;4125:56:11;23010:410:13;4319:191:12;4376:4;-1:-1:-1;;;;;4397:19:12;;4389:81;;;;-1:-1:-1;;;4389:81:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4484:20:12;;;;;:13;:20;;;;;;;;;4319:191::o;6137:414::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;6201:21:12::1;6237:11:::0;6229:54:::1;;;::::0;-1:-1:-1;;;6229:54:12;;14482:2:13;6229:54:12::1;::::0;::::1;14464:21:13::0;14521:2;14501:18;;;14494:30;14560:32;14540:18;;;14533:60;14610:18;;6229:54:12::1;14280:354:13::0;6229:54:12::1;6320:7;::::0;6293:13:::1;::::0;-1:-1:-1;;;;;6320:7:12::1;6341:11;6351:1;6341:7:::0;:11:::1;:::i;:::-;6312:45;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6292:65;;;6372:8;6364:50;;;::::0;-1:-1:-1;;;6364:50:12;;12137:2:13;6364:50:12::1;::::0;::::1;12119:21:13::0;12176:2;12156:18;;;12149:30;12215:31;12195:18;;;12188:59;12264:18;;6364:50:12::1;11935:353:13::0;6364:50:12::1;6451:7;::::0;6424:13:::1;::::0;-1:-1:-1;;;;;6451:7:12::1;6472:11;6482:1;6472:7:::0;:11:::1;:::i;:::-;6443:45;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6423:65;;;6503:8;6495:50;;;::::0;-1:-1:-1;;;6495:50:12;;20552:2:13;6495:50:12::1;::::0;::::1;20534:21:13::0;20591:2;20571:18;;;20564:30;20630:31;20610:18;;;20603:59;20679:18;;6495:50:12::1;20350:353:13::0;8557:157:11;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;6557:422:12:-;1492:9;;-1:-1:-1;;;;;1492:9:12;1484:62;;;;-1:-1:-1;;;1484:62:12;;9898:2:13;1484:62:12;;;9880:21:13;9937:2;9917:18;;;9910:30;9976:28;9956:18;;;9949:56;10022:18;;1484:62:12;9696:350:13;1484:62:12;1577:9;;-1:-1:-1;;;;;1577:9:12;1563:10;:23;1555:58;;;;-1:-1:-1;;;1555:58:12;;20201:2:13;1555:58:12;;;20183:21:13;20240:2;20220:18;;;20213:30;-1:-1:-1;;;20259:18:13;;;20252:52;20321:18;;1555:58:12;19999:346:13;1555:58:12;-1:-1:-1;;;;;6634:16:12;::::1;6626:56;;;::::0;-1:-1:-1;;;6626:56:12;;17533:2:13;6626:56:12::1;::::0;::::1;17515:21:13::0;17572:2;17552:18;;;17545:30;17611:29;17591:18;;;17584:57;17658:18;;6626:56:12::1;17331:351:13::0;6626:56:12::1;6704:1;6697:4;:8;6689:48;;;::::0;-1:-1:-1;;;6689:48:12;;13305:2:13;6689:48:12::1;::::0;::::1;13287:21:13::0;13344:2;13324:18;;;13317:30;13383:29;13363:18;;;13356:57;13430:18;;6689:48:12::1;13103:351:13::0;6689:48:12::1;6776:17;;6768:4;6752:13;;:20;;;;:::i;:::-;:41;;6744:72;;;::::0;-1:-1:-1;;;6744:72:12;;16779:2:13;6744:72:12::1;::::0;::::1;16761:21:13::0;16818:2;16798:18;;;16791:30;-1:-1:-1;;;16837:18:13;;;16830:48;16895:18;;6744:72:12::1;16577:342:13::0;6744:72:12::1;6857:15;::::0;2865:7:11;2888:12;6833:20:12::1;::::0;:4;:20:::1;:::i;:::-;:39;;6825:77;;;;-1:-1:-1::0;;;6825:77:12::1;;;;;;;:::i;:::-;6911:19;6921:2;6925:4;6911:9;:19::i;:::-;6969:4;6953:13;;:20;;;;:::i;:::-;6937:13;:36:::0;-1:-1:-1;;6557:422:12:o;4069:234::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;4159:1:12::1;4150:6;:10;4142:40;;;::::0;-1:-1:-1;;;4142:40:12;;15267:2:13;4142:40:12::1;::::0;::::1;15249:21:13::0;15306:2;15286:18;;;15279:30;-1:-1:-1;;;15325:18:13;;;15318:47;15382:18;;4142:40:12::1;15065:341:13::0;4142:40:12::1;4223:15;::::0;2865:7:11;2888:12;4197:22:12::1;::::0;:6;:22:::1;:::i;:::-;:41;;4189:79;;;;-1:-1:-1::0;;;4189:79:12::1;;;;;;;:::i;:::-;4275:22;4285:3;4290:6;4275:9;:22::i;:::-;4069:234:::0;;:::o;2975:177:11:-;3042:7;2888:12;;3066:5;:21;3058:69;;;;-1:-1:-1;;;3058:69:11;;12495:2:13;3058:69:11;;;12477:21:13;12534:2;12514:18;;;12507:30;12573:34;12553:18;;;12546:62;-1:-1:-1;;;12624:18:13;;;12617:33;12667:19;;3058:69:11;12293:399:13;3058:69:11;-1:-1:-1;3141:5:11;2975:177::o;5529:98:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5601:20:12;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;5445:78::-:0;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5509:8:12::1;::::0;;-1:-1:-1;;5497:20:12;::::1;5509:8:::0;;;;::::1;;;5508:9;5497:20:::0;;::::1;;::::0;;5445:78::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;5800:118;-1:-1:-1;;5800:118:11:o;737:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5881:88::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5945:6:12::1;:18:::0;;-1:-1:-1;;;;;5945:18:12;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;5945:18:12;;::::1;::::0;;;::::1;::::0;;5881:88::o;4677:211:11:-;4741:7;-1:-1:-1;;;;;4765:19:11;;4757:75;;;;-1:-1:-1;;;4757:75:11;;15964:2:13;4757:75:11;;;15946:21:13;16003:2;15983:18;;;15976:30;16042:34;16022:18;;;16015:62;-1:-1:-1;;;16093:18:13;;;16086:41;16144:19;;4757:75:11;15762:407:13;4757:75:11;-1:-1:-1;;;;;;4854:19:11;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4854:27:11;;4677:211::o;1605:92:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;5751:124:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5833:15:12::1;:36:::0;5751:124::o;5633:112::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5709:12:12::1;:30:::0;5633:112::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;7770:274::-;-1:-1:-1;;;;;7861:24:11;;666:10:6;7861:24:11;;7853:63;;;;-1:-1:-1;;;7853:63:11;;19427:2:13;7853:63:11;;;19409:21:13;19466:2;19446:18;;;19439:30;19505:28;19485:18;;;19478:56;19551:18;;7853:63:11;19225:350:13;7853:63:11;666:10:6;7925:32:11;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7925:42:11;;;;;;;;;;;;:53;;-1:-1:-1;;7925:53:11;;;;;;;;;;7990:48;;8261:41:13;;;7925:42:11;;666:10:6;7990:48:11;;8234:18:13;7990:48:11;;;;;;;7770:274;;:::o;3299:764:12:-;2167:9;2180:10;2167:23;2159:65;;;;-1:-1:-1;;;2159:65:12;;22493:2:13;2159:65:12;;;22475:21:13;22532:2;22512:18;;;22505:30;22571:31;22551:18;;;22544:59;22620:18;;2159:65:12;22291:353:13;2159:65:12;3386:14:::1;::::0;::::1;::::0;::::1;;;3378:62;;;::::0;-1:-1:-1;;;3378:62:12;;18250:2:13;3378:62:12::1;::::0;::::1;18232:21:13::0;18289:2;18269:18;;;18262:30;18328:34;18308:18;;;18301:62;-1:-1:-1;;;18379:18:13;;;18372:33;18422:19;;3378:62:12::1;18048:399:13::0;3378:62:12::1;3465:17;::::0;::::1;::::0;::::1;;;3455:27:::0;::::1;;3447:68;;;::::0;-1:-1:-1;;;3447:68:12;;18654:2:13;3447:68:12::1;::::0;::::1;18636:21:13::0;18693:2;18673:18;;;18666:30;18732;18712:18;;;18705:58;18780:18;;3447:68:12::1;18452:352:13::0;3447:68:12::1;3556:15;;3546:6;3530:13;2865:7:11::0;2888:12;;2812:94;3530:13:12::1;:22;;;;:::i;:::-;:41;;3522:79;;;;-1:-1:-1::0;;;3522:79:12::1;;;;;;;:::i;:::-;3608:20;3631:30;3650:10;3631:18;:30::i;:::-;3701:17;::::0;3608:53;;-1:-1:-1;3701:17:12::1;::::0;::::1;;;3676:21;3691:6:::0;3608:53;3676:21:::1;:::i;:::-;:42;;3668:83;;;::::0;-1:-1:-1;;;3668:83:12;;18654:2:13;3668:83:12::1;::::0;::::1;18636:21:13::0;18693:2;18673:18;;;18666:30;18732;18712:18;;;18705:58;18780:18;;3668:83:12::1;18452:352:13::0;3668:83:12::1;3788:15;::::0;3779:24:::1;::::0;:6;:24:::1;:::i;:::-;3766:9;:37;;3758:73;;;::::0;-1:-1:-1;;;3758:73:12;;11785:2:13;3758:73:12::1;::::0;::::1;11767:21:13::0;11824:2;11804:18;;;11797:30;-1:-1:-1;;;11843:18:13;;;11836:53;11906:18;;3758:73:12::1;11583:347:13::0;3758:73:12::1;3863:15;::::0;3854:24:::1;::::0;:6;:24:::1;:::i;:::-;3842:9;:36;3838:125;;;3939:15;::::0;3897:10:::1;::::0;3889:66:::1;::::0;3930:24:::1;::::0;:6;:24:::1;:::i;:::-;3918:36;::::0;:9:::1;:36;:::i;:::-;3889:66;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3838:125;4000:21;4015:6:::0;4000:12;:21:::1;:::i;:::-;3986:10;3969:28;::::0;;;:16:::1;:28;::::0;;;;:52;;;;4028:29:::1;::::0;4050:6;4028:9:::1;:29::i;8777:311:11:-:0;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;-1:-1:-1;;;8949:133:11;;;;;;;:::i;:::-;8777:311;;;;:::o;2254:714:12:-;2167:9;2180:10;2167:23;2159:65;;;;-1:-1:-1;;;2159:65:12;;22493:2:13;2159:65:12;;;22475:21:13;22532:2;22512:18;;;22505:30;22571:31;22551:18;;;22544:59;22620:18;;2159:65:12;22291:353:13;2159:65:12;2346:11:::1;::::0;::::1;;2338:56;;;::::0;-1:-1:-1;;;2338:56:12;;22851:2:13;2338:56:12::1;::::0;::::1;22833:21:13::0;;;22870:18;;;22863:30;22929:34;22909:18;;;22902:62;22981:18;;2338:56:12::1;22649:356:13::0;2338:56:12::1;2410:23;2422:10;2410:11;:23::i;:::-;2409:24;2401:59;;;::::0;-1:-1:-1;;;2401:59:12;;15613:2:13;2401:59:12::1;::::0;::::1;15595:21:13::0;15652:2;15632:18;;;15625:30;-1:-1:-1;;;15671:18:13;;;15664:52;15733:18;;2401:59:12::1;15411:346:13::0;2401:59:12::1;2509:15;::::0;2491:14:::1;::::0;::::1;;2475:13;2865:7:11::0;2888:12;;2812:94;2475:13:12::1;:30;;;;:::i;:::-;:49;;2467:87;;;;-1:-1:-1::0;;;2467:87:12::1;;;;;;;:::i;:::-;2579:38;2595:10;2607:9;2579:15;:38::i;:::-;2569:6;::::0;;;::::1;-1:-1:-1::0;;;;;2569:6:12;;::::1;:48:::0;::::1;;2561:92;;;::::0;-1:-1:-1;;;2561:92:12;;24860:2:13;2561:92:12::1;::::0;::::1;24842:21:13::0;24899:2;24879:18;;;24872:30;24938:33;24918:18;;;24911:61;24989:18;;2561:92:12::1;24658:355:13::0;2561:92:12::1;2698:12;::::0;2681:14:::1;::::0;:29:::1;::::0;2698:12;2681:14:::1;;:29;:::i;:::-;2668:9;:42;;2660:78;;;::::0;-1:-1:-1;;;2660:78:12;;11785:2:13;2660:78:12::1;::::0;::::1;11767:21:13::0;11824:2;11804:18;;;11797:30;-1:-1:-1;;;11843:18:13;;;11836:53;11906:18;;2660:78:12::1;11583:347:13::0;2660:78:12::1;2778:12;::::0;2761:14:::1;::::0;:29:::1;::::0;2778:12;2761:14:::1;;:29;:::i;:::-;2749:9;:41;2745:135;;;2859:12;::::0;2842:14:::1;::::0;2809:10:::1;::::0;2801:71:::1;::::0;2842:29:::1;::::0;2859:12;2842:14:::1;;:29;:::i;:::-;2830:41;::::0;:9:::1;:41;:::i;:::-;2801:71;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2745:135;2900:10;2886:25;::::0;;;:13:::1;:25;::::0;;;;:32;;-1:-1:-1;;2886:32:12::1;2914:4;2886:32;::::0;;2947:14:::1;::::0;2925:37:::1;::::0;2900:10;2886:32:::1;2947:14;2925:9;:37::i;:::-;2254:714:::0;:::o;4947:292::-;5020:13;5050:16;5058:7;9384:4:11;9414:12;-1:-1:-1;9404:22:11;9327:105;5050:16:12;5042:76;;;;-1:-1:-1;;;5042:76:12;;19011:2:13;5042:76:12;;;18993:21:13;19050:2;19030:18;;;19023:30;19089:34;19069:18;;;19062:62;-1:-1:-1;;;19140:18:13;;;19133:45;19195:19;;5042:76:12;18809:411:13;5042:76:12;5138:8;;;;;;;:95;;5226:7;5138:95;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5173:7;5187:25;5204:7;5187:16;:25::i;:::-;5156:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5131:102;4947:292;-1:-1:-1;;4947:292:12:o;5258:83::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5324:11:12::1;::::0;;-1:-1:-1;;5309:26:12;::::1;5324:11;::::0;;::::1;5323:12;5309:26;::::0;;5258:83::o;4726:107::-;4784:7;4807:20;4821:5;4807:13;:20::i;5347:92::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;5419:14:12::1;::::0;;-1:-1:-1;;5401:32:12;::::1;5419:14;::::0;;;::::1;;;5418:15;5401:32:::0;;::::1;;::::0;;5347:92::o;1846:189:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:0;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:0;;10967:2:13;1926:73:0::1;::::0;::::1;10949:21:13::0;11006:2;10986:18;;;10979:30;11045:34;11025:18;;;11018:62;-1:-1:-1;;;11096:18:13;;;11089:36;11142:19;;1926:73:0::1;10765:402:13::0;1926:73:0::1;2009:19;2019:8;2009:9;:19::i;4516:204:12:-:0;4580:7;-1:-1:-1;;;;;4604:19:12;;4596:81;;;;-1:-1:-1;;;4596:81:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4691:23:12;;;;;:16;:23;;;;;;;4516:204::o;13014:172:11:-;13111:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;13111:29:11;-1:-1:-1;;;;;13111:29:11;;;;;;;;;13152:28;;13111:24;;13152:28;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11585:18;;11476:58;;-1:-1:-1;11543:22:11;;-1:-1:-1;;;;;11569:34:11;666:10:6;-1:-1:-1;;;;;11569:34:11;;:81;;;-1:-1:-1;666:10:6;11614:20:11;11626:7;11614:11;:20::i;:::-;-1:-1:-1;;;;;11614:36:11;;11569:81;:142;;;-1:-1:-1;11678:18:11;;11661:50;;666:10:6;8107:186:11;:::i;11661:50::-;11543:169;;11737:17;11721:101;;;;-1:-1:-1;;;11721:101:11;;19782:2:13;11721:101:11;;;19764:21:13;19821:2;19801:18;;;19794:30;19860:34;19840:18;;;19833:62;-1:-1:-1;;;19911:18:13;;;19904:48;19969:19;;11721:101:11;19580:414:13;11721:101:11;11869:4;-1:-1:-1;;;;;11847:26:11;:13;:18;;;-1:-1:-1;;;;;11847:26:11;;11831:98;;;;-1:-1:-1;;;11831:98:11;;17126:2:13;11831:98:11;;;17108:21:13;17165:2;17145:18;;;17138:30;17204:34;17184:18;;;17177:62;-1:-1:-1;;;17255:18:13;;;17248:36;17301:19;;11831:98:11;16924:402:13;11831:98:11;-1:-1:-1;;;;;11944:16:11;;11936:66;;;;-1:-1:-1;;;11936:66:11;;12899:2:13;11936:66:11;;;12881:21:13;12938:2;12918:18;;;12911:30;12977:34;12957:18;;;12950:62;-1:-1:-1;;;13028:18:13;;;13021:35;13073:19;;11936:66:11;12697:401:13;11936:66:11;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;-1:-1:-1;;;;;12169:18:11;;;;;;:12;:18;;;;;:31;;12199:1;;12169:18;:31;;12199:1;;-1:-1:-1;;;;;12169:31:11;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;12169:31:11;;;;;;;;;;;;;;;-1:-1:-1;;;;;12207:16:11;;-1:-1:-1;12207:16:11;;;:12;:16;;;;;:29;;-1:-1:-1;;;12207:16:11;;:29;;-1:-1:-1;;12207:29:11;;:::i;:::-;;;-1:-1:-1;;;;;12207:29:11;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12266:43:11;;;;;;;;-1:-1:-1;;;;;12266:43:11;;;;;;12292:15;12266:43;;;;;;;;;-1:-1:-1;12243:20:11;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;12243:66:11;-1:-1:-1;;;;;;12243:66:11;;;;;;;;;;;12559:11;12255:7;-1:-1:-1;12559:11:11;:::i;:::-;12622:1;12581:24;;;:11;:24;;;;;:29;12537:33;;-1:-1:-1;;;;;;12581:29:11;12577:236;;12639:20;12647:11;9384:4;9414:12;-1:-1:-1;9404:22:11;9327:105;12639:20;12635:171;;;12699:97;;;;;;;;12726:18;;-1:-1:-1;;;;;12699:97:11;;;;;;12757:28;;;;12699:97;;;;;;;;;;-1:-1:-1;12672:24:11;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;12672:124:11;-1:-1:-1;;;;;;12672:124:11;;;;;;;;;;;;12635:171;12845:7;12841:2;-1:-1:-1;;;;;12826:27:11;12835:4;-1:-1:-1;;;;;12826:27:11;;;;;;;;;;;12860:42;11469:1439;;;11379:1529;;;:::o;9438:98::-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;5140:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;5257:16:11;5265:7;9384:4;9414:12;-1:-1:-1;9404:22:11;9327:105;5257:16;5249:71;;;;-1:-1:-1;;;5249:71:11;;11374:2:13;5249:71:11;;;11356:21:13;11413:2;11393:18;;;11386:30;11452:34;11432:18;;;11425:62;-1:-1:-1;;;11503:18:13;;;11496:40;11553:19;;5249:71:11;11172:406:13;5249:71:11;5329:26;5377:12;5366:7;:23;5362:93;;5421:22;5431:12;5421:7;:22;:::i;:::-;:26;;5446:1;5421:26;:::i;:::-;5400:47;;5362:93;5483:7;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:17;;;:11;:17;;;;;;;;;5537:51;;;;;;;;;-1:-1:-1;;;;;5537:51:11;;;;;-1:-1:-1;;;5537:51:11;;;;;;;;;;;;5601:28;5597:71;;5649:9;5140:606;-1:-1:-1;;;;5140:606:11:o;5597:71::-;-1:-1:-1;5520:6:11;;;;:::i;:::-;;;;5463:212;;;-1:-1:-1;5683:57:11;;-1:-1:-1;;;5683:57:11;;23627:2:13;5683:57:11;;;23609:21:13;23666:2;23646:18;;;23639:30;23705:34;23685:18;;;23678:62;-1:-1:-1;;;23756:18:13;;;23749:45;23811:19;;5683:57:11;23425:411:13;2041:169:0;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;-1:-1:-1;;;;;;2131:17:0;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;14729:690:11:-;14866:4;-1:-1:-1;;;;;14883:13:11;;1034:20:5;1080:8;14879:535:11;;14922:72;;-1:-1:-1;;;14922:72:11;;-1:-1:-1;;;;;14922:36:11;;;;;:72;;666:10:6;;14973:4:11;;14979:7;;14988:5;;14922:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14922:72:11;;;;;;;;-1:-1:-1;;14922:72:11;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15153:13:11;;15149:215;;15186:61;;-1:-1:-1;;;15186:61:11;;;;;;;:::i;15149:215::-;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;-1:-1:-1;;;;;;15044:55:11;-1:-1:-1;;;15044:55:11;;-1:-1:-1;15037:62:11;;14879:535;-1:-1:-1;15402:4:11;14879:535;14729:690;;;;;;:::o;2974:319:12:-;3196:24;;-1:-1:-1;;5302:2:13;5298:15;;;5294:53;3196:24:12;;;5282:66:13;3062:7:12;;;;5364:12:13;;3196:24:12;;;-1:-1:-1;;3196:24:12;;;;;;;;;;3186:35;;3196:24;3186:35;;;;7067:66:13;3114:118:12;;;7055:79:13;;;;7150:12;;;7143:28;7187:12;;3114:118:12;;;;;;;;;;;;3094:147;;;;;;3079:162;;3257:30;3271:4;3277:9;3257:13;:30::i;275:703:7:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:7;;;;;;;;;;;;-1:-1:-1;;;574:10:7;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:7;;-1:-1:-1;720:2:7;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:7;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:7;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:7;;;;;;;;-1:-1:-1;919:11:7;928:2;919:11;;:::i;:::-;;;791:150;;4894:240:11;4955:7;-1:-1:-1;;;;;4987:19:11;;4971:102;;;;-1:-1:-1;;;4971:102:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5095:19:11;;;;;:12;:19;;;;;:32;-1:-1:-1;;;5095:32:11;;-1:-1:-1;;;;;5095:32:11;;4894:240::o;9875:1272::-;9980:20;10003:12;-1:-1:-1;;;;;10030:16:11;;10022:62;;;;-1:-1:-1;;;10022:62:11;;22091:2:13;10022:62:11;;;22073:21:13;22130:2;22110:18;;;22103:30;22169:34;22149:18;;;22142:62;-1:-1:-1;;;22220:18:13;;;22213:31;22261:19;;10022:62:11;21889:397:13;10022:62:11;10221:21;10229:12;9384:4;9414:12;-1:-1:-1;9404:22:11;9327:105;10221:21;10220:22;10212:64;;;;-1:-1:-1;;;10212:64:11;;21733:2:13;10212:64:11;;;21715:21:13;21772:2;21752:18;;;21745:30;21811:31;21791:18;;;21784:59;21860:18;;10212:64:11;21531:353:13;10212:64:11;10303:12;10291:8;:24;;10283:71;;;;-1:-1:-1;;;10283:71:11;;24457:2:13;10283:71:11;;;24439:21:13;24496:2;24476:18;;;24469:30;24535:34;24515:18;;;24508:62;-1:-1:-1;;;24586:18:13;;;24579:32;24628:19;;10283:71:11;24255:398:13;10283:71:11;-1:-1:-1;;;;;10466:16:11;;10433:30;10466:16;;;:12;:16;;;;;;;;;10433:49;;;;;;;;;-1:-1:-1;;;;;10433:49:11;;;;;-1:-1:-1;;;10433:49:11;;;;;;;;;;;10508:119;;;;;;;;10528:19;;10433:49;;10508:119;;;10528:39;;10558:8;;10528:39;:::i;:::-;-1:-1:-1;;;;;10508:119:11;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;10508:119:11;;;;;;-1:-1:-1;;;;;10489:16:11;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;10489:138:11;;;;;;;;;;;;10662:43;;;;;;;;;;;10688:15;10662:43;;;;;;;;10634:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10634:71:11;-1:-1:-1;;;;;;10634:71:11;;;;;;;;;;;;;;;;;;10646:12;;10758:281;10782:8;10778:1;:12;10758:281;;;10811:38;;10836:12;;-1:-1:-1;;;;;10811:38:11;;;10828:1;;10811:38;;10828:1;;10811:38;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;-1:-1:-1;;;10858:150:11;;;;;;;:::i;:::-;11017:14;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;-1:-1:-1;11047:12:11;:27;;;11081:60;8777:311;4308:227:8;4386:7;4406:17;4425:18;4447:27;4458:4;4464:9;4447:10;:27::i;:::-;4405:69;;;;4484:18;4496:5;4484:11;:18::i;:::-;-1:-1:-1;4519:9:8;4308:227;-1:-1:-1;;;4308:227:8:o;2243:1279::-;2324:7;2333:12;2554:9;:16;2574:2;2554:22;2550:966;;;2843:4;2828:20;;2822:27;2892:4;2877:20;;2871:27;2949:4;2934:20;;2928:27;2592:9;2920:36;2990:25;3001:4;2920:36;2822:27;2871;2990:10;:25::i;:::-;2983:32;;;;;;;;;2550:966;3036:9;:16;3056:2;3036:22;3032:484;;;3305:4;3290:20;;3284:27;3355:4;3340:20;;3334:27;3395:23;3406:4;3284:27;3334;3395:10;:23::i;:::-;3388:30;;;;;;;;3032:484;-1:-1:-1;3465:1:8;;-1:-1:-1;3469:35:8;3032:484;2243:1279;;;;;:::o;548:631::-;625:20;616:5;:29;;;;;;;;:::i;:::-;;612:561;;;548:631;:::o;612:561::-;721:29;712:5;:38;;;;;;;;:::i;:::-;;708:465;;;766:34;;-1:-1:-1;;;766:34:8;;9142:2:13;766:34:8;;;9124:21:13;9181:2;9161:18;;;9154:30;9220:26;9200:18;;;9193:54;9264:18;;766:34:8;8940:348:13;708:465:8;830:35;821:5;:44;;;;;;;;:::i;:::-;;817:356;;;881:41;;-1:-1:-1;;;881:41:8;;10253:2:13;881:41:8;;;10235:21:13;10292:2;10272:18;;;10265:30;10331:33;10311:18;;;10304:61;10382:18;;881:41:8;10051:355:13;817:356:8;952:30;943:5;:39;;;;;;;;:::i;:::-;;939:234;;;998:44;;-1:-1:-1;;;998:44:8;;14079:2:13;998:44:8;;;14061:21:13;14118:2;14098:18;;;14091:30;14157:34;14137:18;;;14130:62;-1:-1:-1;;;14208:18:13;;;14201:32;14250:19;;998:44:8;13877:398:13;939:234:8;1072:30;1063:5;:39;;;;;;;;:::i;:::-;;1059:114;;;1118:44;;-1:-1:-1;;;1118:44:8;;16376:2:13;1118:44:8;;;16358:21:13;16415:2;16395:18;;;16388:30;16454:34;16434:18;;;16427:62;-1:-1:-1;;;16505:18:13;;;16498:32;16547:19;;1118:44:8;16174:398:13;5716:1603:8;5842:7;;6766:66;6753:79;;6749:161;;;-1:-1:-1;6864:1:8;;-1:-1:-1;6868:30:8;6848:51;;6749:161;6923:1;:7;;6928:2;6923:7;;:18;;;;;6934:1;:7;;6939:2;6934:7;;6923:18;6919:100;;;-1:-1:-1;6973:1:8;;-1:-1:-1;6977:30:8;6957:51;;6919:100;7130:24;;;7113:14;7130:24;;;;;;;;;8540:25:13;;;8613:4;8601:17;;8581:18;;;8574:45;;;;8635:18;;;8628:34;;;8678:18;;;8671:34;;;7130:24:8;;8512:19:13;;7130:24:8;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7130:24:8;;-1:-1:-1;;7130:24:8;;;-1:-1:-1;;;;;;;7168:20:8;;7164:101;;7220:1;7224:29;7204:50;;;;;;;7164:101;7283:6;-1:-1:-1;7291:20:8;;-1:-1:-1;5716:1603:8;;;;;;;;:::o;4789:336::-;4899:7;;-1:-1:-1;;;;;4944:80:8;;4899:7;5050:25;5066:3;5051:18;;;5073:2;5050:25;:::i;:::-;5034:42;;5093:25;5104:4;5110:1;5113;5116;5093:10;:25::i;:::-;5086:32;;;;;;4789:336;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:220::-;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;:::-;954:88;828:220;-1:-1:-1;;;828:220:13:o;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:347::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2675:5;2668:13;2661:21;2654:5;2651:32;2641:60;;2697:1;2694;2687:12;2641:60;2720:5;2710:15;;;2384:347;;;;;:::o;2736:254::-;2804:6;2812;2865:2;2853:9;2844:7;2840:23;2836:32;2833:52;;;2881:1;2878;2871:12;2833:52;2904:29;2923:9;2904:29;:::i;:::-;2894:39;2980:2;2965:18;;;;2952:32;;-1:-1:-1;;;2736:254:13:o;2995:245::-;3053:6;3106:2;3094:9;3085:7;3081:23;3077:32;3074:52;;;3122:1;3119;3112:12;3074:52;3161:9;3148:23;3180:30;3204:5;3180:30;:::i;3245:249::-;3314:6;3367:2;3355:9;3346:7;3342:23;3338:32;3335:52;;;3383:1;3380;3373:12;3335:52;3415:9;3409:16;3434:30;3458:5;3434:30;:::i;3499:320::-;3567:6;3620:2;3608:9;3599:7;3595:23;3591:32;3588:52;;;3636:1;3633;3626:12;3588:52;3676:9;3663:23;3709:18;3701:6;3698:30;3695:50;;;3741:1;3738;3731:12;3695:50;3764:49;3805:7;3796:6;3785:9;3781:22;3764:49;:::i;3824:450::-;3893:6;3946:2;3934:9;3925:7;3921:23;3917:32;3914:52;;;3962:1;3959;3952:12;3914:52;4002:9;3989:23;4035:18;4027:6;4024:30;4021:50;;;4067:1;4064;4057:12;4021:50;4090:22;;4143:4;4135:13;;4131:27;-1:-1:-1;4121:55:13;;4172:1;4169;4162:12;4121:55;4195:73;4260:7;4255:2;4242:16;4237:2;4233;4229:11;4195:73;:::i;4279:180::-;4338:6;4391:2;4379:9;4370:7;4366:23;4362:32;4359:52;;;4407:1;4404;4397:12;4359:52;-1:-1:-1;4430:23:13;;4279:180;-1:-1:-1;4279:180:13:o;4464:257::-;4505:3;4543:5;4537:12;4570:6;4565:3;4558:19;4586:63;4642:6;4635:4;4630:3;4626:14;4619:4;4612:5;4608:16;4586:63;:::i;:::-;4703:2;4682:15;-1:-1:-1;;4678:29:13;4669:39;;;;4710:4;4665:50;;4464:257;-1:-1:-1;;4464:257:13:o;4726:185::-;4768:3;4806:5;4800:12;4821:52;4866:6;4861:3;4854:4;4847:5;4843:16;4821:52;:::i;:::-;4889:16;;;;;4726:185;-1:-1:-1;;4726:185:13:o;5387:1433::-;5765:3;5794:1;5827:6;5821:13;5857:3;5879:1;5907:9;5903:2;5899:18;5889:28;;5967:2;5956:9;5952:18;5989;5979:61;;6033:4;6025:6;6021:17;6011:27;;5979:61;6059:2;6107;6099:6;6096:14;6076:18;6073:38;6070:165;;;-1:-1:-1;;;6134:33:13;;6190:4;6187:1;6180:15;6220:4;6141:3;6208:17;6070:165;6251:18;6278:104;;;;6396:1;6391:320;;;;6244:467;;6278:104;-1:-1:-1;;6311:24:13;;6299:37;;6356:16;;;;-1:-1:-1;6278:104:13;;6391:320;25462:1;25455:14;;;25499:4;25486:18;;6486:1;6500:165;6514:6;6511:1;6508:13;6500:165;;;6592:14;;6579:11;;;6572:35;6635:16;;;;6529:10;;6500:165;;;6504:3;;6694:6;6689:3;6685:16;6678:23;;6244:467;;;;;;;6727:87;6752:61;6778:34;6808:3;-1:-1:-1;;;5099:16:13;;5140:1;5131:11;;5034:114;6778:34;6770:6;6752:61;:::i;:::-;-1:-1:-1;;;4976:20:13;;5021:1;5012:11;;4916:113;6727:87;6720:94;5387:1433;-1:-1:-1;;;;;5387:1433:13:o;7628:488::-;-1:-1:-1;;;;;7897:15:13;;;7879:34;;7949:15;;7944:2;7929:18;;7922:43;7996:2;7981:18;;7974:34;;;8044:3;8039:2;8024:18;;8017:31;;;7822:4;;8065:45;;8090:19;;8082:6;8065:45;:::i;:::-;8057:53;7628:488;-1:-1:-1;;;;;;7628:488:13:o;8716:219::-;8865:2;8854:9;8847:21;8828:4;8885:44;8925:2;8914:9;8910:18;8902:6;8885:44;:::i;10411:349::-;10613:2;10595:21;;;10652:2;10632:18;;;10625:30;10691:27;10686:2;10671:18;;10664:55;10751:2;10736:18;;10411:349::o;13459:413::-;13661:2;13643:21;;;13700:2;13680:18;;;13673:30;13739:34;13734:2;13719:18;;13712:62;-1:-1:-1;;;13805:2:13;13790:18;;13783:47;13862:3;13847:19;;13459:413::o;17687:356::-;17889:2;17871:21;;;17908:18;;;17901:30;17967:34;17962:2;17947:18;;17940:62;18034:2;18019:18;;17687:356::o;21111:415::-;21313:2;21295:21;;;21352:2;21332:18;;;21325:30;21391:34;21386:2;21371:18;;21364:62;-1:-1:-1;;;21457:2:13;21442:18;;21435:49;21516:3;21501:19;;21111:415::o;25515:253::-;25555:3;-1:-1:-1;;;;;25644:2:13;25641:1;25637:10;25674:2;25671:1;25667:10;25705:3;25701:2;25697:12;25692:3;25689:21;25686:47;;;25713:18;;:::i;:::-;25749:13;;25515:253;-1:-1:-1;;;;25515:253:13:o;25773:128::-;25813:3;25844:1;25840:6;25837:1;25834:13;25831:39;;;25850:18;;:::i;:::-;-1:-1:-1;25886:9:13;;25773:128::o;25906:120::-;25946:1;25972;25962:35;;25977:18;;:::i;:::-;-1:-1:-1;26011:9:13;;25906:120::o;26031:168::-;26071:7;26137:1;26133;26129:6;26125:14;26122:1;26119:21;26114:1;26107:9;26100:17;26096:45;26093:71;;;26144:18;;:::i;:::-;-1:-1:-1;26184:9:13;;26031:168::o;26204:246::-;26244:4;-1:-1:-1;;;;;26357:10:13;;;;26327;;26379:12;;;26376:38;;;26394:18;;:::i;:::-;26431:13;;26204:246;-1:-1:-1;;;26204:246:13:o;26455:125::-;26495:4;26523:1;26520;26517:8;26514:34;;;26528:18;;:::i;:::-;-1:-1:-1;26565:9:13;;26455:125::o;26585:258::-;26657:1;26667:113;26681:6;26678:1;26675:13;26667:113;;;26757:11;;;26751:18;26738:11;;;26731:39;26703:2;26696:10;26667:113;;;26798:6;26795:1;26792:13;26789:48;;;-1:-1:-1;;26833:1:13;26815:16;;26808:27;26585:258::o;26848:136::-;26887:3;26915:5;26905:39;;26924:18;;:::i;:::-;-1:-1:-1;;;26960:18:13;;26848:136::o;26989:380::-;27068:1;27064:12;;;;27111;;;27132:61;;27186:4;27178:6;27174:17;27164:27;;27132:61;27239:2;27231:6;27228:14;27208:18;27205:38;27202:161;;;27285:10;27280:3;27276:20;27273:1;27266:31;27320:4;27317:1;27310:15;27348:4;27345:1;27338:15;27202:161;;26989:380;;;:::o;27374:135::-;27413:3;-1:-1:-1;;27434:17:13;;27431:43;;;27454:18;;:::i;:::-;-1:-1:-1;27501:1:13;27490:13;;27374:135::o;27514:112::-;27546:1;27572;27562:35;;27577:18;;:::i;:::-;-1:-1:-1;27611:9:13;;27514:112::o;27631:127::-;27692:10;27687:3;27683:20;27680:1;27673:31;27723:4;27720:1;27713:15;27747:4;27744:1;27737:15;27763:127;27824:10;27819:3;27815:20;27812:1;27805:31;27855:4;27852:1;27845:15;27879:4;27876:1;27869:15;27895:127;27956:10;27951:3;27947:20;27944:1;27937:31;27987:4;27984:1;27977:15;28011:4;28008:1;28001:15;28027:127;28088:10;28083:3;28079:20;28076:1;28069:31;28119:4;28116:1;28109:15;28143:4;28140:1;28133:15;28159:127;28220:10;28215:3;28211:20;28208:1;28201:31;28251:4;28248:1;28241:15;28275:4;28272:1;28265:15;28291:131;-1:-1:-1;;;;;;28365:32:13;;28355:43;;28345:71;;28412:1;28409;28402:12

Swarm Source

ipfs://a5e1b345bfd431910ab08093060be4455ed66f6700a59d360164bb50b21cccc4
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.