ETH Price: $2,848.83 (-11.05%)
Gas: 14 Gwei

Token

Lana Super Yacht (LSY)
 

Overview

Max Total Supply

54 LSY

Holders

1,132

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
goldbaron.eth
Balance
27 LSY
0x398d94b6cd535e7a02e57ef088b70bf0a1cc199a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A community-centred Web3 ecosystem that empowers enthusiasts while innovating the business processes that power the superyacht industry.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MasterContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : MasterContract.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./Round.sol";
import "./Oracle.sol";
import "./interfaces/IMaster.sol";
import "./interfaces/IMetaDataOracle.sol";

/// @title Main master contract
contract MasterContract is AccessControl, IMaster, ERC721 {
  using Address for address payable;
  using Strings for uint256;

  uint[] private _mintedIds;
  bool public migrated;
  bool public showMetadata = true;

  address public CROSSMINT_ADDRESS = 0xdAb1a1854214684acE522439684a145E62505233;
  address public constant WITHDRAW_ADDRESS = 0x0867436a889bf9C1abCAf3c505046FC4F7880b50;
  address public constant OWNER_ADDRESS = 0xf867C48da1Aa3268FEBCff36a6879066dd8EB304;

  bytes32 public constant ORACLE_ROLE = keccak256("ORACLE_ROLE");
  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

  string private baseUri;
  string private notRevealUri;
  uint16 private _totalSupply;
  uint16 private _maxSupply;

  mapping(bytes32 => RoleData) private _roles;
  mapping(bytes32 => address[]) public roleOwners;

  IMetaDataOracle private metaDataOracle;

  mapping(Round => RoundContract) public RoundContracts;
  mapping(Round => uint256) private _roundPrice;
  mapping(uint => string) private _tokenAttributesJSON;
  mapping(uint => bool) private _requests;
  mapping(uint => string) _tokenRound;

  /// @notice Is the token occupied
  /// @dev tokenId => true or false
  mapping(uint => bool) public occupiedIdxs;

  uint256 public revealDate;

  // EVENTS
  event MintRand(address indexed owner, uint indexed id);
  event ChangeReveal(uint _newDate);
  event ChangeMaxSupply(uint16 newMaxSupply);

  event Migrate(address reciever, uint id);
  event Withdrawn(address reciever);

  /// @notice event for check if oracle contract was changed
  event OracleAddressChanged(address oracle);

  /// @notice event emit when resived successful
  event MetaDataReceived(string json, uint id, uint tokenId);

  /// @notice event emit when request data for token
  event MetaDataRequested(uint tokenId, uint id);

  /// @notice event emit when new token was minted
  event MintTokens(address owner, Round round, uint[] tokenIds);

  modifier onlyOracle() {
    require(msg.sender == address(metaDataOracle), "Unauthorized.");
    _;
  }

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _notRevealUri,
    string memory _baseUri,
    uint16 maxSupply_,
    uint256 _revealDate
    ) ERC721(_name, _symbol) {
      notRevealUri = _notRevealUri;
      baseUri = _baseUri;
      _maxSupply = maxSupply_;
      revealDate = _revealDate;

      _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
      _grantRole(DEFAULT_ADMIN_ROLE, OWNER_ADDRESS);
      _grantRole(MINTER_ROLE, CROSSMINT_ADDRESS);

      roleOwners[DEFAULT_ADMIN_ROLE].push(msg.sender);
      roleOwners[DEFAULT_ADMIN_ROLE].push(OWNER_ADDRESS);
      roleOwners[MINTER_ROLE].push(CROSSMINT_ADDRESS);
  }

  function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
    roleOwners[role].push(account);
    _grantRole(role, account);
  }

  function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
    for (uint256 i = 0; i < roleOwners[role].length; i++) {
      if (roleOwners[role][i] == account) {
        delete roleOwners[role][i];
        break;
      }
    }
    _revokeRole(role, account);
  }

  function setCrossmintAddress(address _newAddress) external onlyRole(DEFAULT_ADMIN_ROLE) {
    CROSSMINT_ADDRESS = _newAddress;
  }

  function addMinter(Round _round, address _minter) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _grantRole(MINTER_ROLE, _minter);
    roleOwners[MINTER_ROLE].push(_minter);
    _roundPrice[_round] = RoundContract(payable(_minter)).mintPrice();
    RoundContracts[_round] = RoundContract(payable(_minter));
  }

  function removeMinter(Round _round) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _revokeRole(MINTER_ROLE, address(RoundContracts[_round]));
    RoundContracts[_round] = RoundContract(address(0));
  }

  function setMaxSupply(uint16 maxSupply_) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _maxSupply = maxSupply_;
    emit ChangeMaxSupply(_maxSupply);
  }

  function totalSupply() external view override returns(uint) {
    return _totalSupply;
  }

  function maxSupply() external view override returns(uint) {
    return _maxSupply;
  }

  /// @notice Сhecks whether the collection is revealed 
  function isRevealed() public view returns(bool) {
    return block.timestamp >= revealDate;
  }

  function tokenRoundString(uint tokenId) public view returns(string memory) {
    return _tokenRound[tokenId];
  }

  /// @notice Get token URI
  /// @dev Checks if the collection is revealed and return <notRevealUri> or <currentBaseURI + token URI>
  /// @param tokenId Current token Id
  /// @return tokenURI Link to token metadata
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
      require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
      );
      
      if(!isRevealed()) {
        return notRevealUri;
      }

      string memory currentBaseURI = baseUri;
      return bytes(currentBaseURI).length > 0
          ? string(abi.encodePacked(currentBaseURI, _tokenRound[tokenId], "/metadata/", Strings.toString(tokenId), ".json"))
          : "";
  }

  function setBaseUri(string calldata _baseUri) external onlyRole(DEFAULT_ADMIN_ROLE) {
    baseUri = _baseUri;
  }

  /// @notice Auxiliary function for marketplaces
  /// @param interfaceId Bytes like id of contract interfase
  /// @return boolean
  function supportsInterface(bytes4 interfaceId) public pure override(AccessControl, ERC721) returns (bool) {
    return interfaceId == type(IERC721).interfaceId;
  }

  /// @notice Service function for working with oracle
  /// @param json strigify json data
  /// @param id of request
  /// @param tokenId token id
  function fulfillMetaDataRequest(string memory json, uint id, uint tokenId) external override onlyRole(ORACLE_ROLE) {
    require(_requests[id], "Request is invalid or already fulfilled.");

    _tokenAttributesJSON[tokenId] = json;

    delete _requests[id];
    emit MetaDataReceived(json, id, tokenId);
  }

  function setMetaDataOracleAddress(address newAddress) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    metaDataOracle = IMetaDataOracle(newAddress);
    _setupRole(ORACLE_ROLE, newAddress);
    emit OracleAddressChanged(newAddress);
  }

  function getRoundPrice(Round round) external view override returns(uint) {
    return _roundPrice[round];
  }

  function _getAttributes(uint tokenId) internal {

    require(metaDataOracle != IMetaDataOracle(address(0)), "Oracle not initialized.");
     
    uint256 id = metaDataOracle.requestMetaData(tokenId);
    _requests[id] = true;
    
    emit MetaDataRequested(tokenId, id);
  }
  
  function setShowMetadata(bool _show) external onlyRole(MINTER_ROLE) {
    showMetadata = _show;
  }

  function showMetaData(uint tokenId) external view override returns(string memory) {
    require(isRevealed(), "NFT: collections not revealed");
    require(showMetadata, "NFT: Can't show metedata now");
    return _tokenAttributesJSON[tokenId];
  }

  function roundAddress(Round round) external view returns(address) {
    return address(RoundContracts[round]);
  }

  function mintedIds() external view returns(uint[] memory) {
    return _mintedIds;
  }

  function getRoundTotalSupply(Round round) external view returns(uint) {
    return RoundContracts[round].roundTotalSupply();
  }

  /// @notice refers to the selected round and says whether the token is occupied or not
  /// @param tokenId target token id
  /// @return bool
  function idOccupied(uint tokenId) external view override returns(bool) {
    return occupiedIdxs[tokenId];
  }

  /// @notice main mint function, wich generate and mint batch of tokens
  /// @param tokenIdxs - number of tokens for mint
  /// @dev all the checks with the round are taken out here in order not to carry them out twice
  /// @dev if contract not found free token ids contract will send funds back
  function mint(uint[] memory tokenIdxs, address from, string memory name) override(IMaster) external onlyRole(MINTER_ROLE) {
    _totalSupply += uint16(tokenIdxs.length);

    for (uint256 i = 0; i < tokenIdxs.length; i++) {
      _tokenRound[tokenIdxs[i]] = name;
      _getAttributes(tokenIdxs[i]);
      occupiedIdxs[tokenIdxs[i]] = true;
      _mintedIds.push(tokenIdxs[i]);
      _safeMint(from, tokenIdxs[i]);
      emit MintRand(from, tokenIdxs[i]);
    }
  }

  /// @notice Use for check the content of the element in the array
  /// @dev using for generate array of random unique number
  /// @param array of uints
  /// @param value target value
  function _contain(uint[] memory array, uint value) pure private returns(bool) {
    bool contained = false;
    for (uint256 i = 0; i < array.length; i++) {
      if (array[i] == value) {
        contained = true;
        break;
      }
    }
    return contained;
  }

  
  function migrate(address reciever, uint id, string memory collectionName) external onlyRole(DEFAULT_ADMIN_ROLE) {
    require(!migrated, "Already done!");
    _tokenRound[id] = collectionName;
    occupiedIdxs[id] = true;
    _mintedIds.push(id);
    _safeMint(reciever, id);
    _getAttributes(id);

    emit Migrate(reciever, id);
  }

  function setMigrate(bool _state) external onlyRole(DEFAULT_ADMIN_ROLE){
    migrated = _state;
  }

  /// @notice                         Function for change reveal data
  /// @param                          _newDate target timestamp
  function                            setReveal(uint _newDate) external onlyRole(DEFAULT_ADMIN_ROLE) {
    revealDate = _newDate;
    emit ChangeReveal(_newDate);
  }

  /// @notice                            Mint function for pay from bank card
  /// @param                             _to address of tokens reciver
  /// @param                             _count number of tokens to mint
  /// @param                             _round enum value of round
  /// @param                             _name token's round name
  function                               crossmint(address _to, uint _count, Round _round, string memory _name) external payable onlyRole(MINTER_ROLE) {
    RoundContract round = RoundContracts[_round];
    uint[] memory tokenIdxs = round.generateUnique(_count, msg.sender);

    require(address(round.getMaster()) != address(0), "NFT: Master not init in round");
    require(msg.value == _roundPrice[_round] * _count, "NFT: Incorrect ETH value sent");

    if (_contain(tokenIdxs, 0)) {
      payable(msg.sender).sendValue(msg.value);
      revert("NFT: The required number of tokens was not found, try again");
    }

    for (uint256 i = 0; i < tokenIdxs.length; i++) {
      _tokenRound[tokenIdxs[i]] = _name;
      occupiedIdxs[tokenIdxs[i]] = true;

      _getAttributes(tokenIdxs[i]);
      _mintedIds.push(tokenIdxs[i]);
      _safeMint(_to, tokenIdxs[i]);

      emit MintRand(_to, tokenIdxs[i]);
    }
  }

  /// @notice                         Withdrawn funds to treasury
  function                            withdrawn() external onlyRole(DEFAULT_ADMIN_ROLE) {
    payable(WITHDRAW_ADDRESS).sendValue(address(this).balance);
    emit Withdrawn(WITHDRAW_ADDRESS);
  }
}

File 2 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 16 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 5 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 6 of 16 : Round.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./interfaces/IMaster.sol";

/// @title Rare round minter contract
/// @notice The contract allows you to mint new NFT as well as change the parameters of the collection
contract                            RoundContract is AccessControl {
  using Address for address payable;

  address public constant              WITHDRAW_ADDRESS = 0xf867C48da1Aa3268FEBCff36a6879066dd8EB304;
  address public constant              OWNER_ADDRESS = 0x0867436a889bf9C1abCAf3c505046FC4F7880b50;
  address public constant              PROVIDER_WALLET_ADDRESS = 0x706EbB592Ea9D75E7981B7944aA1de28d30D6C14;

  uint256 private constant             ORACLE_FEE = 0.015 ether;

  mapping(bytes32 => address[]) public roleOwners;

  /// @notice main round information
  struct                             RoundInfo {
    uint256                          mintPrice;
    uint16                           collPadding;
    uint16                           maxSupply;
    uint16                           roundSupply;
    uint256                          startTimestamp;
    uint256                          endTimestamp;
    uint16                           maxPurchase;
    string                           roundName;
  }
  RoundInfo public                   info;

  IMaster masterContract;

  mapping(address => uint) public    userPurchasedNum;

  event                              Withdrawn(address recipient);

  modifier inRound() {
    require(block.timestamp >= info.startTimestamp, "Wait until round starts!");
    require(block.timestamp <= info.endTimestamp, "Round already finished!");
    _;
  }
  
  modifier mintPossible(uint nTokens) {
    require(nTokens <= info.maxPurchase, "Round: too many token to mint");
    require(userPurchasedNum[msg.sender] + nTokens <= info.maxPurchase, "Round: too many tokens to mint");
    require(address(PROVIDER_WALLET_ADDRESS).balance > ORACLE_FEE, "Round: Provider the wallet has insufficient funds");
    _;
  }

  constructor(
    uint256                          _mintPrice,
    uint16                           _reserved,
    uint16                           _collPadding,
    uint16                           _maxSupply,
    uint256                          _startTimestamp,
    uint256                          _endTimestamp,
    uint16                           _maxPurchase,
    string memory                    _roundName
    ) {
      info.mintPrice = _mintPrice;
      info.collPadding = _collPadding;
      info.maxSupply = _maxSupply;
      info.startTimestamp = _startTimestamp;
      info.endTimestamp = _endTimestamp;
      info.maxPurchase = _maxPurchase;
      info.roundName = _roundName;
      info.roundSupply = (info.maxSupply - info.collPadding) - _reserved;

      _grantRole(DEFAULT_ADMIN_ROLE, OWNER_ADDRESS);
      _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
      
      roleOwners[DEFAULT_ADMIN_ROLE].push(OWNER_ADDRESS);
      roleOwners[DEFAULT_ADMIN_ROLE].push(msg.sender);
  }

  function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
    roleOwners[role].push(account);
    _grantRole(role, account);
  }

  function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
    for (uint256 i = 0; i < roleOwners[role].length; i++) {
      if (roleOwners[role][i] == account) {
        delete roleOwners[role][i];
        break;
      }
    }
    _revokeRole(role, account);
  }

  /// @notice                         mint price of current round
  function                            mintPrice() external view returns(uint) {
    return info.mintPrice;
  }

  /// @notice                         get round total supply of not minted tokens
  function                            roundTotalSupply() external view returns(uint) {
    return info.roundSupply;
  }

  /// @notice                         set master contract for round
  function                            setMaster(address _master) external onlyRole(DEFAULT_ADMIN_ROLE) {
    masterContract = IMaster(_master);
  }

  function                            setStartDate(uint _start) external onlyRole(DEFAULT_ADMIN_ROLE) {
    info.startTimestamp = _start;
  }

  function                            setEndDate(uint _end) external onlyRole(DEFAULT_ADMIN_ROLE) {
    info.endTimestamp = _end;
  }

  /// @notice                         user can get master contract address
  /// @return                         address of master contract
  function                            getMaster() public view returns(address) {
    return address(masterContract);
  }

  /// @notice                         create psudo-random number to get index
  /// @param                          i - nonce
  /// @param                          from - salt
  /// @return                         uint - new psudo-random value
  function                            _random(uint i, address from) private view returns(uint) {
    uint randomnumber = uint(keccak256(abi.encodePacked(block.timestamp, from, i))) % (info.maxSupply - info.collPadding);
    randomnumber = randomnumber + info.collPadding;
    return randomnumber + 1;
  }

  /// @notice                         Use for check the content of the element in the array
  /// @dev                            using for generate array of random unique number
  /// @param                          array of uints
  /// @param                          value target value
  function                            _contain(uint[] memory array, uint value) pure private returns(bool) {
    bool contained = false;
    for (uint256 i = 0; i < array.length; i++) {
      if (array[i] == value) {
        contained = true;
        break;
      }
    }
    return contained;
  }

  /// @notice                         Withdrawn funds to treasury
  function                            withdrawn() external onlyRole(DEFAULT_ADMIN_ROLE) {
    payable(WITHDRAW_ADDRESS).sendValue(address(this).balance);
    emit Withdrawn(WITHDRAW_ADDRESS);
  }

  /// @notice                         function for call paid mind for users
  /// @dev                            check if user's sended funds enough for mint n times
  /// @param                          nTokens is number of tokens for mint
  function                            paidMint(uint nTokens) public payable mintPossible(nTokens) inRound {
    require(msg.value >= info.mintPrice * nTokens, "NFT round: Not enough funds");
    _mintTokens(nTokens);
  }

  function generateUnique(uint _nTokens, address _from) external view inRound mintPossible(_nTokens) returns(uint[] memory) {
    uint[]  memory idxs = new uint[](_nTokens);
    uint16  n = 0;
    uint    i = 0;

    while(_contain(idxs, 0)) {
      uint idx = _random(i, _from);
      if (!masterContract.idOccupied(idx) && !_contain(idxs, idx)) {
        idxs[i] = idx;
        i++;
      }
      else {
        n++;
      }
      if (n == 100) {
        break;
      }
    }

    return idxs;
  }

  /// @notice Create random number
  /// @dev the function accesses an external master contract and asks if the generated id is busy
  /// @dev max attemps - 250
  /// @param nTokens => attempt
  function _mintTokens(uint nTokens) private {
    uint[]  memory idxs = new uint[](nTokens);
    uint16  n = 0;
    uint    i = 0;

    while(_contain(idxs, 0)) {
      uint idx = _random(i, msg.sender);
      if (!masterContract.idOccupied(idx) && !_contain(idxs, idx)) {
        idxs[i] = idx;
        i++;
      }
      else {
        n++;
      }
      if (n == 250) {
        payable(msg.sender).sendValue(msg.value);
        revert("NFT: The required number of tokens was not found, try again");
      }
    }
    payable(PROVIDER_WALLET_ADDRESS).sendValue(ORACLE_FEE);
    userPurchasedNum[msg.sender] += nTokens;
    info.roundSupply -= uint16(nTokens);
    masterContract.mint(idxs, msg.sender, info.roundName);
  }
}

File 7 of 16 : Oracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "./interfaces/IMaster.sol";
import "./interfaces/IMetaDataOracle.sol";

contract MetaDataOracle is AccessControl, IMetaDataOracle {
  
  /// @notice struct for response
  struct Response {
    address providerAddress;
    address callerAddress;
    string json;
  }

  bytes32 public constant PROVIDER_ROLE = keccak256("PROVIDER_ROLE");

  event MetadataRequested(address sender, uint id, uint tokenId);
  event MetaDataReturned(string json, address caller, uint id);
  event ProviderAdded(address provider);
  event ProviderRemoved(address provider);
  event ProvidersThresholdChanged(uint n);

  /// @notice how many contracts may refer to it
  uint private numProviders = 0;
  uint private providersThreshold = 1;
  uint private randNonce = 0;

  mapping(uint256 => bool) private pendingRequests;
  mapping(uint256 => Response[]) private idToResponses;

  event Received(address, uint);

  constructor() {
    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
  }

  receive() external payable {
      emit Received(msg.sender, msg.value);
  }

  function takeRole(address caller) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    _setupRole(PROVIDER_ROLE, caller);
  }

  /// @notice Funcrtion that create request for metadata
  /// @param tokenId the token we are interested in
  /// @return id - ID of request
  function requestMetaData(uint tokenId) external override returns (uint256) {
    require(numProviders > 0, " No data providers not yet added.");
    randNonce++;
    
    uint id = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, randNonce))) % 1000;
    pendingRequests[id] = true;

    emit MetadataRequested(msg.sender, id, tokenId);
    return id;
  }

  function returnMetadata(string memory json, address callerAddress, uint256 id, uint tokenId) external override onlyRole(PROVIDER_ROLE) {
    require(pendingRequests[id], "Request not found.");
    Response memory res = Response(msg.sender, callerAddress, json);
    idToResponses[id].push(res);
    uint numResponses = idToResponses[id].length;

    if (numResponses == providersThreshold) {
      string memory resJSON = "";

      for (uint i=0; i < idToResponses[id].length; i++) {
        resJSON = idToResponses[id][i].json;
      }

      delete pendingRequests[id];
      delete idToResponses[id];

      IMaster(callerAddress).fulfillMetaDataRequest(resJSON, id, tokenId);
      emit MetaDataReturned(resJSON, callerAddress, id);
    }
  }

  function addProvider(address provider) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    require(!hasRole(PROVIDER_ROLE, provider), "Provider already added.");

    _grantRole(PROVIDER_ROLE, provider);
    numProviders++;

    emit ProviderAdded(provider);
  }

  function removeProvider(address provider) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    require(!hasRole(PROVIDER_ROLE, provider), "Address is not a recognized provider.");
    require (numProviders > 1, "Cannot remove the only provider.");
    _revokeRole(PROVIDER_ROLE, provider);
    numProviders--;
    
    emit ProviderRemoved(provider);
  }

  function setProvidersThreshold(uint threshold) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    require(threshold > 0, "Threshold cannot be zero.");
    providersThreshold = threshold;
    
    emit ProvidersThresholdChanged(providersThreshold);
  }
}

File 8 of 16 : IMaster.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

interface IMaster {
  enum Round {
    Legendary,
    Epic,
    SuperRare,
    Rare,
    Public
  }

  function totalSupply() external view returns(uint);

  function maxSupply() external view returns(uint);

  function fulfillMetaDataRequest(string memory json, uint id, uint tokenId) external;

  function setMetaDataOracleAddress(address newAddress) external;

  function getRoundPrice(Round round) external view returns(uint);

  function showMetaData(uint tokenId) external view returns(string memory);

  function mint(uint[] memory tokenIdxs, address from, string memory name) external;

  function idOccupied(uint tokenId) external view returns(bool);
}

File 9 of 16 : IMetaDataOracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

interface IMetaDataOracle {
  function takeRole(address caller) external;

  function requestMetaData(uint tokenId) external returns(uint256);

  function returnMetadata(string memory json, address callerAddress, uint256 id, uint tokenId) external;

  function addProvider(address provider) external;

  function removeProvider(address provider) external;

  function setProvidersThreshold(uint threshold) external;
}

File 10 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 16 : 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 14 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_notRevealUri","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"uint16","name":"maxSupply_","type":"uint16"},{"internalType":"uint256","name":"_revealDate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newMaxSupply","type":"uint16"}],"name":"ChangeMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newDate","type":"uint256"}],"name":"ChangeReveal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"json","type":"string"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetaDataReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MetaDataRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"reciever","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Migrate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MintRand","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"enum IMaster.Round","name":"round","type":"uint8"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"MintTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oracle","type":"address"}],"name":"OracleAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"reciever","type":"address"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"CROSSMINT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ORACLE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"","type":"uint8"}],"name":"RoundContracts","outputs":[{"internalType":"contract RoundContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"_round","type":"uint8"},{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"enum IMaster.Round","name":"_round","type":"uint8"},{"internalType":"string","name":"_name","type":"string"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"json","type":"string"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"fulfillMetaDataRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"round","type":"uint8"}],"name":"getRoundPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"round","type":"uint8"}],"name":"getRoundTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"idOccupied","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reciever","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"collectionName","type":"string"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIdxs","type":"uint256[]"},{"internalType":"address","name":"from","type":"address"},{"internalType":"string","name":"name","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"occupiedIdxs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"_round","type":"uint8"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"roleOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"round","type":"uint8"}],"name":"roundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setCrossmintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxSupply_","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMetaDataOracleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMigrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDate","type":"uint256"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_show","type":"bool"}],"name":"setShowMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"showMetaData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenRoundString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawn","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260088054610100600160b01b03191675dab1a1854214684ace522439684a145e6250523301001790553480156200003a57600080fd5b50604051620040ab380380620040ab8339810160408190526200005d9162000460565b85518690869062000076906001906020850190620002eb565b5080516200008c906002906020840190620002eb565b50508451620000a49150600a906020870190620002eb565b508251620000ba906009906020860190620002eb565b50600b805463ffff000019166201000061ffff8516021790556015819055620000e56000336200024a565b62000106600073f867c48da1aa3268febcff36a6879066dd8eb3046200024a565b60085462000145907f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6906201000090046001600160a01b03166200024a565b5050600d60205250507f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee8054600181810183557fa1c8a201412de8b8f43c472e0bd83f94310a61b9c606bc376b0fe5721fd7d2f791820180546001600160a01b031990811633179091558354808301909455929091018054831673f867c48da1aa3268febcff36a6879066dd8eb3041790556008547fef76e30f82cef9253094d0d65d59e3c3265bbc72eb79ef44631eea2b65477abc805492830181556000527fbaf90e87b978d35ef9e19876203864cb3577dfd1f60aa574bded35e1c11ff2a79091018054909216620100009091046001600160a01b031617905550620005879050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620002e7576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002a63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b828054620002f99062000534565b90600052602060002090601f0160209004810192826200031d576000855562000368565b82601f106200033857805160ff191683800117855562000368565b8280016001018555821562000368579182015b82811115620003685782518255916020019190600101906200034b565b50620003769291506200037a565b5090565b5b808211156200037657600081556001016200037b565b600082601f830112620003a357600080fd5b81516001600160401b0380821115620003c057620003c062000571565b604051601f8301601f19908116603f01168101908282118183101715620003eb57620003eb62000571565b816040528381526020925086838588010111156200040857600080fd5b600091505b838210156200042c57858201830151818301840152908201906200040d565b838211156200043e5760008385830101525b9695505050505050565b805161ffff811681146200045b57600080fd5b919050565b60008060008060008060c087890312156200047a57600080fd5b86516001600160401b03808211156200049257600080fd5b620004a08a838b0162000391565b97506020890151915080821115620004b757600080fd5b620004c58a838b0162000391565b96506040890151915080821115620004dc57600080fd5b620004ea8a838b0162000391565b955060608901519150808211156200050157600080fd5b506200051089828a0162000391565b935050620005216080880162000448565b915060a087015190509295509295509295565b600181811c908216806200054957607f821691505b602082108114156200056b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613b1480620005976000396000f3fe6080604052600436106103355760003560e01c806370a08231116101ab578063b88d4fde116100f7578063d547741f11610095578063dc8c1e871161006f578063dc8c1e87146109ef578063e8c423d814610a0f578063e985e9c514610a2f578063eb7eccb414610a7857600080fd5b8063d547741f14610990578063d5abeb01146109b0578063da3e3406146109cf57600080fd5b8063c50c8186116100d1578063c50c818614610919578063c80ec52214610939578063c87b56dd1461094e578063d53913931461096e57600080fd5b8063b88d4fde146108a9578063b911c822146108c9578063bd77347a146108f957600080fd5b8063949d5abe11610164578063a0bcfc7f1161013e578063a0bcfc7f14610834578063a217fddf14610854578063a22cb46514610869578063afbc2c6b1461088957600080fd5b8063949d5abe146107df57806395d89b41146107ff578063997556241461081457600080fd5b806370a082311461071d578063754e2c831461073d57806375cee7d61461075d5780637a4675981461077d57806387e8bb871461079f57806391d14854146107bf57600080fd5b806323b872dd1161028557806342842e0e116102235780635344fb54116101fd5780635344fb54146106a257806354214f69146106d25780635bebdb0a146106ea5780636352211e146106fd57600080fd5b806342842e0e146106265780634b066913146106465780634cdc873e1461067c57600080fd5b80632b7527521161025f5780632b752752146105ac5780632c678c64146105cc5780632f2ff15d146105e657806336568abe1461060657600080fd5b806323b872dd1461053c57806324255c6c1461055c578063248a9ca31461057c57600080fd5b806307e2cea5116102f2578063095ea7b3116102cc578063095ea7b3146104c5578063122e04a8146104e557806318160ddd1461050d5780631e08a9e41461052657600080fd5b806307e2cea514610444578063081812fc146104865780630824e1f8146104a657600080fd5b806301ffc9a71461033a57806302d027a81461038057806306421c2f146103a257806306c18a31146103c257806306f42c2f1461040257806306fdde0314610422575b600080fd5b34801561034657600080fd5b5061036b61035536600461342e565b6001600160e01b0319166380ac58cd60e01b1490565b60405190151581526020015b60405180910390f35b34801561038c57600080fd5b506103a061039b366004613468565b610a98565b005b3480156103ae57600080fd5b506103a06103bd36600461355f565b610b5a565b3480156103ce57600080fd5b506103ea73f867c48da1aa3268febcff36a6879066dd8eb30481565b6040516001600160a01b039091168152602001610377565b34801561040e57600080fd5b506103ea61041d36600461340c565b610bbe565b34801561042e57600080fd5b50610437610bf6565b60405161037791906137c3565b34801561045057600080fd5b506104787f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef181565b604051908152602001610377565b34801561049257600080fd5b506103ea6104a13660046133ce565b610c88565b3480156104b257600080fd5b5060085461036b90610100900460ff1681565b3480156104d157600080fd5b506103a06104e036600461316a565b610caf565b3480156104f157600080fd5b506103ea730867436a889bf9c1abcaf3c505046fc4f7880b5081565b34801561051957600080fd5b50600b5461ffff16610478565b34801561053257600080fd5b5061047860155481565b34801561054857600080fd5b506103a0610557366004613074565b610dca565b34801561056857600080fd5b506103a0610577366004613511565b610dfb565b34801561058857600080fd5b506104786105973660046133ce565b60009081526020819052604090206001015490565b3480156105b857600080fd5b506104376105c73660046133ce565b610f0c565b3480156105d857600080fd5b5060085461036b9060ff1681565b3480156105f257600080fd5b506103a06106013660046133e7565b610fae565b34801561061257600080fd5b506103a06106213660046133e7565b61100a565b34801561063257600080fd5b506103a0610641366004613074565b611088565b34801561065257600080fd5b506103ea610661366004613468565b600f602052600090815260409020546001600160a01b031681565b34801561068857600080fd5b506008546103ea906201000090046001600160a01b031681565b3480156106ae57600080fd5b5061036b6106bd3660046133ce565b60009081526014602052604090205460ff1690565b3480156106de57600080fd5b5060155442101561036b565b6103a06106f8366004613196565b6110a3565b34801561070957600080fd5b506103ea6107183660046133ce565b6114e3565b34801561072957600080fd5b50610478610738366004613001565b611549565b34801561074957600080fd5b50610478610758366004613468565b6115cf565b34801561076957600080fd5b506103a06107783660046131f4565b61168a565b34801561078957600080fd5b50610792611797565b604051610377919061377f565b3480156107ab57600080fd5b506103a06107ba3660046133b3565b6117ee565b3480156107cb57600080fd5b5061036b6107da3660046133e7565b611821565b3480156107eb57600080fd5b506103a06107fa366004613001565b61184a565b34801561080b57600080fd5b506104376118d3565b34801561082057600080fd5b506103a061082f366004613001565b6118e2565b34801561084057600080fd5b506103a061084f36600461349f565b611918565b34801561086057600080fd5b50610478600081565b34801561087557600080fd5b506103a0610884366004613135565b611935565b34801561089557600080fd5b506103a06108a43660046132ea565b611940565b3480156108b557600080fd5b506103a06108c43660046130b5565b611ae6565b3480156108d557600080fd5b5061036b6108e43660046133ce565b60146020526000908152604090205460ff1681565b34801561090557600080fd5b506103a06109143660046133b3565b611b18565b34801561092557600080fd5b506103a06109343660046133ce565b611b37565b34801561094557600080fd5b506103a0611b77565b34801561095a57600080fd5b506104376109693660046133ce565b611bea565b34801561097a57600080fd5b50610478600080516020613abf83398151915281565b34801561099c57600080fd5b506103a06109ab3660046133e7565b611d6f565b3480156109bc57600080fd5b50600b5462010000900461ffff16610478565b3480156109db57600080fd5b506103ea6109ea366004613468565b611e45565b3480156109fb57600080fd5b50610437610a0a3660046133ce565b611e8e565b348015610a1b57600080fd5b50610478610a2a366004613468565b611f58565b348015610a3b57600080fd5b5061036b610a4a36600461303b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a8457600080fd5b506103a0610a93366004613483565b611f97565b6000610aa381612130565b610afb600080516020613abf833981519152600f6000856004811115610acb57610acb613a51565b6004811115610adc57610adc613a51565b81526020810191909152604001600020546001600160a01b031661213d565b6000600f6000846004811115610b1357610b13613a51565b6004811115610b2457610b24613a51565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b6000610b6581612130565b600b805463ffff000019166201000061ffff8581168202929092179283905560405192041681527f23f186846fc28ab198881f004c12f5ca67be083ac920381a4ed93ee6af8afa3a906020015b60405180910390a15050565b600d6020528160005260406000208181548110610bda57600080fd5b6000918252602090912001546001600160a01b03169150829050565b606060018054610c05906139bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c31906139bb565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b5050505050905090565b6000610c93826121a2565b506000908152600560205260409020546001600160a01b031690565b6000610cba826114e3565b9050806001600160a01b0316836001600160a01b03161415610d2d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610d495750610d498133610a4a565b610dbb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610d24565b610dc58383612201565b505050565b610dd4338261226f565b610df05760405162461bcd60e51b8152600401610d249061384d565b610dc58383836122ee565b7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1610e2581612130565b60008381526012602052604090205460ff16610e945760405162461bcd60e51b815260206004820152602860248201527f5265717565737420697320696e76616c6964206f7220616c7265616479206675604482015267363334b63632b21760c11b6064820152608401610d24565b60008281526011602090815260409091208551610eb392870190612e4d565b5060008381526012602052604090819020805460ff19169055517f985db8a8b1ff44af7adf21643b53f08548cc00a56be07a37fa0d4052e341338990610efe908690869086906137d6565b60405180910390a150505050565b6000818152601360205260409020805460609190610f29906139bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f55906139bb565b8015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b50505050509050919050565b600082815260208190526040902060010154610fc981612130565b6000838152600d602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b038416179055610dc5838361248a565b6001600160a01b038116331461107a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610d24565b611084828261213d565b5050565b610dc583838360405180602001604052806000815250611ae6565b600080516020613abf8339815191526110bb81612130565b6000600f60008560048111156110d3576110d3613a51565b60048111156110e4576110e4613a51565b81526020810191909152604090810160009081205491516294b2f960e61b8152600481018890523360248201526001600160a01b03909216925090829063252cbe409060440160006040518083038186803b15801561114257600080fd5b505afa158015611156573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261117e919081019061324d565b905060006001600160a01b0316826001600160a01b0316635a99719e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111c457600080fd5b505afa1580156111d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fc919061301e565b6001600160a01b031614156112535760405162461bcd60e51b815260206004820152601d60248201527f4e46543a204d6173746572206e6f7420696e697420696e20726f756e640000006044820152606401610d24565b856010600087600481111561126a5761126a613a51565b600481111561127b5761127b613a51565b8152602001908152602001600020546112949190613942565b34146112e25760405162461bcd60e51b815260206004820152601d60248201527f4e46543a20496e636f7272656374204554482076616c75652073656e740000006044820152606401610d24565b6112ed81600061250e565b1561136a576112fc3334612560565b60405162461bcd60e51b815260206004820152603b60248201527f4e46543a20546865207265717569726564206e756d626572206f6620746f6b6560448201527f6e7320776173206e6f7420666f756e642c2074727920616761696e00000000006064820152608401610d24565b60005b81518110156114d957846013600084848151811061138d5761138d613a67565b6020026020010151815260200190815260200160002090805190602001906113b6929190612e4d565b506001601460008484815181106113cf576113cf613a67565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555061141e82828151811061141157611411613a67565b6020026020010151612679565b600782828151811061143257611432613a67565b60209081029190910181015182546001810184556000938452919092200155815161147890899084908490811061146b5761146b613a67565b60200260200101516127a7565b81818151811061148a5761148a613a67565b6020026020010151886001600160a01b03167ecdb3ebd8b1266eb5c9f1c427960280538b1dffd18372f47f27a0b08f0ffc5660405160405180910390a3806114d1816139f6565b91505061136d565b5050505050505050565b6000818152600360205260408120546001600160a01b0316806115435760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610d24565b92915050565b60006001600160a01b0382166115b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610d24565b506001600160a01b031660009081526004602052604090205490565b6000600f60008360048111156115e7576115e7613a51565b60048111156115f8576115f8613a51565b815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031663aa9a9c2d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561165257600080fd5b505afa158015611666573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115439190613583565b600061169581612130565b60085460ff16156116d85760405162461bcd60e51b815260206004820152600d60248201526c416c726561647920646f6e652160981b6044820152606401610d24565b600083815260136020908152604090912083516116f792850190612e4d565b506000838152601460205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880183905561174f84846127a7565b61175883612679565b604080516001600160a01b0386168152602081018590527fa59785389b00cbd19745afbe8d59b28e3161395c6b1e3525861a2b0dede0b90d9101610efe565b60606007805480602002602001604051908101604052809291908181526020018280548015610c7e57602002820191906000526020600020905b8154815260200190600101908083116117d1575050505050905090565b600080516020613abf83398151915261180681612130565b50600880549115156101000261ff0019909216919091179055565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600061185581612130565b600e80546001600160a01b0319166001600160a01b03841617905561189a7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1836127c1565b6040516001600160a01b03831681527fe420b96152542f57ce3d2d26d939a3c2860a82361801ad0a970a3badc32d538e90602001610bb2565b606060028054610c05906139bb565b60006118ed81612130565b50600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600061192381612130565b61192f60098484612ed1565b50505050565b6110843383836127cb565b600080516020613abf83398151915261195881612130565b8351600b805460009061197090849061ffff166138f0565b92506101000a81548161ffff021916908361ffff16021790555060005b8451811015611adf5782601360008784815181106119ad576119ad613a67565b6020026020010151815260200190815260200160002090805190602001906119d6929190612e4d565b506119ec85828151811061141157611411613a67565b600160146000878481518110611a0457611a04613a67565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506007858281518110611a4557611a45613a67565b602090810291909101810151825460018101845560009384529190922001558451611a7e90859087908490811061146b5761146b613a67565b848181518110611a9057611a90613a67565b6020026020010151846001600160a01b03167ecdb3ebd8b1266eb5c9f1c427960280538b1dffd18372f47f27a0b08f0ffc5660405160405180910390a380611ad7816139f6565b91505061198d565b5050505050565b611af0338361226f565b611b0c5760405162461bcd60e51b8152600401610d249061384d565b61192f8484848461289a565b6000611b2381612130565b506008805460ff1916911515919091179055565b6000611b4281612130565b60158290556040518281527ff2537ab3ab8ea68fd2691ceaba4839d4a4fa24763f1cb241eea7373f966c253890602001610bb2565b6000611b8281612130565b611ba0730867436a889bf9c1abcaf3c505046fc4f7880b5047612560565b604051730867436a889bf9c1abcaf3c505046fc4f7880b5081527ff45a04d08a70caa7eb4b747571305559ad9fdf4a093afd41506b35c8a306fa949060200160405180910390a150565b6000818152600360205260409020546060906001600160a01b0316611c695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d24565b601554421015611c8057600a8054610f29906139bb565b600060098054611c8f906139bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbb906139bb565b8015611d085780601f10611cdd57610100808354040283529160200191611d08565b820191906000526020600020905b815481529060010190602001808311611ceb57829003601f168201915b505050505090506000815111611d2d5760405180602001604052806000815250611d68565b60008381526013602052604090208190611d46856128cd565b604051602001611d58939291906135e4565b6040516020818303038152906040525b9392505050565b600082815260208190526040902060010154611d8a81612130565b60005b6000848152600d6020526040902054811015611e3a576000848152600d6020526040902080546001600160a01b038516919083908110611dcf57611dcf613a67565b6000918252602090912001546001600160a01b03161415611e28576000848152600d60205260409020805482908110611e0a57611e0a613a67565b600091825260209091200180546001600160a01b0319169055611e3a565b80611e32816139f6565b915050611d8d565b50610dc5838361213d565b6000600f6000836004811115611e5d57611e5d613a51565b6004811115611e6e57611e6e613a51565b81526020810191909152604001600020546001600160a01b031692915050565b6060611e9c60155442101590565b611ee85760405162461bcd60e51b815260206004820152601d60248201527f4e46543a20636f6c6c656374696f6e73206e6f742072657665616c65640000006044820152606401610d24565b600854610100900460ff16611f3f5760405162461bcd60e51b815260206004820152601c60248201527f4e46543a2043616e27742073686f77206d65746564617461206e6f77000000006044820152606401610d24565b60008281526011602052604090208054610f29906139bb565b600060106000836004811115611f7057611f70613a51565b6004811115611f8157611f81613a51565b8152602001908152602001600020549050919050565b6000611fa281612130565b611fba600080516020613abf8339815191528361248a565b600d60209081527fef76e30f82cef9253094d0d65d59e3c3265bbc72eb79ef44631eea2b65477abc80546001810182556000919091527fbaf90e87b978d35ef9e19876203864cb3577dfd1f60aa574bded35e1c11ff2a70180546001600160a01b0319166001600160a01b03851690811790915560408051631a05f1db60e21b815290519192636817c76c92600480840193829003018186803b15801561206057600080fd5b505afa158015612074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120989190613583565b601060008560048111156120ae576120ae613a51565b60048111156120bf576120bf613a51565b81526020019081526020016000208190555081600f60008560048111156120e8576120e8613a51565b60048111156120f9576120f9613a51565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550505050565b61213a81336129cb565b50565b6121478282611821565b15611084576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600360205260409020546001600160a01b031661213a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610d24565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612236826114e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061227b836114e3565b9050806001600160a01b0316846001600160a01b031614806122c257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806122e65750836001600160a01b03166122db84610c88565b6001600160a01b0316145b949350505050565b826001600160a01b0316612301826114e3565b6001600160a01b0316146123655760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d24565b6001600160a01b0382166123c75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d24565b6123d2600082612201565b6001600160a01b03831660009081526004602052604081208054600192906123fb908490613961565b90915550506001600160a01b0382166000908152600460205260408120805460019290612429908490613916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6124948282611821565b611084576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556124ca3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600080805b8451811015612558578385828151811061252f5761252f613a67565b602002602001015114156125465760019150612558565b80612550816139f6565b915050612513565b509392505050565b804710156125b05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d24565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146125fd576040519150601f19603f3d011682016040523d82523d6000602084013e612602565b606091505b5050905080610dc55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d24565b600e546001600160a01b03166126d15760405162461bcd60e51b815260206004820152601760248201527f4f7261636c65206e6f7420696e697469616c697a65642e0000000000000000006044820152606401610d24565b600e54604051631a5a0c5960e21b8152600481018390526000916001600160a01b031690636968316490602401602060405180830381600087803b15801561271857600080fd5b505af115801561272c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127509190613583565b60008181526012602052604090819020805460ff19166001179055519091507feeaaa1d22b54b62ea43deb3fcd05a649b3440695dacf325c6c2f692e6a21e98990610bb29084908490918252602082015260400190565b611084828260405180602001604052806000815250612a2f565b611084828261248a565b816001600160a01b0316836001600160a01b0316141561282d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d24565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128a58484846122ee565b6128b184848484612a62565b61192f5760405162461bcd60e51b8152600401610d24906137fb565b6060816128f15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561291b5780612905816139f6565b91506129149050600a8361392e565b91506128f5565b60008167ffffffffffffffff81111561293657612936613a7d565b6040519080825280601f01601f191660200182016040528015612960576020820181803683370190505b5090505b84156122e657612975600183613961565b9150612982600a86613a11565b61298d906030613916565b60f81b8183815181106129a2576129a2613a67565b60200101906001600160f81b031916908160001a9053506129c4600a8661392e565b9450612964565b6129d58282611821565b611084576129ed816001600160a01b03166014612b6f565b6129f8836020612b6f565b604051602001612a099291906136cd565b60408051601f198184030181529082905262461bcd60e51b8252610d24916004016137c3565b612a398383612d0b565b612a466000848484612a62565b610dc55760405162461bcd60e51b8152600401610d24906137fb565b60006001600160a01b0384163b15612b6457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612aa6903390899088908890600401613742565b602060405180830381600087803b158015612ac057600080fd5b505af1925050508015612af0575060408051601f3d908101601f19168201909252612aed9181019061344b565b60015b612b4a573d808015612b1e576040519150601f19603f3d011682016040523d82523d6000602084013e612b23565b606091505b508051612b425760405162461bcd60e51b8152600401610d24906137fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122e6565b506001949350505050565b60606000612b7e836002613942565b612b89906002613916565b67ffffffffffffffff811115612ba157612ba1613a7d565b6040519080825280601f01601f191660200182016040528015612bcb576020820181803683370190505b509050600360fc1b81600081518110612be657612be6613a67565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612c1557612c15613a67565b60200101906001600160f81b031916908160001a9053506000612c39846002613942565b612c44906001613916565b90505b6001811115612cbc576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612c7857612c78613a67565b1a60f81b828281518110612c8e57612c8e613a67565b60200101906001600160f81b031916908160001a90535060049490941c93612cb5816139a4565b9050612c47565b508315611d685760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d24565b6001600160a01b038216612d615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d24565b6000818152600360205260409020546001600160a01b031615612dc65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d24565b6001600160a01b0382166000908152600460205260408120805460019290612def908490613916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612e59906139bb565b90600052602060002090601f016020900481019282612e7b5760008555612ec1565b82601f10612e9457805160ff1916838001178555612ec1565b82800160010185558215612ec1579182015b82811115612ec1578251825591602001919060010190612ea6565b50612ecd929150612f45565b5090565b828054612edd906139bb565b90600052602060002090601f016020900481019282612eff5760008555612ec1565b82601f10612f185782800160ff19823516178555612ec1565b82800160010185558215612ec1579182015b82811115612ec1578235825591602001919060010190612f2a565b5b80821115612ecd5760008155600101612f46565b600067ffffffffffffffff831115612f7457612f74613a7d565b612f87601f8401601f191660200161389b565b9050828152838383011115612f9b57600080fd5b828260208301376000602084830101529392505050565b8035612fbd81613a93565b919050565b80358015158114612fbd57600080fd5b803560058110612fbd57600080fd5b600082601f830112612ff257600080fd5b611d6883833560208501612f5a565b60006020828403121561301357600080fd5b8135611d6881613a93565b60006020828403121561303057600080fd5b8151611d6881613a93565b6000806040838503121561304e57600080fd5b823561305981613a93565b9150602083013561306981613a93565b809150509250929050565b60008060006060848603121561308957600080fd5b833561309481613a93565b925060208401356130a481613a93565b929592945050506040919091013590565b600080600080608085870312156130cb57600080fd5b84356130d681613a93565b935060208501356130e681613a93565b925060408501359150606085013567ffffffffffffffff81111561310957600080fd5b8501601f8101871361311a57600080fd5b61312987823560208401612f5a565b91505092959194509250565b6000806040838503121561314857600080fd5b823561315381613a93565b915061316160208401612fc2565b90509250929050565b6000806040838503121561317d57600080fd5b823561318881613a93565b946020939093013593505050565b600080600080608085870312156131ac57600080fd5b84356131b781613a93565b9350602085013592506131cc60408601612fd2565b9150606085013567ffffffffffffffff8111156131e857600080fd5b61312987828801612fe1565b60008060006060848603121561320957600080fd5b833561321481613a93565b925060208401359150604084013567ffffffffffffffff81111561323757600080fd5b61324386828701612fe1565b9150509250925092565b6000602080838503121561326057600080fd5b825167ffffffffffffffff81111561327757600080fd5b8301601f8101851361328857600080fd5b805161329b613296826138cc565b61389b565b80828252848201915084840188868560051b87010111156132bb57600080fd5b600094505b838510156132de5780518352600194909401939185019185016132c0565b50979650505050505050565b6000806000606084860312156132ff57600080fd5b833567ffffffffffffffff8082111561331757600080fd5b818601915086601f83011261332b57600080fd5b8135602061333b613296836138cc565b8083825282820191508286018b848660051b890101111561335b57600080fd5b600096505b8487101561337e578035835260019690960195918301918301613360565b50975061338e9050888201612fb2565b9550505060408601359150808211156133a657600080fd5b5061324386828701612fe1565b6000602082840312156133c557600080fd5b611d6882612fc2565b6000602082840312156133e057600080fd5b5035919050565b600080604083850312156133fa57600080fd5b82359150602083013561306981613a93565b6000806040838503121561341f57600080fd5b50508035926020909101359150565b60006020828403121561344057600080fd5b8135611d6881613aa8565b60006020828403121561345d57600080fd5b8151611d6881613aa8565b60006020828403121561347a57600080fd5b611d6882612fd2565b6000806040838503121561349657600080fd5b61305983612fd2565b600080602083850312156134b257600080fd5b823567ffffffffffffffff808211156134ca57600080fd5b818501915085601f8301126134de57600080fd5b8135818111156134ed57600080fd5b8660208285010111156134ff57600080fd5b60209290920196919550909350505050565b60008060006060848603121561352657600080fd5b833567ffffffffffffffff81111561353d57600080fd5b61354986828701612fe1565b9660208601359650604090950135949350505050565b60006020828403121561357157600080fd5b813561ffff81168114611d6857600080fd5b60006020828403121561359557600080fd5b5051919050565b600081518084526135b4816020860160208601613978565b601f01601f19169290920160200192915050565b600081516135da818560208601613978565b9290920192915050565b6000845160206135f78285838a01613978565b855491840191600090600181811c908083168061361557607f831692505b85831081141561363357634e487b7160e01b85526022600452602485fd5b808015613647576001811461365857613685565b60ff19851688528388019550613685565b60008c81526020902060005b8581101561367d5781548a820152908401908801613664565b505083880195505b50505050506136c16136b06136aa83692f6d657461646174612f60b01b8152600a0190565b886135c8565b64173539b7b760d91b815260050190565b98975050505050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613705816017850160208801613978565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613736816028840160208801613978565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137759083018461359c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156137b75783518352928401929184019160010161379b565b50909695505050505050565b602081526000611d68602083018461359c565b6060815260006137e9606083018661359c565b60208301949094525060400152919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156138c4576138c4613a7d565b604052919050565b600067ffffffffffffffff8211156138e6576138e6613a7d565b5060051b60200190565b600061ffff80831681851680830382111561390d5761390d613a25565b01949350505050565b6000821982111561392957613929613a25565b500190565b60008261393d5761393d613a3b565b500490565b600081600019048311821515161561395c5761395c613a25565b500290565b60008282101561397357613973613a25565b500390565b60005b8381101561399357818101518382015260200161397b565b8381111561192f5750506000910152565b6000816139b3576139b3613a25565b506000190190565b600181811c908216806139cf57607f821691505b602082108114156139f057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a0a57613a0a613a25565b5060010190565b600082613a2057613a20613a3b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461213a57600080fd5b6001600160e01b03198116811461213a57600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a26469706673582212201a4a912e7a175f6c9851c6b2208ecff6963e4bb120ec86a3b59d415a6b5948a964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000063249d8000000000000000000000000000000000000000000000000000000000000000104c616e612053757065722059616368740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c53590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f697066732e696f2f697066732f516d664d4c736258716552696d584a7a32355038676942434e506131717563543731575138644e7a52454d367a583f66696c656e616d653d756e72657665616c65642e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d574478765348746841426936716f6747594e7a746d5250563655666f79316a4a347656653450645a364c4b4a2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c806370a08231116101ab578063b88d4fde116100f7578063d547741f11610095578063dc8c1e871161006f578063dc8c1e87146109ef578063e8c423d814610a0f578063e985e9c514610a2f578063eb7eccb414610a7857600080fd5b8063d547741f14610990578063d5abeb01146109b0578063da3e3406146109cf57600080fd5b8063c50c8186116100d1578063c50c818614610919578063c80ec52214610939578063c87b56dd1461094e578063d53913931461096e57600080fd5b8063b88d4fde146108a9578063b911c822146108c9578063bd77347a146108f957600080fd5b8063949d5abe11610164578063a0bcfc7f1161013e578063a0bcfc7f14610834578063a217fddf14610854578063a22cb46514610869578063afbc2c6b1461088957600080fd5b8063949d5abe146107df57806395d89b41146107ff578063997556241461081457600080fd5b806370a082311461071d578063754e2c831461073d57806375cee7d61461075d5780637a4675981461077d57806387e8bb871461079f57806391d14854146107bf57600080fd5b806323b872dd1161028557806342842e0e116102235780635344fb54116101fd5780635344fb54146106a257806354214f69146106d25780635bebdb0a146106ea5780636352211e146106fd57600080fd5b806342842e0e146106265780634b066913146106465780634cdc873e1461067c57600080fd5b80632b7527521161025f5780632b752752146105ac5780632c678c64146105cc5780632f2ff15d146105e657806336568abe1461060657600080fd5b806323b872dd1461053c57806324255c6c1461055c578063248a9ca31461057c57600080fd5b806307e2cea5116102f2578063095ea7b3116102cc578063095ea7b3146104c5578063122e04a8146104e557806318160ddd1461050d5780631e08a9e41461052657600080fd5b806307e2cea514610444578063081812fc146104865780630824e1f8146104a657600080fd5b806301ffc9a71461033a57806302d027a81461038057806306421c2f146103a257806306c18a31146103c257806306f42c2f1461040257806306fdde0314610422575b600080fd5b34801561034657600080fd5b5061036b61035536600461342e565b6001600160e01b0319166380ac58cd60e01b1490565b60405190151581526020015b60405180910390f35b34801561038c57600080fd5b506103a061039b366004613468565b610a98565b005b3480156103ae57600080fd5b506103a06103bd36600461355f565b610b5a565b3480156103ce57600080fd5b506103ea73f867c48da1aa3268febcff36a6879066dd8eb30481565b6040516001600160a01b039091168152602001610377565b34801561040e57600080fd5b506103ea61041d36600461340c565b610bbe565b34801561042e57600080fd5b50610437610bf6565b60405161037791906137c3565b34801561045057600080fd5b506104787f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef181565b604051908152602001610377565b34801561049257600080fd5b506103ea6104a13660046133ce565b610c88565b3480156104b257600080fd5b5060085461036b90610100900460ff1681565b3480156104d157600080fd5b506103a06104e036600461316a565b610caf565b3480156104f157600080fd5b506103ea730867436a889bf9c1abcaf3c505046fc4f7880b5081565b34801561051957600080fd5b50600b5461ffff16610478565b34801561053257600080fd5b5061047860155481565b34801561054857600080fd5b506103a0610557366004613074565b610dca565b34801561056857600080fd5b506103a0610577366004613511565b610dfb565b34801561058857600080fd5b506104786105973660046133ce565b60009081526020819052604090206001015490565b3480156105b857600080fd5b506104376105c73660046133ce565b610f0c565b3480156105d857600080fd5b5060085461036b9060ff1681565b3480156105f257600080fd5b506103a06106013660046133e7565b610fae565b34801561061257600080fd5b506103a06106213660046133e7565b61100a565b34801561063257600080fd5b506103a0610641366004613074565b611088565b34801561065257600080fd5b506103ea610661366004613468565b600f602052600090815260409020546001600160a01b031681565b34801561068857600080fd5b506008546103ea906201000090046001600160a01b031681565b3480156106ae57600080fd5b5061036b6106bd3660046133ce565b60009081526014602052604090205460ff1690565b3480156106de57600080fd5b5060155442101561036b565b6103a06106f8366004613196565b6110a3565b34801561070957600080fd5b506103ea6107183660046133ce565b6114e3565b34801561072957600080fd5b50610478610738366004613001565b611549565b34801561074957600080fd5b50610478610758366004613468565b6115cf565b34801561076957600080fd5b506103a06107783660046131f4565b61168a565b34801561078957600080fd5b50610792611797565b604051610377919061377f565b3480156107ab57600080fd5b506103a06107ba3660046133b3565b6117ee565b3480156107cb57600080fd5b5061036b6107da3660046133e7565b611821565b3480156107eb57600080fd5b506103a06107fa366004613001565b61184a565b34801561080b57600080fd5b506104376118d3565b34801561082057600080fd5b506103a061082f366004613001565b6118e2565b34801561084057600080fd5b506103a061084f36600461349f565b611918565b34801561086057600080fd5b50610478600081565b34801561087557600080fd5b506103a0610884366004613135565b611935565b34801561089557600080fd5b506103a06108a43660046132ea565b611940565b3480156108b557600080fd5b506103a06108c43660046130b5565b611ae6565b3480156108d557600080fd5b5061036b6108e43660046133ce565b60146020526000908152604090205460ff1681565b34801561090557600080fd5b506103a06109143660046133b3565b611b18565b34801561092557600080fd5b506103a06109343660046133ce565b611b37565b34801561094557600080fd5b506103a0611b77565b34801561095a57600080fd5b506104376109693660046133ce565b611bea565b34801561097a57600080fd5b50610478600080516020613abf83398151915281565b34801561099c57600080fd5b506103a06109ab3660046133e7565b611d6f565b3480156109bc57600080fd5b50600b5462010000900461ffff16610478565b3480156109db57600080fd5b506103ea6109ea366004613468565b611e45565b3480156109fb57600080fd5b50610437610a0a3660046133ce565b611e8e565b348015610a1b57600080fd5b50610478610a2a366004613468565b611f58565b348015610a3b57600080fd5b5061036b610a4a36600461303b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a8457600080fd5b506103a0610a93366004613483565b611f97565b6000610aa381612130565b610afb600080516020613abf833981519152600f6000856004811115610acb57610acb613a51565b6004811115610adc57610adc613a51565b81526020810191909152604001600020546001600160a01b031661213d565b6000600f6000846004811115610b1357610b13613a51565b6004811115610b2457610b24613a51565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b6000610b6581612130565b600b805463ffff000019166201000061ffff8581168202929092179283905560405192041681527f23f186846fc28ab198881f004c12f5ca67be083ac920381a4ed93ee6af8afa3a906020015b60405180910390a15050565b600d6020528160005260406000208181548110610bda57600080fd5b6000918252602090912001546001600160a01b03169150829050565b606060018054610c05906139bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c31906139bb565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b5050505050905090565b6000610c93826121a2565b506000908152600560205260409020546001600160a01b031690565b6000610cba826114e3565b9050806001600160a01b0316836001600160a01b03161415610d2d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610d495750610d498133610a4a565b610dbb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610d24565b610dc58383612201565b505050565b610dd4338261226f565b610df05760405162461bcd60e51b8152600401610d249061384d565b610dc58383836122ee565b7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1610e2581612130565b60008381526012602052604090205460ff16610e945760405162461bcd60e51b815260206004820152602860248201527f5265717565737420697320696e76616c6964206f7220616c7265616479206675604482015267363334b63632b21760c11b6064820152608401610d24565b60008281526011602090815260409091208551610eb392870190612e4d565b5060008381526012602052604090819020805460ff19169055517f985db8a8b1ff44af7adf21643b53f08548cc00a56be07a37fa0d4052e341338990610efe908690869086906137d6565b60405180910390a150505050565b6000818152601360205260409020805460609190610f29906139bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f55906139bb565b8015610fa25780601f10610f7757610100808354040283529160200191610fa2565b820191906000526020600020905b815481529060010190602001808311610f8557829003601f168201915b50505050509050919050565b600082815260208190526040902060010154610fc981612130565b6000838152600d602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b038416179055610dc5838361248a565b6001600160a01b038116331461107a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610d24565b611084828261213d565b5050565b610dc583838360405180602001604052806000815250611ae6565b600080516020613abf8339815191526110bb81612130565b6000600f60008560048111156110d3576110d3613a51565b60048111156110e4576110e4613a51565b81526020810191909152604090810160009081205491516294b2f960e61b8152600481018890523360248201526001600160a01b03909216925090829063252cbe409060440160006040518083038186803b15801561114257600080fd5b505afa158015611156573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261117e919081019061324d565b905060006001600160a01b0316826001600160a01b0316635a99719e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111c457600080fd5b505afa1580156111d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fc919061301e565b6001600160a01b031614156112535760405162461bcd60e51b815260206004820152601d60248201527f4e46543a204d6173746572206e6f7420696e697420696e20726f756e640000006044820152606401610d24565b856010600087600481111561126a5761126a613a51565b600481111561127b5761127b613a51565b8152602001908152602001600020546112949190613942565b34146112e25760405162461bcd60e51b815260206004820152601d60248201527f4e46543a20496e636f7272656374204554482076616c75652073656e740000006044820152606401610d24565b6112ed81600061250e565b1561136a576112fc3334612560565b60405162461bcd60e51b815260206004820152603b60248201527f4e46543a20546865207265717569726564206e756d626572206f6620746f6b6560448201527f6e7320776173206e6f7420666f756e642c2074727920616761696e00000000006064820152608401610d24565b60005b81518110156114d957846013600084848151811061138d5761138d613a67565b6020026020010151815260200190815260200160002090805190602001906113b6929190612e4d565b506001601460008484815181106113cf576113cf613a67565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555061141e82828151811061141157611411613a67565b6020026020010151612679565b600782828151811061143257611432613a67565b60209081029190910181015182546001810184556000938452919092200155815161147890899084908490811061146b5761146b613a67565b60200260200101516127a7565b81818151811061148a5761148a613a67565b6020026020010151886001600160a01b03167ecdb3ebd8b1266eb5c9f1c427960280538b1dffd18372f47f27a0b08f0ffc5660405160405180910390a3806114d1816139f6565b91505061136d565b5050505050505050565b6000818152600360205260408120546001600160a01b0316806115435760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610d24565b92915050565b60006001600160a01b0382166115b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610d24565b506001600160a01b031660009081526004602052604090205490565b6000600f60008360048111156115e7576115e7613a51565b60048111156115f8576115f8613a51565b815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031663aa9a9c2d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561165257600080fd5b505afa158015611666573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115439190613583565b600061169581612130565b60085460ff16156116d85760405162461bcd60e51b815260206004820152600d60248201526c416c726561647920646f6e652160981b6044820152606401610d24565b600083815260136020908152604090912083516116f792850190612e4d565b506000838152601460205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880183905561174f84846127a7565b61175883612679565b604080516001600160a01b0386168152602081018590527fa59785389b00cbd19745afbe8d59b28e3161395c6b1e3525861a2b0dede0b90d9101610efe565b60606007805480602002602001604051908101604052809291908181526020018280548015610c7e57602002820191906000526020600020905b8154815260200190600101908083116117d1575050505050905090565b600080516020613abf83398151915261180681612130565b50600880549115156101000261ff0019909216919091179055565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600061185581612130565b600e80546001600160a01b0319166001600160a01b03841617905561189a7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1836127c1565b6040516001600160a01b03831681527fe420b96152542f57ce3d2d26d939a3c2860a82361801ad0a970a3badc32d538e90602001610bb2565b606060028054610c05906139bb565b60006118ed81612130565b50600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600061192381612130565b61192f60098484612ed1565b50505050565b6110843383836127cb565b600080516020613abf83398151915261195881612130565b8351600b805460009061197090849061ffff166138f0565b92506101000a81548161ffff021916908361ffff16021790555060005b8451811015611adf5782601360008784815181106119ad576119ad613a67565b6020026020010151815260200190815260200160002090805190602001906119d6929190612e4d565b506119ec85828151811061141157611411613a67565b600160146000878481518110611a0457611a04613a67565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506007858281518110611a4557611a45613a67565b602090810291909101810151825460018101845560009384529190922001558451611a7e90859087908490811061146b5761146b613a67565b848181518110611a9057611a90613a67565b6020026020010151846001600160a01b03167ecdb3ebd8b1266eb5c9f1c427960280538b1dffd18372f47f27a0b08f0ffc5660405160405180910390a380611ad7816139f6565b91505061198d565b5050505050565b611af0338361226f565b611b0c5760405162461bcd60e51b8152600401610d249061384d565b61192f8484848461289a565b6000611b2381612130565b506008805460ff1916911515919091179055565b6000611b4281612130565b60158290556040518281527ff2537ab3ab8ea68fd2691ceaba4839d4a4fa24763f1cb241eea7373f966c253890602001610bb2565b6000611b8281612130565b611ba0730867436a889bf9c1abcaf3c505046fc4f7880b5047612560565b604051730867436a889bf9c1abcaf3c505046fc4f7880b5081527ff45a04d08a70caa7eb4b747571305559ad9fdf4a093afd41506b35c8a306fa949060200160405180910390a150565b6000818152600360205260409020546060906001600160a01b0316611c695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d24565b601554421015611c8057600a8054610f29906139bb565b600060098054611c8f906139bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbb906139bb565b8015611d085780601f10611cdd57610100808354040283529160200191611d08565b820191906000526020600020905b815481529060010190602001808311611ceb57829003601f168201915b505050505090506000815111611d2d5760405180602001604052806000815250611d68565b60008381526013602052604090208190611d46856128cd565b604051602001611d58939291906135e4565b6040516020818303038152906040525b9392505050565b600082815260208190526040902060010154611d8a81612130565b60005b6000848152600d6020526040902054811015611e3a576000848152600d6020526040902080546001600160a01b038516919083908110611dcf57611dcf613a67565b6000918252602090912001546001600160a01b03161415611e28576000848152600d60205260409020805482908110611e0a57611e0a613a67565b600091825260209091200180546001600160a01b0319169055611e3a565b80611e32816139f6565b915050611d8d565b50610dc5838361213d565b6000600f6000836004811115611e5d57611e5d613a51565b6004811115611e6e57611e6e613a51565b81526020810191909152604001600020546001600160a01b031692915050565b6060611e9c60155442101590565b611ee85760405162461bcd60e51b815260206004820152601d60248201527f4e46543a20636f6c6c656374696f6e73206e6f742072657665616c65640000006044820152606401610d24565b600854610100900460ff16611f3f5760405162461bcd60e51b815260206004820152601c60248201527f4e46543a2043616e27742073686f77206d65746564617461206e6f77000000006044820152606401610d24565b60008281526011602052604090208054610f29906139bb565b600060106000836004811115611f7057611f70613a51565b6004811115611f8157611f81613a51565b8152602001908152602001600020549050919050565b6000611fa281612130565b611fba600080516020613abf8339815191528361248a565b600d60209081527fef76e30f82cef9253094d0d65d59e3c3265bbc72eb79ef44631eea2b65477abc80546001810182556000919091527fbaf90e87b978d35ef9e19876203864cb3577dfd1f60aa574bded35e1c11ff2a70180546001600160a01b0319166001600160a01b03851690811790915560408051631a05f1db60e21b815290519192636817c76c92600480840193829003018186803b15801561206057600080fd5b505afa158015612074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120989190613583565b601060008560048111156120ae576120ae613a51565b60048111156120bf576120bf613a51565b81526020019081526020016000208190555081600f60008560048111156120e8576120e8613a51565b60048111156120f9576120f9613a51565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550505050565b61213a81336129cb565b50565b6121478282611821565b15611084576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600360205260409020546001600160a01b031661213a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610d24565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612236826114e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061227b836114e3565b9050806001600160a01b0316846001600160a01b031614806122c257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806122e65750836001600160a01b03166122db84610c88565b6001600160a01b0316145b949350505050565b826001600160a01b0316612301826114e3565b6001600160a01b0316146123655760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d24565b6001600160a01b0382166123c75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d24565b6123d2600082612201565b6001600160a01b03831660009081526004602052604081208054600192906123fb908490613961565b90915550506001600160a01b0382166000908152600460205260408120805460019290612429908490613916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6124948282611821565b611084576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556124ca3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600080805b8451811015612558578385828151811061252f5761252f613a67565b602002602001015114156125465760019150612558565b80612550816139f6565b915050612513565b509392505050565b804710156125b05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d24565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146125fd576040519150601f19603f3d011682016040523d82523d6000602084013e612602565b606091505b5050905080610dc55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d24565b600e546001600160a01b03166126d15760405162461bcd60e51b815260206004820152601760248201527f4f7261636c65206e6f7420696e697469616c697a65642e0000000000000000006044820152606401610d24565b600e54604051631a5a0c5960e21b8152600481018390526000916001600160a01b031690636968316490602401602060405180830381600087803b15801561271857600080fd5b505af115801561272c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127509190613583565b60008181526012602052604090819020805460ff19166001179055519091507feeaaa1d22b54b62ea43deb3fcd05a649b3440695dacf325c6c2f692e6a21e98990610bb29084908490918252602082015260400190565b611084828260405180602001604052806000815250612a2f565b611084828261248a565b816001600160a01b0316836001600160a01b0316141561282d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d24565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128a58484846122ee565b6128b184848484612a62565b61192f5760405162461bcd60e51b8152600401610d24906137fb565b6060816128f15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561291b5780612905816139f6565b91506129149050600a8361392e565b91506128f5565b60008167ffffffffffffffff81111561293657612936613a7d565b6040519080825280601f01601f191660200182016040528015612960576020820181803683370190505b5090505b84156122e657612975600183613961565b9150612982600a86613a11565b61298d906030613916565b60f81b8183815181106129a2576129a2613a67565b60200101906001600160f81b031916908160001a9053506129c4600a8661392e565b9450612964565b6129d58282611821565b611084576129ed816001600160a01b03166014612b6f565b6129f8836020612b6f565b604051602001612a099291906136cd565b60408051601f198184030181529082905262461bcd60e51b8252610d24916004016137c3565b612a398383612d0b565b612a466000848484612a62565b610dc55760405162461bcd60e51b8152600401610d24906137fb565b60006001600160a01b0384163b15612b6457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612aa6903390899088908890600401613742565b602060405180830381600087803b158015612ac057600080fd5b505af1925050508015612af0575060408051601f3d908101601f19168201909252612aed9181019061344b565b60015b612b4a573d808015612b1e576040519150601f19603f3d011682016040523d82523d6000602084013e612b23565b606091505b508051612b425760405162461bcd60e51b8152600401610d24906137fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122e6565b506001949350505050565b60606000612b7e836002613942565b612b89906002613916565b67ffffffffffffffff811115612ba157612ba1613a7d565b6040519080825280601f01601f191660200182016040528015612bcb576020820181803683370190505b509050600360fc1b81600081518110612be657612be6613a67565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612c1557612c15613a67565b60200101906001600160f81b031916908160001a9053506000612c39846002613942565b612c44906001613916565b90505b6001811115612cbc576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612c7857612c78613a67565b1a60f81b828281518110612c8e57612c8e613a67565b60200101906001600160f81b031916908160001a90535060049490941c93612cb5816139a4565b9050612c47565b508315611d685760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d24565b6001600160a01b038216612d615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d24565b6000818152600360205260409020546001600160a01b031615612dc65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d24565b6001600160a01b0382166000908152600460205260408120805460019290612def908490613916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612e59906139bb565b90600052602060002090601f016020900481019282612e7b5760008555612ec1565b82601f10612e9457805160ff1916838001178555612ec1565b82800160010185558215612ec1579182015b82811115612ec1578251825591602001919060010190612ea6565b50612ecd929150612f45565b5090565b828054612edd906139bb565b90600052602060002090601f016020900481019282612eff5760008555612ec1565b82601f10612f185782800160ff19823516178555612ec1565b82800160010185558215612ec1579182015b82811115612ec1578235825591602001919060010190612f2a565b5b80821115612ecd5760008155600101612f46565b600067ffffffffffffffff831115612f7457612f74613a7d565b612f87601f8401601f191660200161389b565b9050828152838383011115612f9b57600080fd5b828260208301376000602084830101529392505050565b8035612fbd81613a93565b919050565b80358015158114612fbd57600080fd5b803560058110612fbd57600080fd5b600082601f830112612ff257600080fd5b611d6883833560208501612f5a565b60006020828403121561301357600080fd5b8135611d6881613a93565b60006020828403121561303057600080fd5b8151611d6881613a93565b6000806040838503121561304e57600080fd5b823561305981613a93565b9150602083013561306981613a93565b809150509250929050565b60008060006060848603121561308957600080fd5b833561309481613a93565b925060208401356130a481613a93565b929592945050506040919091013590565b600080600080608085870312156130cb57600080fd5b84356130d681613a93565b935060208501356130e681613a93565b925060408501359150606085013567ffffffffffffffff81111561310957600080fd5b8501601f8101871361311a57600080fd5b61312987823560208401612f5a565b91505092959194509250565b6000806040838503121561314857600080fd5b823561315381613a93565b915061316160208401612fc2565b90509250929050565b6000806040838503121561317d57600080fd5b823561318881613a93565b946020939093013593505050565b600080600080608085870312156131ac57600080fd5b84356131b781613a93565b9350602085013592506131cc60408601612fd2565b9150606085013567ffffffffffffffff8111156131e857600080fd5b61312987828801612fe1565b60008060006060848603121561320957600080fd5b833561321481613a93565b925060208401359150604084013567ffffffffffffffff81111561323757600080fd5b61324386828701612fe1565b9150509250925092565b6000602080838503121561326057600080fd5b825167ffffffffffffffff81111561327757600080fd5b8301601f8101851361328857600080fd5b805161329b613296826138cc565b61389b565b80828252848201915084840188868560051b87010111156132bb57600080fd5b600094505b838510156132de5780518352600194909401939185019185016132c0565b50979650505050505050565b6000806000606084860312156132ff57600080fd5b833567ffffffffffffffff8082111561331757600080fd5b818601915086601f83011261332b57600080fd5b8135602061333b613296836138cc565b8083825282820191508286018b848660051b890101111561335b57600080fd5b600096505b8487101561337e578035835260019690960195918301918301613360565b50975061338e9050888201612fb2565b9550505060408601359150808211156133a657600080fd5b5061324386828701612fe1565b6000602082840312156133c557600080fd5b611d6882612fc2565b6000602082840312156133e057600080fd5b5035919050565b600080604083850312156133fa57600080fd5b82359150602083013561306981613a93565b6000806040838503121561341f57600080fd5b50508035926020909101359150565b60006020828403121561344057600080fd5b8135611d6881613aa8565b60006020828403121561345d57600080fd5b8151611d6881613aa8565b60006020828403121561347a57600080fd5b611d6882612fd2565b6000806040838503121561349657600080fd5b61305983612fd2565b600080602083850312156134b257600080fd5b823567ffffffffffffffff808211156134ca57600080fd5b818501915085601f8301126134de57600080fd5b8135818111156134ed57600080fd5b8660208285010111156134ff57600080fd5b60209290920196919550909350505050565b60008060006060848603121561352657600080fd5b833567ffffffffffffffff81111561353d57600080fd5b61354986828701612fe1565b9660208601359650604090950135949350505050565b60006020828403121561357157600080fd5b813561ffff81168114611d6857600080fd5b60006020828403121561359557600080fd5b5051919050565b600081518084526135b4816020860160208601613978565b601f01601f19169290920160200192915050565b600081516135da818560208601613978565b9290920192915050565b6000845160206135f78285838a01613978565b855491840191600090600181811c908083168061361557607f831692505b85831081141561363357634e487b7160e01b85526022600452602485fd5b808015613647576001811461365857613685565b60ff19851688528388019550613685565b60008c81526020902060005b8581101561367d5781548a820152908401908801613664565b505083880195505b50505050506136c16136b06136aa83692f6d657461646174612f60b01b8152600a0190565b886135c8565b64173539b7b760d91b815260050190565b98975050505050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613705816017850160208801613978565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613736816028840160208801613978565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137759083018461359c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156137b75783518352928401929184019160010161379b565b50909695505050505050565b602081526000611d68602083018461359c565b6060815260006137e9606083018661359c565b60208301949094525060400152919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156138c4576138c4613a7d565b604052919050565b600067ffffffffffffffff8211156138e6576138e6613a7d565b5060051b60200190565b600061ffff80831681851680830382111561390d5761390d613a25565b01949350505050565b6000821982111561392957613929613a25565b500190565b60008261393d5761393d613a3b565b500490565b600081600019048311821515161561395c5761395c613a25565b500290565b60008282101561397357613973613a25565b500390565b60005b8381101561399357818101518382015260200161397b565b8381111561192f5750506000910152565b6000816139b3576139b3613a25565b506000190190565b600181811c908216806139cf57607f821691505b602082108114156139f057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a0a57613a0a613a25565b5060010190565b600082613a2057613a20613a3b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461213a57600080fd5b6001600160e01b03198116811461213a57600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a26469706673582212201a4a912e7a175f6c9851c6b2208ecff6963e4bb120ec86a3b59d415a6b5948a964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000063249d8000000000000000000000000000000000000000000000000000000000000000104c616e612053757065722059616368740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c53590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f697066732e696f2f697066732f516d664d4c736258716552696d584a7a32355038676942434e506131717563543731575138644e7a52454d367a583f66696c656e616d653d756e72657665616c65642e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d574478765348746841426936716f6747594e7a746d5250563655666f79316a4a347656653450645a364c4b4a2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Lana Super Yacht
Arg [1] : _symbol (string): LSY
Arg [2] : _notRevealUri (string): https://ipfs.io/ipfs/QmfMLsbXqeRimXJz25P8giBCNPa1qucT71WQ8dNzREM6zX?filename=unrevealed.json
Arg [3] : _baseUri (string): https://ipfs.io/ipfs/QmWDxvSHthABi6qogGYNztmRPV6Ufoy1jJ4vVe4PdZ6LKJ/
Arg [4] : maxSupply_ (uint16): 7000
Arg [5] : _revealDate (uint256): 1663344000

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001b58
Arg [5] : 0000000000000000000000000000000000000000000000000000000063249d80
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 4c616e6120537570657220596163687400000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4c53590000000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [11] : 68747470733a2f2f697066732e696f2f697066732f516d664d4c736258716552
Arg [12] : 696d584a7a32355038676942434e506131717563543731575138644e7a52454d
Arg [13] : 367a583f66696c656e616d653d756e72657665616c65642e6a736f6e00000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [15] : 68747470733a2f2f697066732e696f2f697066732f516d574478765348746841
Arg [16] : 426936716f6747594e7a746d5250563655666f79316a4a347656653450645a36
Arg [17] : 4c4b4a2f00000000000000000000000000000000000000000000000000000000


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.