ETH Price: $3,389.08 (-1.53%)
Gas: 2 Gwei

Token

Landz (LDZ)
 

Overview

Max Total Supply

1,026 LDZ

Holders

341

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Fake_Phishing11227
Balance
1 LDZ
0x1ba383587e6b6e8925bc2fff5d6165ab8a2eeaaf
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:
Landz

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Landz.sol
// SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.14;

import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import  "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "../libraries/libraryfile.sol";
// import { ILandz } from "./ILandz.sol";

contract Landz is ERC721A, Pausable, Ownable {
  using Strings for uint256;

  uint16 public index = 1;
  uint16 public hqIndex;
  uint16 public museumIndex;
  uint16 public mansionIndex;
  /**
  * @notice counter for free Hq mint
  */
  uint8 public freeMintHqCounter = 15;
  /**
  * @notice counter for free Museum mint
  */
  uint8 public freeMintMuseumCounter = 45;
  /**
  * @notice counter for free Mansion mint
  */
  uint8 public freeMintMansionCounter = 150;
  bool private isGiveAway;
  /**
  * @notice define base Uri
  */
  string public baseURI = "https://nft-api.landz.io/metadata/";
  /**
  * @notice store mint count per wallet address
  */
  mapping(address => uint16) public mintsPerAddressCount;
  /**
  * @notice store if free minted has been used per wallet address
  */
  mapping(address => bool) public isFreeMinted;
  /**
  * @notice store Nft type per token identifier
  */
  mapping(uint256 => DataLibrary.NftType) public tokenIdNftTypes;

  event NewURI(string newURI);
  event WithdrawnPayment(uint256 landzBalance, uint256 advisorBalanceA, uint256 advisorBalanceB, uint256 advisorBalanceC, uint256 advisorBalanceD);
  event updatePhase(DataLibrary.SalePhase phase);

  /**
  * @notice indicates the current phase
  */
  DataLibrary.SalePhase public phase = DataLibrary.SalePhase.Phase01;

  constructor() ERC721A("Landz", "LDZ") {}

  /**
  * @notice check coupon by coupon type
  */
  modifier verifyCoupon(DataLibrary.Coupon memory coupon, DataLibrary.CouponType couponType) {
    bytes32 digest = keccak256(
        abi.encode(couponType, msg.sender)
    );
    require(Library.isVerifiedCoupon(digest, coupon), "001");
    _;
  }

  /**
  * @dev setPhase updates the phase
  *
  * Emits a {Unpaused} event.
  *
  * Requirements:
  *
  * - Only the owner can call this function
  **/

  function setPhase(DataLibrary.SalePhase phase_)
  external
  onlyOwner {
      phase = phase_;
      emit updatePhase(phase_);
  }

  
  /**
  * @notice returns the starting token identifier
  */
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  /**
  * @dev mint
  *
  * Emits [Transfer] event.
  *
  * Requirements:
  *
  * - should have a valid coupon if we are ()
  **/

  function mint(
    address to,
    uint16 quantityHq,
    uint16 quantityMuseum,
    uint16 quantityMansion,
    DataLibrary.Coupon memory coupon,
    DataLibrary.CouponType couponType
  ) external
    payable
    whenNotPaused
    verifyCoupon(coupon, couponType)
  {
    // if msg.sender == crossmint address then crossmint use case
    if (msg.sender != to)
      require(msg.sender == DataLibrary.crossMintAddress, "007");

    DataLibrary.InternVar memory internVar;
    internVar.price = msg.value;

    unchecked {
      internVar.quantity = quantityHq + quantityMuseum + quantityMansion;
      internVar.mintsWalletCount = mintsPerAddressCount[to] + internVar.quantity;
    }

    //check total maxSupply mintable 6300
    require(hqIndex + museumIndex + mansionIndex + internVar.quantity < 6300 + 1
      , "006");

    //check total maxSpply mintable per nft type (hq 500, museum 1500, mansion 5000)
    Library.checkSupply(
      hqIndex,
      museumIndex,
      mansionIndex,
      quantityHq,
      quantityMuseum,
      quantityMansion,
      500,
      1500,
      5000
    );

    //phases discount: 01, 02 and 03
    if (phase != DataLibrary.SalePhase.Phase04 && phase != DataLibrary.SalePhase.Phase05) {

       //check matching coupons / phases
      if (phase == DataLibrary.SalePhase.Phase01) {
        require(couponType == DataLibrary.CouponType.HQWL, "001");
      }
      else if (phase == DataLibrary.SalePhase.Phase02) {
        require(couponType == DataLibrary.CouponType.HQWL || couponType == DataLibrary.CouponType.MuseumWL
          , "001");
      }
      else if (phase == DataLibrary.SalePhase.Phase03) {
        require(couponType == DataLibrary.CouponType.HQWL
          || couponType == DataLibrary.CouponType.MuseumWL
          || couponType == DataLibrary.CouponType.MansionWL
          , "001");
      }

      
      require(internVar.mintsWalletCount < 6  //maxMints_BeforePhase04_PerAddress 5
          , "009");
      
      //check maxSpply mintable per nft type and phase (100 hq, 300 meusem, 1000 mansion)
      Library.checkSupply(
        hqIndex,
        museumIndex,
        mansionIndex,
        quantityHq,
        quantityMuseum,
        quantityMansion,
        300,
        810,
        3000
      );

      //define prices for discount phases
      internVar.hqPrice = 0.70 ether;
      internVar.museumPrice = 0.50 ether;
      internVar.mansionPrice = 0.30 ether;
    }
    else {
      //phase 04 private sale
      if (phase == DataLibrary.SalePhase.Phase04) {

        //check matching coupons / phases
        require(couponType == DataLibrary.CouponType.HQWL
          || couponType == DataLibrary.CouponType.MuseumWL
          || couponType == DataLibrary.CouponType.MansionWL
          || couponType == DataLibrary.CouponType.PrivateWL
          , "001");

        unchecked {
          internVar.mintsWalletCount = mintsPerAddressCount[to] + internVar.quantity; 
        }
        if (couponType == DataLibrary.CouponType.PrivateWL)
          require(internVar.mintsWalletCount < 6, "009");
        // no limit
        // require(internVar.mintsWalletCount < 9999 //maxMints_BeforePhase05_PerAddress 10
        //   , "009");

        //check maxSpply mintable per nft type and phase (150 hq, 360 meusem, 1500 mansion)
        Library.checkSupply(
          hqIndex,
          museumIndex,
          mansionIndex,
          quantityHq,
          quantityMuseum,
          quantityMansion,
          285,
          765,
          2850
        );
      }
      //phase 05 public sale
      else if (phase == DataLibrary.SalePhase.Phase05) {

        //check matching coupons / phases
        require(couponType == DataLibrary.CouponType.HQWL
          || couponType == DataLibrary.CouponType.MuseumWL
          || couponType == DataLibrary.CouponType.MansionWL
          || couponType == DataLibrary.CouponType.PrivateWL
          || couponType == DataLibrary.CouponType.PublicWL
          , "001");
        }

        //define prices for private and public phases
        internVar.hqPrice = 1.00 ether;
        internVar.museumPrice = 0.60 ether;
        internVar.mansionPrice = 0.40 ether;
    }

    //can we receive phase != available values? if yes, check validation before mint call
    unchecked {
      internVar.expectedPrice = (quantityHq * internVar.hqPrice) 
        + (quantityMuseum * internVar.museumPrice)
        + (quantityMansion * internVar.mansionPrice);
    }
    require(internVar.expectedPrice < internVar.price + 1, "005");

    //mint Hq
    if (quantityHq != 0) {
      _mint(to, quantityHq);
      for(uint16 i; i < quantityHq; ) {
        tokenIdNftTypes[index + i] = DataLibrary.NftType.Hq;
        unchecked { ++i; }
      }
      hqIndex += quantityHq;
      index += quantityHq;
    }

    //mint Museum
    if (quantityMuseum != 0) {
      _mint(to, quantityMuseum);
      for(uint16 i; i < quantityMuseum; ) {
        tokenIdNftTypes[index + i] = DataLibrary.NftType.Museum;
        unchecked { ++i; }
      }
      unchecked {
        museumIndex += quantityMuseum;
        index += quantityMuseum;
      }
    }

    //mint Mansion
    if (quantityMansion != 0) {
      _mint(to, quantityMansion);
      for(uint16 i; i < quantityMansion; ) {
        tokenIdNftTypes[index + i] = DataLibrary.NftType.Mansion;
        unchecked { ++i; }
      }
      unchecked {
        mansionIndex += quantityMansion;
        index += quantityMansion;
      }
    }
    // increment mint count
    unchecked { mintsPerAddressCount[to] += internVar.quantity; }
  }

  /**
  * @dev freeMint ReservedWL can mint 1 NFT for free
  *
  * Emits a {Transfer} event.
  *
  * Requirements:
  *
  * - Only whitelisted address can call this function
  */

  function freeMint(
    DataLibrary.NftType nftType,
    DataLibrary.Coupon memory coupon,
    DataLibrary.CouponType couponType
  ) external
    whenNotPaused
    verifyCoupon(coupon, couponType)
  {
    // check if msg sender already minted
    require(!isFreeMinted[msg.sender], "010");
    require(couponType == DataLibrary.CouponType.ReservedWL, "001");

    if (nftType == DataLibrary.NftType.Hq) {
      require(freeMintHqCounter > 0, "011");
      _mint(msg.sender, 1);
      tokenIdNftTypes[index] = DataLibrary.NftType.Hq;
      unchecked {
        ++index;
        ++hqIndex;
        --freeMintHqCounter;
      }
    }
    if (nftType == DataLibrary.NftType.Museum) {
      require(freeMintMuseumCounter > 0, "011");
      _mint(msg.sender, 1);
      tokenIdNftTypes[index] = DataLibrary.NftType.Museum;
      unchecked {
        ++index;
        ++museumIndex;
        --freeMintMuseumCounter;
      }
    }
    if (nftType == DataLibrary.NftType.Mansion) {
      require(freeMintMansionCounter > 0, "011");
      _mint(msg.sender, 1);
      tokenIdNftTypes[index] = DataLibrary.NftType.Mansion;
      unchecked {
        ++index;
        ++mansionIndex;
        --freeMintMansionCounter;
      }
    }
    unchecked {
        isFreeMinted[msg.sender] = true;
    } 
  }

  /**
  * @dev giveAway mints 35 HQ, 105 Museums and 350 Mansions once.
  *
  * Emits a {Transfer} event.
  *
  * Requirements:
  *
  * - Only the Landz address can call this function
  */

  function giveAway() external {
    require(msg.sender == DataLibrary.giveAwayAddress, "012");
    require(!isGiveAway, "010");

    //mint 35 hq
    _mint(msg.sender, 35);
    for (uint16 i; i < 35; ) {
      tokenIdNftTypes[index + i] = DataLibrary.NftType.Hq;
      unchecked { ++i; }
    }
    index += 35;
    hqIndex += 35;

    //mint 105 meuseum
    _mint(msg.sender, 105);
    for (uint16 i; i < 105; ) {
      tokenIdNftTypes[index + i] = DataLibrary.NftType.Museum;
      unchecked { ++i; }
    }
    index += 105;
    museumIndex += 105;

    //mint 350 mansion
    _mint(msg.sender, 350);
    for (uint16 i; i < 350; ) {
      tokenIdNftTypes[index + i] = DataLibrary.NftType.Mansion;
      unchecked { ++i; }
    }
    index += 350;
    mansionIndex += 350;
    isGiveAway = true;
  }
  
  /**
  * @notice get the uri to metatada
  * @param tokenId token identifier
  * @return string uri
  */
  function tokenURI(uint256 tokenId)
  public
  view
  override
  returns(string memory) {
    require(_exists(tokenId), "015");
      return bytes(baseURI).length > 0 ?
        string(abi.encodePacked(baseURI, tokenId.toString())) :
        "";
  }

  /**
  * @dev pause() is used to pause contract.
  *
  * Emits a {Paused} event.
  *
  * Requirements:
  *
  * - Only the owner can call this function
  **/

  function pause() external onlyOwner whenNotPaused {
    _pause();
  }

  /**
  * @dev unpause() is used to unpause contract.
  *
  * Emits a {Unpaused} event.
  *
  * Requirements:
  *
  * - Only the owner can call this function
  **/

  function unpause() external onlyOwner whenPaused {
    _unpause();
  }

  /**
  * @dev withdraw is used to withdraw payment from contract.
  *
  * Emits a {WithdrawnPayment} event.
  *
  * Requirements:
  *
  * - Only the owner can call this function
  **/

  function withdraw() external {
    require(msg.sender == DataLibrary.landzAddress || msg.sender == DataLibrary.advisorA, "012");
    uint256 balanceAdvisorA;
    uint256 balanceAdvisorB;
    uint256 balanceAdvisorC;
    uint256 balanceAdvisorD;
    unchecked {
      balanceAdvisorA = address(this).balance * 1000 / 10000;
      balanceAdvisorB = address(this).balance * 1750 / 10000;
      balanceAdvisorC = address(this).balance * 500 / 10000;
      balanceAdvisorD = address(this).balance * 400 / 10000;
    }
    (bool successA, ) = payable(DataLibrary.advisorA).call{ value: balanceAdvisorA }("");
    (bool successB, ) = payable(DataLibrary.advisorB).call{ value: balanceAdvisorB }("");
    (bool successC, ) = payable(DataLibrary.advisorC).call{ value: balanceAdvisorC }("");
    (bool successD, ) = payable(DataLibrary.advisorD).call{ value: balanceAdvisorD }("");
    require(successA && successB && successC && successD, "013");
    uint256 balanceLandz = address(this).balance;
    (bool success, ) = payable(DataLibrary.landzAddress).call{ value: balanceLandz }("");
    require(success, "014");
    emit WithdrawnPayment(balanceLandz, balanceAdvisorA, balanceAdvisorB, balanceAdvisorC, balanceAdvisorD);
  }

  /**
  * @dev setBaseUri updates the new token URI in contract.
  *
  * Emits a {NewURI} event.
  *
  * Requirements:
  *
  * - Only owner of contract can call this function
  **/

  function setBaseUri(string memory uri)
  external
  onlyOwner {
      baseURI = uri;
      emit NewURI(uri);
  }

  /**
  * @dev getNftType retreives Nft type by token identifier.
  **/
  function getNftType(uint16 _tokenId) external view returns(DataLibrary.NftType) {
    return tokenIdNftTypes[_tokenId];
  }

  // /// @notice get the available supply for HQ

  // function getAvailableHqFreeMint() external view returns(uint256) {
  //   return freeMintHqCounter;
  // }

  // /// @notice get the available supply for Museum

  // function getAvailableMuseumFreeMint() external view returns(uint256) {
  //   return freeMintMuseumCounter;
  // }

  // /// @notice get the available supply for Mansion

  // function getAvailableMansionFreeMint() external view returns(uint256) {
  //   return freeMintMansionCounter;
  // }

  // /// @notice return the adminSigner address

  // function getAdminSigner() external pure returns(address) {
  //   return DataLibrary._adminSigner;
  // }

  // /// @notice return the treasury address

  // function getlandzAddress() external pure returns(address) {
  //   return DataLibrary.landzAddress;
  // }
}

File 2 of 8 : libraryfile.sol
// SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.14;

library DataLibrary {
 enum SalePhase {
    Phase01,
    Phase02,
    Phase03,
    Phase04,
    Phase05
  }

  enum CouponType {
    HQWL,
    MuseumWL,
    MansionWL,
    PrivateWL,
    PublicWL,
    ReservedWL
  }

  enum NftType {
    None,
    Hq,
    Museum,
    Mansion
  }

  struct Coupon {
    bytes32 r;
    bytes32 s;
    uint8 v;
  }

  struct InternVar {
    uint256 price;
    uint256 expectedPrice;
    uint16 quantity;
    uint256 hqPrice;
    uint256 museumPrice;
    uint256 mansionPrice;
    uint16 mintsWalletCount;
  }

  address public constant _adminSigner = 0x8345b7C47CA83De149b672472962cc6d6B7A8D70; 
  address public constant crossMintAddress = 0xdAb1a1854214684acE522439684a145E62505233;
  address public constant landzAddress = 0xf15Fe77814aaBD9E71691948f3289F8438679a96;
  address public constant giveAwayAddress = 0xB9e0beEE9CFc48C1E53442baB96371DcAd9c3cB2;
  address public constant advisorA = 0x3F9ed7b1b3C2A70169D0122DfDD95CE2662b82D6;
  address public constant advisorB = 0x419e90565Db6D2222b93841e38e586cbB1f8a5ee;
  address public constant advisorC = 0x5d77679942eafB5E2C1958D115F4f9508311067d;
  address public constant advisorD = 0x3483fD757C3F6718971aC59219a743C170E8FE32;
}

library Library {
  /// @notice _isVerifiedCoupon verify the coupon

  function isVerifiedCoupon(bytes32 digest, DataLibrary.Coupon memory coupon)
  internal
  pure
  returns(bool) {
    address signer = ecrecover(digest, coupon.v, coupon.r, coupon.s);
    require(signer != address(0), "016"); // Added check for zero address
    return signer == DataLibrary._adminSigner;
  }

  function checkSupply(
    uint16 hqIndex,
    uint16 museumIndex,
    uint16 mensionIndex,
    uint16 quantityHq,
    uint16 quantityMuseum,
    uint16 quantityMansion,
    uint16 maxSupplyHq,
    uint16 maxSupplyMuseum,
    uint16 maxSupplyMansion
  )
    internal
    pure
  {
    require(hqIndex + quantityHq < maxSupplyHq + 1
      , "002");
    require(museumIndex + quantityMuseum < maxSupplyMuseum + 1
      , "003");
    require(mensionIndex + quantityMansion < maxSupplyMansion + 1
      , "004");
  }
}

File 3 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 4 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "details": {
      "constantOptimizer": true,
      "cse": true,
      "deduplicate": true,
      "inliner": true,
      "jumpdestRemover": true,
      "orderLiterals": true,
      "peephole": true,
      "yul": false
    },
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"NewURI","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"landzBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"advisorBalanceA","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"advisorBalanceB","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"advisorBalanceC","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"advisorBalanceD","type":"uint256"}],"name":"WithdrawnPayment","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum DataLibrary.SalePhase","name":"phase","type":"uint8"}],"name":"updatePhase","type":"event"},{"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":"enum DataLibrary.NftType","name":"nftType","type":"uint8"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct DataLibrary.Coupon","name":"coupon","type":"tuple"},{"internalType":"enum DataLibrary.CouponType","name":"couponType","type":"uint8"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintHqCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMansionCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMuseumCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_tokenId","type":"uint16"}],"name":"getNftType","outputs":[{"internalType":"enum DataLibrary.NftType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hqIndex","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"index","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFreeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mansionIndex","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"quantityHq","type":"uint16"},{"internalType":"uint16","name":"quantityMuseum","type":"uint16"},{"internalType":"uint16","name":"quantityMansion","type":"uint16"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct DataLibrary.Coupon","name":"coupon","type":"tuple"},{"internalType":"enum DataLibrary.CouponType","name":"couponType","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddressCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"museumIndex","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"enum DataLibrary.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DataLibrary.SalePhase","name":"phase_","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdNftTypes","outputs":[{"internalType":"enum DataLibrary.NftType","name":"","type":"uint8"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60088054600167ffffffffffff000160a81b03167f962d0f000000000000000100000000000000000000000000000000000000000017905560e0604052602260808181529062003a1460a03980516200006191600a9160209091019062000155565b50600e805460ff191690553480156200007957600080fd5b5060408051808201825260058152642630b7323d60d91b60208083019182528351808501909452600384526226222d60e91b908401528151919291620000c29160029162000155565b508051620000d890600390602084019062000155565b50600160005550506008805460ff19169055620000f533620000fb565b62000241565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001639062000211565b90600052602060002090601f016020900481019282620001875760008555620001d2565b82601f10620001a257805160ff1916838001178555620001d2565b82800160010185558215620001d2579182015b82811115620001d2578251825591602001919060010190620001b5565b50620001e0929150620001e4565b5090565b5b80821115620001e05760008155600101620001e5565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806200022657607f821691505b6020821081036200023b576200023b620001fb565b50919050565b6137c380620002516000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063b1c9fe6e116100ab578063c87b56dd1161006f578063c87b56dd146106b8578063ccc59932146106d8578063d0c433d31461070c578063e985e9c514610721578063f2fde38b1461074157600080fd5b8063b1c9fe6e1461060f578063b88d4fde14610636578063b95db12c14610656578063c03afb5914610678578063c2d5ef971461069857600080fd5b806395d89b41116100f257806395d89b4114610568578063a0bcfc7f1461057d578063a22cb4651461059d578063ab6138e3146105bd578063b1ad2889146105de57600080fd5b80636c0360eb146104e657806370a08231146104fb578063715018a61461051b5780638456cb59146105305780638da5cb5b1461054557600080fd5b8063308775ab116101bc5780635c975abb116101805780635c975abb146104495780635d729df5146104615780635d8c66891461049157806361487831146104a45780636352211e146104c657600080fd5b8063308775ab146103bc5780633ccfd60b146103dd5780633f4ba83a146103f257806342842e0e146104075780635842a4b71461042757600080fd5b806312ffc6b01161020357806312ffc6b0146102dc57806318160ddd1461031957806323b872dd1461033f578063291c7b021461035f5780632986c0e51461038d57600080fd5b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004612a6f565b610761565b6040516102629190612a9a565b60405180910390f35b34801561027757600080fd5b506102806107b3565b6040516102629190612b06565b34801561029957600080fd5b506102ad6102a8366004612b28565b610845565b6040516102629190612b63565b3480156102c657600080fd5b506102da6102d5366004612b85565b610889565b005b3480156102e857600080fd5b5061030c6102f7366004612b28565b600d6020526000908152604090205460ff1681565b6040516102629190612c0b565b34801561032557600080fd5b5060015460005403600019015b6040516102629190612c1f565b34801561034b57600080fd5b506102da61035a366004612c2d565b61095b565b34801561036b57600080fd5b5060085461038090600160e81b900460ff1681565b6040516102629190612c86565b34801561039957600080fd5b506008546103af90600160a81b900461ffff1681565b6040516102629190612c9e565b3480156103c857600080fd5b5060085461038090600160f81b900460ff1681565b3480156103e957600080fd5b506102da61096b565b3480156103fe57600080fd5b506102da610cc2565b34801561041357600080fd5b506102da610422366004612c2d565b610d1e565b34801561043357600080fd5b506008546103af90600160c81b900461ffff1681565b34801561045557600080fd5b5060085460ff16610255565b34801561046d57600080fd5b5061025561047c366004612cac565b600c6020526000908152604090205460ff1681565b6102da61049f366004612dc6565b610d39565b3480156104b057600080fd5b506008546103af90600160d81b900461ffff1681565b3480156104d257600080fd5b506102ad6104e1366004612b28565b6116a8565b3480156104f257600080fd5b506102806116b3565b34801561050757600080fd5b50610332610516366004612cac565b611741565b34801561052757600080fd5b506102da611790565b34801561053c57600080fd5b506102da6117ca565b34801561055157600080fd5b5060085461010090046001600160a01b03166102ad565b34801561057457600080fd5b50610280611825565b34801561058957600080fd5b506102da610598366004612eed565b611834565b3480156105a957600080fd5b506102da6105b8366004612f3b565b6118b2565b3480156105c957600080fd5b5060085461038090600160f01b900460ff1681565b3480156105ea57600080fd5b506103af6105f9366004612cac565b600b6020526000908152604090205461ffff1681565b34801561061b57600080fd5b50600e546106299060ff1681565b6040516102629190612f9c565b34801561064257600080fd5b506102da610651366004612faa565b61194a565b34801561066257600080fd5b506008546103af90600160b81b900461ffff1681565b34801561068457600080fd5b506102da610693366004613041565b611994565b3480156106a457600080fd5b506102da6106b336600461307a565b611a17565b3480156106c457600080fd5b506102806106d3366004612b28565b611dce565b3480156106e457600080fd5b5061030c6106f33660046130c0565b61ffff166000908152600d602052604090205460ff1690565b34801561071857600080fd5b506102da611e51565b34801561072d57600080fd5b5061025561073c3660046130e1565b612185565b34801561074d57600080fd5b506102da61075c366004612cac565b6121b3565b60006301ffc9a760e01b6001600160e01b03198316148061079257506380ac58cd60e01b6001600160e01b03198316145b806107ad5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107c29061312a565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee9061312a565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b600061085082612215565b61086d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108948261224a565b9050806001600160a01b0316836001600160a01b0316036108c85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108ff576108e28133612185565b6108ff576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109668383836122c0565b505050565b3373f15fe77814aabd9e71691948f3289f8438679a9614806109a0575033733f9ed7b1b3c2a70169d0122dfdd95ce2662b82d6145b6109c55760405162461bcd60e51b81526004016109bc90613173565b60405180910390fd5b604051612710476103e80281900491476106d60282900491476101f4028190049147610190029190910490600090733f9ed7b1b3c2a70169d0122dfdd95ce2662b82d6908690610a1490613199565b60006040518083038185875af1925050503d8060008114610a51576040519150601f19603f3d011682016040523d82523d6000602084013e610a56565b606091505b50509050600073419e90565db6d2222b93841e38e586cbb1f8a5ee6001600160a01b031685604051610a8790613199565b60006040518083038185875af1925050503d8060008114610ac4576040519150601f19603f3d011682016040523d82523d6000602084013e610ac9565b606091505b505090506000735d77679942eafb5e2c1958d115f4f9508311067d6001600160a01b031685604051610afa90613199565b60006040518083038185875af1925050503d8060008114610b37576040519150601f19603f3d011682016040523d82523d6000602084013e610b3c565b606091505b505090506000733483fd757c3f6718971ac59219a743c170e8fe326001600160a01b031685604051610b6d90613199565b60006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b50509050838015610bbd5750825b8015610bc65750815b8015610bcf5750805b610beb5760405162461bcd60e51b81526004016109bc906131bb565b604051479060009073f15fe77814aabd9e71691948f3289f8438679a96908390610c1490613199565b60006040518083038185875af1925050503d8060008114610c51576040519150601f19603f3d011682016040523d82523d6000602084013e610c56565b606091505b5050905080610c775760405162461bcd60e51b81526004016109bc906131e5565b7ff5b79eec8218377a0634e2bf0713090c61f077a6c11f2f8ac8dcc6707ad86aeb828b8b8b8b604051610cae9594939291906131f5565b60405180910390a150505050505050505050565b6008546001600160a01b03610100909104163314610cf25760405162461bcd60e51b81526004016109bc90613273565b60085460ff16610d145760405162461bcd60e51b81526004016109bc906132ae565b610d1c612467565b565b6109668383836040518060200160405280600081525061194a565b60085460ff1615610d5c5760405162461bcd60e51b81526004016109bc906132e5565b818160008133604051602001610d73929190613323565b604051602081830303815290604052805190602001209050610d9581846124cd565b610db15760405162461bcd60e51b81526004016109bc90613358565b336001600160a01b038a1614610df4573373dab1a1854214684ace522439684a145e6250523314610df45760405162461bcd60e51b81526004016109bc90613382565b610e3c6040518060e001604052806000815260200160008152602001600061ffff168152602001600081526020016000815260200160008152602001600061ffff1681525090565b34815261ffff8989018801811660408084018281526001600160a01b038e166000908152600b60205291909120548316909101821660c08401525160085461189d92600160d81b8204811691610ea391600160c81b8204811691600160b81b9004166133a8565b610ead91906133a8565b610eb791906133a8565b61ffff1610610ed85760405162461bcd60e51b81526004016109bc906133eb565b600854610f109061ffff600160b81b8204811691600160c81b8104821691600160d81b909104168c8c8c6101f46105dc61138861257b565b6003600e5460ff166004811115610f2957610f29612bc2565b14158015610f4e57506004600e5460ff166004811115610f4b57610f4b612bc2565b14155b1561111a576000600e5460ff166004811115610f6c57610f6c612bc2565b03610fa85760005b856005811115610f8657610f86612bc2565b14610fa35760405162461bcd60e51b81526004016109bc90613358565b61108b565b6001600e5460ff166004811115610fc157610fc1612bc2565b03611004576000856005811115610fda57610fda612bc2565b1480610fe857506001610f74565b610fa35760405162461bcd60e51b81526004016109bc90613358565b6002600e5460ff16600481111561101d5761101d612bc2565b0361108b57600085600581111561103657611036612bc2565b14806110535750600185600581111561105157611051612bc2565b145b8061106f5750600285600581111561106d5761106d612bc2565b145b61108b5760405162461bcd60e51b81526004016109bc90613358565b60068160c0015161ffff16106110b35760405162461bcd60e51b81526004016109bc90613415565b6008546110eb9061ffff600160b81b8204811691600160c81b8104821691600160d81b909104168c8c8c61012c61032a610bb861257b565b6709b6e64a8ec6000060608201526706f05b59d3b200006080820152670429d069189e000060a0820152611353565b6003600e5460ff16600481111561113357611133612bc2565b0361126957600085600581111561114c5761114c612bc2565b14806111695750600185600581111561116757611167612bc2565b145b806111855750600285600581111561118357611183612bc2565b145b806111a15750600385600581111561119f5761119f612bc2565b145b6111bd5760405162461bcd60e51b81526004016109bc90613358565b6040808201516001600160a01b038c166000908152600b602052919091205461ffff9081169091011660c082015260038560058111156111ff576111ff612bc2565b0361122c5760068160c0015161ffff161061122c5760405162461bcd60e51b81526004016109bc90613415565b6008546112649061ffff600160b81b8204811691600160c81b8104821691600160d81b909104168c8c8c61011d6102fd610b2261257b565b611328565b6004600e5460ff16600481111561128257611282612bc2565b0361132857600085600581111561129b5761129b612bc2565b14806112b8575060018560058111156112b6576112b6612bc2565b145b806112d4575060028560058111156112d2576112d2612bc2565b145b806112f0575060038560058111156112ee576112ee612bc2565b145b8061130c5750600485600581111561130a5761130a612bc2565b145b6113285760405162461bcd60e51b81526004016109bc90613358565b670de0b6b3a76400006060820152670853a0d2313c0000608082015267058d15e17628000060a08201525b8060a001518761ffff160281608001518961ffff160282606001518b61ffff16020101816020018181525050806000015160016113909190613425565b8160200151106113b25760405162461bcd60e51b81526004016109bc90613452565b61ffff8916156114ae576113ca8a8a61ffff16612634565b60005b8961ffff168161ffff16101561143a576001600d600083600860159054906101000a900461ffff166113ff91906133a8565b61ffff1681526020810191909152604001600020805460ff1916600183600381111561142d5761142d612bc2565b02179055506001016113cd565b5088600860178282829054906101000a900461ffff1661145a91906133a8565b92506101000a81548161ffff021916908361ffff16021790555088600860158282829054906101000a900461ffff1661149391906133a8565b92506101000a81548161ffff021916908361ffff1602179055505b61ffff88161561158a576114c68a8961ffff16612634565b60005b8861ffff168161ffff161015611536576002600d600083600860159054906101000a900461ffff166114fb91906133a8565b61ffff1681526020810191909152604001600020805460ff1916600183600381111561152957611529612bc2565b02179055506001016114c9565b5060088054600160a81b61ffff600160c81b80840482168d0182160261ffff60c81b198416811783900482168d0190911690910261ffff60a81b1990911665ffff0000ffff60a81b19909216919091171790555b61ffff871615611668576115a28a8861ffff16612634565b60005b8761ffff168161ffff161015611612576003600d600083600860159054906101000a900461ffff166115d791906133a8565b61ffff1681526020810191909152604001600020805460ff1916600183600381111561160557611605612bc2565b02179055506001016115a5565b5060088054600160a81b61ffff600160d81b80840482168c0182160261ffff60d81b198416811783900482168c0190911690910261ffff60a81b1990911667ffff00000000ffff60a81b19909216919091171790555b6040908101516001600160a01b039a909a166000908152600b60205220805461ffff19811661ffff918216909b0116999099179098555050505050505050565b60006107ad8261224a565b600a80546116c09061312a565b80601f01602080910402602001604051908101604052809291908181526020018280546116ec9061312a565b80156117395780601f1061170e57610100808354040283529160200191611739565b820191906000526020600020905b81548152906001019060200180831161171c57829003601f168201915b505050505081565b60006001600160a01b03821661176a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b036101009091041633146117c05760405162461bcd60e51b81526004016109bc90613273565b610d1c6000612715565b6008546001600160a01b036101009091041633146117fa5760405162461bcd60e51b81526004016109bc90613273565b60085460ff161561181d5760405162461bcd60e51b81526004016109bc906132e5565b610d1c61276f565b6060600380546107c29061312a565b6008546001600160a01b036101009091041633146118645760405162461bcd60e51b81526004016109bc90613273565b805161187790600a9060208401906129b4565b507fe9b617ecb5f63f6a9ccd8d4d5fa0d7b2ef9b17ce3f48e6b135808d6a40e67742816040516118a79190612b06565b60405180910390a150565b336001600160a01b038316036118db5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061193e908590612a9a565b60405180910390a35050565b6119558484846122c0565b6001600160a01b0383163b1561198e57611971848484846127c7565b61198e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b036101009091041633146119c45760405162461bcd60e51b81526004016109bc90613273565b600e805482919060ff191660018360048111156119e3576119e3612bc2565b02179055507fcf3d8e53760202bc7465ebbdd1853b59f1d66307a4ae92f72a06333ae7bb8783816040516118a79190612f9c565b60085460ff1615611a3a5760405162461bcd60e51b81526004016109bc906132e5565b818160008133604051602001611a51929190613323565b604051602081830303815290604052805190602001209050611a7381846124cd565b611a8f5760405162461bcd60e51b81526004016109bc90613358565b336000908152600c602052604090205460ff1615611abf5760405162461bcd60e51b81526004016109bc9061347c565b6005846005811115611ad357611ad3612bc2565b14611af05760405162461bcd60e51b81526004016109bc90613358565b6001866003811115611b0457611b04612bc2565b03611bd657600854600160e81b900460ff16611b325760405162461bcd60e51b81526004016109bc906134a6565b611b3d336001612634565b6008805461ffff600160a81b9182900481166000908152600d60205260409020805460ff19166001908117909155835460ff60e81b1963ffffffff60a81b19821661ffff60b81b1986840486168501861690960295861617600160b81b61ffff60a81b19909316909517829004841690920190921690910291909117908116600160e81b9182900460ff90811660001901169091021790555b6002866003811115611bea57611bea612bc2565b03611cbf57600854600160f01b900460ff16611c185760405162461bcd60e51b81526004016109bc906134a6565b611c23336001612634565b6008805461ffff600160a81b9182900481166000908152600d60205260409020805460ff19166002179055825460ff60f01b1965ffff0000ffff60a81b19821661ffff60c81b1985840485166001908101861690960290811691909117600160c81b61ffff60a81b1990941690911783900484169094019092160291909117908116600160f01b9182900460ff90811660001901169091021790555b6003866003811115611cd357611cd3612bc2565b03611dac57600854600160f81b900460ff16611d015760405162461bcd60e51b81526004016109bc906134a6565b611d0c336001612634565b6008805461ffff600160a81b9182900481166000908152600d60205260409020805460ff1916600317905582546001600160f81b0367ffff00000000ffff60a81b19821661ffff60d81b1985840485166001908101861690960290811691909117600160d81b61ffff60a81b1990941690911783900484169094019092160291909117908116600160f81b9182900460ff90811660001901169091021790555b5050336000908152600c60205260409020805460ff1916600117905550505050565b6060611dd982612215565b611df55760405162461bcd60e51b81526004016109bc906134d0565b6000600a8054611e049061312a565b905011611e2057604051806020016040528060008152506107ad565b600a611e2b836128b3565b604051602001611e3c929190613570565b60405160208183030381529060405292915050565b3373b9e0beee9cfc48c1e53442bab96371dcad9c3cb214611e845760405162461bcd60e51b81526004016109bc90613173565b60095460ff1615611ea75760405162461bcd60e51b81526004016109bc9061347c565b611eb2336023612634565b60005b60238161ffff161015611f1f576001600d600083600860159054906101000a900461ffff16611ee491906133a8565b61ffff1681526020810191909152604001600020805460ff19166001836003811115611f1257611f12612bc2565b0217905550600101611eb5565b506023600860158282829054906101000a900461ffff16611f4091906133a8565b92506101000a81548161ffff021916908361ffff1602179055506023600860178282829054906101000a900461ffff16611f7a91906133a8565b92506101000a81548161ffff021916908361ffff160217905550611f9f336069612634565b60005b60698161ffff16101561200c576002600d600083600860159054906101000a900461ffff16611fd191906133a8565b61ffff1681526020810191909152604001600020805460ff19166001836003811115611fff57611fff612bc2565b0217905550600101611fa2565b506069600860158282829054906101000a900461ffff1661202d91906133a8565b92506101000a81548161ffff021916908361ffff1602179055506069600860198282829054906101000a900461ffff1661206791906133a8565b92506101000a81548161ffff021916908361ffff16021790555061208d3361015e612634565b60005b61015e8161ffff1610156120fb576003600d600083600860159054906101000a900461ffff166120c091906133a8565b61ffff1681526020810191909152604001600020805460ff191660018360038111156120ee576120ee612bc2565b0217905550600101612090565b5061015e600860158282829054906101000a900461ffff1661211d91906133a8565b92506101000a81548161ffff021916908361ffff16021790555061015e6008601b8282829054906101000a900461ffff1661215891906133a8565b825461ffff9182166101009390930a9283029190920219909116179055506009805460ff19166001179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b036101009091041633146121e35760405162461bcd60e51b81526004016109bc90613273565b6001600160a01b0381166122095760405162461bcd60e51b81526004016109bc90613588565b61221281612715565b50565b600081600111158015612229575060005482105b80156107ad575050600090815260046020526040902054600160e01b161590565b600081806001116122a7576000548110156122a75760008181526004602052604081205490600160e01b821690036122a5575b8060000361229e57506000190160008181526004602052604090205461227d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006122cb8261224a565b9050836001600160a01b0316816001600160a01b0316146122fe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061231c575061231c8533612185565b8061233757503361232c84610845565b6001600160a01b0316145b90508061235757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661237e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361241f5760018301600081815260046020526040812054900361241d57600054811461241d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60085460ff166124895760405162461bcd60e51b81526004016109bc906132ae565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516124c39190612b63565b60405180910390a1565b600080600184846040015185600001518660200151604051600081526020016040526040516124ff94939291906135d2565b6020604051602081039080840390855afa158015612521573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125545760405162461bcd60e51b81526004016109bc9061362a565b6001600160a01b0316738345b7c47ca83de149b672472962cc6d6b7a8d7014905092915050565b6125868360016133a8565b61ffff16612594878b6133a8565b61ffff16106125b55760405162461bcd60e51b81526004016109bc90613654565b6125c08260016133a8565b61ffff166125ce868a6133a8565b61ffff16106125ef5760405162461bcd60e51b81526004016109bc9061367e565b6125fa8160016133a8565b61ffff1661260885896133a8565b61ffff16106126295760405162461bcd60e51b81526004016109bc906136a8565b505050505050505050565b6000546001600160a01b03831661265d57604051622e076360e81b815260040160405180910390fd5b8160000361267e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106126c95750600055505050565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff16156127925760405162461bcd60e51b81526004016109bc906132e5565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124b63390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127fc9033908990889088906004016136b8565b6020604051808303816000875af1925050508015612837575060408051601f3d908101601f19168201909252612834918101906136fd565b60015b612895573d808015612865576040519150601f19603f3d011682016040523d82523d6000602084013e61286a565b606091505b50805160000361288d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036128da5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561290457806128ee8161371e565b91506128fd9050600a83613738565b91506128de565b60008167ffffffffffffffff81111561291f5761291f612ce2565b6040519080825280601f01601f191660200182016040528015612949576020820181803683370190505b5090505b84156128ab5761295e60018361374c565b915061296b600a86613763565b612976906030613425565b60f81b81838151811061298b5761298b613777565b60200101906001600160f81b031916908160001a9053506129ad600a86613738565b945061294d565b8280546129c09061312a565b90600052602060002090601f0160209004810192826129e25760008555612a28565b82601f106129fb57805160ff1916838001178555612a28565b82800160010185558215612a28579182015b82811115612a28578251825591602001919060010190612a0d565b50612a34929150612a38565b5090565b5b80821115612a345760008155600101612a39565b6001600160e01b031981165b811461221257600080fd5b80356107ad81612a4d565b600060208284031215612a8457612a84600080fd5b60006128ab8484612a64565b8015155b82525050565b602081016107ad8284612a90565b60005b83811015612ac3578181015183820152602001612aab565b8381111561198e5750506000910152565b6000612ade825190565b808452602084019350612af5818560208601612aa8565b601f01601f19169290920192915050565b6020808252810161229e8184612ad4565b80612a59565b80356107ad81612b17565b600060208284031215612b3d57612b3d600080fd5b60006128ab8484612b1d565b60006001600160a01b0382166107ad565b612a9481612b49565b602081016107ad8284612b5a565b612a5981612b49565b80356107ad81612b71565b60008060408385031215612b9b57612b9b600080fd5b6000612ba78585612b7a565b9250506020612bb885828601612b1d565b9150509250929050565b634e487b7160e01b600052602160045260246000fd5b6004811061221257612212612bc2565b80612bf281612bd8565b919050565b60006107ad82612be8565b612a9481612bf7565b602081016107ad8284612c02565b80612a94565b602081016107ad8284612c19565b600080600060608486031215612c4557612c45600080fd5b6000612c518686612b7a565b9350506020612c6286828701612b7a565b9250506040612c7386828701612b1d565b9150509250925092565b60ff8116612a94565b602081016107ad8284612c7d565b61ffff8116612a94565b602081016107ad8284612c94565b600060208284031215612cc157612cc1600080fd5b60006128ab8484612b7a565b61ffff8116612a59565b80356107ad81612ccd565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715612d1e57612d1e612ce2565b6040525050565b6000612d3060405190565b9050612bf28282612cf8565b60ff8116612a59565b80356107ad81612d3c565b600060608284031215612d6557612d65600080fd5b612d6f6060612d25565b90506000612d7d8484612b1d565b8252506020612d8e84848301612b1d565b6020830152506040612da284828501612d45565b60408301525092915050565b6006811061221257600080fd5b80356107ad81612dae565b6000806000806000806101008789031215612de357612de3600080fd5b6000612def8989612b7a565b9650506020612e0089828a01612cd7565b9550506040612e1189828a01612cd7565b9450506060612e2289828a01612cd7565b9350506080612e3389828a01612d50565b92505060e0612e4489828a01612dbb565b9150509295509295509295565b600067ffffffffffffffff821115612e6b57612e6b612ce2565b601f19601f83011660200192915050565b82818337506000910152565b6000612e9b612e9684612e51565b612d25565b905082815260208101848484011115612eb657612eb6600080fd5b612ec1848285612e7c565b509392505050565b600082601f830112612edd57612edd600080fd5b81356128ab848260208601612e88565b600060208284031215612f0257612f02600080fd5b813567ffffffffffffffff811115612f1c57612f1c600080fd5b6128ab84828501612ec9565b801515612a59565b80356107ad81612f28565b60008060408385031215612f5157612f51600080fd5b6000612f5d8585612b7a565b9250506020612bb885828601612f30565b6005811061221257612212612bc2565b80612bf281612f6e565b60006107ad82612f7e565b612a9481612f88565b602081016107ad8284612f93565b60008060008060808587031215612fc357612fc3600080fd5b6000612fcf8787612b7a565b9450506020612fe087828801612b7a565b9350506040612ff187828801612b1d565b925050606085013567ffffffffffffffff81111561301157613011600080fd5b61301d87828801612ec9565b91505092959194509250565b6005811061221257600080fd5b80356107ad81613029565b60006020828403121561305657613056600080fd5b60006128ab8484613036565b6004811061221257600080fd5b80356107ad81613062565b600080600060a0848603121561309257613092600080fd5b600061309e868661306f565b93505060206130af86828701612d50565b9250506080612c7386828701612dbb565b6000602082840312156130d5576130d5600080fd5b60006128ab8484612cd7565b600080604083850312156130f7576130f7600080fd5b60006131038585612b7a565b9250506020612bb885828601612b7a565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061313e57607f821691505b60208210810361315057613150613114565b50919050565b600381526000602082016218189960e91b815291505b5060200190565b602080825281016107ad81613156565b634e487b7160e01b600052601260045260246000fd5b6000816107ad565b600381526000602082016230313360e81b8152915061316c565b602080825281016107ad816131a1565b60038152600060208201620c0c4d60ea1b8152915061316c565b602080825281016107ad816131cb565b60a081016132038288612c19565b6132106020830187612c19565b61321d6040830186612c19565b61322a6060830185612c19565b6132376080830184612c19565b9695505050505050565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729101908152600061316c565b602080825281016107ad81613241565b601481526000602082017314185d5cd8589b194e881b9bdd081c185d5cd95960621b8152915061316c565b602080825281016107ad81613283565b601081526000602082016f14185d5cd8589b194e881c185d5cd95960821b8152915061316c565b602080825281016107ad816132be565b6006811061221257612212612bc2565b80612bf2816132f5565b60006107ad82613305565b612a948161330f565b60408101613331828561331a565b61229e6020830184612b5a565b600381526000602082016230303160e81b8152915061316c565b602080825281016107ad8161333e565b600381526000602082016230303760e81b8152915061316c565b602080825281016107ad81613368565b634e487b7160e01b600052601160045260246000fd5b600061ffff8216915061ffff831692508261ffff038211156133cc576133cc613392565b500190565b600381526000602082016218181b60e91b8152915061316c565b602080825281016107ad816133d1565b600381526000602082016230303960e81b8152915061316c565b602080825281016107ad816133fb565b600082198211156133cc576133cc613392565b600381526000602082016230303560e81b8152915061316c565b602080825281016107ad81613438565b600381526000602082016203031360ec1b8152915061316c565b602080825281016107ad81613462565b600381526000602082016230313160e81b8152915061316c565b602080825281016107ad8161348c565b600381526000602082016230313560e81b8152915061316c565b602080825281016107ad816134b6565b600081546134ed8161312a565b600182168015613504576001811461351557613545565b60ff19831686528186019350613545565b60008581526020902060005b8381101561353d57815488820152600190910190602001613521565b838801955050505b50505092915050565b6000613558825190565b613566818560208601612aa8565b9290920192915050565b600061357c82856134e0565b91506128ab828461354e565b602080825281016107ad81602681527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160208201526564647265737360d01b604082015260600190565b608081016135e08287612c19565b6135ed6020830186612c7d565b6135fa6040830185612c19565b6136076060830184612c19565b95945050505050565b600381526000602082016218189b60e91b8152915061316c565b602080825281016107ad81613610565b600381526000602082016218181960e91b8152915061316c565b602080825281016107ad8161363a565b600381526000602082016230303360e81b8152915061316c565b602080825281016107ad81613664565b60038152600060208201620c0c0d60ea1b8152915061316c565b602080825281016107ad8161368e565b608081016136c68287612b5a565b6136d36020830186612b5a565b6136e06040830185612c19565b81810360608301526132378184612ad4565b80516107ad81612a4d565b60006020828403121561371257613712600080fd5b60006128ab84846136f2565b6000600019820361373157613731613392565b5060010190565b60008261374757613747613183565b500490565b60008282101561375e5761375e613392565b500390565b60008261377257613772613183565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207aadce4c0afd1c475881a784b850ef96ba82193597af9ac54fbd582196f4c45064736f6c634300080e003368747470733a2f2f6e66742d6170692e6c616e647a2e696f2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063b1c9fe6e116100ab578063c87b56dd1161006f578063c87b56dd146106b8578063ccc59932146106d8578063d0c433d31461070c578063e985e9c514610721578063f2fde38b1461074157600080fd5b8063b1c9fe6e1461060f578063b88d4fde14610636578063b95db12c14610656578063c03afb5914610678578063c2d5ef971461069857600080fd5b806395d89b41116100f257806395d89b4114610568578063a0bcfc7f1461057d578063a22cb4651461059d578063ab6138e3146105bd578063b1ad2889146105de57600080fd5b80636c0360eb146104e657806370a08231146104fb578063715018a61461051b5780638456cb59146105305780638da5cb5b1461054557600080fd5b8063308775ab116101bc5780635c975abb116101805780635c975abb146104495780635d729df5146104615780635d8c66891461049157806361487831146104a45780636352211e146104c657600080fd5b8063308775ab146103bc5780633ccfd60b146103dd5780633f4ba83a146103f257806342842e0e146104075780635842a4b71461042757600080fd5b806312ffc6b01161020357806312ffc6b0146102dc57806318160ddd1461031957806323b872dd1461033f578063291c7b021461035f5780632986c0e51461038d57600080fd5b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004612a6f565b610761565b6040516102629190612a9a565b60405180910390f35b34801561027757600080fd5b506102806107b3565b6040516102629190612b06565b34801561029957600080fd5b506102ad6102a8366004612b28565b610845565b6040516102629190612b63565b3480156102c657600080fd5b506102da6102d5366004612b85565b610889565b005b3480156102e857600080fd5b5061030c6102f7366004612b28565b600d6020526000908152604090205460ff1681565b6040516102629190612c0b565b34801561032557600080fd5b5060015460005403600019015b6040516102629190612c1f565b34801561034b57600080fd5b506102da61035a366004612c2d565b61095b565b34801561036b57600080fd5b5060085461038090600160e81b900460ff1681565b6040516102629190612c86565b34801561039957600080fd5b506008546103af90600160a81b900461ffff1681565b6040516102629190612c9e565b3480156103c857600080fd5b5060085461038090600160f81b900460ff1681565b3480156103e957600080fd5b506102da61096b565b3480156103fe57600080fd5b506102da610cc2565b34801561041357600080fd5b506102da610422366004612c2d565b610d1e565b34801561043357600080fd5b506008546103af90600160c81b900461ffff1681565b34801561045557600080fd5b5060085460ff16610255565b34801561046d57600080fd5b5061025561047c366004612cac565b600c6020526000908152604090205460ff1681565b6102da61049f366004612dc6565b610d39565b3480156104b057600080fd5b506008546103af90600160d81b900461ffff1681565b3480156104d257600080fd5b506102ad6104e1366004612b28565b6116a8565b3480156104f257600080fd5b506102806116b3565b34801561050757600080fd5b50610332610516366004612cac565b611741565b34801561052757600080fd5b506102da611790565b34801561053c57600080fd5b506102da6117ca565b34801561055157600080fd5b5060085461010090046001600160a01b03166102ad565b34801561057457600080fd5b50610280611825565b34801561058957600080fd5b506102da610598366004612eed565b611834565b3480156105a957600080fd5b506102da6105b8366004612f3b565b6118b2565b3480156105c957600080fd5b5060085461038090600160f01b900460ff1681565b3480156105ea57600080fd5b506103af6105f9366004612cac565b600b6020526000908152604090205461ffff1681565b34801561061b57600080fd5b50600e546106299060ff1681565b6040516102629190612f9c565b34801561064257600080fd5b506102da610651366004612faa565b61194a565b34801561066257600080fd5b506008546103af90600160b81b900461ffff1681565b34801561068457600080fd5b506102da610693366004613041565b611994565b3480156106a457600080fd5b506102da6106b336600461307a565b611a17565b3480156106c457600080fd5b506102806106d3366004612b28565b611dce565b3480156106e457600080fd5b5061030c6106f33660046130c0565b61ffff166000908152600d602052604090205460ff1690565b34801561071857600080fd5b506102da611e51565b34801561072d57600080fd5b5061025561073c3660046130e1565b612185565b34801561074d57600080fd5b506102da61075c366004612cac565b6121b3565b60006301ffc9a760e01b6001600160e01b03198316148061079257506380ac58cd60e01b6001600160e01b03198316145b806107ad5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107c29061312a565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee9061312a565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b600061085082612215565b61086d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108948261224a565b9050806001600160a01b0316836001600160a01b0316036108c85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108ff576108e28133612185565b6108ff576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109668383836122c0565b505050565b3373f15fe77814aabd9e71691948f3289f8438679a9614806109a0575033733f9ed7b1b3c2a70169d0122dfdd95ce2662b82d6145b6109c55760405162461bcd60e51b81526004016109bc90613173565b60405180910390fd5b604051612710476103e80281900491476106d60282900491476101f4028190049147610190029190910490600090733f9ed7b1b3c2a70169d0122dfdd95ce2662b82d6908690610a1490613199565b60006040518083038185875af1925050503d8060008114610a51576040519150601f19603f3d011682016040523d82523d6000602084013e610a56565b606091505b50509050600073419e90565db6d2222b93841e38e586cbb1f8a5ee6001600160a01b031685604051610a8790613199565b60006040518083038185875af1925050503d8060008114610ac4576040519150601f19603f3d011682016040523d82523d6000602084013e610ac9565b606091505b505090506000735d77679942eafb5e2c1958d115f4f9508311067d6001600160a01b031685604051610afa90613199565b60006040518083038185875af1925050503d8060008114610b37576040519150601f19603f3d011682016040523d82523d6000602084013e610b3c565b606091505b505090506000733483fd757c3f6718971ac59219a743c170e8fe326001600160a01b031685604051610b6d90613199565b60006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b50509050838015610bbd5750825b8015610bc65750815b8015610bcf5750805b610beb5760405162461bcd60e51b81526004016109bc906131bb565b604051479060009073f15fe77814aabd9e71691948f3289f8438679a96908390610c1490613199565b60006040518083038185875af1925050503d8060008114610c51576040519150601f19603f3d011682016040523d82523d6000602084013e610c56565b606091505b5050905080610c775760405162461bcd60e51b81526004016109bc906131e5565b7ff5b79eec8218377a0634e2bf0713090c61f077a6c11f2f8ac8dcc6707ad86aeb828b8b8b8b604051610cae9594939291906131f5565b60405180910390a150505050505050505050565b6008546001600160a01b03610100909104163314610cf25760405162461bcd60e51b81526004016109bc90613273565b60085460ff16610d145760405162461bcd60e51b81526004016109bc906132ae565b610d1c612467565b565b6109668383836040518060200160405280600081525061194a565b60085460ff1615610d5c5760405162461bcd60e51b81526004016109bc906132e5565b818160008133604051602001610d73929190613323565b604051602081830303815290604052805190602001209050610d9581846124cd565b610db15760405162461bcd60e51b81526004016109bc90613358565b336001600160a01b038a1614610df4573373dab1a1854214684ace522439684a145e6250523314610df45760405162461bcd60e51b81526004016109bc90613382565b610e3c6040518060e001604052806000815260200160008152602001600061ffff168152602001600081526020016000815260200160008152602001600061ffff1681525090565b34815261ffff8989018801811660408084018281526001600160a01b038e166000908152600b60205291909120548316909101821660c08401525160085461189d92600160d81b8204811691610ea391600160c81b8204811691600160b81b9004166133a8565b610ead91906133a8565b610eb791906133a8565b61ffff1610610ed85760405162461bcd60e51b81526004016109bc906133eb565b600854610f109061ffff600160b81b8204811691600160c81b8104821691600160d81b909104168c8c8c6101f46105dc61138861257b565b6003600e5460ff166004811115610f2957610f29612bc2565b14158015610f4e57506004600e5460ff166004811115610f4b57610f4b612bc2565b14155b1561111a576000600e5460ff166004811115610f6c57610f6c612bc2565b03610fa85760005b856005811115610f8657610f86612bc2565b14610fa35760405162461bcd60e51b81526004016109bc90613358565b61108b565b6001600e5460ff166004811115610fc157610fc1612bc2565b03611004576000856005811115610fda57610fda612bc2565b1480610fe857506001610f74565b610fa35760405162461bcd60e51b81526004016109bc90613358565b6002600e5460ff16600481111561101d5761101d612bc2565b0361108b57600085600581111561103657611036612bc2565b14806110535750600185600581111561105157611051612bc2565b145b8061106f5750600285600581111561106d5761106d612bc2565b145b61108b5760405162461bcd60e51b81526004016109bc90613358565b60068160c0015161ffff16106110b35760405162461bcd60e51b81526004016109bc90613415565b6008546110eb9061ffff600160b81b8204811691600160c81b8104821691600160d81b909104168c8c8c61012c61032a610bb861257b565b6709b6e64a8ec6000060608201526706f05b59d3b200006080820152670429d069189e000060a0820152611353565b6003600e5460ff16600481111561113357611133612bc2565b0361126957600085600581111561114c5761114c612bc2565b14806111695750600185600581111561116757611167612bc2565b145b806111855750600285600581111561118357611183612bc2565b145b806111a15750600385600581111561119f5761119f612bc2565b145b6111bd5760405162461bcd60e51b81526004016109bc90613358565b6040808201516001600160a01b038c166000908152600b602052919091205461ffff9081169091011660c082015260038560058111156111ff576111ff612bc2565b0361122c5760068160c0015161ffff161061122c5760405162461bcd60e51b81526004016109bc90613415565b6008546112649061ffff600160b81b8204811691600160c81b8104821691600160d81b909104168c8c8c61011d6102fd610b2261257b565b611328565b6004600e5460ff16600481111561128257611282612bc2565b0361132857600085600581111561129b5761129b612bc2565b14806112b8575060018560058111156112b6576112b6612bc2565b145b806112d4575060028560058111156112d2576112d2612bc2565b145b806112f0575060038560058111156112ee576112ee612bc2565b145b8061130c5750600485600581111561130a5761130a612bc2565b145b6113285760405162461bcd60e51b81526004016109bc90613358565b670de0b6b3a76400006060820152670853a0d2313c0000608082015267058d15e17628000060a08201525b8060a001518761ffff160281608001518961ffff160282606001518b61ffff16020101816020018181525050806000015160016113909190613425565b8160200151106113b25760405162461bcd60e51b81526004016109bc90613452565b61ffff8916156114ae576113ca8a8a61ffff16612634565b60005b8961ffff168161ffff16101561143a576001600d600083600860159054906101000a900461ffff166113ff91906133a8565b61ffff1681526020810191909152604001600020805460ff1916600183600381111561142d5761142d612bc2565b02179055506001016113cd565b5088600860178282829054906101000a900461ffff1661145a91906133a8565b92506101000a81548161ffff021916908361ffff16021790555088600860158282829054906101000a900461ffff1661149391906133a8565b92506101000a81548161ffff021916908361ffff1602179055505b61ffff88161561158a576114c68a8961ffff16612634565b60005b8861ffff168161ffff161015611536576002600d600083600860159054906101000a900461ffff166114fb91906133a8565b61ffff1681526020810191909152604001600020805460ff1916600183600381111561152957611529612bc2565b02179055506001016114c9565b5060088054600160a81b61ffff600160c81b80840482168d0182160261ffff60c81b198416811783900482168d0190911690910261ffff60a81b1990911665ffff0000ffff60a81b19909216919091171790555b61ffff871615611668576115a28a8861ffff16612634565b60005b8761ffff168161ffff161015611612576003600d600083600860159054906101000a900461ffff166115d791906133a8565b61ffff1681526020810191909152604001600020805460ff1916600183600381111561160557611605612bc2565b02179055506001016115a5565b5060088054600160a81b61ffff600160d81b80840482168c0182160261ffff60d81b198416811783900482168c0190911690910261ffff60a81b1990911667ffff00000000ffff60a81b19909216919091171790555b6040908101516001600160a01b039a909a166000908152600b60205220805461ffff19811661ffff918216909b0116999099179098555050505050505050565b60006107ad8261224a565b600a80546116c09061312a565b80601f01602080910402602001604051908101604052809291908181526020018280546116ec9061312a565b80156117395780601f1061170e57610100808354040283529160200191611739565b820191906000526020600020905b81548152906001019060200180831161171c57829003601f168201915b505050505081565b60006001600160a01b03821661176a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b036101009091041633146117c05760405162461bcd60e51b81526004016109bc90613273565b610d1c6000612715565b6008546001600160a01b036101009091041633146117fa5760405162461bcd60e51b81526004016109bc90613273565b60085460ff161561181d5760405162461bcd60e51b81526004016109bc906132e5565b610d1c61276f565b6060600380546107c29061312a565b6008546001600160a01b036101009091041633146118645760405162461bcd60e51b81526004016109bc90613273565b805161187790600a9060208401906129b4565b507fe9b617ecb5f63f6a9ccd8d4d5fa0d7b2ef9b17ce3f48e6b135808d6a40e67742816040516118a79190612b06565b60405180910390a150565b336001600160a01b038316036118db5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061193e908590612a9a565b60405180910390a35050565b6119558484846122c0565b6001600160a01b0383163b1561198e57611971848484846127c7565b61198e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b036101009091041633146119c45760405162461bcd60e51b81526004016109bc90613273565b600e805482919060ff191660018360048111156119e3576119e3612bc2565b02179055507fcf3d8e53760202bc7465ebbdd1853b59f1d66307a4ae92f72a06333ae7bb8783816040516118a79190612f9c565b60085460ff1615611a3a5760405162461bcd60e51b81526004016109bc906132e5565b818160008133604051602001611a51929190613323565b604051602081830303815290604052805190602001209050611a7381846124cd565b611a8f5760405162461bcd60e51b81526004016109bc90613358565b336000908152600c602052604090205460ff1615611abf5760405162461bcd60e51b81526004016109bc9061347c565b6005846005811115611ad357611ad3612bc2565b14611af05760405162461bcd60e51b81526004016109bc90613358565b6001866003811115611b0457611b04612bc2565b03611bd657600854600160e81b900460ff16611b325760405162461bcd60e51b81526004016109bc906134a6565b611b3d336001612634565b6008805461ffff600160a81b9182900481166000908152600d60205260409020805460ff19166001908117909155835460ff60e81b1963ffffffff60a81b19821661ffff60b81b1986840486168501861690960295861617600160b81b61ffff60a81b19909316909517829004841690920190921690910291909117908116600160e81b9182900460ff90811660001901169091021790555b6002866003811115611bea57611bea612bc2565b03611cbf57600854600160f01b900460ff16611c185760405162461bcd60e51b81526004016109bc906134a6565b611c23336001612634565b6008805461ffff600160a81b9182900481166000908152600d60205260409020805460ff19166002179055825460ff60f01b1965ffff0000ffff60a81b19821661ffff60c81b1985840485166001908101861690960290811691909117600160c81b61ffff60a81b1990941690911783900484169094019092160291909117908116600160f01b9182900460ff90811660001901169091021790555b6003866003811115611cd357611cd3612bc2565b03611dac57600854600160f81b900460ff16611d015760405162461bcd60e51b81526004016109bc906134a6565b611d0c336001612634565b6008805461ffff600160a81b9182900481166000908152600d60205260409020805460ff1916600317905582546001600160f81b0367ffff00000000ffff60a81b19821661ffff60d81b1985840485166001908101861690960290811691909117600160d81b61ffff60a81b1990941690911783900484169094019092160291909117908116600160f81b9182900460ff90811660001901169091021790555b5050336000908152600c60205260409020805460ff1916600117905550505050565b6060611dd982612215565b611df55760405162461bcd60e51b81526004016109bc906134d0565b6000600a8054611e049061312a565b905011611e2057604051806020016040528060008152506107ad565b600a611e2b836128b3565b604051602001611e3c929190613570565b60405160208183030381529060405292915050565b3373b9e0beee9cfc48c1e53442bab96371dcad9c3cb214611e845760405162461bcd60e51b81526004016109bc90613173565b60095460ff1615611ea75760405162461bcd60e51b81526004016109bc9061347c565b611eb2336023612634565b60005b60238161ffff161015611f1f576001600d600083600860159054906101000a900461ffff16611ee491906133a8565b61ffff1681526020810191909152604001600020805460ff19166001836003811115611f1257611f12612bc2565b0217905550600101611eb5565b506023600860158282829054906101000a900461ffff16611f4091906133a8565b92506101000a81548161ffff021916908361ffff1602179055506023600860178282829054906101000a900461ffff16611f7a91906133a8565b92506101000a81548161ffff021916908361ffff160217905550611f9f336069612634565b60005b60698161ffff16101561200c576002600d600083600860159054906101000a900461ffff16611fd191906133a8565b61ffff1681526020810191909152604001600020805460ff19166001836003811115611fff57611fff612bc2565b0217905550600101611fa2565b506069600860158282829054906101000a900461ffff1661202d91906133a8565b92506101000a81548161ffff021916908361ffff1602179055506069600860198282829054906101000a900461ffff1661206791906133a8565b92506101000a81548161ffff021916908361ffff16021790555061208d3361015e612634565b60005b61015e8161ffff1610156120fb576003600d600083600860159054906101000a900461ffff166120c091906133a8565b61ffff1681526020810191909152604001600020805460ff191660018360038111156120ee576120ee612bc2565b0217905550600101612090565b5061015e600860158282829054906101000a900461ffff1661211d91906133a8565b92506101000a81548161ffff021916908361ffff16021790555061015e6008601b8282829054906101000a900461ffff1661215891906133a8565b825461ffff9182166101009390930a9283029190920219909116179055506009805460ff19166001179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b036101009091041633146121e35760405162461bcd60e51b81526004016109bc90613273565b6001600160a01b0381166122095760405162461bcd60e51b81526004016109bc90613588565b61221281612715565b50565b600081600111158015612229575060005482105b80156107ad575050600090815260046020526040902054600160e01b161590565b600081806001116122a7576000548110156122a75760008181526004602052604081205490600160e01b821690036122a5575b8060000361229e57506000190160008181526004602052604090205461227d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006122cb8261224a565b9050836001600160a01b0316816001600160a01b0316146122fe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061231c575061231c8533612185565b8061233757503361232c84610845565b6001600160a01b0316145b90508061235757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661237e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361241f5760018301600081815260046020526040812054900361241d57600054811461241d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60085460ff166124895760405162461bcd60e51b81526004016109bc906132ae565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516124c39190612b63565b60405180910390a1565b600080600184846040015185600001518660200151604051600081526020016040526040516124ff94939291906135d2565b6020604051602081039080840390855afa158015612521573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125545760405162461bcd60e51b81526004016109bc9061362a565b6001600160a01b0316738345b7c47ca83de149b672472962cc6d6b7a8d7014905092915050565b6125868360016133a8565b61ffff16612594878b6133a8565b61ffff16106125b55760405162461bcd60e51b81526004016109bc90613654565b6125c08260016133a8565b61ffff166125ce868a6133a8565b61ffff16106125ef5760405162461bcd60e51b81526004016109bc9061367e565b6125fa8160016133a8565b61ffff1661260885896133a8565b61ffff16106126295760405162461bcd60e51b81526004016109bc906136a8565b505050505050505050565b6000546001600160a01b03831661265d57604051622e076360e81b815260040160405180910390fd5b8160000361267e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106126c95750600055505050565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff16156127925760405162461bcd60e51b81526004016109bc906132e5565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124b63390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127fc9033908990889088906004016136b8565b6020604051808303816000875af1925050508015612837575060408051601f3d908101601f19168201909252612834918101906136fd565b60015b612895573d808015612865576040519150601f19603f3d011682016040523d82523d6000602084013e61286a565b606091505b50805160000361288d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036128da5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561290457806128ee8161371e565b91506128fd9050600a83613738565b91506128de565b60008167ffffffffffffffff81111561291f5761291f612ce2565b6040519080825280601f01601f191660200182016040528015612949576020820181803683370190505b5090505b84156128ab5761295e60018361374c565b915061296b600a86613763565b612976906030613425565b60f81b81838151811061298b5761298b613777565b60200101906001600160f81b031916908160001a9053506129ad600a86613738565b945061294d565b8280546129c09061312a565b90600052602060002090601f0160209004810192826129e25760008555612a28565b82601f106129fb57805160ff1916838001178555612a28565b82800160010185558215612a28579182015b82811115612a28578251825591602001919060010190612a0d565b50612a34929150612a38565b5090565b5b80821115612a345760008155600101612a39565b6001600160e01b031981165b811461221257600080fd5b80356107ad81612a4d565b600060208284031215612a8457612a84600080fd5b60006128ab8484612a64565b8015155b82525050565b602081016107ad8284612a90565b60005b83811015612ac3578181015183820152602001612aab565b8381111561198e5750506000910152565b6000612ade825190565b808452602084019350612af5818560208601612aa8565b601f01601f19169290920192915050565b6020808252810161229e8184612ad4565b80612a59565b80356107ad81612b17565b600060208284031215612b3d57612b3d600080fd5b60006128ab8484612b1d565b60006001600160a01b0382166107ad565b612a9481612b49565b602081016107ad8284612b5a565b612a5981612b49565b80356107ad81612b71565b60008060408385031215612b9b57612b9b600080fd5b6000612ba78585612b7a565b9250506020612bb885828601612b1d565b9150509250929050565b634e487b7160e01b600052602160045260246000fd5b6004811061221257612212612bc2565b80612bf281612bd8565b919050565b60006107ad82612be8565b612a9481612bf7565b602081016107ad8284612c02565b80612a94565b602081016107ad8284612c19565b600080600060608486031215612c4557612c45600080fd5b6000612c518686612b7a565b9350506020612c6286828701612b7a565b9250506040612c7386828701612b1d565b9150509250925092565b60ff8116612a94565b602081016107ad8284612c7d565b61ffff8116612a94565b602081016107ad8284612c94565b600060208284031215612cc157612cc1600080fd5b60006128ab8484612b7a565b61ffff8116612a59565b80356107ad81612ccd565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715612d1e57612d1e612ce2565b6040525050565b6000612d3060405190565b9050612bf28282612cf8565b60ff8116612a59565b80356107ad81612d3c565b600060608284031215612d6557612d65600080fd5b612d6f6060612d25565b90506000612d7d8484612b1d565b8252506020612d8e84848301612b1d565b6020830152506040612da284828501612d45565b60408301525092915050565b6006811061221257600080fd5b80356107ad81612dae565b6000806000806000806101008789031215612de357612de3600080fd5b6000612def8989612b7a565b9650506020612e0089828a01612cd7565b9550506040612e1189828a01612cd7565b9450506060612e2289828a01612cd7565b9350506080612e3389828a01612d50565b92505060e0612e4489828a01612dbb565b9150509295509295509295565b600067ffffffffffffffff821115612e6b57612e6b612ce2565b601f19601f83011660200192915050565b82818337506000910152565b6000612e9b612e9684612e51565b612d25565b905082815260208101848484011115612eb657612eb6600080fd5b612ec1848285612e7c565b509392505050565b600082601f830112612edd57612edd600080fd5b81356128ab848260208601612e88565b600060208284031215612f0257612f02600080fd5b813567ffffffffffffffff811115612f1c57612f1c600080fd5b6128ab84828501612ec9565b801515612a59565b80356107ad81612f28565b60008060408385031215612f5157612f51600080fd5b6000612f5d8585612b7a565b9250506020612bb885828601612f30565b6005811061221257612212612bc2565b80612bf281612f6e565b60006107ad82612f7e565b612a9481612f88565b602081016107ad8284612f93565b60008060008060808587031215612fc357612fc3600080fd5b6000612fcf8787612b7a565b9450506020612fe087828801612b7a565b9350506040612ff187828801612b1d565b925050606085013567ffffffffffffffff81111561301157613011600080fd5b61301d87828801612ec9565b91505092959194509250565b6005811061221257600080fd5b80356107ad81613029565b60006020828403121561305657613056600080fd5b60006128ab8484613036565b6004811061221257600080fd5b80356107ad81613062565b600080600060a0848603121561309257613092600080fd5b600061309e868661306f565b93505060206130af86828701612d50565b9250506080612c7386828701612dbb565b6000602082840312156130d5576130d5600080fd5b60006128ab8484612cd7565b600080604083850312156130f7576130f7600080fd5b60006131038585612b7a565b9250506020612bb885828601612b7a565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061313e57607f821691505b60208210810361315057613150613114565b50919050565b600381526000602082016218189960e91b815291505b5060200190565b602080825281016107ad81613156565b634e487b7160e01b600052601260045260246000fd5b6000816107ad565b600381526000602082016230313360e81b8152915061316c565b602080825281016107ad816131a1565b60038152600060208201620c0c4d60ea1b8152915061316c565b602080825281016107ad816131cb565b60a081016132038288612c19565b6132106020830187612c19565b61321d6040830186612c19565b61322a6060830185612c19565b6132376080830184612c19565b9695505050505050565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729101908152600061316c565b602080825281016107ad81613241565b601481526000602082017314185d5cd8589b194e881b9bdd081c185d5cd95960621b8152915061316c565b602080825281016107ad81613283565b601081526000602082016f14185d5cd8589b194e881c185d5cd95960821b8152915061316c565b602080825281016107ad816132be565b6006811061221257612212612bc2565b80612bf2816132f5565b60006107ad82613305565b612a948161330f565b60408101613331828561331a565b61229e6020830184612b5a565b600381526000602082016230303160e81b8152915061316c565b602080825281016107ad8161333e565b600381526000602082016230303760e81b8152915061316c565b602080825281016107ad81613368565b634e487b7160e01b600052601160045260246000fd5b600061ffff8216915061ffff831692508261ffff038211156133cc576133cc613392565b500190565b600381526000602082016218181b60e91b8152915061316c565b602080825281016107ad816133d1565b600381526000602082016230303960e81b8152915061316c565b602080825281016107ad816133fb565b600082198211156133cc576133cc613392565b600381526000602082016230303560e81b8152915061316c565b602080825281016107ad81613438565b600381526000602082016203031360ec1b8152915061316c565b602080825281016107ad81613462565b600381526000602082016230313160e81b8152915061316c565b602080825281016107ad8161348c565b600381526000602082016230313560e81b8152915061316c565b602080825281016107ad816134b6565b600081546134ed8161312a565b600182168015613504576001811461351557613545565b60ff19831686528186019350613545565b60008581526020902060005b8381101561353d57815488820152600190910190602001613521565b838801955050505b50505092915050565b6000613558825190565b613566818560208601612aa8565b9290920192915050565b600061357c82856134e0565b91506128ab828461354e565b602080825281016107ad81602681527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160208201526564647265737360d01b604082015260600190565b608081016135e08287612c19565b6135ed6020830186612c7d565b6135fa6040830185612c19565b6136076060830184612c19565b95945050505050565b600381526000602082016218189b60e91b8152915061316c565b602080825281016107ad81613610565b600381526000602082016218181960e91b8152915061316c565b602080825281016107ad8161363a565b600381526000602082016230303360e81b8152915061316c565b602080825281016107ad81613664565b60038152600060208201620c0c0d60ea1b8152915061316c565b602080825281016107ad8161368e565b608081016136c68287612b5a565b6136d36020830186612b5a565b6136e06040830185612c19565b81810360608301526132378184612ad4565b80516107ad81612a4d565b60006020828403121561371257613712600080fd5b60006128ab84846136f2565b6000600019820361373157613731613392565b5060010190565b60008261374757613747613183565b500490565b60008282101561375e5761375e613392565b500390565b60008261377257613772613183565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207aadce4c0afd1c475881a784b850ef96ba82193597af9ac54fbd582196f4c45064736f6c634300080e0033

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.