ETH Price: $3,450.65 (+1.55%)
Gas: 12 Gwei

Token

StarFrens (STARFRENS)
 

Overview

Max Total Supply

1,000 STARFRENS

Holders

457

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 STARFRENS
0x9bd528b53e56d16b6a02ed8dcbb94bc72be41090
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StarFrensContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: primary.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./MerkleProof.sol";
import "./ERC721A.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";

contract StarFrensContract is Ownable, ERC721A, ReentrancyGuard {
    uint256 private constant _PUBLIC_PRICE = 0.04 ether;
    uint256 private constant _PRESALE_PRICE = 0.03 ether;
    uint256 private constant MAX_PURCHASE_DURING_WL = 3;
    uint256 private constant MAX_BATCH_SIZE = 20;
    uint256 private _MAX_MINT = 3000;
    address private _TEAM = 0xbE077Af70845347b4dA8063649F4e425CC41F6D5;

    uint256 public constant wlStart = 1649517600; // 11:30am ET 2022-04-09
    uint256 public constant publicStart = 1649532600; //3:30pm ET 2022-04-09
    uint256 public paused; // default is 0 which means not paused

    bytes32 public merkleRoot = 0x25704d847756554bb78c4d553e2f338d7fb16ab6a908c7fbcd2405f5165b2bfe;
    mapping(address => uint256) public presaleAddressMintCount;

    string private _baseTokenURI = "";

    constructor() ERC721A("StarFrens", "STARFRENS", MAX_BATCH_SIZE, _MAX_MINT) {
    }

    modifier mintGuard(uint256 tokenCount) {
        // easy checks
        require(paused == 0, "Sale is not available");
        require(tokenCount > 0 && tokenCount <= MAX_BATCH_SIZE, "Purchase must be for 1-20 tokens");
        require(msg.sender == tx.origin, "No buying on behalf of others");
        // only use public sale price after the public sale start time
        if (block.timestamp > publicStart) {
            require(_PUBLIC_PRICE * tokenCount <= msg.value, "Insufficient Funds");
        } else {
            require(_PRESALE_PRICE * tokenCount <= msg.value, "Insufficient Funds");
        }

        // math-y checks
        // tokens start a 0, with 0 being a fake one, so allow (limit+1) mints
        // to allow [0, limit] inclusive for limit worth of real tokens
        require(totalSupply() + tokenCount <= _MAX_MINT+1, "Not enough supply remaining");
        _;
    }

    function mint(uint256 amount) external payable mintGuard(amount) {
        require(block.timestamp > publicStart, "Sale not live");
        _safeMint(msg.sender, amount);
    }

    function mintPresale(bytes32[] calldata proof, uint256 amount) external payable mintGuard(amount) {
        require(block.timestamp > wlStart, "Presale not live");
        require(presaleAddressMintCount[msg.sender] + amount <= MAX_PURCHASE_DURING_WL, "At most 3 may be purchased in presale.");
        require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not eligible for presale");

        presaleAddressMintCount[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    // Mints a value-less token 0 that will be discarded so that listing on opensea can occur
    // before the mint is live
    function mintZeroForOpenSea() external onlyOwner {
        // this can only be done once
        require(totalSupply() == 0);
        _safeMint(msg.sender, 1);
    }

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

    function pause() external onlyOwner {
        paused = 1;
    }

    function unpause() external onlyOwner {
        paused = 0;
    }

    function setMaxMint(uint256 maxMint) external onlyOwner {
        require(maxMint <= 6789);
        _MAX_MINT = maxMint;
    }


    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function cashout() external onlyOwner {
        payable(_TEAM).transfer(address(this).balance);
    }

    function setCashout(address addr) external onlyOwner returns(address) {
        _TEAM = addr;
        return addr;
    }

}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    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");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    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");
    }

    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);
    }

    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    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);
    }

    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    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);
    }

    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



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 3 of 14: 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 4 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol";
import "./IERC721Receiver.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId) external view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;

    function isApprovedForAll(address owner, address operator) external view returns (bool);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 7 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 8 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 14: MerkleProof.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 11 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 13 of 14: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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

pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    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);
    }

    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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintZeroForOpenSea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setCashout","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

600060018190556008819055610bb8600a55600b80546001600160a01b03191673be077af70845347b4da8063649f4e425cc41f6d51790557f25704d847756554bb78c4d553e2f338d7fb16ab6a908c7fbcd2405f5165b2bfe600d5560e0604081905260c08290526200007691600f91906200024d565b503480156200008457600080fd5b5060405180604001604052806009815260200168537461724672656e7360b81b81525060405180604001604052806009815260200168535441524652454e5360b81b8152506014600a54620000e8620000e2620001f960201b60201c565b620001fd565b60008111620001555760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001b75760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200014c565b8351620001cc9060029060208701906200024d565b508251620001e29060039060208601906200024d565b5060a0919091526080525050600160095562000330565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025b90620002f3565b90600052602060002090601f0160209004810192826200027f5760008555620002ca565b82601f106200029a57805160ff1916838001178555620002ca565b82800160010185558215620002ca579182015b82811115620002ca578251825591602001919060010190620002ad565b50620002d8929150620002dc565b5090565b5b80821115620002d85760008155600101620002dd565b600181811c908216806200030857607f821691505b602082108114156200032a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516128ad6200036160003960008181611a5401528181611a7e0152611ed40152600050506128ad6000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c75a20b31161006f578063c75a20b314610588578063c87b56dd146105a8578063d7224ba0146105c8578063e985e9c5146105de578063f2fde38b1461062757600080fd5b8063a22cb4651461051d578063a5f4c6ff1461053d578063ad7f1ea114610555578063b88d4fde1461056857600080fd5b806384054d3d116100e757806384054d3d146104ad5780638456cb59146104c25780638da5cb5b146104d757806395d89b41146104f5578063a0712d681461050a57600080fd5b8063715018a61461043657806376a27e291461044b5780637cb64759146104605780637db5a6361461048057600080fd5b80632f745c591161019b578063547520fe1161016a578063547520fe146103a057806355f804b3146103c05780635c975abb146103e05780636352211e146103f657806370a082311461041657600080fd5b80632f745c591461032b5780633f4ba83a1461034b57806342842e0e146103605780634f6ccce71461038057600080fd5b8063095ea7b3116101d7578063095ea7b3146102be57806318160ddd146102e057806323b872dd146102f55780632eb4a7ab1461031557600080fd5b806301ffc9a7146102095780630489cf6e1461023e57806306fdde0314610264578063081812fc14610286575b600080fd5b34801561021557600080fd5b506102296102243660046124a5565b610647565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610256636251a42081565b604051908152602001610235565b34801561027057600080fd5b506102796106b4565b60405161023591906125e9565b34801561029257600080fd5b506102a66102a136600461248c565b610746565b6040516001600160a01b039091168152602001610235565b3480156102ca57600080fd5b506102de6102d93660046123e7565b6107d6565b005b3480156102ec57600080fd5b50600154610256565b34801561030157600080fd5b506102de610310366004612293565b6108ee565b34801561032157600080fd5b50610256600d5481565b34801561033757600080fd5b506102566103463660046123e7565b6108f9565b34801561035757600080fd5b506102de610a72565b34801561036c57600080fd5b506102de61037b366004612293565b610aa3565b34801561038c57600080fd5b5061025661039b36600461248c565b610abe565b3480156103ac57600080fd5b506102de6103bb36600461248c565b610b27565b3480156103cc57600080fd5b506102de6103db3660046124df565b610b65565b3480156103ec57600080fd5b50610256600c5481565b34801561040257600080fd5b506102a661041136600461248c565b610b9b565b34801561042257600080fd5b50610256610431366004612245565b610bad565b34801561044257600080fd5b506102de610c3e565b34801561045757600080fd5b506102de610c74565b34801561046c57600080fd5b506102de61047b36600461248c565b610cb6565b34801561048c57600080fd5b5061025661049b366004612245565b600e6020526000908152604090205481565b3480156104b957600080fd5b506102de610ce5565b3480156104ce57600080fd5b506102de610d4b565b3480156104e357600080fd5b506000546001600160a01b03166102a6565b34801561050157600080fd5b50610279610d7c565b6102de61051836600461248c565b610d8b565b34801561052957600080fd5b506102de6105383660046123ab565b610fb4565b34801561054957600080fd5b50610256636251deb881565b6102de610563366004612411565b611079565b34801561057457600080fd5b506102de6105833660046122cf565b611408565b34801561059457600080fd5b506102a66105a3366004612245565b61143b565b3480156105b457600080fd5b506102796105c336600461248c565b611489565b3480156105d457600080fd5b5061025660085481565b3480156105ea57600080fd5b506102296105f9366004612260565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063357600080fd5b506102de610642366004612245565b611556565b60006001600160e01b031982166380ac58cd60e01b148061067857506001600160e01b03198216635b5e139f60e01b145b8061069357506001600160e01b0319821663780e9d6360e01b145b806106ae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c39061279f565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef9061279f565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b6000610753826001541190565b6107ba5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e182610b9b565b9050806001600160a01b0316836001600160a01b031614156108505760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107b1565b336001600160a01b038216148061086c575061086c81336105f9565b6108de5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107b1565b6108e98383836115ee565b505050565b6108e983838361164a565b600061090483610bad565b821061095d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107b1565b600061096860015490565b905060008060005b83811015610a12576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109c357805192505b876001600160a01b0316836001600160a01b031614156109ff57868414156109f1575093506106ae92505050565b836109fb816127da565b9450505b5080610a0a816127da565b915050610970565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107b1565b6000546001600160a01b03163314610a9c5760405162461bcd60e51b81526004016107b190612628565b6000600c55565b6108e983838360405180602001604052806000815250611408565b6000610ac960015490565b8210610b235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107b1565b5090565b6000546001600160a01b03163314610b515760405162461bcd60e51b81526004016107b190612628565b611a85811115610b6057600080fd5b600a55565b6000546001600160a01b03163314610b8f5760405162461bcd60e51b81526004016107b190612628565b6108e9600f838361219e565b6000610ba6826119d2565b5192915050565b60006001600160a01b038216610c195760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107b1565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c685760405162461bcd60e51b81526004016107b190612628565b610c726000611b7c565b565b6000546001600160a01b03163314610c9e5760405162461bcd60e51b81526004016107b190612628565b60015415610cab57600080fd5b610c72336001611bcc565b6000546001600160a01b03163314610ce05760405162461bcd60e51b81526004016107b190612628565b600d55565b6000546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016107b190612628565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d48573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610d755760405162461bcd60e51b81526004016107b190612628565b6001600c55565b6060600380546106c39061279f565b80600c54600014610dd65760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b60448201526064016107b1565b600081118015610de7575060148111155b610e335760405162461bcd60e51b815260206004820181905260248201527f5075726368617365206d75737420626520666f7220312d323020746f6b656e7360448201526064016107b1565b333214610e825760405162461bcd60e51b815260206004820152601d60248201527f4e6f20627579696e67206f6e20626568616c66206f66206f746865727300000060448201526064016107b1565b636251deb8421115610ec35734610ea082668e1bc9bf0400006126fe565b1115610ebe5760405162461bcd60e51b81526004016107b1906125fc565b610ef3565b34610ed582666a94d74f4300006126fe565b1115610ef35760405162461bcd60e51b81526004016107b1906125fc565b600a54610f019060016126d2565b81610f0b60015490565b610f1591906126d2565b1115610f635760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e67000000000060448201526064016107b1565b636251deb84211610fa65760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b60448201526064016107b1565b610fb03383611bcc565b5050565b6001600160a01b03821633141561100d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107b1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b80600c546000146110c45760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b60448201526064016107b1565b6000811180156110d5575060148111155b6111215760405162461bcd60e51b815260206004820181905260248201527f5075726368617365206d75737420626520666f7220312d323020746f6b656e7360448201526064016107b1565b3332146111705760405162461bcd60e51b815260206004820152601d60248201527f4e6f20627579696e67206f6e20626568616c66206f66206f746865727300000060448201526064016107b1565b636251deb84211156111b1573461118e82668e1bc9bf0400006126fe565b11156111ac5760405162461bcd60e51b81526004016107b1906125fc565b6111e1565b346111c382666a94d74f4300006126fe565b11156111e15760405162461bcd60e51b81526004016107b1906125fc565b600a546111ef9060016126d2565b816111f960015490565b61120391906126d2565b11156112515760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e67000000000060448201526064016107b1565b636251a42042116112975760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b60448201526064016107b1565b336000908152600e60205260409020546003906112b59084906126d2565b11156113125760405162461bcd60e51b815260206004820152602660248201527f4174206d6f73742033206d61792062652070757263686173656420696e20707260448201526532b9b0b6329760d11b60648201526084016107b1565b61138784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611be6565b6113d35760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656c696769626c6520666f722070726573616c65000000000000000060448201526064016107b1565b336000908152600e6020526040812080548492906113f29084906126d2565b9091555061140290503383611bcc565b50505050565b61141384848461164a565b61141f84848484611bfc565b6114025760405162461bcd60e51b81526004016107b19061265d565b600080546001600160a01b031633146114665760405162461bcd60e51b81526004016107b190612628565b50600b80546001600160a01b0319166001600160a01b038316179055805b919050565b6060611496826001541190565b6114fa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b1565b6000611504611d0a565b90506000815111611524576040518060200160405280600081525061154f565b8061152e84611d19565b60405160200161153f92919061257d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115805760405162461bcd60e51b81526004016107b190612628565b6001600160a01b0381166115e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b1565b610d4881611b7c565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611655826119d2565b80519091506000906001600160a01b0316336001600160a01b0316148061168c57503361168184610746565b6001600160a01b0316145b8061169e5750815161169e90336105f9565b9050806117085760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107b1565b846001600160a01b031682600001516001600160a01b03161461177c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107b1565b6001600160a01b0384166117e05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107b1565b6117f060008484600001516115ee565b6001600160a01b03851660009081526005602052604081208054600192906118229084906001600160801b031661271d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261186e918591166126b0565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118f68460016126d2565b6000818152600460205260409020549091506001600160a01b031661198857611920816001541190565b156119885760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526119f1826001541190565b611a505760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107b1565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ab157611aa37f000000000000000000000000000000000000000000000000000000000000000084612745565b611aae9060016126d2565b90505b825b818110611b1b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b0857949350505050565b5080611b1381612788565b915050611ab3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107b1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610fb0828260405180602001604052806000815250611e17565b600082611bf385846120f2565b14949350505050565b60006001600160a01b0384163b15611cfe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c409033908990889088906004016125ac565b602060405180830381600087803b158015611c5a57600080fd5b505af1925050508015611c8a575060408051601f3d908101601f19168201909252611c87918101906124c2565b60015b611ce4573d808015611cb8576040519150601f19603f3d011682016040523d82523d6000602084013e611cbd565b606091505b508051611cdc5760405162461bcd60e51b81526004016107b19061265d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d02565b5060015b949350505050565b6060600f80546106c39061279f565b606081611d3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d675780611d51816127da565b9150611d609050600a836126ea565b9150611d41565b60008167ffffffffffffffff811115611d8257611d8261284b565b6040519080825280601f01601f191660200182016040528015611dac576020820181803683370190505b5090505b8415611d0257611dc1600183612745565b9150611dce600a866127f5565b611dd99060306126d2565b60f81b818381518110611dee57611dee612835565b60200101906001600160f81b031916908160001a905350611e10600a866126ea565b9450611db0565b6001546001600160a01b038416611e7a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107b1565b611e85816001541190565b15611ed25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107b1565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f4d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107b1565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fa99087906126b0565b6001600160801b03168152602001858360200151611fc791906126b0565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120e75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120ab6000888488611bfc565b6120c75760405162461bcd60e51b81526004016107b19061265d565b816120d1816127da565b92505080806120df906127da565b91505061205e565b5060018190556119ca565b600081815b845181101561219657600085828151811061211457612114612835565b60200260200101519050808311612156576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612183565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061218e816127da565b9150506120f7565b509392505050565b8280546121aa9061279f565b90600052602060002090601f0160209004810192826121cc5760008555612212565b82601f106121e55782800160ff19823516178555612212565b82800160010185558215612212579182015b828111156122125782358255916020019190600101906121f7565b50610b239291505b80821115610b23576000815560010161221a565b80356001600160a01b038116811461148457600080fd5b60006020828403121561225757600080fd5b61154f8261222e565b6000806040838503121561227357600080fd5b61227c8361222e565b915061228a6020840161222e565b90509250929050565b6000806000606084860312156122a857600080fd5b6122b18461222e565b92506122bf6020850161222e565b9150604084013590509250925092565b600080600080608085870312156122e557600080fd5b6122ee8561222e565b93506122fc6020860161222e565b925060408501359150606085013567ffffffffffffffff8082111561232057600080fd5b818701915087601f83011261233457600080fd5b8135818111156123465761234661284b565b604051601f8201601f19908116603f0116810190838211818310171561236e5761236e61284b565b816040528281528a602084870101111561238757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123be57600080fd5b6123c78361222e565b9150602083013580151581146123dc57600080fd5b809150509250929050565b600080604083850312156123fa57600080fd5b6124038361222e565b946020939093013593505050565b60008060006040848603121561242657600080fd5b833567ffffffffffffffff8082111561243e57600080fd5b818601915086601f83011261245257600080fd5b81358181111561246157600080fd5b8760208260051b850101111561247657600080fd5b6020928301989097509590910135949350505050565b60006020828403121561249e57600080fd5b5035919050565b6000602082840312156124b757600080fd5b813561154f81612861565b6000602082840312156124d457600080fd5b815161154f81612861565b600080602083850312156124f257600080fd5b823567ffffffffffffffff8082111561250a57600080fd5b818501915085601f83011261251e57600080fd5b81358181111561252d57600080fd5b86602082850101111561253f57600080fd5b60209290920196919550909350505050565b6000815180845261256981602086016020860161275c565b601f01601f19169290920160200192915050565b6000835161258f81846020880161275c565b8351908301906125a381836020880161275c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125df90830184612551565b9695505050505050565b60208152600061154f6020830184612551565b602080825260129082015271496e73756666696369656e742046756e647360701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125a3576125a3612809565b600082198211156126e5576126e5612809565b500190565b6000826126f9576126f961281f565b500490565b600081600019048311821515161561271857612718612809565b500290565b60006001600160801b038381169083168181101561273d5761273d612809565b039392505050565b60008282101561275757612757612809565b500390565b60005b8381101561277757818101518382015260200161275f565b838111156114025750506000910152565b60008161279757612797612809565b506000190190565b600181811c908216806127b357607f821691505b602082108114156127d457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127ee576127ee612809565b5060010190565b6000826128045761280461281f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4857600080fdfea264697066735822122064f8107406c2486aae17e9186c59300c4996ebc9401c1bc79ebb612cd233746b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c75a20b31161006f578063c75a20b314610588578063c87b56dd146105a8578063d7224ba0146105c8578063e985e9c5146105de578063f2fde38b1461062757600080fd5b8063a22cb4651461051d578063a5f4c6ff1461053d578063ad7f1ea114610555578063b88d4fde1461056857600080fd5b806384054d3d116100e757806384054d3d146104ad5780638456cb59146104c25780638da5cb5b146104d757806395d89b41146104f5578063a0712d681461050a57600080fd5b8063715018a61461043657806376a27e291461044b5780637cb64759146104605780637db5a6361461048057600080fd5b80632f745c591161019b578063547520fe1161016a578063547520fe146103a057806355f804b3146103c05780635c975abb146103e05780636352211e146103f657806370a082311461041657600080fd5b80632f745c591461032b5780633f4ba83a1461034b57806342842e0e146103605780634f6ccce71461038057600080fd5b8063095ea7b3116101d7578063095ea7b3146102be57806318160ddd146102e057806323b872dd146102f55780632eb4a7ab1461031557600080fd5b806301ffc9a7146102095780630489cf6e1461023e57806306fdde0314610264578063081812fc14610286575b600080fd5b34801561021557600080fd5b506102296102243660046124a5565b610647565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610256636251a42081565b604051908152602001610235565b34801561027057600080fd5b506102796106b4565b60405161023591906125e9565b34801561029257600080fd5b506102a66102a136600461248c565b610746565b6040516001600160a01b039091168152602001610235565b3480156102ca57600080fd5b506102de6102d93660046123e7565b6107d6565b005b3480156102ec57600080fd5b50600154610256565b34801561030157600080fd5b506102de610310366004612293565b6108ee565b34801561032157600080fd5b50610256600d5481565b34801561033757600080fd5b506102566103463660046123e7565b6108f9565b34801561035757600080fd5b506102de610a72565b34801561036c57600080fd5b506102de61037b366004612293565b610aa3565b34801561038c57600080fd5b5061025661039b36600461248c565b610abe565b3480156103ac57600080fd5b506102de6103bb36600461248c565b610b27565b3480156103cc57600080fd5b506102de6103db3660046124df565b610b65565b3480156103ec57600080fd5b50610256600c5481565b34801561040257600080fd5b506102a661041136600461248c565b610b9b565b34801561042257600080fd5b50610256610431366004612245565b610bad565b34801561044257600080fd5b506102de610c3e565b34801561045757600080fd5b506102de610c74565b34801561046c57600080fd5b506102de61047b36600461248c565b610cb6565b34801561048c57600080fd5b5061025661049b366004612245565b600e6020526000908152604090205481565b3480156104b957600080fd5b506102de610ce5565b3480156104ce57600080fd5b506102de610d4b565b3480156104e357600080fd5b506000546001600160a01b03166102a6565b34801561050157600080fd5b50610279610d7c565b6102de61051836600461248c565b610d8b565b34801561052957600080fd5b506102de6105383660046123ab565b610fb4565b34801561054957600080fd5b50610256636251deb881565b6102de610563366004612411565b611079565b34801561057457600080fd5b506102de6105833660046122cf565b611408565b34801561059457600080fd5b506102a66105a3366004612245565b61143b565b3480156105b457600080fd5b506102796105c336600461248c565b611489565b3480156105d457600080fd5b5061025660085481565b3480156105ea57600080fd5b506102296105f9366004612260565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063357600080fd5b506102de610642366004612245565b611556565b60006001600160e01b031982166380ac58cd60e01b148061067857506001600160e01b03198216635b5e139f60e01b145b8061069357506001600160e01b0319821663780e9d6360e01b145b806106ae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c39061279f565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef9061279f565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b6000610753826001541190565b6107ba5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e182610b9b565b9050806001600160a01b0316836001600160a01b031614156108505760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107b1565b336001600160a01b038216148061086c575061086c81336105f9565b6108de5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107b1565b6108e98383836115ee565b505050565b6108e983838361164a565b600061090483610bad565b821061095d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107b1565b600061096860015490565b905060008060005b83811015610a12576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109c357805192505b876001600160a01b0316836001600160a01b031614156109ff57868414156109f1575093506106ae92505050565b836109fb816127da565b9450505b5080610a0a816127da565b915050610970565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107b1565b6000546001600160a01b03163314610a9c5760405162461bcd60e51b81526004016107b190612628565b6000600c55565b6108e983838360405180602001604052806000815250611408565b6000610ac960015490565b8210610b235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107b1565b5090565b6000546001600160a01b03163314610b515760405162461bcd60e51b81526004016107b190612628565b611a85811115610b6057600080fd5b600a55565b6000546001600160a01b03163314610b8f5760405162461bcd60e51b81526004016107b190612628565b6108e9600f838361219e565b6000610ba6826119d2565b5192915050565b60006001600160a01b038216610c195760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107b1565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c685760405162461bcd60e51b81526004016107b190612628565b610c726000611b7c565b565b6000546001600160a01b03163314610c9e5760405162461bcd60e51b81526004016107b190612628565b60015415610cab57600080fd5b610c72336001611bcc565b6000546001600160a01b03163314610ce05760405162461bcd60e51b81526004016107b190612628565b600d55565b6000546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016107b190612628565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d48573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610d755760405162461bcd60e51b81526004016107b190612628565b6001600c55565b6060600380546106c39061279f565b80600c54600014610dd65760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b60448201526064016107b1565b600081118015610de7575060148111155b610e335760405162461bcd60e51b815260206004820181905260248201527f5075726368617365206d75737420626520666f7220312d323020746f6b656e7360448201526064016107b1565b333214610e825760405162461bcd60e51b815260206004820152601d60248201527f4e6f20627579696e67206f6e20626568616c66206f66206f746865727300000060448201526064016107b1565b636251deb8421115610ec35734610ea082668e1bc9bf0400006126fe565b1115610ebe5760405162461bcd60e51b81526004016107b1906125fc565b610ef3565b34610ed582666a94d74f4300006126fe565b1115610ef35760405162461bcd60e51b81526004016107b1906125fc565b600a54610f019060016126d2565b81610f0b60015490565b610f1591906126d2565b1115610f635760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e67000000000060448201526064016107b1565b636251deb84211610fa65760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b60448201526064016107b1565b610fb03383611bcc565b5050565b6001600160a01b03821633141561100d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107b1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b80600c546000146110c45760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b60448201526064016107b1565b6000811180156110d5575060148111155b6111215760405162461bcd60e51b815260206004820181905260248201527f5075726368617365206d75737420626520666f7220312d323020746f6b656e7360448201526064016107b1565b3332146111705760405162461bcd60e51b815260206004820152601d60248201527f4e6f20627579696e67206f6e20626568616c66206f66206f746865727300000060448201526064016107b1565b636251deb84211156111b1573461118e82668e1bc9bf0400006126fe565b11156111ac5760405162461bcd60e51b81526004016107b1906125fc565b6111e1565b346111c382666a94d74f4300006126fe565b11156111e15760405162461bcd60e51b81526004016107b1906125fc565b600a546111ef9060016126d2565b816111f960015490565b61120391906126d2565b11156112515760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e67000000000060448201526064016107b1565b636251a42042116112975760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b60448201526064016107b1565b336000908152600e60205260409020546003906112b59084906126d2565b11156113125760405162461bcd60e51b815260206004820152602660248201527f4174206d6f73742033206d61792062652070757263686173656420696e20707260448201526532b9b0b6329760d11b60648201526084016107b1565b61138784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611be6565b6113d35760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656c696769626c6520666f722070726573616c65000000000000000060448201526064016107b1565b336000908152600e6020526040812080548492906113f29084906126d2565b9091555061140290503383611bcc565b50505050565b61141384848461164a565b61141f84848484611bfc565b6114025760405162461bcd60e51b81526004016107b19061265d565b600080546001600160a01b031633146114665760405162461bcd60e51b81526004016107b190612628565b50600b80546001600160a01b0319166001600160a01b038316179055805b919050565b6060611496826001541190565b6114fa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b1565b6000611504611d0a565b90506000815111611524576040518060200160405280600081525061154f565b8061152e84611d19565b60405160200161153f92919061257d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115805760405162461bcd60e51b81526004016107b190612628565b6001600160a01b0381166115e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b1565b610d4881611b7c565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611655826119d2565b80519091506000906001600160a01b0316336001600160a01b0316148061168c57503361168184610746565b6001600160a01b0316145b8061169e5750815161169e90336105f9565b9050806117085760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107b1565b846001600160a01b031682600001516001600160a01b03161461177c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107b1565b6001600160a01b0384166117e05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107b1565b6117f060008484600001516115ee565b6001600160a01b03851660009081526005602052604081208054600192906118229084906001600160801b031661271d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261186e918591166126b0565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118f68460016126d2565b6000818152600460205260409020549091506001600160a01b031661198857611920816001541190565b156119885760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526119f1826001541190565b611a505760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107b1565b60007f00000000000000000000000000000000000000000000000000000000000000148310611ab157611aa37f000000000000000000000000000000000000000000000000000000000000001484612745565b611aae9060016126d2565b90505b825b818110611b1b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b0857949350505050565b5080611b1381612788565b915050611ab3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107b1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610fb0828260405180602001604052806000815250611e17565b600082611bf385846120f2565b14949350505050565b60006001600160a01b0384163b15611cfe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c409033908990889088906004016125ac565b602060405180830381600087803b158015611c5a57600080fd5b505af1925050508015611c8a575060408051601f3d908101601f19168201909252611c87918101906124c2565b60015b611ce4573d808015611cb8576040519150601f19603f3d011682016040523d82523d6000602084013e611cbd565b606091505b508051611cdc5760405162461bcd60e51b81526004016107b19061265d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d02565b5060015b949350505050565b6060600f80546106c39061279f565b606081611d3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d675780611d51816127da565b9150611d609050600a836126ea565b9150611d41565b60008167ffffffffffffffff811115611d8257611d8261284b565b6040519080825280601f01601f191660200182016040528015611dac576020820181803683370190505b5090505b8415611d0257611dc1600183612745565b9150611dce600a866127f5565b611dd99060306126d2565b60f81b818381518110611dee57611dee612835565b60200101906001600160f81b031916908160001a905350611e10600a866126ea565b9450611db0565b6001546001600160a01b038416611e7a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107b1565b611e85816001541190565b15611ed25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107b1565b7f0000000000000000000000000000000000000000000000000000000000000014831115611f4d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107b1565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fa99087906126b0565b6001600160801b03168152602001858360200151611fc791906126b0565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120e75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120ab6000888488611bfc565b6120c75760405162461bcd60e51b81526004016107b19061265d565b816120d1816127da565b92505080806120df906127da565b91505061205e565b5060018190556119ca565b600081815b845181101561219657600085828151811061211457612114612835565b60200260200101519050808311612156576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612183565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061218e816127da565b9150506120f7565b509392505050565b8280546121aa9061279f565b90600052602060002090601f0160209004810192826121cc5760008555612212565b82601f106121e55782800160ff19823516178555612212565b82800160010185558215612212579182015b828111156122125782358255916020019190600101906121f7565b50610b239291505b80821115610b23576000815560010161221a565b80356001600160a01b038116811461148457600080fd5b60006020828403121561225757600080fd5b61154f8261222e565b6000806040838503121561227357600080fd5b61227c8361222e565b915061228a6020840161222e565b90509250929050565b6000806000606084860312156122a857600080fd5b6122b18461222e565b92506122bf6020850161222e565b9150604084013590509250925092565b600080600080608085870312156122e557600080fd5b6122ee8561222e565b93506122fc6020860161222e565b925060408501359150606085013567ffffffffffffffff8082111561232057600080fd5b818701915087601f83011261233457600080fd5b8135818111156123465761234661284b565b604051601f8201601f19908116603f0116810190838211818310171561236e5761236e61284b565b816040528281528a602084870101111561238757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123be57600080fd5b6123c78361222e565b9150602083013580151581146123dc57600080fd5b809150509250929050565b600080604083850312156123fa57600080fd5b6124038361222e565b946020939093013593505050565b60008060006040848603121561242657600080fd5b833567ffffffffffffffff8082111561243e57600080fd5b818601915086601f83011261245257600080fd5b81358181111561246157600080fd5b8760208260051b850101111561247657600080fd5b6020928301989097509590910135949350505050565b60006020828403121561249e57600080fd5b5035919050565b6000602082840312156124b757600080fd5b813561154f81612861565b6000602082840312156124d457600080fd5b815161154f81612861565b600080602083850312156124f257600080fd5b823567ffffffffffffffff8082111561250a57600080fd5b818501915085601f83011261251e57600080fd5b81358181111561252d57600080fd5b86602082850101111561253f57600080fd5b60209290920196919550909350505050565b6000815180845261256981602086016020860161275c565b601f01601f19169290920160200192915050565b6000835161258f81846020880161275c565b8351908301906125a381836020880161275c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125df90830184612551565b9695505050505050565b60208152600061154f6020830184612551565b602080825260129082015271496e73756666696369656e742046756e647360701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125a3576125a3612809565b600082198211156126e5576126e5612809565b500190565b6000826126f9576126f961281f565b500490565b600081600019048311821515161561271857612718612809565b500290565b60006001600160801b038381169083168181101561273d5761273d612809565b039392505050565b60008282101561275757612757612809565b500390565b60005b8381101561277757818101518382015260200161275f565b838111156114025750506000910152565b60008161279757612797612809565b506000190190565b600181811c908216806127b357607f821691505b602082108114156127d457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127ee576127ee612809565b5060010190565b6000826128045761280461281f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4857600080fdfea264697066735822122064f8107406c2486aae17e9186c59300c4996ebc9401c1bc79ebb612cd233746b64736f6c63430008070033

Deployed Bytecode Sourcemap

166:3643:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;6989:14:14;;6982:22;6964:41;;6952:2;6937:18;3826:358:3;;;;;;;;569:44:13;;;;;;;;;;;;603:10;569:44;;;;;7162:25:14;;;7150:2;7135:18;569:44:13;7016:177:14;5490:92:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6287:32:14;;;6269:51;;6257:2;6242:18;6955:200:3;6123:203:14;6533:369:3;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;-1:-1:-1;2507:12:3;;2432:92;;7773:136;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;788:94:13:-;;;;;;;;;;;;;;;;3046:721:3;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;3147:65:13:-;;;;;;;;;;;;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;2588:174::-;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;3218:126:13:-;;;;;;;;;;-1:-1:-1;3218:126:13;;;;;:::i;:::-;;:::i;3351:104::-;;;;;;;;;;-1:-1:-1;3351:104:13;;;;;:::i;:::-;;:::i;721:21::-;;;;;;;;;;;;;;;;5320:116:3;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;4235:208::-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;528:101:10:-;;;;;;;;;;;;;:::i;2811:165:13:-;;;;;;;;;;;;;:::i;2982:90::-;;;;;;;;;;-1:-1:-1;2982:90:13;;;;;:::i;:::-;;:::i;888:58::-;;;;;;;;;;-1:-1:-1;888:58:13;;;;;:::i;:::-;;;;;;;;;;;;;;3579:101;;;;;;;;;;;;;:::i;3078:63::-;;;;;;;;;;;;;:::i;314:85:10:-;;;;;;;;;;-1:-1:-1;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;314:85;;5638:96:3;;;;;;;;;;;;;:::i;1978:176:13:-;;;;;;:::i;:::-;;:::i;7214:269:3:-;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;644:48:13:-;;;;;;;;;;;;682:10;644:48;;2160:520;;;;;;:::i;:::-;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;3686:120:13:-;;;;;;;;;;-1:-1:-1;3686:120:13;;;;;:::i;:::-;;:::i;5792:377:3:-;;;;;;;;;;-1:-1:-1;5792:377:3;;;;;:::i;:::-;;:::i;12446:43::-;;;;;;;;;;;;;;;;7541:178;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178;635:198:10;;;;;;;;;;-1:-1:-1;635:198:10;;;;;:::i;:::-;;:::i;3826:358:3:-;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;-1:-1:-1;;;;;;;;;;937:40:2;;;4143:36:3;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;7046:16;7038:74;;;;-1:-1:-1;;;7038:74:3;;17731:2:14;7038:74:3;;;17713:21:14;17770:2;17750:18;;;17743:30;17809:34;17789:18;;;17782:62;-1:-1:-1;;;17860:18:14;;;17853:43;17913:19;;7038:74:3;;;;;;;;;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;;6647:58;;;;-1:-1:-1;;;6647:58:3;;14250:2:14;6647:58:3;;;14232:21:14;14289:2;14269:18;;;14262:30;14328:34;14308:18;;;14301:62;-1:-1:-1;;;14379:18:14;;;14372:32;14421:19;;6647:58:3;14048:398:14;6647:58:3;171:10:1;-1:-1:-1;;;;;6727:21:3;;;;:62;;-1:-1:-1;6752:37:3;6769:5;171:10:1;7541:178:3;:::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;10409:2:14;6712:150:3;;;10391:21:14;10448:2;10428:18;;;10421:30;10487:34;10467:18;;;10460:62;10558:27;10538:18;;;10531:55;10603:19;;6712:150:3;10207:421:14;6712:150:3;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6595:307;6533:369;;:::o;7773:136::-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;3046:721::-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;7624:2:14;3168:71:3;;;7606:21:14;7663:2;7643:18;;;7636:30;7702:34;7682:18;;;7675:62;-1:-1:-1;;;7753:18:14;;;7746:32;7795:19;;3168:71:3;7422:398:14;3168:71:3;3245:22;3270:13;2507:12;;;2432:92;3270:13;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;;;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:3;;-1:-1:-1;;;3706:56:3;;16550:2:14;3706:56:3;;;16532:21:14;16589:2;16569:18;;;16562:30;16628:34;16608:18;;;16601:62;-1:-1:-1;;;16679:18:14;;;16672:44;16733:19;;3706:56:3;16348:410:14;3147:65:13;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;3204:1:13::1;3195:6;:10:::0;3147:65::o;7967:151:3:-;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;2588:174::-;2655:7;2686:13;2507:12;;;2432:92;2686:13;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;9192:2:14;2670:69:3;;;9174:21:14;9231:2;9211:18;;;9204:30;9270:34;9250:18;;;9243:62;-1:-1:-1;;;9321:18:14;;;9314:33;9364:19;;2670:69:3;8990:399:14;2670:69:3;-1:-1:-1;2752:5:3;2588:174::o;3218:126:13:-;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;3303:4:13::1;3292:7;:15;;3284:24;;;::::0;::::1;;3318:9;:19:::0;3218:126::o;3351:104::-;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;3425:23:13::1;:13;3441:7:::0;;3425:23:::1;:::i;5320:116:3:-:0;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;4235:208::-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;10835:2:14;4314:75:3;;;10817:21:14;10874:2;10854:18;;;10847:30;10913:34;10893:18;;;10886:62;-1:-1:-1;;;10964:18:14;;;10957:41;11015:19;;4314:75:3;10633:407:14;4314:75:3;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;528:101:10:-;360:7;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;592:30:::1;619:1;592:18;:30::i;:::-;528:101::o:0;2811:165:13:-;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;2507:12:3;;2916:18:13;2908:27:::1;;;::::0;::::1;;2945:24;2955:10;2967:1;2945:9;:24::i;2982:90::-:0;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;3048:10:13::1;:17:::0;2982:90::o;3579:101::-;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;3635:5:13::1;::::0;3627:46:::1;::::0;-1:-1:-1;;;;;3635:5:13;;::::1;::::0;3651:21:::1;3627:46:::0;::::1;;;::::0;3635:5:::1;3627:46:::0;3635:5;3627:46;3651:21;3635:5;3627:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3579:101::o:0;3078:63::-;360:7:10;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;3133:1:13::1;3124:6;:10:::0;3078:63::o;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;1978:176:13:-;2035:6;1161;;1171:1;1161:11;1153:45;;;;-1:-1:-1;;;1153:45:13;;17381:2:14;1153:45:13;;;17363:21:14;17420:2;17400:18;;;17393:30;-1:-1:-1;;;17439:18:14;;;17432:51;17500:18;;1153:45:13;17179:345:14;1153:45:13;1229:1;1216:10;:14;:46;;;;;450:2;1234:10;:28;;1216:46;1208:91;;;;-1:-1:-1;;;1208:91:13;;16189:2:14;1208:91:13;;;16171:21:14;;;16208:18;;;16201:30;16267:34;16247:18;;;16240:62;16319:18;;1208:91:13;15987:356:14;1208:91:13;1317:10;1331:9;1317:23;1309:65;;;;-1:-1:-1;;;1309:65:13;;12357:2:14;1309:65:13;;;12339:21:14;12396:2;12376:18;;;12369:30;12435:31;12415:18;;;12408:59;12484:18;;1309:65:13;12155:353:14;1309:65:13;682:10;1459:15;:29;1455:232;;;1542:9;1512:26;1528:10;277;1512:26;:::i;:::-;:39;;1504:70;;;;-1:-1:-1;;;1504:70:13;;;;;;;:::i;:::-;1455:232;;;1644:9;1613:27;1630:10;335;1613:27;:::i;:::-;:40;;1605:71;;;;-1:-1:-1;;;1605:71:13;;;;;;;:::i;:::-;1911:9;;:11;;1921:1;1911:11;:::i;:::-;1897:10;1881:13;2507:12:3;;;2432:92;1881:13:13;:26;;;;:::i;:::-;:41;;1873:81;;;;-1:-1:-1;;;1873:81:13;;15431:2:14;1873:81:13;;;15413:21:14;15470:2;15450:18;;;15443:30;15509:29;15489:18;;;15482:57;15556:18;;1873:81:13;15229:351:14;1873:81:13;682:10:::1;2061:15;:29;2053:55;;;::::0;-1:-1:-1;;;2053:55:13;;11247:2:14;2053:55:13::1;::::0;::::1;11229:21:14::0;11286:2;11266:18;;;11259:30;-1:-1:-1;;;11305:18:14;;;11298:43;11358:18;;2053:55:13::1;11045:337:14::0;2053:55:13::1;2118:29;2128:10;2140:6;2118:9;:29::i;:::-;1978:176:::0;;:::o;7214:269:3:-;-1:-1:-1;;;;;7304:24:3;;171:10:1;7304:24:3;;7296:63;;;;-1:-1:-1;;;7296:63:3;;13131:2:14;7296:63:3;;;13113:21:14;13170:2;13150:18;;;13143:30;13209:28;13189:18;;;13182:56;13255:18;;7296:63:3;12929:350:14;7296:63:3;171:10:1;7366:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7366:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;7430:48;;6964:41:14;;;7366:42:3;;171:10:1;7430:48:3;;6937:18:14;7430:48:3;;;;;;;7214:269;;:::o;2160:520:13:-;2250:6;1161;;1171:1;1161:11;1153:45;;;;-1:-1:-1;;;1153:45:13;;17381:2:14;1153:45:13;;;17363:21:14;17420:2;17400:18;;;17393:30;-1:-1:-1;;;17439:18:14;;;17432:51;17500:18;;1153:45:13;17179:345:14;1153:45:13;1229:1;1216:10;:14;:46;;;;;450:2;1234:10;:28;;1216:46;1208:91;;;;-1:-1:-1;;;1208:91:13;;16189:2:14;1208:91:13;;;16171:21:14;;;16208:18;;;16201:30;16267:34;16247:18;;;16240:62;16319:18;;1208:91:13;15987:356:14;1208:91:13;1317:10;1331:9;1317:23;1309:65;;;;-1:-1:-1;;;1309:65:13;;12357:2:14;1309:65:13;;;12339:21:14;12396:2;12376:18;;;12369:30;12435:31;12415:18;;;12408:59;12484:18;;1309:65:13;12155:353:14;1309:65:13;682:10;1459:15;:29;1455:232;;;1542:9;1512:26;1528:10;277;1512:26;:::i;:::-;:39;;1504:70;;;;-1:-1:-1;;;1504:70:13;;;;;;;:::i;:::-;1455:232;;;1644:9;1613:27;1630:10;335;1613:27;:::i;:::-;:40;;1605:71;;;;-1:-1:-1;;;1605:71:13;;;;;;;:::i;:::-;1911:9;;:11;;1921:1;1911:11;:::i;:::-;1897:10;1881:13;2507:12:3;;;2432:92;1881:13:13;:26;;;;:::i;:::-;:41;;1873:81;;;;-1:-1:-1;;;1873:81:13;;15431:2:14;1873:81:13;;;15413:21:14;15470:2;15450:18;;;15443:30;15509:29;15489:18;;;15482:57;15556:18;;1873:81:13;15229:351:14;1873:81:13;603:10:::1;2276:15;:25;2268:54;;;::::0;-1:-1:-1;;;2268:54:13;;13905:2:14;2268:54:13::1;::::0;::::1;13887:21:14::0;13944:2;13924:18;;;13917:30;-1:-1:-1;;;13963:18:14;;;13956:46;14019:18;;2268:54:13::1;13703:340:14::0;2268:54:13::1;2364:10;2340:35;::::0;;;:23:::1;:35;::::0;;;;;401:1:::1;::::0;2340:44:::1;::::0;2378:6;;2340:44:::1;:::i;:::-;:70;;2332:121;;;::::0;-1:-1:-1;;;2332:121:13;;10002:2:14;2332:121:13::1;::::0;::::1;9984:21:14::0;10041:2;10021:18;;;10014:30;10080:34;10060:18;;;10053:62;-1:-1:-1;;;10131:18:14;;;10124:36;10177:19;;2332:121:13::1;9800:402:14::0;2332:121:13::1;2471:78;2490:5;;2471:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;2497:10:13::1;::::0;2519:28:::1;::::0;-1:-1:-1;;2536:10:13::1;5311:2:14::0;5307:15;5303:53;2519:28:13::1;::::0;::::1;5291:66:14::0;2497:10:13;;-1:-1:-1;5373:12:14;;;-1:-1:-1;2519:28:13::1;;;;;;;;;;;;2509:39;;;;;;2471:18;:78::i;:::-;2463:115;;;::::0;-1:-1:-1;;;2463:115:13;;18548:2:14;2463:115:13::1;::::0;::::1;18530:21:14::0;18587:2;18567:18;;;18560:30;18626:26;18606:18;;;18599:54;18670:18;;2463:115:13::1;18346:348:14::0;2463:115:13::1;2613:10;2589:35;::::0;;;:23:::1;:35;::::0;;;;:45;;2628:6;;2589:35;:45:::1;::::0;2628:6;;2589:45:::1;:::i;:::-;::::0;;;-1:-1:-1;2644:29:13::1;::::0;-1:-1:-1;2654:10:13::1;2666:6:::0;2644:9:::1;:29::i;:::-;2160:520:::0;;;;:::o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;;;;;;:::i;3686:120:13:-;3747:7;386:6:10;;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;-1:-1:-1;3766:5:13::1;:12:::0;;-1:-1:-1;;;;;;3766:12:13::1;-1:-1:-1::0;;;;;3766:12:13;::::1;;::::0;;;514:1:10::1;3686:120:13::0;;;:::o;5792:377:3:-;5885:13;5923:16;5931:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;5923:16;5908:94;;;;-1:-1:-1;;;5908:94:3;;12715:2:14;5908:94:3;;;12697:21:14;12754:2;12734:18;;;12727:30;12793:34;12773:18;;;12766:62;-1:-1:-1;;;12844:18:14;;;12837:45;12899:19;;5908:94:3;12513:411:14;5908:94:3;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:3:o;635:198:10:-;360:7;386:6;-1:-1:-1;;;;;386:6:10;171:10:1;444:23:10;436:68;;;;-1:-1:-1;;;436:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;723:22:10;::::1;715:73;;;::::0;-1:-1:-1;;;715:73:10;;8027:2:14;715:73:10::1;::::0;::::1;8009:21:14::0;8066:2;8046:18;;;8039:30;8105:34;8085:18;;;8078:62;-1:-1:-1;;;8156:18:14;;;8149:36;8202:19;;715:73:10::1;7825:402:14::0;715:73:10::1;798:28;817:8;798:18;:28::i;12277:165:3:-:0;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10893:18;;10786:58;;-1:-1:-1;10851:22:3;;-1:-1:-1;;;;;10877:34:3;171:10:1;-1:-1:-1;;;;;10877:34:3;;:80;;;-1:-1:-1;171:10:1;10921:20:3;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;171:10:1;7541:178:3;:::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;13486:2:14;11025:98:3;;;13468:21:14;13525:2;13505:18;;;13498:30;13564:34;13544:18;;;13537:62;-1:-1:-1;;;13615:18:14;;;13608:48;13673:19;;11025:98:3;13284:414:14;11025:98:3;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;11589:2:14;11130:95:3;;;11571:21:14;11628:2;11608:18;;;11601:30;11667:34;11647:18;;;11640:62;-1:-1:-1;;;11718:18:14;;;11711:36;11764:19;;11130:95:3;11387:402:14;11130:95:3;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;9596:2:14;11231:66:3;;;9578:21:14;9635:2;9615:18;;;9608:30;9674:34;9654:18;;;9647:62;-1:-1:-1;;;9725:18:14;;;9718:35;9770:19;;11231:66:3;9394:401:14;11231:66:3;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;;11578:15;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;;;11529:66:3;;;;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;8792:12;;-1:-1:-1;8782:22:3;8706:103;11919:20;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;11978:94;;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11951:121:3;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;10780:1398;;;10694:1484;;;:::o;4685:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:3;4805:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:3;;8434:2:14;4789:71:3;;;8416:21:14;8473:2;8453:18;;;8446:30;8512:34;8492:18;;;8485:62;-1:-1:-1;;;8563:18:14;;;8556:40;8613:19;;4789:71:3;8232:406:14;4789:71:3;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;;;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:3:o;5128:69::-;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:3;;-1:-1:-1;;;5209:57:3;;16965:2:14;5209:57:3;;;16947:21:14;17004:2;16984:18;;;16977:30;17043:34;17023:18;;;17016:62;-1:-1:-1;;;17094:18:14;;;17087:45;17149:19;;5209:57:3;16763:411:14;839:187:10;912:16;931:6;;-1:-1:-1;;;;;947:17:10;;;-1:-1:-1;;;;;;947:17:10;;;;;;979:40;;931:6;;;;;;;979:40;;912:16;979:40;902:124;839:187;:::o;8813:96:3:-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;411:184:9:-;532:4;584;555:25;568:5;575:4;555:12;:25::i;:::-;:33;;411:184;-1:-1:-1;;;;411:184:9:o;13947:667:3:-;14079:4;-1:-1:-1;;;;;14095:13:3;;163:19:0;:23;14091:519:3;;14132:72;;-1:-1:-1;;;14132:72:3;;-1:-1:-1;;;;;14132:36:3;;;;;:72;;171:10:1;;14183:4:3;;14189:7;;14198:5;;14132:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:3;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;14091:519;13947:667;;;;;;:::o;3461:112:13:-;3521:13;3553;3546:20;;;;;:::i;145:515:12:-;201:13;230:10;226:51;;-1:-1:-1;;256:10:12;;;;;;;;;;;;-1:-1:-1;;;256:10:12;;;;;145:515::o;226:51::-;301:5;286:12;340:75;347:9;;340:75;;372:8;;;;:::i;:::-;;-1:-1:-1;394:10:12;;-1:-1:-1;402:2:12;394:10;;:::i;:::-;;;340:75;;;424:19;456:6;446:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;446:17:12;;424:39;;473:150;480:10;;473:150;;506:11;516:1;506:11;;:::i;:::-;;-1:-1:-1;574:10:12;582:2;574:5;:10;:::i;:::-;561:24;;:2;:24;:::i;:::-;548:39;;531:6;538;531:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;531:56:12;;;;;;;;-1:-1:-1;601:11:12;610:2;601:11;;:::i;:::-;;;473:150;;9235:1239:3;9358:12;;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;15787:2:14;9376:62:3;;;15769:21:14;15826:2;15806:18;;;15799:30;15865:34;15845:18;;;15838:62;-1:-1:-1;;;15916:18:14;;;15909:31;15957:19;;9376:62:3;15585:397:14;9376:62:3;9573:21;9581:12;8792;;-1:-1:-1;8782:22:3;8706:103;9573:21;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;15073:2:14;9564:64:3;;;15055:21:14;15112:2;15092:18;;;15085:30;15151:31;15131:18;;;15124:59;15200:18;;9564:64:3;14871:353:14;9564:64:3;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;18145:2:14;9634:71:3;;;18127:21:14;18184:2;18164:18;;;18157:30;18223:34;18203:18;;;18196:62;-1:-1:-1;;;18274:18:14;;;18267:32;18316:19;;9634:71:3;17943:398:14;9634:71:3;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9835:135:3;;;;;;;;;;;;10004:43;;;;;;;;;;;10030:15;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;2160:520:13;947:688:9;1030:7;1072:4;1030:7;1086:514;1110:5;:12;1106:1;:16;1086:514;;;1143:20;1166:5;1172:1;1166:8;;;;;;;;:::i;:::-;;;;;;;1143:31;;1208:12;1192;:28;1188:402;;1343:44;;;;;;5553:19:14;;;5588:12;;;5581:28;;;5625:12;;1343:44:9;;;;;;;;;;;;1333:55;;;;;;1318:70;;1188:402;;;1530:44;;;;;;5553:19:14;;;5588:12;;;5581:28;;;5625:12;;1530:44:9;;;;;;;;;;;;1520:55;;;;;;1505:70;;1188:402;-1:-1:-1;1124:3:9;;;;:::i;:::-;;;;1086:514;;;-1:-1:-1;1616:12:9;947:688;-1:-1:-1;;;947:688:9:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:14;82:20;;-1:-1:-1;;;;;131:31:14;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:14;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:14:o;2735:689::-;2830:6;2838;2846;2899:2;2887:9;2878:7;2874:23;2870:32;2867:52;;;2915:1;2912;2905:12;2867:52;2955:9;2942:23;2984:18;3025:2;3017:6;3014:14;3011:34;;;3041:1;3038;3031:12;3011:34;3079:6;3068:9;3064:22;3054:32;;3124:7;3117:4;3113:2;3109:13;3105:27;3095:55;;3146:1;3143;3136:12;3095:55;3186:2;3173:16;3212:2;3204:6;3201:14;3198:34;;;3228:1;3225;3218:12;3198:34;3283:7;3276:4;3266:6;3263:1;3259:14;3255:2;3251:23;3247:34;3244:47;3241:67;;;3304:1;3301;3294:12;3241:67;3335:4;3327:13;;;;3359:6;;-1:-1:-1;3397:20:14;;;;3384:34;;2735:689;-1:-1:-1;;;;2735:689:14:o;3429:180::-;3488:6;3541:2;3529:9;3520:7;3516:23;3512:32;3509:52;;;3557:1;3554;3547:12;3509:52;-1:-1:-1;3580:23:14;;3429:180;-1:-1:-1;3429:180:14:o;3614:245::-;3672:6;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3799:30;3823:5;3799:30;:::i;3864:249::-;3933:6;3986:2;3974:9;3965:7;3961:23;3957:32;3954:52;;;4002:1;3999;3992:12;3954:52;4034:9;4028:16;4053:30;4077:5;4053:30;:::i;4118:592::-;4189:6;4197;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4306:9;4293:23;4335:18;4376:2;4368:6;4365:14;4362:34;;;4392:1;4389;4382:12;4362:34;4430:6;4419:9;4415:22;4405:32;;4475:7;4468:4;4464:2;4460:13;4456:27;4446:55;;4497:1;4494;4487:12;4446:55;4537:2;4524:16;4563:2;4555:6;4552:14;4549:34;;;4579:1;4576;4569:12;4549:34;4624:7;4619:2;4610:6;4606:2;4602:15;4598:24;4595:37;4592:57;;;4645:1;4642;4635:12;4592:57;4676:2;4668:11;;;;;4698:6;;-1:-1:-1;4118:592:14;;-1:-1:-1;;;;4118:592:14:o;4900:257::-;4941:3;4979:5;4973:12;5006:6;5001:3;4994:19;5022:63;5078:6;5071:4;5066:3;5062:14;5055:4;5048:5;5044:16;5022:63;:::i;:::-;5139:2;5118:15;-1:-1:-1;;5114:29:14;5105:39;;;;5146:4;5101:50;;4900:257;-1:-1:-1;;4900:257:14:o;5648:470::-;5827:3;5865:6;5859:13;5881:53;5927:6;5922:3;5915:4;5907:6;5903:17;5881:53;:::i;:::-;5997:13;;5956:16;;;;6019:57;5997:13;5956:16;6053:4;6041:17;;6019:57;:::i;:::-;6092:20;;5648:470;-1:-1:-1;;;;5648:470:14:o;6331:488::-;-1:-1:-1;;;;;6600:15:14;;;6582:34;;6652:15;;6647:2;6632:18;;6625:43;6699:2;6684:18;;6677:34;;;6747:3;6742:2;6727:18;;6720:31;;;6525:4;;6768:45;;6793:19;;6785:6;6768:45;:::i;:::-;6760:53;6331:488;-1:-1:-1;;;;;;6331:488:14:o;7198:219::-;7347:2;7336:9;7329:21;7310:4;7367:44;7407:2;7396:9;7392:18;7384:6;7367:44;:::i;8643:342::-;8845:2;8827:21;;;8884:2;8864:18;;;8857:30;-1:-1:-1;;;8918:2:14;8903:18;;8896:48;8976:2;8961:18;;8643:342::o;11794:356::-;11996:2;11978:21;;;12015:18;;;12008:30;12074:34;12069:2;12054:18;;12047:62;12141:2;12126:18;;11794:356::o;14451:415::-;14653:2;14635:21;;;14692:2;14672:18;;;14665:30;14731:34;14726:2;14711:18;;14704:62;-1:-1:-1;;;14797:2:14;14782:18;;14775:49;14856:3;14841:19;;14451:415::o;18881:253::-;18921:3;-1:-1:-1;;;;;19010:2:14;19007:1;19003:10;19040:2;19037:1;19033:10;19071:3;19067:2;19063:12;19058:3;19055:21;19052:47;;;19079:18;;:::i;19139:128::-;19179:3;19210:1;19206:6;19203:1;19200:13;19197:39;;;19216:18;;:::i;:::-;-1:-1:-1;19252:9:14;;19139:128::o;19272:120::-;19312:1;19338;19328:35;;19343:18;;:::i;:::-;-1:-1:-1;19377:9:14;;19272:120::o;19397:168::-;19437:7;19503:1;19499;19495:6;19491:14;19488:1;19485:21;19480:1;19473:9;19466:17;19462:45;19459:71;;;19510:18;;:::i;:::-;-1:-1:-1;19550:9:14;;19397:168::o;19570:246::-;19610:4;-1:-1:-1;;;;;19723:10:14;;;;19693;;19745:12;;;19742:38;;;19760:18;;:::i;:::-;19797:13;;19570:246;-1:-1:-1;;;19570:246:14:o;19821:125::-;19861:4;19889:1;19886;19883:8;19880:34;;;19894:18;;:::i;:::-;-1:-1:-1;19931:9:14;;19821:125::o;19951:258::-;20023:1;20033:113;20047:6;20044:1;20041:13;20033:113;;;20123:11;;;20117:18;20104:11;;;20097:39;20069:2;20062:10;20033:113;;;20164:6;20161:1;20158:13;20155:48;;;-1:-1:-1;;20199:1:14;20181:16;;20174:27;19951:258::o;20214:136::-;20253:3;20281:5;20271:39;;20290:18;;:::i;:::-;-1:-1:-1;;;20326:18:14;;20214:136::o;20355:380::-;20434:1;20430:12;;;;20477;;;20498:61;;20552:4;20544:6;20540:17;20530:27;;20498:61;20605:2;20597:6;20594:14;20574:18;20571:38;20568:161;;;20651:10;20646:3;20642:20;20639:1;20632:31;20686:4;20683:1;20676:15;20714:4;20711:1;20704:15;20568:161;;20355:380;;;:::o;20740:135::-;20779:3;-1:-1:-1;;20800:17:14;;20797:43;;;20820:18;;:::i;:::-;-1:-1:-1;20867:1:14;20856:13;;20740:135::o;20880:112::-;20912:1;20938;20928:35;;20943:18;;:::i;:::-;-1:-1:-1;20977:9:14;;20880:112::o;20997:127::-;21058:10;21053:3;21049:20;21046:1;21039:31;21089:4;21086:1;21079:15;21113:4;21110:1;21103:15;21129:127;21190:10;21185:3;21181:20;21178:1;21171:31;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21261:127;21322:10;21317:3;21313:20;21310:1;21303:31;21353:4;21350:1;21343:15;21377:4;21374:1;21367:15;21393:127;21454:10;21449:3;21445:20;21442:1;21435:31;21485:4;21482:1;21475:15;21509:4;21506:1;21499:15;21525:131;-1:-1:-1;;;;;;21599:32:14;;21589:43;;21579:71;;21646:1;21643;21636:12

Swarm Source

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