ETH Price: $3,267.37 (+0.22%)
Gas: 2 Gwei

Token

Invisible Kids NFT (IKNFT)
 

Overview

Max Total Supply

598 IKNFT

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 IKNFT
0xA8a0316384EF91440286f58b7E2b013381E4a9b9
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:
IKNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

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

contract IKNFT is Ownable, ERC721A, ReentrancyGuard {

	uint256 public SALE_NFT = 2950;
	uint256 public PRESALE_NFT = 2000;
	uint256 public GIVEAWAY_NFT = 50;
	
	uint256 public MAX_MINT_PRESALE = 25;
	uint256 public MAX_MINT_SALE = 25;
	
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 5;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 8;
	
	uint256 public PRESALE_PRICE = 4 * 10**16;
	uint256 public SALE_PRICE = 5 * 10**16;
	
	uint256 public PRESALE_MINTED;
	uint256 public SALE_MINTED;
	uint256 public GIVEAWAY_MINTED;
	
	bool public presaleEnable = false;
	bool public saleEnable = false;
	bytes32 public merkleRoot;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
	}
	mapping (address => User) public users;
	string public _baseTokenURI;
  
  constructor() ERC721A("Invisible Kids NFT", "IKNFT") {
  }
  
  function mintGiveawayNFT(address _to, uint256 _count) public onlyOwner{
		require(
            GIVEAWAY_MINTED + _count <= GIVEAWAY_NFT, 
            "Max limit"
        );
		_safeMint(_to, _count);
		GIVEAWAY_MINTED = GIVEAWAY_MINTED + _count;
   }

  function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) public payable{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
        require(
			PRESALE_MINTED + _count <= PRESALE_NFT, 
			"Exceeds max limit"
		);
	    require(
		   MerkleProof.verify(merkleProof, merkleRoot, node), 
		   "MerkleDistributor: Invalid proof."
	    );
		require(
			users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= PRESALE_PRICE * _count,
			"Value below price"
		);
		_safeMint(msg.sender, _count);
		PRESALE_MINTED = PRESALE_MINTED + _count;
		users[msg.sender].presalemint = users[msg.sender].presalemint + _count;
   }
	
   function mintSaleNFT(uint256 _count) public payable{
		require(
			 saleEnable, 
			"Sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= SALE_PRICE * _count,
			"Value below price"
		);
		
		_safeMint(msg.sender, _count);
	    SALE_MINTED = SALE_MINTED + _count;
		users[msg.sender].salemint = users[msg.sender].salemint + _count;
   }
	
    function _baseURI() internal view virtual override returns (string memory) {
	   return _baseTokenURI;
    }

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

    function withdraw() public onlyOwner {
       uint256 balance = address(this).balance;
       payable(msg.sender).transfer(balance);
    }
	
    function numberMinted(address owner) public view returns (uint256) {
	   return _numberMinted(owner);
    }

	function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
	   return ownershipOf(tokenId);
	}
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function setSaleStatus(bool status) public onlyOwner {
        require(saleEnable != status);
		saleEnable = status;
    }
	
	function setPreSaleStatus(bool status) public onlyOwner {
	   require(presaleEnable != status);
       presaleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(PRESALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_PRESALE = newLimit;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updatePreSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= PRESALE_MINTED, "Incorrect value");
        PRESALE_NFT = newSupply;
    }
	
	function updateGiveawaySupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= GIVEAWAY_MINTED, "Incorrect value");
        GIVEAWAY_NFT = newSupply;
    }
	
	function updateMintLimitPerTransectionPreSale(uint256 newLimit) external onlyOwner {
	    require(PRESALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.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;

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

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

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

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

    _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;
	
    // 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;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 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";

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 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) {
        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));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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":[],"name":"GIVEAWAY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","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":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateGiveawaySupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updatePreSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060018190556008908155610b86600a556107d0600b556032600c556019600d819055600e556005600f55601055668e1bc9bf04000060115566b1a2bc2ec500006012556016805461ffff191690553480156200006157600080fd5b5060405180604001604052806012815260200171125b9d9a5cda589b194812da591cc813919560721b815250604051806040016040528060058152602001641252d3919560da1b815250620000c5620000bf620000fe60201b60201c565b62000102565b8151620000da90600290602085019062000152565b508051620000f090600390602084019062000152565b505060016009555062000235565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200016090620001f8565b90600052602060002090601f016020900481019282620001845760008555620001cf565b82601f106200019f57805160ff1916838001178555620001cf565b82800160010185558215620001cf579182015b82811115620001cf578251825591602001919060010190620001b2565b50620001dd929150620001e1565b5090565b5b80821115620001dd5760008155600101620001e2565b6002810460018216806200020d57607f821691505b602082108114156200022f57634e487b7160e01b600052602260045260246000fd5b50919050565b61320f80620002456000396000f3fe60806040526004361061036b5760003560e01c80637ec0912e116101c6578063b88d4fde116100f7578063dce051cc11610095578063f176baaa1161006f578063f176baaa1461093e578063f2fde38b1461095e578063f43973351461097e578063fe4ca8471461099e5761036b565b8063dce051cc146108e9578063e60400b414610909578063e985e9c51461091e5761036b565b8063cfc86f7b116100d1578063cfc86f7b1461087f578063d7224ba014610894578063d897833e146108a9578063dc33e681146108c95761036b565b8063b88d4fde1461082a578063c87b56dd1461084a578063ccfb63a41461086a5761036b565b806395d89b4111610164578063a38449161161013e578063a3844916146107bf578063a87430ba146107d4578063a952686214610802578063ae5cc172146108155761036b565b806395d89b4114610775578063995b8ef61461078a578063a22cb4651461079f5761036b565b80638da5cb5b116101a05780638da5cb5b146107005780639231ab2a14610715578063941e79fc14610742578063945242c6146107625761036b565b80637ec0912e146106b65780637ec18cf6146106d65780637f205a74146106eb5761036b565b806342842e0e116102a057806362dc6e211161023e57806370a082311161021857806370a0823114610657578063711cc2ae14610677578063715018a61461068c5780637e95eac4146106a15761036b565b806362dc6e21146106025780636352211e1461061757806365fccb52146106375761036b565b80634d7cea161161027a5780634d7cea161461058d5780634f6ccce7146105a257806355f804b3146105c25780635e326b92146105e25761036b565b806342842e0e146105385780634783f0ef14610558578063497865b3146105785761036b565b80632eb4a7ab1161030d578063379665bd116102e7578063379665bd146104c35780633ccfd60b146104e35780633e2e2a80146104f85780634273943c146105185761036b565b80632eb4a7ab1461046e5780632f745c5914610483578063305004d9146104a35761036b565b8063095ea7b311610349578063095ea7b3146103f55780630990e5341461041757806318160ddd1461043957806323b872dd1461044e5761036b565b806301ffc9a71461037057806306fdde03146103a6578063081812fc146103c8575b600080fd5b34801561037c57600080fd5b5061039061038b36600461268e565b6109b3565b60405161039d9190612883565b60405180910390f35b3480156103b257600080fd5b506103bb610a16565b60405161039d9190612897565b3480156103d457600080fd5b506103e86103e3366004612676565b610aa8565b60405161039d9190612832565b34801561040157600080fd5b50610415610410366004612633565b610af4565b005b34801561042357600080fd5b5061042c610b8d565b60405161039d919061288e565b34801561044557600080fd5b5061042c610b93565b34801561045a57600080fd5b50610415610469366004612503565b610b99565b34801561047a57600080fd5b5061042c610ba4565b34801561048f57600080fd5b5061042c61049e366004612633565b610baa565b3480156104af57600080fd5b506104156104be366004612676565b610ca6565b3480156104cf57600080fd5b506104156104de366004612676565b610d0c565b3480156104ef57600080fd5b50610415610d72565b34801561050457600080fd5b50610415610513366004612676565b610de4565b34801561052457600080fd5b50610415610533366004612676565b610e4a565b34801561054457600080fd5b50610415610553366004612503565b610eb0565b34801561056457600080fd5b50610415610573366004612676565b610ecb565b34801561058457600080fd5b5061042c610f0f565b34801561059957600080fd5b5061042c610f15565b3480156105ae57600080fd5b5061042c6105bd366004612676565b610f1b565b3480156105ce57600080fd5b506104156105dd3660046126c6565b610f47565b3480156105ee57600080fd5b506104156105fd36600461265c565b610f92565b34801561060e57600080fd5b5061042c610ffa565b34801561062357600080fd5b506103e8610632366004612676565b611000565b34801561064357600080fd5b50610415610652366004612676565b611012565b34801561066357600080fd5b5061042c6106723660046124b7565b611056565b34801561068357600080fd5b5061042c6110a3565b34801561069857600080fd5b506104156110a9565b3480156106ad57600080fd5b5061042c6110f4565b3480156106c257600080fd5b506104156106d1366004612676565b6110fa565b3480156106e257600080fd5b5061039061113e565b3480156106f757600080fd5b5061042c611147565b34801561070c57600080fd5b506103e861114d565b34801561072157600080fd5b50610735610730366004612676565b61115c565b60405161039d9190612ffe565b34801561074e57600080fd5b5061041561075d366004612676565b61116d565b610415610770366004612733565b6111d3565b34801561078157600080fd5b506103bb611386565b34801561079657600080fd5b5061042c611395565b3480156107ab57600080fd5b506104156107ba36600461260a565b61139b565b3480156107cb57600080fd5b5061042c611469565b3480156107e057600080fd5b506107f46107ef3660046124b7565b61146f565b60405161039d9291906127f5565b610415610810366004612676565b611488565b34801561082157600080fd5b5061042c6115bb565b34801561083657600080fd5b5061041561084536600461253e565b6115c1565b34801561085657600080fd5b506103bb610865366004612676565b6115fa565b34801561087657600080fd5b5061042c61167d565b34801561088b57600080fd5b506103bb611683565b3480156108a057600080fd5b5061042c611711565b3480156108b557600080fd5b506104156108c436600461265c565b611717565b3480156108d557600080fd5b5061042c6108e43660046124b7565b61178c565b3480156108f557600080fd5b50610415610904366004612633565b611797565b34801561091557600080fd5b5061042c611824565b34801561092a57600080fd5b506103906109393660046124d1565b61182a565b34801561094a57600080fd5b50610415610959366004612676565b611858565b34801561096a57600080fd5b506104156109793660046124b7565b6118be565b34801561098a57600080fd5b50610415610999366004612676565b61192f565b3480156109aa57600080fd5b50610390611995565b60006001600160e01b031982166380ac58cd60e01b14806109e457506001600160e01b03198216635b5e139f60e01b145b806109ff57506001600160e01b0319821663780e9d6360e01b145b80610a0e5750610a0e826119a3565b90505b919050565b606060028054610a2590613117565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190613117565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab3826119bc565b610ad85760405162461bcd60e51b8152600401610acf90612fb1565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610aff82611000565b9050806001600160a01b0316836001600160a01b03161415610b335760405162461bcd60e51b8152600401610acf90612dc6565b806001600160a01b0316610b456119c3565b6001600160a01b03161480610b615750610b61816109396119c3565b610b7d5760405162461bcd60e51b8152600401610acf90612b4c565b610b888383836119c7565b505050565b60145481565b60015490565b610b88838383611a23565b60175481565b6000610bb583611056565b8210610bd35760405162461bcd60e51b8152600401610acf906128aa565b6000610bdd610b93565b905060008060005b83811015610c87576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3857805192505b876001600160a01b0316836001600160a01b03161415610c745786841415610c6657509350610ca092505050565b83610c7081613152565b9450505b5080610c7f81613152565b915050610be5565b5060405162461bcd60e51b8152600401610acf90612f14565b92915050565b610cae6119c3565b6001600160a01b0316610cbf61114d565b6001600160a01b031614610ce55760405162461bcd60e51b8152600401610acf90612c8e565b80600b541015610d075760405162461bcd60e51b8152600401610acf90612c65565b600f55565b610d146119c3565b6001600160a01b0316610d2561114d565b6001600160a01b031614610d4b5760405162461bcd60e51b8152600401610acf90612c8e565b601554811015610d6d5760405162461bcd60e51b8152600401610acf90612c65565b600c55565b610d7a6119c3565b6001600160a01b0316610d8b61114d565b6001600160a01b031614610db15760405162461bcd60e51b8152600401610acf90612c8e565b6040514790339082156108fc029083906000818181858888f19350505050158015610de0573d6000803e3d6000fd5b5050565b610dec6119c3565b6001600160a01b0316610dfd61114d565b6001600160a01b031614610e235760405162461bcd60e51b8152600401610acf90612c8e565b80600a541015610e455760405162461bcd60e51b8152600401610acf90612c65565b601055565b610e526119c3565b6001600160a01b0316610e6361114d565b6001600160a01b031614610e895760405162461bcd60e51b8152600401610acf90612c8e565b601354811015610eab5760405162461bcd60e51b8152600401610acf90612c65565b600b55565b610b88838383604051806020016040528060008152506115c1565b610ed36119c3565b6001600160a01b0316610ee461114d565b6001600160a01b031614610f0a5760405162461bcd60e51b8152600401610acf90612c8e565b601755565b600c5481565b60155481565b6000610f25610b93565b8210610f435760405162461bcd60e51b8152600401610acf9061297c565b5090565b610f4f6119c3565b6001600160a01b0316610f6061114d565b6001600160a01b031614610f865760405162461bcd60e51b8152600401610acf90612c8e565b610b88601983836123e4565b610f9a6119c3565b6001600160a01b0316610fab61114d565b6001600160a01b031614610fd15760405162461bcd60e51b8152600401610acf90612c8e565b60165460ff1615158115151415610fe757600080fd5b6016805460ff1916911515919091179055565b60115481565b600061100b82611d37565b5192915050565b61101a6119c3565b6001600160a01b031661102b61114d565b6001600160a01b0316146110515760405162461bcd60e51b8152600401610acf90612c8e565b601155565b60006001600160a01b03821661107e5760405162461bcd60e51b8152600401610acf90612bd4565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b60105481565b6110b16119c3565b6001600160a01b03166110c261114d565b6001600160a01b0316146110e85760405162461bcd60e51b8152600401610acf90612c8e565b6110f26000611deb565b565b600d5481565b6111026119c3565b6001600160a01b031661111361114d565b6001600160a01b0316146111395760405162461bcd60e51b8152600401610acf90612c8e565b601255565b60165460ff1681565b60125481565b6000546001600160a01b031690565b611164612464565b610a0e82611d37565b6111756119c3565b6001600160a01b031661118661114d565b6001600160a01b0316146111ac5760405162461bcd60e51b8152600401610acf90612c8e565b80600b5410156111ce5760405162461bcd60e51b8152600401610acf90612c65565b600d55565b6000336040516020016111e691906127d8565b60408051601f19818403018152919052805160209091012060165490915060ff166112235760405162461bcd60e51b8152600401610acf90612aa4565b600b5484601354611234919061304a565b11156112525760405162461bcd60e51b8152600401610acf90612ba9565b611293838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050611e3b565b6112af5760405162461bcd60e51b8152600401610acf90612ad4565b600d54336000908152601860205260409020546112cd90869061304a565b11156112eb5760405162461bcd60e51b8152600401610acf90612e92565b600f5484111561130d5760405162461bcd60e51b8152600401610acf90612b15565b8360115461131b9190613076565b34101561133a5760405162461bcd60e51b8152600401610acf90612d9b565b6113443385611ef6565b83601354611352919061304a565b6013553360009081526018602052604090205461137090859061304a565b3360009081526018602052604090205550505050565b606060038054610a2590613117565b600a5481565b6113a36119c3565b6001600160a01b0316826001600160a01b031614156113d45760405162461bcd60e51b8152600401610acf90612d12565b80600760006113e16119c3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114256119c3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145d9190612883565b60405180910390a35050565b600b5481565b6018602052600090815260409020805460019091015482565b601654610100900460ff166114af5760405162461bcd60e51b8152600401610acf90612a78565b600a54816014546114c0919061304a565b11156114de5760405162461bcd60e51b8152600401610acf90612ba9565b600e54336000908152601860205260409020600101546114ff90839061304a565b111561151d5760405162461bcd60e51b8152600401610acf90612e92565b60105481111561153f5760405162461bcd60e51b8152600401610acf90612b15565b8060125461154d9190613076565b34101561156c5760405162461bcd60e51b8152600401610acf90612d9b565b6115763382611ef6565b80601454611584919061304a565b601455336000908152601860205260409020600101546115a590829061304a565b3360009081526018602052604090206001015550565b600e5481565b6115cc848484611a23565b6115d884848484611f10565b6115f45760405162461bcd60e51b8152600401610acf90612e08565b50505050565b6060611605826119bc565b6116215760405162461bcd60e51b8152600401610acf90612cc3565b600061162b61202c565b9050600081511161164b5760405180602001604052806000815250611676565b806116558461203b565b604051602001611666929190612803565b6040516020818303038152906040525b9392505050565b600f5481565b6019805461169090613117565b80601f01602080910402602001604051908101604052809291908181526020018280546116bc90613117565b80156117095780601f106116de57610100808354040283529160200191611709565b820191906000526020600020905b8154815290600101906020018083116116ec57829003601f168201915b505050505081565b60085481565b61171f6119c3565b6001600160a01b031661173061114d565b6001600160a01b0316146117565760405162461bcd60e51b8152600401610acf90612c8e565b60165460ff610100909104161515811515141561177257600080fd5b601680549115156101000261ff0019909216919091179055565b6000610a0e82612156565b61179f6119c3565b6001600160a01b03166117b061114d565b6001600160a01b0316146117d65760405162461bcd60e51b8152600401610acf90612c8e565b600c54816015546117e7919061304a565b11156118055760405162461bcd60e51b8152600401610acf90612a55565b61180f8282611ef6565b8060155461181d919061304a565b6015555050565b60135481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6118606119c3565b6001600160a01b031661187161114d565b6001600160a01b0316146118975760405162461bcd60e51b8152600401610acf90612c8e565b80600a5410156118b95760405162461bcd60e51b8152600401610acf90612c65565b600e55565b6118c66119c3565b6001600160a01b03166118d761114d565b6001600160a01b0316146118fd5760405162461bcd60e51b8152600401610acf90612c8e565b6001600160a01b0381166119235760405162461bcd60e51b8152600401610acf906128ec565b61192c81611deb565b50565b6119376119c3565b6001600160a01b031661194861114d565b6001600160a01b03161461196e5760405162461bcd60e51b8152600401610acf90612c8e565b6014548110156119905760405162461bcd60e51b8152600401610acf90612c65565b600a55565b601654610100900460ff1681565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a2e82611d37565b9050600081600001516001600160a01b0316611a486119c3565b6001600160a01b03161480611a7d5750611a606119c3565b6001600160a01b0316611a7284610aa8565b6001600160a01b0316145b80611a9157508151611a91906109396119c3565b905080611ab05760405162461bcd60e51b8152600401610acf90612d49565b846001600160a01b031682600001516001600160a01b031614611ae55760405162461bcd60e51b8152600401610acf90612c1f565b6001600160a01b038416611b0b5760405162461bcd60e51b8152600401610acf906129bf565b611b1885858560016115f4565b611b2860008484600001516119c7565b6001600160a01b0385166000908152600560205260408120805460019290611b5a9084906001600160801b0316613095565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611ba691859116613028565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611c3c84600161304a565b6000818152600460205260409020549091506001600160a01b0316611ce157611c64816119bc565b15611ce15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2f86868660016115f4565b505050505050565b611d3f612464565b611d48826119bc565b611d645760405162461bcd60e51b8152600401610acf90612932565b6000825b818110611dd2576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611dbf579250610a11915050565b5080611dca81613100565b915050611d68565b5060405162461bcd60e51b8152600401610acf90612f62565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b8551811015611eeb576000868281518110611e6b57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611eac578281604051602001611e8f9291906127f5565b604051602081830303815290604052805190602001209250611ed8565b8083604051602001611ebf9291906127f5565b6040516020818303038152906040528051906020012092505b5080611ee381613152565b915050611e40565b509092149392505050565b610de08282604051806020016040528060008152506121aa565b6000611f24846001600160a01b03166123de565b1561202057836001600160a01b031663150b7a02611f406119c3565b8786866040518563ffffffff1660e01b8152600401611f629493929190612846565b602060405180830381600087803b158015611f7c57600080fd5b505af1925050508015611fac575060408051601f3d908101601f19168201909252611fa9918101906126aa565b60015b612006573d808015611fda576040519150601f19603f3d011682016040523d82523d6000602084013e611fdf565b606091505b508051611ffe5760405162461bcd60e51b8152600401610acf90612e08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612024565b5060015b949350505050565b606060198054610a2590613117565b60608161206057506040805180820190915260018152600360fc1b6020820152610a11565b8160005b811561208a578061207481613152565b91506120839050600a83613062565b9150612064565b60008167ffffffffffffffff8111156120b357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120dd576020820181803683370190505b5090505b8415612024576120f26001836130bd565b91506120ff600a8661316d565b61210a90603061304a565b60f81b81838151811061212d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061214f600a86613062565b94506120e1565b60006001600160a01b03821661217e5760405162461bcd60e51b8152600401610acf90612a04565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166121d35760405162461bcd60e51b8152600401610acf90612ed3565b6121dc816119bc565b156121f95760405162461bcd60e51b8152600401610acf90612e5b565b61220660008583866115f4565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612262908790613028565b6001600160801b031681526020018583602001516122809190613028565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156123cb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461238f6000888488611f10565b6123ab5760405162461bcd60e51b8152600401610acf90612e08565b816123b581613152565b92505080806123c390613152565b915050612342565b506001819055611d2f60008785886115f4565b3b151590565b8280546123f090613117565b90600052602060002090601f0160209004810192826124125760008555612458565b82601f1061242b5782800160ff19823516178555612458565b82800160010185558215612458579182015b8281111561245857823582559160200191906001019061243d565b50610f4392915061247b565b604080518082019091526000808252602082015290565b5b80821115610f43576000815560010161247c565b80356001600160a01b0381168114610a1157600080fd5b80358015158114610a1157600080fd5b6000602082840312156124c8578081fd5b61167682612490565b600080604083850312156124e3578081fd5b6124ec83612490565b91506124fa60208401612490565b90509250929050565b600080600060608486031215612517578081fd5b61252084612490565b925061252e60208501612490565b9150604084013590509250925092565b60008060008060808587031215612553578081fd5b61255c85612490565b9350602061256b818701612490565b935060408601359250606086013567ffffffffffffffff8082111561258e578384fd5b818801915088601f8301126125a1578384fd5b8135818111156125b3576125b36131ad565b604051601f8201601f19168101850183811182821017156125d6576125d66131ad565b60405281815283820185018b10156125ec578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561261c578182fd5b61262583612490565b91506124fa602084016124a7565b60008060408385031215612645578182fd5b61264e83612490565b946020939093013593505050565b60006020828403121561266d578081fd5b611676826124a7565b600060208284031215612687578081fd5b5035919050565b60006020828403121561269f578081fd5b8135611676816131c3565b6000602082840312156126bb578081fd5b8151611676816131c3565b600080602083850312156126d8578182fd5b823567ffffffffffffffff808211156126ef578384fd5b818501915085601f830112612702578384fd5b813581811115612710578485fd5b866020828501011115612721578485fd5b60209290920196919550909350505050565b600080600060408486031215612747578283fd5b83359250602084013567ffffffffffffffff80821115612765578384fd5b818601915086601f830112612778578384fd5b813581811115612786578485fd5b8760208083028501011115612799578485fd5b6020830194508093505050509250925092565b600081518084526127c48160208601602086016130d4565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b600083516128158184602088016130d4565b8351908301906128298183602088016130d4565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612879908301846127ac565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261167660208301846127ac565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b60006001600160801b0380831681851680830382111561282957612829613181565b6000821982111561305d5761305d613181565b500190565b60008261307157613071613197565b500490565b600081600019048311821515161561309057613090613181565b500290565b60006001600160801b03838116908316818110156130b5576130b5613181565b039392505050565b6000828210156130cf576130cf613181565b500390565b60005b838110156130ef5781810151838201526020016130d7565b838111156115f45750506000910152565b60008161310f5761310f613181565b506000190190565b60028104600182168061312b57607f821691505b6020821081141561314c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561316657613166613181565b5060010190565b60008261317c5761317c613197565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461192c57600080fdfea2646970667358221220372291080c9032b201fa83e40548e0eeebd22cc3feae62314d6eaa0525d78dfe64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80637ec0912e116101c6578063b88d4fde116100f7578063dce051cc11610095578063f176baaa1161006f578063f176baaa1461093e578063f2fde38b1461095e578063f43973351461097e578063fe4ca8471461099e5761036b565b8063dce051cc146108e9578063e60400b414610909578063e985e9c51461091e5761036b565b8063cfc86f7b116100d1578063cfc86f7b1461087f578063d7224ba014610894578063d897833e146108a9578063dc33e681146108c95761036b565b8063b88d4fde1461082a578063c87b56dd1461084a578063ccfb63a41461086a5761036b565b806395d89b4111610164578063a38449161161013e578063a3844916146107bf578063a87430ba146107d4578063a952686214610802578063ae5cc172146108155761036b565b806395d89b4114610775578063995b8ef61461078a578063a22cb4651461079f5761036b565b80638da5cb5b116101a05780638da5cb5b146107005780639231ab2a14610715578063941e79fc14610742578063945242c6146107625761036b565b80637ec0912e146106b65780637ec18cf6146106d65780637f205a74146106eb5761036b565b806342842e0e116102a057806362dc6e211161023e57806370a082311161021857806370a0823114610657578063711cc2ae14610677578063715018a61461068c5780637e95eac4146106a15761036b565b806362dc6e21146106025780636352211e1461061757806365fccb52146106375761036b565b80634d7cea161161027a5780634d7cea161461058d5780634f6ccce7146105a257806355f804b3146105c25780635e326b92146105e25761036b565b806342842e0e146105385780634783f0ef14610558578063497865b3146105785761036b565b80632eb4a7ab1161030d578063379665bd116102e7578063379665bd146104c35780633ccfd60b146104e35780633e2e2a80146104f85780634273943c146105185761036b565b80632eb4a7ab1461046e5780632f745c5914610483578063305004d9146104a35761036b565b8063095ea7b311610349578063095ea7b3146103f55780630990e5341461041757806318160ddd1461043957806323b872dd1461044e5761036b565b806301ffc9a71461037057806306fdde03146103a6578063081812fc146103c8575b600080fd5b34801561037c57600080fd5b5061039061038b36600461268e565b6109b3565b60405161039d9190612883565b60405180910390f35b3480156103b257600080fd5b506103bb610a16565b60405161039d9190612897565b3480156103d457600080fd5b506103e86103e3366004612676565b610aa8565b60405161039d9190612832565b34801561040157600080fd5b50610415610410366004612633565b610af4565b005b34801561042357600080fd5b5061042c610b8d565b60405161039d919061288e565b34801561044557600080fd5b5061042c610b93565b34801561045a57600080fd5b50610415610469366004612503565b610b99565b34801561047a57600080fd5b5061042c610ba4565b34801561048f57600080fd5b5061042c61049e366004612633565b610baa565b3480156104af57600080fd5b506104156104be366004612676565b610ca6565b3480156104cf57600080fd5b506104156104de366004612676565b610d0c565b3480156104ef57600080fd5b50610415610d72565b34801561050457600080fd5b50610415610513366004612676565b610de4565b34801561052457600080fd5b50610415610533366004612676565b610e4a565b34801561054457600080fd5b50610415610553366004612503565b610eb0565b34801561056457600080fd5b50610415610573366004612676565b610ecb565b34801561058457600080fd5b5061042c610f0f565b34801561059957600080fd5b5061042c610f15565b3480156105ae57600080fd5b5061042c6105bd366004612676565b610f1b565b3480156105ce57600080fd5b506104156105dd3660046126c6565b610f47565b3480156105ee57600080fd5b506104156105fd36600461265c565b610f92565b34801561060e57600080fd5b5061042c610ffa565b34801561062357600080fd5b506103e8610632366004612676565b611000565b34801561064357600080fd5b50610415610652366004612676565b611012565b34801561066357600080fd5b5061042c6106723660046124b7565b611056565b34801561068357600080fd5b5061042c6110a3565b34801561069857600080fd5b506104156110a9565b3480156106ad57600080fd5b5061042c6110f4565b3480156106c257600080fd5b506104156106d1366004612676565b6110fa565b3480156106e257600080fd5b5061039061113e565b3480156106f757600080fd5b5061042c611147565b34801561070c57600080fd5b506103e861114d565b34801561072157600080fd5b50610735610730366004612676565b61115c565b60405161039d9190612ffe565b34801561074e57600080fd5b5061041561075d366004612676565b61116d565b610415610770366004612733565b6111d3565b34801561078157600080fd5b506103bb611386565b34801561079657600080fd5b5061042c611395565b3480156107ab57600080fd5b506104156107ba36600461260a565b61139b565b3480156107cb57600080fd5b5061042c611469565b3480156107e057600080fd5b506107f46107ef3660046124b7565b61146f565b60405161039d9291906127f5565b610415610810366004612676565b611488565b34801561082157600080fd5b5061042c6115bb565b34801561083657600080fd5b5061041561084536600461253e565b6115c1565b34801561085657600080fd5b506103bb610865366004612676565b6115fa565b34801561087657600080fd5b5061042c61167d565b34801561088b57600080fd5b506103bb611683565b3480156108a057600080fd5b5061042c611711565b3480156108b557600080fd5b506104156108c436600461265c565b611717565b3480156108d557600080fd5b5061042c6108e43660046124b7565b61178c565b3480156108f557600080fd5b50610415610904366004612633565b611797565b34801561091557600080fd5b5061042c611824565b34801561092a57600080fd5b506103906109393660046124d1565b61182a565b34801561094a57600080fd5b50610415610959366004612676565b611858565b34801561096a57600080fd5b506104156109793660046124b7565b6118be565b34801561098a57600080fd5b50610415610999366004612676565b61192f565b3480156109aa57600080fd5b50610390611995565b60006001600160e01b031982166380ac58cd60e01b14806109e457506001600160e01b03198216635b5e139f60e01b145b806109ff57506001600160e01b0319821663780e9d6360e01b145b80610a0e5750610a0e826119a3565b90505b919050565b606060028054610a2590613117565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5190613117565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab3826119bc565b610ad85760405162461bcd60e51b8152600401610acf90612fb1565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610aff82611000565b9050806001600160a01b0316836001600160a01b03161415610b335760405162461bcd60e51b8152600401610acf90612dc6565b806001600160a01b0316610b456119c3565b6001600160a01b03161480610b615750610b61816109396119c3565b610b7d5760405162461bcd60e51b8152600401610acf90612b4c565b610b888383836119c7565b505050565b60145481565b60015490565b610b88838383611a23565b60175481565b6000610bb583611056565b8210610bd35760405162461bcd60e51b8152600401610acf906128aa565b6000610bdd610b93565b905060008060005b83811015610c87576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3857805192505b876001600160a01b0316836001600160a01b03161415610c745786841415610c6657509350610ca092505050565b83610c7081613152565b9450505b5080610c7f81613152565b915050610be5565b5060405162461bcd60e51b8152600401610acf90612f14565b92915050565b610cae6119c3565b6001600160a01b0316610cbf61114d565b6001600160a01b031614610ce55760405162461bcd60e51b8152600401610acf90612c8e565b80600b541015610d075760405162461bcd60e51b8152600401610acf90612c65565b600f55565b610d146119c3565b6001600160a01b0316610d2561114d565b6001600160a01b031614610d4b5760405162461bcd60e51b8152600401610acf90612c8e565b601554811015610d6d5760405162461bcd60e51b8152600401610acf90612c65565b600c55565b610d7a6119c3565b6001600160a01b0316610d8b61114d565b6001600160a01b031614610db15760405162461bcd60e51b8152600401610acf90612c8e565b6040514790339082156108fc029083906000818181858888f19350505050158015610de0573d6000803e3d6000fd5b5050565b610dec6119c3565b6001600160a01b0316610dfd61114d565b6001600160a01b031614610e235760405162461bcd60e51b8152600401610acf90612c8e565b80600a541015610e455760405162461bcd60e51b8152600401610acf90612c65565b601055565b610e526119c3565b6001600160a01b0316610e6361114d565b6001600160a01b031614610e895760405162461bcd60e51b8152600401610acf90612c8e565b601354811015610eab5760405162461bcd60e51b8152600401610acf90612c65565b600b55565b610b88838383604051806020016040528060008152506115c1565b610ed36119c3565b6001600160a01b0316610ee461114d565b6001600160a01b031614610f0a5760405162461bcd60e51b8152600401610acf90612c8e565b601755565b600c5481565b60155481565b6000610f25610b93565b8210610f435760405162461bcd60e51b8152600401610acf9061297c565b5090565b610f4f6119c3565b6001600160a01b0316610f6061114d565b6001600160a01b031614610f865760405162461bcd60e51b8152600401610acf90612c8e565b610b88601983836123e4565b610f9a6119c3565b6001600160a01b0316610fab61114d565b6001600160a01b031614610fd15760405162461bcd60e51b8152600401610acf90612c8e565b60165460ff1615158115151415610fe757600080fd5b6016805460ff1916911515919091179055565b60115481565b600061100b82611d37565b5192915050565b61101a6119c3565b6001600160a01b031661102b61114d565b6001600160a01b0316146110515760405162461bcd60e51b8152600401610acf90612c8e565b601155565b60006001600160a01b03821661107e5760405162461bcd60e51b8152600401610acf90612bd4565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b60105481565b6110b16119c3565b6001600160a01b03166110c261114d565b6001600160a01b0316146110e85760405162461bcd60e51b8152600401610acf90612c8e565b6110f26000611deb565b565b600d5481565b6111026119c3565b6001600160a01b031661111361114d565b6001600160a01b0316146111395760405162461bcd60e51b8152600401610acf90612c8e565b601255565b60165460ff1681565b60125481565b6000546001600160a01b031690565b611164612464565b610a0e82611d37565b6111756119c3565b6001600160a01b031661118661114d565b6001600160a01b0316146111ac5760405162461bcd60e51b8152600401610acf90612c8e565b80600b5410156111ce5760405162461bcd60e51b8152600401610acf90612c65565b600d55565b6000336040516020016111e691906127d8565b60408051601f19818403018152919052805160209091012060165490915060ff166112235760405162461bcd60e51b8152600401610acf90612aa4565b600b5484601354611234919061304a565b11156112525760405162461bcd60e51b8152600401610acf90612ba9565b611293838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017549150849050611e3b565b6112af5760405162461bcd60e51b8152600401610acf90612ad4565b600d54336000908152601860205260409020546112cd90869061304a565b11156112eb5760405162461bcd60e51b8152600401610acf90612e92565b600f5484111561130d5760405162461bcd60e51b8152600401610acf90612b15565b8360115461131b9190613076565b34101561133a5760405162461bcd60e51b8152600401610acf90612d9b565b6113443385611ef6565b83601354611352919061304a565b6013553360009081526018602052604090205461137090859061304a565b3360009081526018602052604090205550505050565b606060038054610a2590613117565b600a5481565b6113a36119c3565b6001600160a01b0316826001600160a01b031614156113d45760405162461bcd60e51b8152600401610acf90612d12565b80600760006113e16119c3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114256119c3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145d9190612883565b60405180910390a35050565b600b5481565b6018602052600090815260409020805460019091015482565b601654610100900460ff166114af5760405162461bcd60e51b8152600401610acf90612a78565b600a54816014546114c0919061304a565b11156114de5760405162461bcd60e51b8152600401610acf90612ba9565b600e54336000908152601860205260409020600101546114ff90839061304a565b111561151d5760405162461bcd60e51b8152600401610acf90612e92565b60105481111561153f5760405162461bcd60e51b8152600401610acf90612b15565b8060125461154d9190613076565b34101561156c5760405162461bcd60e51b8152600401610acf90612d9b565b6115763382611ef6565b80601454611584919061304a565b601455336000908152601860205260409020600101546115a590829061304a565b3360009081526018602052604090206001015550565b600e5481565b6115cc848484611a23565b6115d884848484611f10565b6115f45760405162461bcd60e51b8152600401610acf90612e08565b50505050565b6060611605826119bc565b6116215760405162461bcd60e51b8152600401610acf90612cc3565b600061162b61202c565b9050600081511161164b5760405180602001604052806000815250611676565b806116558461203b565b604051602001611666929190612803565b6040516020818303038152906040525b9392505050565b600f5481565b6019805461169090613117565b80601f01602080910402602001604051908101604052809291908181526020018280546116bc90613117565b80156117095780601f106116de57610100808354040283529160200191611709565b820191906000526020600020905b8154815290600101906020018083116116ec57829003601f168201915b505050505081565b60085481565b61171f6119c3565b6001600160a01b031661173061114d565b6001600160a01b0316146117565760405162461bcd60e51b8152600401610acf90612c8e565b60165460ff610100909104161515811515141561177257600080fd5b601680549115156101000261ff0019909216919091179055565b6000610a0e82612156565b61179f6119c3565b6001600160a01b03166117b061114d565b6001600160a01b0316146117d65760405162461bcd60e51b8152600401610acf90612c8e565b600c54816015546117e7919061304a565b11156118055760405162461bcd60e51b8152600401610acf90612a55565b61180f8282611ef6565b8060155461181d919061304a565b6015555050565b60135481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6118606119c3565b6001600160a01b031661187161114d565b6001600160a01b0316146118975760405162461bcd60e51b8152600401610acf90612c8e565b80600a5410156118b95760405162461bcd60e51b8152600401610acf90612c65565b600e55565b6118c66119c3565b6001600160a01b03166118d761114d565b6001600160a01b0316146118fd5760405162461bcd60e51b8152600401610acf90612c8e565b6001600160a01b0381166119235760405162461bcd60e51b8152600401610acf906128ec565b61192c81611deb565b50565b6119376119c3565b6001600160a01b031661194861114d565b6001600160a01b03161461196e5760405162461bcd60e51b8152600401610acf90612c8e565b6014548110156119905760405162461bcd60e51b8152600401610acf90612c65565b600a55565b601654610100900460ff1681565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a2e82611d37565b9050600081600001516001600160a01b0316611a486119c3565b6001600160a01b03161480611a7d5750611a606119c3565b6001600160a01b0316611a7284610aa8565b6001600160a01b0316145b80611a9157508151611a91906109396119c3565b905080611ab05760405162461bcd60e51b8152600401610acf90612d49565b846001600160a01b031682600001516001600160a01b031614611ae55760405162461bcd60e51b8152600401610acf90612c1f565b6001600160a01b038416611b0b5760405162461bcd60e51b8152600401610acf906129bf565b611b1885858560016115f4565b611b2860008484600001516119c7565b6001600160a01b0385166000908152600560205260408120805460019290611b5a9084906001600160801b0316613095565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611ba691859116613028565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611c3c84600161304a565b6000818152600460205260409020549091506001600160a01b0316611ce157611c64816119bc565b15611ce15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2f86868660016115f4565b505050505050565b611d3f612464565b611d48826119bc565b611d645760405162461bcd60e51b8152600401610acf90612932565b6000825b818110611dd2576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611dbf579250610a11915050565b5080611dca81613100565b915050611d68565b5060405162461bcd60e51b8152600401610acf90612f62565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b8551811015611eeb576000868281518110611e6b57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611eac578281604051602001611e8f9291906127f5565b604051602081830303815290604052805190602001209250611ed8565b8083604051602001611ebf9291906127f5565b6040516020818303038152906040528051906020012092505b5080611ee381613152565b915050611e40565b509092149392505050565b610de08282604051806020016040528060008152506121aa565b6000611f24846001600160a01b03166123de565b1561202057836001600160a01b031663150b7a02611f406119c3565b8786866040518563ffffffff1660e01b8152600401611f629493929190612846565b602060405180830381600087803b158015611f7c57600080fd5b505af1925050508015611fac575060408051601f3d908101601f19168201909252611fa9918101906126aa565b60015b612006573d808015611fda576040519150601f19603f3d011682016040523d82523d6000602084013e611fdf565b606091505b508051611ffe5760405162461bcd60e51b8152600401610acf90612e08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612024565b5060015b949350505050565b606060198054610a2590613117565b60608161206057506040805180820190915260018152600360fc1b6020820152610a11565b8160005b811561208a578061207481613152565b91506120839050600a83613062565b9150612064565b60008167ffffffffffffffff8111156120b357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120dd576020820181803683370190505b5090505b8415612024576120f26001836130bd565b91506120ff600a8661316d565b61210a90603061304a565b60f81b81838151811061212d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061214f600a86613062565b94506120e1565b60006001600160a01b03821661217e5760405162461bcd60e51b8152600401610acf90612a04565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166121d35760405162461bcd60e51b8152600401610acf90612ed3565b6121dc816119bc565b156121f95760405162461bcd60e51b8152600401610acf90612e5b565b61220660008583866115f4565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612262908790613028565b6001600160801b031681526020018583602001516122809190613028565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156123cb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461238f6000888488611f10565b6123ab5760405162461bcd60e51b8152600401610acf90612e08565b816123b581613152565b92505080806123c390613152565b915050612342565b506001819055611d2f60008785886115f4565b3b151590565b8280546123f090613117565b90600052602060002090601f0160209004810192826124125760008555612458565b82601f1061242b5782800160ff19823516178555612458565b82800160010185558215612458579182015b8281111561245857823582559160200191906001019061243d565b50610f4392915061247b565b604080518082019091526000808252602082015290565b5b80821115610f43576000815560010161247c565b80356001600160a01b0381168114610a1157600080fd5b80358015158114610a1157600080fd5b6000602082840312156124c8578081fd5b61167682612490565b600080604083850312156124e3578081fd5b6124ec83612490565b91506124fa60208401612490565b90509250929050565b600080600060608486031215612517578081fd5b61252084612490565b925061252e60208501612490565b9150604084013590509250925092565b60008060008060808587031215612553578081fd5b61255c85612490565b9350602061256b818701612490565b935060408601359250606086013567ffffffffffffffff8082111561258e578384fd5b818801915088601f8301126125a1578384fd5b8135818111156125b3576125b36131ad565b604051601f8201601f19168101850183811182821017156125d6576125d66131ad565b60405281815283820185018b10156125ec578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561261c578182fd5b61262583612490565b91506124fa602084016124a7565b60008060408385031215612645578182fd5b61264e83612490565b946020939093013593505050565b60006020828403121561266d578081fd5b611676826124a7565b600060208284031215612687578081fd5b5035919050565b60006020828403121561269f578081fd5b8135611676816131c3565b6000602082840312156126bb578081fd5b8151611676816131c3565b600080602083850312156126d8578182fd5b823567ffffffffffffffff808211156126ef578384fd5b818501915085601f830112612702578384fd5b813581811115612710578485fd5b866020828501011115612721578485fd5b60209290920196919550909350505050565b600080600060408486031215612747578283fd5b83359250602084013567ffffffffffffffff80821115612765578384fd5b818601915086601f830112612778578384fd5b813581811115612786578485fd5b8760208083028501011115612799578485fd5b6020830194508093505050509250925092565b600081518084526127c48160208601602086016130d4565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b600083516128158184602088016130d4565b8351908301906128298183602088016130d4565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612879908301846127ac565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261167660208301846127ac565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b60006001600160801b0380831681851680830382111561282957612829613181565b6000821982111561305d5761305d613181565b500190565b60008261307157613071613197565b500490565b600081600019048311821515161561309057613090613181565b500290565b60006001600160801b03838116908316818110156130b5576130b5613181565b039392505050565b6000828210156130cf576130cf613181565b500390565b60005b838110156130ef5781810151838201526020016130d7565b838111156115f45750506000910152565b60008161310f5761310f613181565b506000190190565b60028104600182168061312b57607f821691505b6020821081141561314c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561316657613166613181565b5060010190565b60008261317c5761317c613197565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461192c57600080fdfea2646970667358221220372291080c9032b201fa83e40548e0eeebd22cc3feae62314d6eaa0525d78dfe64736f6c63430008000033

Deployed Bytecode Sourcemap

201:5209:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3090:370:3;;;;;;;;;;-1:-1:-1;3090:370:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4720:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6245:204::-;;;;;;;;;;-1:-1:-1;6245:204:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5808:379::-;;;;;;;;;;-1:-1:-1;5808:379:3;;;;;:::i;:::-;;:::i;:::-;;686:26:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1936:94:3:-;;;;;;;;;;;;;:::i;7095:142::-;;;;;;;;;;-1:-1:-1;7095:142:3;;;;;:::i;:::-;;:::i;824:25:9:-;;;;;;;;;;;;;:::i;2282:744:3:-;;;;;;;;;;-1:-1:-1;2282:744:3;;;;;:::i;:::-;;:::i;4898:206:9:-;;;;;;;;;;-1:-1:-1;4898:206:9;;;;;:::i;:::-;;:::i;4717:175::-;;;;;;;;;;-1:-1:-1;4717:175:9;;;;;:::i;:::-;;:::i;3127:141::-;;;;;;;;;;;;;:::i;5110:197::-;;;;;;;;;;-1:-1:-1;5110:197:9;;;;;:::i;:::-;;:::i;4539:172::-;;;;;;;;;;-1:-1:-1;4539:172:9;;;;;:::i;:::-;;:::i;7300:157:3:-;;;;;;;;;;-1:-1:-1;7300:157:3;;;;;:::i;:::-;;:::i;5313:94:9:-;;;;;;;;;;-1:-1:-1;5313:94:9;;;;;:::i;:::-;;:::i;330:32::-;;;;;;;;;;;;;:::i;716:30::-;;;;;;;;;;;;;:::i;2099:177:3:-;;;;;;;;;;-1:-1:-1;2099:177:3;;;;;:::i;:::-;;:::i;3016:103:9:-;;;;;;;;;;-1:-1:-1;3016:103:9;;;;;:::i;:::-;;:::i;3878:135::-;;;;;;;;;;-1:-1:-1;3878:135:9;;;;;:::i;:::-;;:::i;563:41::-;;;;;;;;;;;;;:::i;4543:118:3:-;;;;;;;;;;-1:-1:-1;4543:118:3;;;;;:::i;:::-;;:::i;3633:108:9:-;;;;;;;;;;-1:-1:-1;3633:108:9;;;;;:::i;:::-;;:::i;3516:211:3:-;;;;;;;;;;-1:-1:-1;3516:211:3;;;;;:::i;:::-;;:::i;506:50:9:-;;;;;;;;;;;;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;369:36:9:-;;;;;;;;;;;;;:::i;3525:102::-;;;;;;;;;;-1:-1:-1;3525:102:9;;;;;:::i;:::-;;:::i;753:33::-;;;;;;;;;;;;;:::i;608:38::-;;;;;;;;;;;;;:::i;999:87:11:-;;;;;;;;;;;;;:::i;3391:128:9:-;;;;;;;;;;-1:-1:-1;3391:128:9;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4190:174::-;;;;;;;;;;-1:-1:-1;4190:174:9;;;;;:::i;:::-;;:::i;1328:900::-;;;;;;:::i;:::-;;:::i;4875:98:3:-;;;;;;;;;;;;;:::i;259:30:9:-;;;;;;;;;;;;;:::i;6513:274:3:-;;;;;;;;;;-1:-1:-1;6513:274:3;;;;;:::i;:::-;;:::i;293:33:9:-;;;;;;;;;;;;;:::i;921:38::-;;;;;;;;;;-1:-1:-1;921:38:9;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;2236:653::-;;;;;;:::i;:::-;;:::i;409:33::-;;;;;;;;;;;;;:::i;7520:311:3:-;;;;;;;;;;-1:-1:-1;7520:311:3;;;;;:::i;:::-;;:::i;5036:394::-;;;;;;;;;;-1:-1:-1;5036:394:3;;;;;:::i;:::-;;:::i;449:53:9:-;;;;;;;;;;;;;:::i;963:27::-;;;;;;;;;;;;;:::i;11857:43:3:-;;;;;;;;;;;;;:::i;3747:125:9:-;;;;;;;;;;-1:-1:-1;3747:125:9;;;;;:::i;:::-;;:::i;3277:109::-;;;;;;;;;;-1:-1:-1;3277:109:9;;;;;:::i;:::-;;:::i;1066:256::-;;;;;;;;;;-1:-1:-1;1066:256:9;;;;;:::i;:::-;;:::i;653:29::-;;;;;;;;;;;;;:::i;6850:186:3:-;;;;;;;;;;-1:-1:-1;6850:186:3;;;;;:::i;:::-;;:::i;4019:165:9:-;;;;;;;;;;-1:-1:-1;4019:165:9;;;;;:::i;:::-;;:::i;1899:192:11:-;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;4370:163:9:-;;;;;;;;;;-1:-1:-1;4370:163:9;;;;;:::i;:::-;;:::i;790:30::-;;;;;;;;;;;;;:::i;3090:370:3:-;3217:4;-1:-1:-1;;;;;;3247:40:3;;-1:-1:-1;;;3247:40:3;;:99;;-1:-1:-1;;;;;;;3298:48:3;;-1:-1:-1;;;3298:48:3;3247:99;:160;;;-1:-1:-1;;;;;;;3357:50:3;;-1:-1:-1;;;3357:50:3;3247:160;:207;;;;3418:36;3442:11;3418:23;:36::i;:::-;3233:221;;3090:370;;;;:::o;4720:94::-;4774:13;4803:5;4796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4720:94;:::o;6245:204::-;6313:7;6337:16;6345:7;6337;:16::i;:::-;6329:74;;;;-1:-1:-1;;;6329:74:3;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;6419:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;6419:24:3;;6245:204::o;5808:379::-;5877:13;5893:24;5909:7;5893:15;:24::i;:::-;5877:40;;5938:5;-1:-1:-1;;;;;5932:11:3;:2;-1:-1:-1;;;;;5932:11:3;;;5924:58;;;;-1:-1:-1;;;5924:58:3;;;;;;;:::i;:::-;6023:5;-1:-1:-1;;;;;6007:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6007:21:3;;:62;;;;6032:37;6049:5;6056:12;:10;:12::i;6032:37::-;5991:153;;;;-1:-1:-1;;;5991:153:3;;;;;;;:::i;:::-;6153:28;6162:2;6166:7;6175:5;6153:8;:28::i;:::-;5808:379;;;:::o;686:26:9:-;;;;:::o;1936:94:3:-;2012:12;;1936:94;:::o;7095:142::-;7203:28;7213:4;7219:2;7223:7;7203:9;:28::i;824:25:9:-;;;;:::o;2282:744:3:-;2391:7;2426:16;2436:5;2426:9;:16::i;:::-;2418:5;:24;2410:71;;;;-1:-1:-1;;;2410:71:3;;;;;;;:::i;:::-;2488:22;2513:13;:11;:13::i;:::-;2488:38;;2533:19;2563:25;2613:9;2608:350;2632:14;2628:1;:18;2608:350;;;2662:31;2696:14;;;:11;:14;;;;;;;;;2662:48;;;;;;;;;-1:-1:-1;;;;;2662:48:3;;;;;-1:-1:-1;;;2662:48:3;;;;;;;;;;;;2723:28;2719:89;;2784:14;;;-1:-1:-1;2719:89:3;2841:5;-1:-1:-1;;;;;2820:26:3;:17;-1:-1:-1;;;;;2820:26:3;;2816:135;;;2878:5;2863:11;:20;2859:59;;;-1:-1:-1;2905:1:3;-1:-1:-1;2898:8:3;;-1:-1:-1;;;2898:8:3;2859:59;2928:13;;;;:::i;:::-;;;;2816:135;-1:-1:-1;2648:3:3;;;;:::i;:::-;;;;2608:350;;;;2964:56;;-1:-1:-1;;;2964:56:3;;;;;;;:::i;2282:744::-;;;;;:::o;4898:206:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5012:8:9::1;4997:11;;:23;;4989:51;;;;-1:-1:-1::0;;;4989:51:9::1;;;;;;;:::i;:::-;5051:34;:45:::0;4898:206::o;4717:175::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4814:15:9::1;;4801:9;:28;;4793:56;;;;-1:-1:-1::0;;;4793:56:9::1;;;;;;;:::i;:::-;4860:12;:24:::0;4717:175::o;3127:141::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3223:37:9::1;::::0;3192:21:::1;::::0;3231:10:::1;::::0;3223:37;::::1;;;::::0;3192:21;;3174:15:::1;3223:37:::0;3174:15;3223:37;3192:21;3231:10;3223:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:11;3127:141:9:o:0;5110:197::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5218:8:9::1;5206;;:20;;5198:48;;;;-1:-1:-1::0;;;5198:48:9::1;;;;;;;:::i;:::-;5257:31;:42:::0;5110:197::o;4539:172::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4635:14:9::1;;4622:9;:27;;4614:55;;;;-1:-1:-1::0;;;4614:55:9::1;;;;;;;:::i;:::-;4680:11;:23:::0;4539:172::o;7300:157:3:-;7412:39;7429:4;7435:2;7439:7;7412:39;;;;;;;;;;;;:16;:39::i;5313:94:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5382:10:9::1;:20:::0;5313:94::o;330:32::-;;;;:::o;716:30::-;;;;:::o;2099:177:3:-;2166:7;2198:13;:11;:13::i;:::-;2190:5;:21;2182:69;;;;-1:-1:-1;;;2182:69:3;;;;;;;:::i;:::-;-1:-1:-1;2265:5:3;2099:177::o;3016:103:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3088:23:9::1;:13;3104:7:::0;;3088:23:::1;:::i;3878:135::-:0;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3949:13:9::1;::::0;::::1;;:23;;::::0;::::1;;;;3941:32;;;::::0;::::1;;3983:13;:22:::0;;-1:-1:-1;;3983:22:9::1;::::0;::::1;;::::0;;;::::1;::::0;;3878:135::o;563:41::-;;;;:::o;4543:118:3:-;4607:7;4630:20;4642:7;4630:11;:20::i;:::-;:25;;4543:118;-1:-1:-1;;4543:118:3:o;3633:108:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3709:13:9::1;:24:::0;3633:108::o;3516:211:3:-;3580:7;-1:-1:-1;;;;;3604:19:3;;3596:75;;;;-1:-1:-1;;;3596:75:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3693:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3693:27:3;;3516:211::o;506:50:9:-;;;;:::o;1650:94:11:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;369:36:9:-;;;;:::o;3525:102::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3598:10:9::1;:21:::0;3525:102::o;753:33::-;;;;;;:::o;608:38::-;;;;:::o;999:87:11:-;1045:7;1072:6;-1:-1:-1;;;;;1072:6:11;999:87;:::o;3391:128:9:-;3457:21;;:::i;:::-;3494:20;3506:7;3494:11;:20::i;4190:174::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4290:8:9::1;4275:11;;:23;;4267:51;;;;-1:-1:-1::0;;;4267:51:9::1;;;;;;;:::i;:::-;4329:16;:27:::0;4190:174::o;1328:900::-;1419:12;1461:10;1444:28;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1444:28:9;;;;;;;;;1434:39;;1444:28;1434:39;;;;1491:13;;1434:39;;-1:-1:-1;1491:13:9;;1478:62;;;;-1:-1:-1;;;1478:62:9;;;;;;;:::i;:::-;1591:11;;1581:6;1564:14;;:23;;;;:::i;:::-;:38;;1551:82;;;;-1:-1:-1;;;1551:82:9;;;;;;;:::i;:::-;1656:49;1675:11;;1656:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1688:10:9;;;-1:-1:-1;1700:4:9;;-1:-1:-1;1656:18:9;:49::i;:::-;1641:116;;;;-1:-1:-1;;;1641:116:9;;;;;;;:::i;:::-;1817:16;;1781:10;1775:17;;;;:5;:17;;;;;:29;:38;;1807:6;;1775:38;:::i;:::-;:58;;1762:117;;;;-1:-1:-1;;;1762:117:9;;;;;;;:::i;:::-;1907:34;;1897:6;:44;;1884:100;;;;-1:-1:-1;;;1884:100:9;;;;;;;:::i;:::-;2031:6;2015:13;;:22;;;;:::i;:::-;2002:9;:35;;1989:78;;;;-1:-1:-1;;;1989:78:9;;;;;;;:::i;:::-;2072:29;2082:10;2094:6;2072:9;:29::i;:::-;2140:6;2123:14;;:23;;;;:::i;:::-;2106:14;:40;2189:10;2183:17;;;;:5;:17;;;;;:29;:38;;2215:6;;2183:38;:::i;:::-;2157:10;2151:17;;;;:5;:17;;;;;:70;-1:-1:-1;;;;1328:900:9:o;4875:98:3:-;4931:13;4960:7;4953:14;;;;;:::i;259:30:9:-;;;;:::o;6513:274:3:-;6616:12;:10;:12::i;:::-;-1:-1:-1;;;;;6604:24:3;:8;-1:-1:-1;;;;;6604:24:3;;;6596:63;;;;-1:-1:-1;;;6596:63:3;;;;;;;:::i;:::-;6713:8;6668:18;:32;6687:12;:10;:12::i;:::-;-1:-1:-1;;;;;6668:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;6668:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;6668:53:3;;;;;;;;;;;6748:12;:10;:12::i;:::-;-1:-1:-1;;;;;6733:48:3;;6772:8;6733:48;;;;;;:::i;:::-;;;;;;;;6513:274;;:::o;293:33:9:-;;;;:::o;921:38::-;;;;;;;;;;;;;;;;;;;:::o;2236:653::-;2306:10;;;;;;;2292:56;;;;-1:-1:-1;;;2292:56:9;;;;;;;:::i;:::-;2396:8;;2386:6;2372:11;;:20;;;;:::i;:::-;:32;;2359:76;;;;-1:-1:-1;;;2359:76:9;;;;;;;:::i;:::-;2492:13;;2459:10;2453:17;;;;:5;:17;;;;;:26;;;:35;;2482:6;;2453:35;:::i;:::-;:52;;2440:111;;;;-1:-1:-1;;;2440:111:9;;;;;;;:::i;:::-;2579:31;;2569:6;:41;;2556:97;;;;-1:-1:-1;;;2556:97:9;;;;;;;:::i;:::-;2697:6;2684:10;;:19;;;;:::i;:::-;2671:9;:32;;2658:75;;;;-1:-1:-1;;;2658:75:9;;;;;;;:::i;:::-;2742:29;2752:10;2764:6;2742:9;:29::i;:::-;2807:6;2793:11;;:20;;;;:::i;:::-;2779:11;:34;2853:10;2847:17;;;;:5;:17;;;;;:26;;;:35;;2876:6;;2847:35;:::i;:::-;2824:10;2818:17;;;;:5;:17;;;;;:26;;:64;-1:-1:-1;2236:653:9:o;409:33::-;;;;:::o;7520:311:3:-;7657:28;7667:4;7673:2;7677:7;7657:9;:28::i;:::-;7708:48;7731:4;7737:2;7741:7;7750:5;7708:22;:48::i;:::-;7692:133;;;;-1:-1:-1;;;7692:133:3;;;;;;;:::i;:::-;7520:311;;;;:::o;5036:394::-;5134:13;5175:16;5183:7;5175;:16::i;:::-;5159:97;;;;-1:-1:-1;;;5159:97:3;;;;;;;:::i;:::-;5265:21;5289:10;:8;:10::i;:::-;5265:34;;5344:1;5326:7;5320:21;:25;:104;;;;;;;;;;;;;;;;;5381:7;5390:18;:7;:16;:18::i;:::-;5364:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5320:104;5306:118;5036:394;-1:-1:-1;;;5036:394:3:o;449:53:9:-;;;;:::o;963:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11857:43:3:-;;;;:::o;3747:125:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3819:10:9::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;3811:29;;;::::0;::::1;;3845:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;3845:19:9;;::::1;::::0;;;::::1;::::0;;3747:125::o;3277:109::-;3335:7;3358:20;3372:5;3358:13;:20::i;1066:256::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1191:12:9::1;;1181:6;1163:15;;:24;;;;:::i;:::-;:40;;1141:100;;;;-1:-1:-1::0;;;1141:100:9::1;;;;;;;:::i;:::-;1246:22;1256:3;1261:6;1246:9;:22::i;:::-;1309:6;1291:15;;:24;;;;:::i;:::-;1273:15;:42:::0;-1:-1:-1;;1066:256:9:o;653:29::-;;;;:::o;6850:186:3:-;-1:-1:-1;;;;;6995:25:3;;;6972:4;6995:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;6850:186::o;4019:165:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4113:8:9::1;4101;;:20;;4093:48;;;;-1:-1:-1::0;;;4093:48:9::1;;;;;;;:::i;:::-;4152:13;:24:::0;4019:165::o;1899:192:11:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:11::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;4370:163:9:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4463:11:9::1;;4450:9;:24;;4442:52;;;;-1:-1:-1::0;;;4442:52:9::1;;;;;;;:::i;:::-;4505:8;:20:::0;4370:163::o;790:30::-;;;;;;;;;:::o;787:157:2:-;-1:-1:-1;;;;;;896:40:2;;-1:-1:-1;;;896:40:2;787:157;;;:::o;8070:105:3:-;8157:12;;-1:-1:-1;8147:22:3;8070:105::o;601:98:1:-;681:10;601:98;:::o;11679:172:3:-;11776:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11776:29:3;-1:-1:-1;;;;;11776:29:3;;;;;;;;;11817:28;;11776:24;;11817:28;;;;;;;11679:172;;;:::o;10044:1529::-;10141:35;10179:20;10191:7;10179:11;:20::i;:::-;10141:58;;10208:22;10250:13;:18;;;-1:-1:-1;;;;;10234:34:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10234:34:3;;:81;;;;10303:12;:10;:12::i;:::-;-1:-1:-1;;;;;10279:36:3;:20;10291:7;10279:11;:20::i;:::-;-1:-1:-1;;;;;10279:36:3;;10234:81;:142;;;-1:-1:-1;10343:18:3;;10326:50;;10363:12;:10;:12::i;10326:50::-;10208:169;;10402:17;10386:101;;;;-1:-1:-1;;;10386:101:3;;;;;;;:::i;:::-;10534:4;-1:-1:-1;;;;;10512:26:3;:13;:18;;;-1:-1:-1;;;;;10512:26:3;;10496:98;;;;-1:-1:-1;;;10496:98:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10609:16:3;;10601:66;;;;-1:-1:-1;;;10601:66:3;;;;;;;:::i;:::-;10676:43;10698:4;10704:2;10708:7;10717:1;10676:21;:43::i;:::-;10776:49;10793:1;10797:7;10806:13;:18;;;10776:8;:49::i;:::-;-1:-1:-1;;;;;10834:18:3;;;;;;:12;:18;;;;;:31;;10864:1;;10834:18;:31;;10864:1;;-1:-1:-1;;;;;10834:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;10834:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;10872:16:3;;-1:-1:-1;10872:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;10872:16:3;;:29;;-1:-1:-1;;10872:29:3;;:::i;:::-;;;-1:-1:-1;;;;;10872:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10931:43:3;;;;;;;;-1:-1:-1;;;;;10931:43:3;;;;;;10957:15;10931:43;;;;;;;;;-1:-1:-1;10908:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;10908:66:3;-1:-1:-1;;;;10908:66:3;;;;-1:-1:-1;;;;;;10908:66:3;;;;;;;;11224:11;10920:7;-1:-1:-1;11224:11:3;:::i;:::-;11287:1;11246:24;;;:11;:24;;;;;:29;11202:33;;-1:-1:-1;;;;;;11246:29:3;11242:236;;11304:20;11312:11;11304:7;:20::i;:::-;11300:171;;;11364:97;;;;;;;;11391:18;;-1:-1:-1;;;;;11364:97:3;;;;;;11422:28;;;;11364:97;;;;;;;;;;-1:-1:-1;11337:24:3;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;11337:124:3;;;;;;;;;-1:-1:-1;;;;11337:124:3;-1:-1:-1;;;11337:124:3;;;;;;;;;;;;;;11300:171;11510:7;11506:2;-1:-1:-1;;;;;11491:27:3;11500:4;-1:-1:-1;;;;;11491:27:3;;;;;;;;;;;11525:42;11546:4;11552:2;11556:7;11565:1;11525:20;:42::i;:::-;10044:1529;;;;;;:::o;3979:510::-;4055:21;;:::i;:::-;4096:16;4104:7;4096;:16::i;:::-;4088:71;;;;-1:-1:-1;;;4088:71:3;;;;;;;:::i;:::-;4168:26;4224:7;4204:214;4241:18;4233:4;:26;4204:214;;4278:31;4312:17;;;:11;:17;;;;;;;;;4278:51;;;;;;;;;-1:-1:-1;;;;;4278:51:3;;;;;-1:-1:-1;;;4278:51:3;;;;;;;;;;;;4342:28;4338:73;;4392:9;-1:-1:-1;4385:16:3;;-1:-1:-1;;4385:16:3;4338:73;-1:-1:-1;4261:6:3;;;;:::i;:::-;;;;4204:214;;;;4426:57;;-1:-1:-1;;;4426:57:3;;;;;;;:::i;2099:173:11:-;2155:16;2174:6;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;2224:40;;2174:6;;;;;;;2224:40;;2155:16;2224:40;2099:173;;:::o;423:830:10:-;548:4;588;548;605:525;629:5;:12;625:1;:16;605:525;;;663:20;686:5;692:1;686:8;;;;;;-1:-1:-1;;;686:8:10;;;;;;;;;;;;;;;663:31;;731:12;715;:28;711:408;;885:12;899;868:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;858:55;;;;;;843:70;;711:408;;;1075:12;1089;1058:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1048:55;;;;;;1033:70;;711:408;-1:-1:-1;643:3:10;;;;:::i;:::-;;;;605:525;;;-1:-1:-1;1225:20:10;;;;423:830;-1:-1:-1;;;423:830:10:o;8181:98:3:-;8246:27;8256:2;8260:8;8246:27;;;;;;;;;;;;:9;:27::i;13310:690::-;13447:4;13464:15;:2;-1:-1:-1;;;;;13464:13:3;;:15::i;:::-;13460:535;;;13519:2;-1:-1:-1;;;;;13503:36:3;;13540:12;:10;:12::i;:::-;13554:4;13560:7;13569:5;13503:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13503:72:3;;;;;;;;-1:-1:-1;;13503:72:3;;;;;;;;;;;;:::i;:::-;;;13490:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13734:13:3;;13730:215;;13767:61;;-1:-1:-1;;;13767:61:3;;;;;;;:::i;13730:215::-;13913:6;13907:13;13898:6;13894:2;13890:15;13883:38;13490:464;-1:-1:-1;;;;;;13625:55:3;-1:-1:-1;;;13625:55:3;;-1:-1:-1;13618:62:3;;13460:535;-1:-1:-1;13983:4:3;13460:535;13310:690;;;;;;:::o;2898:110:9:-;2958:13;2987;2980:20;;;;;:::i;288:723:13:-;344:13;565:10;561:53;;-1:-1:-1;592:10:13;;;;;;;;;;;;-1:-1:-1;;;592:10:13;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:13;;-1:-1:-1;744:2:13;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:13;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:13;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:13;;;;;;;;-1:-1:-1;949:11:13;958:2;949:11;;:::i;:::-;;;818:154;;3733:240:3;3794:7;-1:-1:-1;;;;;3826:19:3;;3810:102;;;;-1:-1:-1;;;3810:102:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3934:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;3934:32:3;;-1:-1:-1;;;;;3934:32:3;;3733:240::o;8618:1194::-;8746:12;;-1:-1:-1;;;;;8773:16:3;;8765:62;;;;-1:-1:-1;;;8765:62:3;;;;;;;:::i;:::-;8964:21;8972:12;8964:7;:21::i;:::-;8963:22;8955:64;;;;-1:-1:-1;;;8955:64:3;;;;;;;:::i;:::-;9028:61;9058:1;9062:2;9066:12;9080:8;9028:21;:61::i;:::-;-1:-1:-1;;;;;9131:16:3;;9098:30;9131:16;;;:12;:16;;;;;;;;;9098:49;;;;;;;;;-1:-1:-1;;;;;9098:49:3;;;;;-1:-1:-1;;;9098:49:3;;;;;;;;;;;9173:119;;;;;;;;9193:19;;9098:49;;9173:119;;;9193:39;;9223:8;;9193:39;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;9276:8;9241:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;;-1:-1:-1;;;;;9154:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;9154:138:3;;;;-1:-1:-1;;9154:138:3;;;;;;;;;;;;;;;;;9327:43;;;;;;;;;;;9353:15;9327:43;;;;;;;;9299:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9299:71:3;-1:-1:-1;;;;9299:71:3;;;;-1:-1:-1;;;;;;9299:71:3;;;;;;;;;;;;;;;9311:12;;9423:281;9447:8;9443:1;:12;9423:281;;;9476:38;;9501:12;;-1:-1:-1;;;;;9476:38:3;;;9493:1;;9476:38;;9493:1;;9476:38;9541:59;9572:1;9576:2;9580:12;9594:5;9541:22;:59::i;:::-;9523:150;;;;-1:-1:-1;;;9523:150:3;;;;;;;:::i;:::-;9682:14;;;;:::i;:::-;;;;9457:3;;;;;:::i;:::-;;;;9423:281;;;-1:-1:-1;9712:12:3;:27;;;9746:60;9775:1;9779:2;9783:12;9797:8;9746:20;:60::i;743:387:0:-;1066:20;1114:8;;;743:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:14;84:20;;-1:-1:-1;;;;;133:31:14;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:1178::-;;;;;1362:3;1350:9;1341:7;1337:23;1333:33;1330:2;;;1384:6;1376;1369:22;1330:2;1412:31;1433:9;1412:31;:::i;:::-;1402:41;;1462:2;1483:40;1519:2;1508:9;1504:18;1483:40;:::i;:::-;1473:50;;1570:2;1559:9;1555:18;1542:32;1532:42;;1625:2;1614:9;1610:18;1597:32;1648:18;1689:2;1681:6;1678:14;1675:2;;;1710:6;1702;1695:22;1675:2;1753:6;1742:9;1738:22;1728:32;;1798:7;1791:4;1787:2;1783:13;1779:27;1769:2;;1825:6;1817;1810:22;1769:2;1866;1853:16;1888:2;1884;1881:10;1878:2;;;1894:18;;:::i;:::-;1943:2;1937:9;2012:2;1993:13;;-1:-1:-1;;1989:27:14;1977:40;;1973:49;;2037:18;;;2057:22;;;2034:46;2031:2;;;2083:18;;:::i;:::-;2119:2;2112:22;2143:18;;;2180:11;;;2176:20;;2173:33;-1:-1:-1;2170:2:14;;;2224:6;2216;2209:22;2170:2;2285;2280;2276;2272:11;2267:2;2259:6;2255:15;2242:46;2308:15;;;2304:24;;;2297:40;;;;-1:-1:-1;1320:1048:14;;;;-1:-1:-1;1320:1048:14;;-1:-1:-1;;1320:1048:14:o;2373:268::-;;;2499:2;2487:9;2478:7;2474:23;2470:32;2467:2;;;2520:6;2512;2505:22;2467:2;2548:31;2569:9;2548:31;:::i;:::-;2538:41;;2598:37;2631:2;2620:9;2616:18;2598:37;:::i;2646:266::-;;;2775:2;2763:9;2754:7;2750:23;2746:32;2743:2;;;2796:6;2788;2781:22;2743:2;2824:31;2845:9;2824:31;:::i;:::-;2814:41;2902:2;2887:18;;;;2874:32;;-1:-1:-1;;;2733:179:14:o;2917:192::-;;3026:2;3014:9;3005:7;3001:23;2997:32;2994:2;;;3047:6;3039;3032:22;2994:2;3075:28;3093:9;3075:28;:::i;3114:190::-;;3226:2;3214:9;3205:7;3201:23;3197:32;3194:2;;;3247:6;3239;3232:22;3194:2;-1:-1:-1;3275:23:14;;3184:120;-1:-1:-1;3184:120:14:o;3309:257::-;;3420:2;3408:9;3399:7;3395:23;3391:32;3388:2;;;3441:6;3433;3426:22;3388:2;3485:9;3472:23;3504:32;3530:5;3504:32;:::i;3571:261::-;;3693:2;3681:9;3672:7;3668:23;3664:32;3661:2;;;3714:6;3706;3699:22;3661:2;3751:9;3745:16;3770:32;3796:5;3770:32;:::i;3837:642::-;;;3969:2;3957:9;3948:7;3944:23;3940:32;3937:2;;;3990:6;3982;3975:22;3937:2;4035:9;4022:23;4064:18;4105:2;4097:6;4094:14;4091:2;;;4126:6;4118;4111:22;4091:2;4169:6;4158:9;4154:22;4144:32;;4214:7;4207:4;4203:2;4199:13;4195:27;4185:2;;4241:6;4233;4226:22;4185:2;4286;4273:16;4312:2;4304:6;4301:14;4298:2;;;4333:6;4325;4318:22;4298:2;4383:7;4378:2;4369:6;4365:2;4361:15;4357:24;4354:37;4351:2;;;4409:6;4401;4394:22;4351:2;4445;4437:11;;;;;4467:6;;-1:-1:-1;3927:552:14;;-1:-1:-1;;;;3927:552:14:o;4679:734::-;;;;4843:2;4831:9;4822:7;4818:23;4814:32;4811:2;;;4864:6;4856;4849:22;4811:2;4905:9;4892:23;4882:33;;4966:2;4955:9;4951:18;4938:32;4989:18;5030:2;5022:6;5019:14;5016:2;;;5051:6;5043;5036:22;5016:2;5094:6;5083:9;5079:22;5069:32;;5139:7;5132:4;5128:2;5124:13;5120:27;5110:2;;5166:6;5158;5151:22;5110:2;5211;5198:16;5237:2;5229:6;5226:14;5223:2;;;5258:6;5250;5243:22;5223:2;5317:7;5312:2;5306;5298:6;5294:15;5290:2;5286:24;5282:33;5279:46;5276:2;;;5343:6;5335;5328:22;5276:2;5379;5375;5371:11;5361:21;;5401:6;5391:16;;;;;4801:612;;;;;:::o;5418:259::-;;5499:5;5493:12;5526:6;5521:3;5514:19;5542:63;5598:6;5591:4;5586:3;5582:14;5575:4;5568:5;5564:16;5542:63;:::i;:::-;5659:2;5638:15;-1:-1:-1;;5634:29:14;5625:39;;;;5666:4;5621:50;;5469:208;-1:-1:-1;;5469:208:14:o;5682:229::-;5831:2;5827:15;;;;-1:-1:-1;;5823:53:14;5811:66;;5902:2;5893:12;;5801:110::o;5916:247::-;6073:19;;;6117:2;6108:12;;6101:28;6154:2;6145:12;;6063:100::o;6168:470::-;;6385:6;6379:13;6401:53;6447:6;6442:3;6435:4;6427:6;6423:17;6401:53;:::i;:::-;6517:13;;6476:16;;;;6539:57;6517:13;6476:16;6573:4;6561:17;;6539:57;:::i;:::-;6612:20;;6355:283;-1:-1:-1;;;;6355:283:14:o;6643:203::-;-1:-1:-1;;;;;6807:32:14;;;;6789:51;;6777:2;6762:18;;6744:102::o;6851:490::-;-1:-1:-1;;;;;7120:15:14;;;7102:34;;7172:15;;7167:2;7152:18;;7145:43;7219:2;7204:18;;7197:34;;;7267:3;7262:2;7247:18;;7240:31;;;6851:490;;7288:47;;7315:19;;7307:6;7288:47;:::i;:::-;7280:55;7054:287;-1:-1:-1;;;;;;7054:287:14:o;7346:187::-;7511:14;;7504:22;7486:41;;7474:2;7459:18;;7441:92::o;7538:177::-;7684:25;;;7672:2;7657:18;;7639:76::o;7720:221::-;;7869:2;7858:9;7851:21;7889:46;7931:2;7920:9;7916:18;7908:6;7889:46;:::i;7946:398::-;8148:2;8130:21;;;8187:2;8167:18;;;8160:30;8226:34;8221:2;8206:18;;8199:62;-1:-1:-1;;;8292:2:14;8277:18;;8270:32;8334:3;8319:19;;8120:224::o;8349:402::-;8551:2;8533:21;;;8590:2;8570:18;;;8563:30;8629:34;8624:2;8609:18;;8602:62;-1:-1:-1;;;8695:2:14;8680:18;;8673:36;8741:3;8726:19;;8523:228::o;8756:406::-;8958:2;8940:21;;;8997:2;8977:18;;;8970:30;9036:34;9031:2;9016:18;;9009:62;-1:-1:-1;;;9102:2:14;9087:18;;9080:40;9152:3;9137:19;;8930:232::o;9167:399::-;9369:2;9351:21;;;9408:2;9388:18;;;9381:30;9447:34;9442:2;9427:18;;9420:62;-1:-1:-1;;;9513:2:14;9498:18;;9491:33;9556:3;9541:19;;9341:225::o;9571:401::-;9773:2;9755:21;;;9812:2;9792:18;;;9785:30;9851:34;9846:2;9831:18;;9824:62;-1:-1:-1;;;9917:2:14;9902:18;;9895:35;9962:3;9947:19;;9745:227::o;9977:413::-;10179:2;10161:21;;;10218:2;10198:18;;;10191:30;10257:34;10252:2;10237:18;;10230:62;-1:-1:-1;;;10323:2:14;10308:18;;10301:47;10380:3;10365:19;;10151:239::o;10395:332::-;10597:2;10579:21;;;10636:1;10616:18;;;10609:29;-1:-1:-1;;;10669:2:14;10654:18;;10647:39;10718:2;10703:18;;10569:158::o;10732:342::-;10934:2;10916:21;;;10973:2;10953:18;;;10946:30;-1:-1:-1;;;11007:2:14;10992:18;;10985:48;11065:2;11050:18;;10906:168::o;11079:346::-;11281:2;11263:21;;;11320:2;11300:18;;;11293:30;-1:-1:-1;;;11354:2:14;11339:18;;11332:52;11416:2;11401:18;;11253:172::o;11430:397::-;11632:2;11614:21;;;11671:2;11651:18;;;11644:30;11710:34;11705:2;11690:18;;11683:62;-1:-1:-1;;;11776:2:14;11761:18;;11754:31;11817:3;11802:19;;11604:223::o;11832:354::-;12034:2;12016:21;;;12073:2;12053:18;;;12046:30;12112:32;12107:2;12092:18;;12085:60;12177:2;12162:18;;12006:180::o;12191:421::-;12393:2;12375:21;;;12432:2;12412:18;;;12405:30;12471:34;12466:2;12451:18;;12444:62;12542:27;12537:2;12522:18;;12515:55;12602:3;12587:19;;12365:247::o;12617:341::-;12819:2;12801:21;;;12858:2;12838:18;;;12831:30;-1:-1:-1;;;12892:2:14;12877:18;;12870:47;12949:2;12934:18;;12791:167::o;12963:407::-;13165:2;13147:21;;;13204:2;13184:18;;;13177:30;13243:34;13238:2;13223:18;;13216:62;-1:-1:-1;;;13309:2:14;13294:18;;13287:41;13360:3;13345:19;;13137:233::o;13375:402::-;13577:2;13559:21;;;13616:2;13596:18;;;13589:30;13655:34;13650:2;13635:18;;13628:62;-1:-1:-1;;;13721:2:14;13706:18;;13699:36;13767:3;13752:19;;13549:228::o;13782:339::-;13984:2;13966:21;;;14023:2;14003:18;;;13996:30;-1:-1:-1;;;14057:2:14;14042:18;;14035:45;14112:2;14097:18;;13956:165::o;14126:356::-;14328:2;14310:21;;;14347:18;;;14340:30;14406:34;14401:2;14386:18;;14379:62;14473:2;14458:18;;14300:182::o;14487:411::-;14689:2;14671:21;;;14728:2;14708:18;;;14701:30;14767:34;14762:2;14747:18;;14740:62;-1:-1:-1;;;14833:2:14;14818:18;;14811:45;14888:3;14873:19;;14661:237::o;14903:350::-;15105:2;15087:21;;;15144:2;15124:18;;;15117:30;15183:28;15178:2;15163:18;;15156:56;15244:2;15229:18;;15077:176::o;15258:414::-;15460:2;15442:21;;;15499:2;15479:18;;;15472:30;15538:34;15533:2;15518:18;;15511:62;-1:-1:-1;;;15604:2:14;15589:18;;15582:48;15662:3;15647:19;;15432:240::o;15677:341::-;15879:2;15861:21;;;15918:2;15898:18;;;15891:30;-1:-1:-1;;;15952:2:14;15937:18;;15930:47;16009:2;15994:18;;15851:167::o;16023:398::-;16225:2;16207:21;;;16264:2;16244:18;;;16237:30;16303:34;16298:2;16283:18;;16276:62;-1:-1:-1;;;16369:2:14;16354:18;;16347:32;16411:3;16396:19;;16197:224::o;16426:415::-;16628:2;16610:21;;;16667:2;16647:18;;;16640:30;16706:34;16701:2;16686:18;;16679:62;-1:-1:-1;;;16772:2:14;16757:18;;16750:49;16831:3;16816:19;;16600:241::o;16846:353::-;17048:2;17030:21;;;17087:2;17067:18;;;17060:30;17126:31;17121:2;17106:18;;17099:59;17190:2;17175:18;;17020:179::o;17204:397::-;17406:2;17388:21;;;17445:2;17425:18;;;17418:30;17484:34;17479:2;17464:18;;17457:62;-1:-1:-1;;;17550:2:14;17535:18;;17528:31;17591:3;17576:19;;17378:223::o;17606:397::-;17808:2;17790:21;;;17847:2;17827:18;;;17820:30;17886:34;17881:2;17866:18;;17859:62;-1:-1:-1;;;17952:2:14;17937:18;;17930:31;17993:3;17978:19;;17780:223::o;18008:410::-;18210:2;18192:21;;;18249:2;18229:18;;;18222:30;18288:34;18283:2;18268:18;;18261:62;-1:-1:-1;;;18354:2:14;18339:18;;18332:44;18408:3;18393:19;;18182:236::o;18423:411::-;18625:2;18607:21;;;18664:2;18644:18;;;18637:30;18703:34;18698:2;18683:18;;18676:62;-1:-1:-1;;;18769:2:14;18754:18;;18747:45;18824:3;18809:19;;18597:237::o;18839:409::-;19041:2;19023:21;;;19080:2;19060:18;;;19053:30;19119:34;19114:2;19099:18;;19092:62;-1:-1:-1;;;19185:2:14;19170:18;;19163:43;19238:3;19223:19;;19013:235::o;19253:360::-;19483:13;;-1:-1:-1;;;;;19479:39:14;19461:58;;19579:4;19567:17;;;19561:24;19587:18;19557:49;19535:20;;;19528:79;;;;19449:2;19434:18;;19416:197::o;20053:253::-;;-1:-1:-1;;;;;20182:2:14;20179:1;20175:10;20212:2;20209:1;20205:10;20243:3;20239:2;20235:12;20230:3;20227:21;20224:2;;;20251:18;;:::i;20311:128::-;;20382:1;20378:6;20375:1;20372:13;20369:2;;;20388:18;;:::i;:::-;-1:-1:-1;20424:9:14;;20359:80::o;20444:120::-;;20510:1;20500:2;;20515:18;;:::i;:::-;-1:-1:-1;20549:9:14;;20490:74::o;20569:168::-;;20675:1;20671;20667:6;20663:14;20660:1;20657:21;20652:1;20645:9;20638:17;20634:45;20631:2;;;20682:18;;:::i;:::-;-1:-1:-1;20722:9:14;;20621:116::o;20742:246::-;;-1:-1:-1;;;;;20895:10:14;;;;20865;;20917:12;;;20914:2;;;20932:18;;:::i;:::-;20969:13;;20791:197;-1:-1:-1;;;20791:197:14:o;20993:125::-;;21061:1;21058;21055:8;21052:2;;;21066:18;;:::i;:::-;-1:-1:-1;21103:9:14;;21042:76::o;21123:258::-;21195:1;21205:113;21219:6;21216:1;21213:13;21205:113;;;21295:11;;;21289:18;21276:11;;;21269:39;21241:2;21234:10;21205:113;;;21336:6;21333:1;21330:13;21327:2;;;-1:-1:-1;;21371:1:14;21353:16;;21346:27;21176:205::o;21386:136::-;;21453:5;21443:2;;21462:18;;:::i;:::-;-1:-1:-1;;;21498:18:14;;21433:89::o;21527:380::-;21612:1;21602:12;;21659:1;21649:12;;;21670:2;;21724:4;21716:6;21712:17;21702:27;;21670:2;21777;21769:6;21766:14;21746:18;21743:38;21740:2;;;21823:10;21818:3;21814:20;21811:1;21804:31;21858:4;21855:1;21848:15;21886:4;21883:1;21876:15;21740:2;;21582:325;;;:::o;21912:135::-;;-1:-1:-1;;21972:17:14;;21969:2;;;21992:18;;:::i;:::-;-1:-1:-1;22039:1:14;22028:13;;21959:88::o;22052:112::-;;22110:1;22100:2;;22115:18;;:::i;:::-;-1:-1:-1;22149:9:14;;22090:74::o;22169:127::-;22230:10;22225:3;22221:20;22218:1;22211:31;22261:4;22258:1;22251:15;22285:4;22282:1;22275:15;22301:127;22362:10;22357:3;22353:20;22350:1;22343:31;22393:4;22390:1;22383:15;22417:4;22414:1;22407:15;22433:127;22494:10;22489:3;22485:20;22482:1;22475:31;22525:4;22522:1;22515:15;22549:4;22546:1;22539:15;22565:133;-1:-1:-1;;;;;;22641:32:14;;22631:43;;22621:2;;22688:1;22685;22678:12

Swarm Source

ipfs://372291080c9032b201fa83e40548e0eeebd22cc3feae62314d6eaa0525d78dfe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.