ETH Price: $3,128.44 (-5.15%)
Gas: 4 Gwei

Token

Furu Girls (FG)
 

Overview

Max Total Supply

15,826 FG

Holders

1,489

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 FG
0xcf08b3fadc8d36d42eeb510b4d9e770f97fe81d2
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:
FuruGirls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-18
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-17
*/

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


pragma solidity ^0.8.0;


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


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








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




pragma solidity ^0.8.0;


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


pragma solidity ^0.8.0;


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


pragma solidity ^0.8.0;


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

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


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


pragma solidity ^0.8.0;


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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal  collectionSize;
  uint256 internal  collectionSizeFree;
  uint256 internal  maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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


pragma solidity ^0.8.0;


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


pragma solidity ^0.8.0;


contract FuruGirls is Ownable, ERC721A, ReentrancyGuard {
  uint256 public maxPerAddressDuringMint;
  uint256 public amountForDevs;
  uint256 public price = 0.005 ether;
  uint256 public freemintAmount = 2;
  uint256 public mintAmount = 10;

  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 collectionSizeFree_,
    uint256 amountForDevs_
  ) ERC721A("Furu Girls", "FG", maxBatchSize_, collectionSize_, collectionSizeFree_) {
    maxPerAddressDuringMint = 20;
    amountForDevs = amountForDevs_;
    
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function webmint(uint256 quantity)
    external
    payable
    callerIsUser
  {
      require(quantity <= mintAmount, "Too many minted at once");
      require(msg.value >= price * quantity, "Need to send more ETH.");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    _safeMint(msg.sender, quantity);
    
  }


  function mint(uint256 quantity) external payable {address _caller = _msgSender();
     
        require(quantity > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts"); 

        if(collectionSizeFree >= totalSupply())

        {require(freemintAmount >= quantity , "Excess max per free tx");} 


     else
     
     {require(mintAmount >= quantity , "Excess max per paid tx");
     
     require(msg.value >= price * quantity, "Need to send more ETH.");
     
     }
    
    _safeMint(msg.sender, quantity);

     }

  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
  function Mint(uint256 quantity) external onlyOwner {
    
     require(totalSupply() + quantity <= amountForDevs, "reached max supply");
    _safeMint(msg.sender, quantity);
  }
    

  // // metadata URI
  string private _baseTokenURI;

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

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

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

  function setfreemints(uint256 _newfreemints) public onlyOwner {
	    collectionSizeFree = _newfreemints;
	}

    function setcollectionSize(uint256 _newcollectionSize) public onlyOwner {
	    collectionSize = _newcollectionSize;
	}

    function setamountForDevs(uint256 _newamountForDevs) public onlyOwner {
	    amountForDevs = _newamountForDevs;
	}

    function setfreemintAmount(uint256 _newfreemintAmount) public onlyOwner {
	    freemintAmount = _newfreemintAmount;
	}

    function setmintAmount(uint256 _newmintAmount) public onlyOwner {
	    mintAmount = _newmintAmount;
	}


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSizeFree_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintAmount","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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newamountForDevs","type":"uint256"}],"name":"setamountForDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcollectionSize","type":"uint256"}],"name":"setcollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemintAmount","type":"uint256"}],"name":"setfreemintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemints","type":"uint256"}],"name":"setfreemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmintAmount","type":"uint256"}],"name":"setmintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","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":"quantity","type":"uint256"}],"name":"webmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006001556000600b556611c37937e08000600f556002601055600a6011553480156200003057600080fd5b5060405162002f0e38038062002f0e8339810160408190526200005391620002c8565b6040518060400160405280600a81526020016946757275204769726c7360b01b81525060405180604001604052806002815260200161464760f01b815250858585620000ae620000a8620001ce60201b60201c565b620001d2565b600082116200011b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600083116200017d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000112565b84516200019290600590602088019062000222565b508351620001a890600690602087019062000222565b5060049290925560025560035550506001600c556014600d55600e55506200033c915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023090620002ff565b90600052602060002090601f0160209004810192826200025457600085556200029f565b82601f106200026f57805160ff19168380011785556200029f565b828001600101855582156200029f579182015b828111156200029f57825182559160200191906001019062000282565b50620002ad929150620002b1565b5090565b5b80821115620002ad5760008155600101620002b2565b60008060008060808587031215620002df57600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200031457607f821691505b602082108114156200033657634e487b7160e01b600052602260045260246000fd5b50919050565b612bc2806200034c6000396000f3fe6080604052600436106102515760003560e01c80638bc35c2f11610139578063ac446002116100b6578063d49f0fa51161007a578063d49f0fa5146106f7578063d7224ba014610717578063dc33e6811461072d578063e985e9c51461074d578063f2fde38b14610796578063fbe1aa51146107b657600080fd5b8063ac44600214610662578063b05863d514610677578063b88d4fde14610697578063c87b56dd146106b7578063d0d99907146106d757600080fd5b80639f8afbcc116100fd5780639f8afbcc146105cc578063a035b1fe146105ec578063a0712d6814610602578063a22cb46514610615578063a7cd52cb1461063557600080fd5b80638bc35c2f146104fe5780638da5cb5b1461051457806390aa0b0f146105325780639231ab2a1461056a57806395d89b41146105b757600080fd5b8063280b7eed116101d257806355f804b31161019657806355f804b3146104535780635a2bcc18146104735780636352211e1461048957806370a08231146104a9578063715018a6146104c957806380e28ea5146104de57600080fd5b8063280b7eed146103c05780632d20fb60146103d35780632f745c59146103f357806342842e0e146104135780634f6ccce71461043357600080fd5b8063130db2bb11610219578063130db2bb1461032757806318160ddd1461034b57806321b2a6cb1461036057806323b872dd1461038057806327e410f1146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b57806307883703146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461277b565b6107cc565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610839565b60405161028291906128d7565b3480156102b957600080fd5b506102cd6102c8366004612826565b6108cb565b005b3480156102db57600080fd5b506102ef6102ea366004612826565b610965565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102cd61032236600461268b565b6109f0565b34801561033357600080fd5b5061033d60105481565b604051908152602001610282565b34801561035757600080fd5b5060015461033d565b34801561036c57600080fd5b506102cd61037b366004612826565b610b08565b34801561038c57600080fd5b506102cd61039b366004612554565b610b37565b3480156103ac57600080fd5b506102cd6103bb366004612826565b610b42565b6102cd6103ce366004612826565b610b71565b3480156103df57600080fd5b506102cd6103ee366004612826565b610c75565b3480156103ff57600080fd5b5061033d61040e36600461268b565b610d08565b34801561041f57600080fd5b506102cd61042e366004612554565b610e80565b34801561043f57600080fd5b5061033d61044e366004612826565b610e9b565b34801561045f57600080fd5b506102cd61046e3660046127b5565b610f04565b34801561047f57600080fd5b5061033d60115481565b34801561049557600080fd5b506102ef6104a4366004612826565b610f3a565b3480156104b557600080fd5b5061033d6104c4366004612506565b610f4c565b3480156104d557600080fd5b506102cd610fdd565b3480156104ea57600080fd5b506102cd6104f9366004612826565b611013565b34801561050a57600080fd5b5061033d600d5481565b34801561052057600080fd5b506000546001600160a01b03166102ef565b34801561053e57600080fd5b50601254610552906001600160401b031681565b6040516001600160401b039091168152602001610282565b34801561057657600080fd5b5061058a610585366004612826565b611042565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610282565b3480156105c357600080fd5b506102a061105f565b3480156105d857600080fd5b506102cd6105e7366004612826565b61106e565b3480156105f857600080fd5b5061033d600f5481565b6102cd610610366004612826565b61109d565b34801561062157600080fd5b506102cd61063036600461264f565b611229565b34801561064157600080fd5b5061033d610650366004612506565b60136020526000908152604090205481565b34801561066e57600080fd5b506102cd6112ee565b34801561068357600080fd5b506102cd6106923660046126b5565b6113fb565b3480156106a357600080fd5b506102cd6106b2366004612590565b611502565b3480156106c357600080fd5b506102a06106d2366004612826565b61153b565b3480156106e357600080fd5b506102cd6106f2366004612826565b611608565b34801561070357600080fd5b506102cd610712366004612826565b611637565b34801561072357600080fd5b5061033d600b5481565b34801561073957600080fd5b5061033d610748366004612506565b611666565b34801561075957600080fd5b50610276610768366004612521565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cd6107b1366004612506565b611671565b3480156107c257600080fd5b5061033d600e5481565b60006001600160e01b031982166380ac58cd60e01b14806107fd57506001600160e01b03198216635b5e139f60e01b145b8061081857506001600160e01b0319821663780e9d6360e01b145b8061083357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606005805461084890612ab4565b80601f016020809104026020016040519081016040528092919081815260200182805461087490612ab4565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b6000546001600160a01b031633146108fe5760405162461bcd60e51b81526004016108f5906128ea565b60405180910390fd5b600e548161090b60015490565b61091591906129e7565b11156109585760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108f5565b6109623382611709565b50565b6000610972826001541190565b6109d45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108f5565b506000908152600960205260409020546001600160a01b031690565b60006109fb82610f3a565b9050806001600160a01b0316836001600160a01b03161415610a6a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f5565b336001600160a01b0382161480610a865750610a868133610768565b610af85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f5565b610b03838383611723565b505050565b6000546001600160a01b03163314610b325760405162461bcd60e51b81526004016108f5906128ea565b600e55565b610b0383838361177f565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b81526004016108f5906128ea565b601055565b323314610bc05760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f5565b601154811115610c125760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79206d696e746564206174206f6e636500000000000000000060448201526064016108f5565b80600f54610c209190612a13565b341015610c685760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108f5565b6002548161090b60015490565b6000546001600160a01b03163314610c9f5760405162461bcd60e51b81526004016108f5906128ea565b6002600c541415610cf25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600c55610d0081611b05565b506001600c55565b6000610d1383610f4c565b8210610d6c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f5565b6000610d7760015490565b905060008060005b83811015610e20576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dd157805192505b876001600160a01b0316836001600160a01b03161415610e0d5786841415610dff5750935061083392505050565b83610e0981612aef565b9450505b5080610e1881612aef565b915050610d7f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f5565b610b0383838360405180602001604052806000815250611502565b6000610ea660015490565b8210610f005760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f5565b5090565b6000546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016108f5906128ea565b610b03601483836123e8565b6000610f4582611cb6565b5192915050565b60006001600160a01b038216610fb85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f5565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b031633146110075760405162461bcd60e51b81526004016108f5906128ea565b6110116000611e24565b565b6000546001600160a01b0316331461103d5760405162461bcd60e51b81526004016108f5906128ea565b600355565b604080518082019091526000808252602082015261083382611cb6565b60606006805461084890612ab4565b6000546001600160a01b031633146110985760405162461bcd60e51b81526004016108f5906128ea565b600255565b33816110d85760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016108f5565b326001600160a01b0382161461111f5760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016108f5565b6001546003541061117a578160105410156111755760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b60448201526064016108f5565b61121b565b8160115410156111c55760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016108f5565b81600f546111d39190612a13565b34101561121b5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108f5565b6112253383611709565b5050565b6001600160a01b0382163314156112825760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f5565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113185760405162461bcd60e51b81526004016108f5906128ea565b6002600c54141561136b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600c55604051600090339047908381818185875af1925050503d80600081146113b2576040519150601f19603f3d011682016040523d82523d6000602084013e6113b7565b606091505b5050905080610d005760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108f5565b6000546001600160a01b031633146114255760405162461bcd60e51b81526004016108f5906128ea565b80518251146114875760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108f5565b60005b8251811015610b03578181815181106114a5576114a5612b4a565b6020026020010151601360008584815181106114c3576114c3612b4a565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806114fa90612aef565b91505061148a565b61150d84848461177f565b61151984848484611e74565b6115355760405162461bcd60e51b81526004016108f59061291f565b50505050565b6060611548826001541190565b6115ac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f5565b60006115b6611f82565b905060008151116115d65760405180602001604052806000815250611601565b806115e084611f91565b6040516020016115f192919061286b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116325760405162461bcd60e51b81526004016108f5906128ea565b601155565b6000546001600160a01b031633146116615760405162461bcd60e51b81526004016108f5906128ea565b600f55565b60006108338261208e565b6000546001600160a01b0316331461169b5760405162461bcd60e51b81526004016108f5906128ea565b6001600160a01b0381166117005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f5565b61096281611e24565b61122582826040518060200160405280600081525061212c565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178a82611cb6565b80519091506000906001600160a01b0316336001600160a01b031614806117c15750336117b684610965565b6001600160a01b0316145b806117d3575081516117d39033610768565b90508061183d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f5565b846001600160a01b031682600001516001600160a01b0316146118b15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f5565b6001600160a01b0384166119155760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f5565b6119256000848460000151611723565b6001600160a01b03851660009081526008602052604081208054600192906119579084906001600160801b0316612a32565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926119a3918591166129c5565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a2a8460016129e7565b6000818152600760205260409020549091506001600160a01b0316611abb57611a54816001541190565b15611abb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b5481611b555760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108f5565b60006001611b6384846129e7565b611b6d9190612a5a565b90506001600254611b7e9190612a5a565b811115611b97576001600254611b949190612a5a565b90505b611ba2816001541190565b611bfd5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108f5565b815b818111611ca2576000818152600760205260409020546001600160a01b0316611c90576000611c2d82611cb6565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611c9a81612aef565b915050611bff565b50611cae8160016129e7565b600b55505050565b6040805180820190915260008082526020820152611cd5826001541190565b611d345760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f5565b60006004548310611d5a57600454611d4c9084612a5a565b611d579060016129e7565b90505b825b818110611dc3576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611db057949350505050565b5080611dbb81612a9d565b915050611d5c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611f7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb890339089908890889060040161289a565b602060405180830381600087803b158015611ed257600080fd5b505af1925050508015611f02575060408051601f3d908101601f19168201909252611eff91810190612798565b60015b611f5c573d808015611f30576040519150601f19603f3d011682016040523d82523d6000602084013e611f35565b606091505b508051611f545760405162461bcd60e51b81526004016108f59061291f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f7a565b5060015b949350505050565b60606014805461084890612ab4565b606081611fb55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fdf5780611fc981612aef565b9150611fd89050600a836129ff565b9150611fb9565b6000816001600160401b03811115611ff957611ff9612b60565b6040519080825280601f01601f191660200182016040528015612023576020820181803683370190505b5090505b8415611f7a57612038600183612a5a565b9150612045600a86612b0a565b6120509060306129e7565b60f81b81838151811061206557612065612b4a565b60200101906001600160f81b031916908160001a905350612087600a866129ff565b9450612027565b60006001600160a01b0382166121005760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108f5565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661218f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f5565b61219a816001541190565b156121e75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f5565b6004548311156122445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108f5565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122a09087906129c5565b6001600160801b031681526020018583602001516122be91906129c5565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123dd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123a16000888488611e74565b6123bd5760405162461bcd60e51b81526004016108f59061291f565b816123c781612aef565b92505080806123d590612aef565b915050612354565b506001819055611afd565b8280546123f490612ab4565b90600052602060002090601f016020900481019282612416576000855561245c565b82601f1061242f5782800160ff1982351617855561245c565b8280016001018555821561245c579182015b8281111561245c578235825591602001919060010190612441565b50610f009291505b80821115610f005760008155600101612464565b80356001600160a01b038116811461248f57600080fd5b919050565b600082601f8301126124a557600080fd5b813560206124ba6124b5836129a2565b612972565b80838252828201915082860187848660051b89010111156124da57600080fd5b60005b858110156124f9578135845292840192908401906001016124dd565b5090979650505050505050565b60006020828403121561251857600080fd5b61160182612478565b6000806040838503121561253457600080fd5b61253d83612478565b915061254b60208401612478565b90509250929050565b60008060006060848603121561256957600080fd5b61257284612478565b925061258060208501612478565b9150604084013590509250925092565b600080600080608085870312156125a657600080fd5b6125af85612478565b935060206125be818701612478565b93506040860135925060608601356001600160401b03808211156125e157600080fd5b818801915088601f8301126125f557600080fd5b81358181111561260757612607612b60565b612619601f8201601f19168501612972565b9150808252898482850101111561262f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561266257600080fd5b61266b83612478565b91506020830135801515811461268057600080fd5b809150509250929050565b6000806040838503121561269e57600080fd5b6126a783612478565b946020939093013593505050565b600080604083850312156126c857600080fd5b82356001600160401b03808211156126df57600080fd5b818501915085601f8301126126f357600080fd5b813560206127036124b5836129a2565b8083825282820191508286018a848660051b890101111561272357600080fd5b600096505b8487101561274d5761273981612478565b835260019690960195918301918301612728565b509650508601359250508082111561276457600080fd5b5061277185828601612494565b9150509250929050565b60006020828403121561278d57600080fd5b813561160181612b76565b6000602082840312156127aa57600080fd5b815161160181612b76565b600080602083850312156127c857600080fd5b82356001600160401b03808211156127df57600080fd5b818501915085601f8301126127f357600080fd5b81358181111561280257600080fd5b86602082850101111561281457600080fd5b60209290920196919550909350505050565b60006020828403121561283857600080fd5b5035919050565b60008151808452612857816020860160208601612a71565b601f01601f19169290920160200192915050565b6000835161287d818460208801612a71565b835190830190612891818360208801612a71565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128cd9083018461283f565b9695505050505050565b602081526000611601602083018461283f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561299a5761299a612b60565b604052919050565b60006001600160401b038211156129bb576129bb612b60565b5060051b60200190565b60006001600160801b0380831681851680830382111561289157612891612b1e565b600082198211156129fa576129fa612b1e565b500190565b600082612a0e57612a0e612b34565b500490565b6000816000190483118215151615612a2d57612a2d612b1e565b500290565b60006001600160801b0383811690831681811015612a5257612a52612b1e565b039392505050565b600082821015612a6c57612a6c612b1e565b500390565b60005b83811015612a8c578181015183820152602001612a74565b838111156115355750506000910152565b600081612aac57612aac612b1e565b506000190190565b600181811c90821680612ac857607f821691505b60208210811415612ae957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b0357612b03612b1e565b5060010190565b600082612b1957612b19612b34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096257600080fdfea2646970667358221220c561663a6a320accae32786fe536c9d72286cf2296c897d8b38412619b7fd60464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000dac00000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638bc35c2f11610139578063ac446002116100b6578063d49f0fa51161007a578063d49f0fa5146106f7578063d7224ba014610717578063dc33e6811461072d578063e985e9c51461074d578063f2fde38b14610796578063fbe1aa51146107b657600080fd5b8063ac44600214610662578063b05863d514610677578063b88d4fde14610697578063c87b56dd146106b7578063d0d99907146106d757600080fd5b80639f8afbcc116100fd5780639f8afbcc146105cc578063a035b1fe146105ec578063a0712d6814610602578063a22cb46514610615578063a7cd52cb1461063557600080fd5b80638bc35c2f146104fe5780638da5cb5b1461051457806390aa0b0f146105325780639231ab2a1461056a57806395d89b41146105b757600080fd5b8063280b7eed116101d257806355f804b31161019657806355f804b3146104535780635a2bcc18146104735780636352211e1461048957806370a08231146104a9578063715018a6146104c957806380e28ea5146104de57600080fd5b8063280b7eed146103c05780632d20fb60146103d35780632f745c59146103f357806342842e0e146104135780634f6ccce71461043357600080fd5b8063130db2bb11610219578063130db2bb1461032757806318160ddd1461034b57806321b2a6cb1461036057806323b872dd1461038057806327e410f1146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b57806307883703146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461277b565b6107cc565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610839565b60405161028291906128d7565b3480156102b957600080fd5b506102cd6102c8366004612826565b6108cb565b005b3480156102db57600080fd5b506102ef6102ea366004612826565b610965565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102cd61032236600461268b565b6109f0565b34801561033357600080fd5b5061033d60105481565b604051908152602001610282565b34801561035757600080fd5b5060015461033d565b34801561036c57600080fd5b506102cd61037b366004612826565b610b08565b34801561038c57600080fd5b506102cd61039b366004612554565b610b37565b3480156103ac57600080fd5b506102cd6103bb366004612826565b610b42565b6102cd6103ce366004612826565b610b71565b3480156103df57600080fd5b506102cd6103ee366004612826565b610c75565b3480156103ff57600080fd5b5061033d61040e36600461268b565b610d08565b34801561041f57600080fd5b506102cd61042e366004612554565b610e80565b34801561043f57600080fd5b5061033d61044e366004612826565b610e9b565b34801561045f57600080fd5b506102cd61046e3660046127b5565b610f04565b34801561047f57600080fd5b5061033d60115481565b34801561049557600080fd5b506102ef6104a4366004612826565b610f3a565b3480156104b557600080fd5b5061033d6104c4366004612506565b610f4c565b3480156104d557600080fd5b506102cd610fdd565b3480156104ea57600080fd5b506102cd6104f9366004612826565b611013565b34801561050a57600080fd5b5061033d600d5481565b34801561052057600080fd5b506000546001600160a01b03166102ef565b34801561053e57600080fd5b50601254610552906001600160401b031681565b6040516001600160401b039091168152602001610282565b34801561057657600080fd5b5061058a610585366004612826565b611042565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610282565b3480156105c357600080fd5b506102a061105f565b3480156105d857600080fd5b506102cd6105e7366004612826565b61106e565b3480156105f857600080fd5b5061033d600f5481565b6102cd610610366004612826565b61109d565b34801561062157600080fd5b506102cd61063036600461264f565b611229565b34801561064157600080fd5b5061033d610650366004612506565b60136020526000908152604090205481565b34801561066e57600080fd5b506102cd6112ee565b34801561068357600080fd5b506102cd6106923660046126b5565b6113fb565b3480156106a357600080fd5b506102cd6106b2366004612590565b611502565b3480156106c357600080fd5b506102a06106d2366004612826565b61153b565b3480156106e357600080fd5b506102cd6106f2366004612826565b611608565b34801561070357600080fd5b506102cd610712366004612826565b611637565b34801561072357600080fd5b5061033d600b5481565b34801561073957600080fd5b5061033d610748366004612506565b611666565b34801561075957600080fd5b50610276610768366004612521565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cd6107b1366004612506565b611671565b3480156107c257600080fd5b5061033d600e5481565b60006001600160e01b031982166380ac58cd60e01b14806107fd57506001600160e01b03198216635b5e139f60e01b145b8061081857506001600160e01b0319821663780e9d6360e01b145b8061083357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606005805461084890612ab4565b80601f016020809104026020016040519081016040528092919081815260200182805461087490612ab4565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b6000546001600160a01b031633146108fe5760405162461bcd60e51b81526004016108f5906128ea565b60405180910390fd5b600e548161090b60015490565b61091591906129e7565b11156109585760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108f5565b6109623382611709565b50565b6000610972826001541190565b6109d45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108f5565b506000908152600960205260409020546001600160a01b031690565b60006109fb82610f3a565b9050806001600160a01b0316836001600160a01b03161415610a6a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f5565b336001600160a01b0382161480610a865750610a868133610768565b610af85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f5565b610b03838383611723565b505050565b6000546001600160a01b03163314610b325760405162461bcd60e51b81526004016108f5906128ea565b600e55565b610b0383838361177f565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b81526004016108f5906128ea565b601055565b323314610bc05760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f5565b601154811115610c125760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79206d696e746564206174206f6e636500000000000000000060448201526064016108f5565b80600f54610c209190612a13565b341015610c685760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108f5565b6002548161090b60015490565b6000546001600160a01b03163314610c9f5760405162461bcd60e51b81526004016108f5906128ea565b6002600c541415610cf25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600c55610d0081611b05565b506001600c55565b6000610d1383610f4c565b8210610d6c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f5565b6000610d7760015490565b905060008060005b83811015610e20576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dd157805192505b876001600160a01b0316836001600160a01b03161415610e0d5786841415610dff5750935061083392505050565b83610e0981612aef565b9450505b5080610e1881612aef565b915050610d7f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f5565b610b0383838360405180602001604052806000815250611502565b6000610ea660015490565b8210610f005760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f5565b5090565b6000546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016108f5906128ea565b610b03601483836123e8565b6000610f4582611cb6565b5192915050565b60006001600160a01b038216610fb85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f5565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b031633146110075760405162461bcd60e51b81526004016108f5906128ea565b6110116000611e24565b565b6000546001600160a01b0316331461103d5760405162461bcd60e51b81526004016108f5906128ea565b600355565b604080518082019091526000808252602082015261083382611cb6565b60606006805461084890612ab4565b6000546001600160a01b031633146110985760405162461bcd60e51b81526004016108f5906128ea565b600255565b33816110d85760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016108f5565b326001600160a01b0382161461111f5760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016108f5565b6001546003541061117a578160105410156111755760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b60448201526064016108f5565b61121b565b8160115410156111c55760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016108f5565b81600f546111d39190612a13565b34101561121b5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108f5565b6112253383611709565b5050565b6001600160a01b0382163314156112825760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f5565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146113185760405162461bcd60e51b81526004016108f5906128ea565b6002600c54141561136b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f5565b6002600c55604051600090339047908381818185875af1925050503d80600081146113b2576040519150601f19603f3d011682016040523d82523d6000602084013e6113b7565b606091505b5050905080610d005760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108f5565b6000546001600160a01b031633146114255760405162461bcd60e51b81526004016108f5906128ea565b80518251146114875760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108f5565b60005b8251811015610b03578181815181106114a5576114a5612b4a565b6020026020010151601360008584815181106114c3576114c3612b4a565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806114fa90612aef565b91505061148a565b61150d84848461177f565b61151984848484611e74565b6115355760405162461bcd60e51b81526004016108f59061291f565b50505050565b6060611548826001541190565b6115ac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f5565b60006115b6611f82565b905060008151116115d65760405180602001604052806000815250611601565b806115e084611f91565b6040516020016115f192919061286b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146116325760405162461bcd60e51b81526004016108f5906128ea565b601155565b6000546001600160a01b031633146116615760405162461bcd60e51b81526004016108f5906128ea565b600f55565b60006108338261208e565b6000546001600160a01b0316331461169b5760405162461bcd60e51b81526004016108f5906128ea565b6001600160a01b0381166117005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f5565b61096281611e24565b61122582826040518060200160405280600081525061212c565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178a82611cb6565b80519091506000906001600160a01b0316336001600160a01b031614806117c15750336117b684610965565b6001600160a01b0316145b806117d3575081516117d39033610768565b90508061183d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f5565b846001600160a01b031682600001516001600160a01b0316146118b15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f5565b6001600160a01b0384166119155760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f5565b6119256000848460000151611723565b6001600160a01b03851660009081526008602052604081208054600192906119579084906001600160801b0316612a32565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926119a3918591166129c5565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a2a8460016129e7565b6000818152600760205260409020549091506001600160a01b0316611abb57611a54816001541190565b15611abb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b5481611b555760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108f5565b60006001611b6384846129e7565b611b6d9190612a5a565b90506001600254611b7e9190612a5a565b811115611b97576001600254611b949190612a5a565b90505b611ba2816001541190565b611bfd5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108f5565b815b818111611ca2576000818152600760205260409020546001600160a01b0316611c90576000611c2d82611cb6565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611c9a81612aef565b915050611bff565b50611cae8160016129e7565b600b55505050565b6040805180820190915260008082526020820152611cd5826001541190565b611d345760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f5565b60006004548310611d5a57600454611d4c9084612a5a565b611d579060016129e7565b90505b825b818110611dc3576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611db057949350505050565b5080611dbb81612a9d565b915050611d5c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108f5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611f7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb890339089908890889060040161289a565b602060405180830381600087803b158015611ed257600080fd5b505af1925050508015611f02575060408051601f3d908101601f19168201909252611eff91810190612798565b60015b611f5c573d808015611f30576040519150601f19603f3d011682016040523d82523d6000602084013e611f35565b606091505b508051611f545760405162461bcd60e51b81526004016108f59061291f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f7a565b5060015b949350505050565b60606014805461084890612ab4565b606081611fb55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fdf5780611fc981612aef565b9150611fd89050600a836129ff565b9150611fb9565b6000816001600160401b03811115611ff957611ff9612b60565b6040519080825280601f01601f191660200182016040528015612023576020820181803683370190505b5090505b8415611f7a57612038600183612a5a565b9150612045600a86612b0a565b6120509060306129e7565b60f81b81838151811061206557612065612b4a565b60200101906001600160f81b031916908160001a905350612087600a866129ff565b9450612027565b60006001600160a01b0382166121005760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108f5565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661218f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f5565b61219a816001541190565b156121e75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f5565b6004548311156122445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108f5565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122a09087906129c5565b6001600160801b031681526020018583602001516122be91906129c5565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123dd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123a16000888488611e74565b6123bd5760405162461bcd60e51b81526004016108f59061291f565b816123c781612aef565b92505080806123d590612aef565b915050612354565b506001819055611afd565b8280546123f490612ab4565b90600052602060002090601f016020900481019282612416576000855561245c565b82601f1061242f5782800160ff1982351617855561245c565b8280016001018555821561245c579182015b8281111561245c578235825591602001919060010190612441565b50610f009291505b80821115610f005760008155600101612464565b80356001600160a01b038116811461248f57600080fd5b919050565b600082601f8301126124a557600080fd5b813560206124ba6124b5836129a2565b612972565b80838252828201915082860187848660051b89010111156124da57600080fd5b60005b858110156124f9578135845292840192908401906001016124dd565b5090979650505050505050565b60006020828403121561251857600080fd5b61160182612478565b6000806040838503121561253457600080fd5b61253d83612478565b915061254b60208401612478565b90509250929050565b60008060006060848603121561256957600080fd5b61257284612478565b925061258060208501612478565b9150604084013590509250925092565b600080600080608085870312156125a657600080fd5b6125af85612478565b935060206125be818701612478565b93506040860135925060608601356001600160401b03808211156125e157600080fd5b818801915088601f8301126125f557600080fd5b81358181111561260757612607612b60565b612619601f8201601f19168501612972565b9150808252898482850101111561262f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561266257600080fd5b61266b83612478565b91506020830135801515811461268057600080fd5b809150509250929050565b6000806040838503121561269e57600080fd5b6126a783612478565b946020939093013593505050565b600080604083850312156126c857600080fd5b82356001600160401b03808211156126df57600080fd5b818501915085601f8301126126f357600080fd5b813560206127036124b5836129a2565b8083825282820191508286018a848660051b890101111561272357600080fd5b600096505b8487101561274d5761273981612478565b835260019690960195918301918301612728565b509650508601359250508082111561276457600080fd5b5061277185828601612494565b9150509250929050565b60006020828403121561278d57600080fd5b813561160181612b76565b6000602082840312156127aa57600080fd5b815161160181612b76565b600080602083850312156127c857600080fd5b82356001600160401b03808211156127df57600080fd5b818501915085601f8301126127f357600080fd5b81358181111561280257600080fd5b86602082850101111561281457600080fd5b60209290920196919550909350505050565b60006020828403121561283857600080fd5b5035919050565b60008151808452612857816020860160208601612a71565b601f01601f19169290920160200192915050565b6000835161287d818460208801612a71565b835190830190612891818360208801612a71565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128cd9083018461283f565b9695505050505050565b602081526000611601602083018461283f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561299a5761299a612b60565b604052919050565b60006001600160401b038211156129bb576129bb612b60565b5060051b60200190565b60006001600160801b0380831681851680830382111561289157612891612b1e565b600082198211156129fa576129fa612b1e565b500190565b600082612a0e57612a0e612b34565b500490565b6000816000190483118215151615612a2d57612a2d612b1e565b500290565b60006001600160801b0383811690831681811015612a5257612a52612b1e565b039392505050565b600082821015612a6c57612a6c612b1e565b500390565b60005b83811015612a8c578181015183820152602001612a74565b838111156115355750506000910152565b600081612aac57612aac612b1e565b506000190190565b600181811c90821680612ac857607f821691505b60208210811415612ae957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b0357612b03612b1e565b5060010190565b600082612b1957612b19612b34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096257600080fdfea2646970667358221220c561663a6a320accae32786fe536c9d72286cf2296c897d8b38412619b7fd60464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000dac00000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 3500
Arg [2] : collectionSizeFree_ (uint256): 500
Arg [3] : amountForDevs_ (uint256): 0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000dac
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40587:3855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23406:370;;;;;;;;;;-1:-1:-1;23406:370:0;;;;;:::i;:::-;;:::i;:::-;;;7516:14:1;;7509:22;7491:41;;7479:2;7464:18;23406:370:0;;;;;;;;25132:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42699:181::-;;;;;;;;;;-1:-1:-1;42699:181:0;;;;;:::i;:::-;;:::i;:::-;;26657:204;;;;;;;;;;-1:-1:-1;26657:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6814:32:1;;;6796:51;;6784:2;6769:18;26657:204:0;6650:203:1;26220:379:0;;;;;;;;;;-1:-1:-1;26220:379:0;;;;;:::i;:::-;;:::i;40763:33::-;;;;;;;;;;;;;;;;;;;21419:25:1;;;21407:2;21392:18;40763:33:0;21273:177:1;21967:94:0;;;;;;;;;;-1:-1:-1;22043:12:0;;21967:94;;44079:116;;;;;;;;;;-1:-1:-1;44079:116:0;;;;;:::i;:::-;;:::i;27507:142::-;;;;;;;;;;-1:-1:-1;27507:142:0;;;;;:::i;:::-;;:::i;44203:120::-;;;;;;;;;;-1:-1:-1;44203:120:0;;;;;:::i;:::-;;:::i;41405:353::-;;;;;;:::i;:::-;;:::i;43356:118::-;;;;;;;;;;-1:-1:-1;43356:118:0;;;;;:::i;:::-;;:::i;22598:744::-;;;;;;;;;;-1:-1:-1;22598:744:0;;;;;:::i;:::-;;:::i;27712:157::-;;;;;;;;;;-1:-1:-1;27712:157:0;;;;;:::i;:::-;;:::i;22130:177::-;;;;;;;;;;-1:-1:-1;22130:177:0;;;;;:::i;:::-;;:::i;43063:100::-;;;;;;;;;;-1:-1:-1;43063:100:0;;;;;:::i;:::-;;:::i;40801:30::-;;;;;;;;;;;;;;;;24955:118;;;;;;;;;;-1:-1:-1;24955:118:0;;;;;:::i;:::-;;:::i;23832:211::-;;;;;;;;;;-1:-1:-1;23832:211:0;;;;;:::i;:::-;;:::i;39927:94::-;;;;;;;;;;;;;:::i;43834:109::-;;;;;;;;;;-1:-1:-1;43834:109:0;;;;;:::i;:::-;;:::i;40648:38::-;;;;;;;;;;;;;;;;39276:87;;;;;;;;;;-1:-1:-1;39322:7:0;39349:6;-1:-1:-1;;;;;39349:6:0;39276:87;;40893:28;;;;;;;;;;-1:-1:-1;40893:28:0;;;;-1:-1:-1;;;;;40893:28:0;;;;;;-1:-1:-1;;;;;21617:31:1;;;21599:50;;21587:2;21572:18;40893:28:0;21455:200:1;43593:147:0;;;;;;;;;;-1:-1:-1;43593:147:0;;;;;:::i;:::-;;:::i;:::-;;;;21138:13:1;;-1:-1:-1;;;;;21134:39:1;21116:58;;21234:4;21222:17;;;21216:24;-1:-1:-1;;;;;21212:49:1;21190:20;;;21183:79;;;;21089:18;43593:147:0;20908:360:1;25287:98:0;;;;;;;;;;;;;:::i;43951:120::-;;;;;;;;;;-1:-1:-1;43951:120:0;;;;;:::i;:::-;;:::i;40724:34::-;;;;;;;;;;;;;;;;41766:557;;;;;;:::i;:::-;;:::i;26925:274::-;;;;;;;;;;-1:-1:-1;26925:274:0;;;;;:::i;:::-;;:::i;40928:44::-;;;;;;;;;;-1:-1:-1;40928:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;43169:181;;;;;;;;;;;;;:::i;42329:339::-;;;;;;;;;;-1:-1:-1;42329:339:0;;;;;:::i;:::-;;:::i;27932:311::-;;;;;;;;;;-1:-1:-1;27932:311:0;;;;;:::i;:::-;;:::i;25448:394::-;;;;;;;;;;-1:-1:-1;25448:394:0;;;;;:::i;:::-;;:::i;44331:104::-;;;;;;;;;;-1:-1:-1;44331:104:0;;;;;:::i;:::-;;:::i;43744:84::-;;;;;;;;;;-1:-1:-1;43744:84:0;;;;;:::i;:::-;;:::i;32347:43::-;;;;;;;;;;;;;;;;43480:107;;;;;;;;;;-1:-1:-1;43480:107:0;;;;;:::i;:::-;;:::i;27262:186::-;;;;;;;;;;-1:-1:-1;27262:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;27407:25:0;;;27384:4;27407:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27262:186;40176:192;;;;;;;;;;-1:-1:-1;40176:192:0;;;;;:::i;:::-;;:::i;40691:28::-;;;;;;;;;;;;;;;;23406:370;23533:4;-1:-1:-1;;;;;;23563:40:0;;-1:-1:-1;;;23563:40:0;;:99;;-1:-1:-1;;;;;;;23614:48:0;;-1:-1:-1;;;23614:48:0;23563:99;:160;;;-1:-1:-1;;;;;;;23673:50:0;;-1:-1:-1;;;23673:50:0;23563:160;:207;;;-1:-1:-1;;;;;;;;;;1721:40:0;;;23734:36;23549:221;23406:370;-1:-1:-1;;23406:370:0:o;25132:94::-;25186:13;25215:5;25208:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25132:94;:::o;42699:181::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;;;;;;;;;42800:13:::1;;42788:8;42772:13;22043:12:::0;;;21967:94;42772:13:::1;:24;;;;:::i;:::-;:41;;42764:72;;;::::0;-1:-1:-1;;;42764:72:0;;13361:2:1;42764:72:0::1;::::0;::::1;13343:21:1::0;13400:2;13380:18;;;13373:30;-1:-1:-1;;;13419:18:1;;;13412:48;13477:18;;42764:72:0::1;13159:342:1::0;42764:72:0::1;42843:31;42853:10;42865:8;42843:9;:31::i;:::-;42699:181:::0;:::o;26657:204::-;26725:7;26749:16;26757:7;28569:12;;-1:-1:-1;28559:22:0;28482:105;26749:16;26741:74;;;;-1:-1:-1;;;26741:74:0;;19543:2:1;26741:74:0;;;19525:21:1;19582:2;19562:18;;;19555:30;19621:34;19601:18;;;19594:62;-1:-1:-1;;;19672:18:1;;;19665:43;19725:19;;26741:74:0;19341:409:1;26741:74:0;-1:-1:-1;26831:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26831:24:0;;26657:204::o;26220:379::-;26289:13;26305:24;26321:7;26305:15;:24::i;:::-;26289:40;;26350:5;-1:-1:-1;;;;;26344:11:0;:2;-1:-1:-1;;;;;26344:11:0;;;26336:58;;;;-1:-1:-1;;;26336:58:0;;15666:2:1;26336:58:0;;;15648:21:1;15705:2;15685:18;;;15678:30;15744:34;15724:18;;;15717:62;-1:-1:-1;;;15795:18:1;;;15788:32;15837:19;;26336:58:0;15464:398:1;26336:58:0;17449:10;-1:-1:-1;;;;;26419:21:0;;;;:62;;-1:-1:-1;26444:37:0;26461:5;17449:10;27262:186;:::i;26444:37::-;26403:153;;;;-1:-1:-1;;;26403:153:0;;12170:2:1;26403:153:0;;;12152:21:1;12209:2;12189:18;;;12182:30;12248:34;12228:18;;;12221:62;12319:27;12299:18;;;12292:55;12364:19;;26403:153:0;11968:421:1;26403:153:0;26565:28;26574:2;26578:7;26587:5;26565:8;:28::i;:::-;26282:317;26220:379;;:::o;44079:116::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;44157:13:::1;:33:::0;44079:116::o;27507:142::-;27615:28;27625:4;27631:2;27635:7;27615:9;:28::i;44203:120::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;44283:14:::1;:35:::0;44203:120::o;41405:353::-;41327:9;41340:10;41327:23;41319:66;;;;-1:-1:-1;;;41319:66:0;;11460:2:1;41319:66:0;;;11442:21:1;11499:2;11479:18;;;11472:30;11538:32;11518:18;;;11511:60;11588:18;;41319:66:0;11258:354:1;41319:66:0;41517:10:::1;;41505:8;:22;;41497:58;;;::::0;-1:-1:-1;;;41497:58:0;;8372:2:1;41497:58:0::1;::::0;::::1;8354:21:1::0;8411:2;8391:18;;;8384:30;8450:25;8430:18;;;8423:53;8493:18;;41497:58:0::1;8170:347:1::0;41497:58:0::1;41593:8;41585:5;;:16;;;;:::i;:::-;41572:9;:29;;41564:64;;;::::0;-1:-1:-1;;;41564:64:0;;16834:2:1;41564:64:0::1;::::0;::::1;16816:21:1::0;16873:2;16853:18;;;16846:30;-1:-1:-1;;;16892:18:1;;;16885:52;16954:18;;41564:64:0::1;16632:346:1::0;41564:64:0::1;41671:14;;41659:8;41643:13;22043:12:::0;;;21967:94;43356:118;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;37390:1:::1;37986:7;;:19;;37978:63;;;::::0;-1:-1:-1;;;37978:63:0;;18767:2:1;37978:63:0::1;::::0;::::1;18749:21:1::0;18806:2;18786:18;;;18779:30;18845:33;18825:18;;;18818:61;18896:18;;37978:63:0::1;18565:355:1::0;37978:63:0::1;37390:1;38119:7;:18:::0;43440:28:::2;43459:8:::0;43440:18:::2;:28::i;:::-;-1:-1:-1::0;37346:1:0::1;38298:7;:22:::0;43356:118::o;22598:744::-;22707:7;22742:16;22752:5;22742:9;:16::i;:::-;22734:5;:24;22726:71;;;;-1:-1:-1;;;22726:71:0;;7969:2:1;22726:71:0;;;7951:21:1;8008:2;7988:18;;;7981:30;8047:34;8027:18;;;8020:62;-1:-1:-1;;;8098:18:1;;;8091:32;8140:19;;22726:71:0;7767:398:1;22726:71:0;22804:22;22829:13;22043:12;;;21967:94;22829:13;22804:38;;22849:19;22879:25;22929:9;22924:350;22948:14;22944:1;:18;22924:350;;;22978:31;23012:14;;;:11;:14;;;;;;;;;22978:48;;;;;;;;;-1:-1:-1;;;;;22978:48:0;;;;;-1:-1:-1;;;22978:48:0;;;-1:-1:-1;;;;;22978:48:0;;;;;;;;23039:28;23035:89;;23100:14;;;-1:-1:-1;23035:89:0;23157:5;-1:-1:-1;;;;;23136:26:0;:17;-1:-1:-1;;;;;23136:26:0;;23132:135;;;23194:5;23179:11;:20;23175:59;;;-1:-1:-1;23221:1:0;-1:-1:-1;23214:8:0;;-1:-1:-1;;;23214:8:0;23175:59;23244:13;;;;:::i;:::-;;;;23132:135;-1:-1:-1;22964:3:0;;;;:::i;:::-;;;;22924:350;;;-1:-1:-1;23280:56:0;;-1:-1:-1;;;23280:56:0;;17945:2:1;23280:56:0;;;17927:21:1;17984:2;17964:18;;;17957:30;18023:34;18003:18;;;17996:62;-1:-1:-1;;;18074:18:1;;;18067:44;18128:19;;23280:56:0;17743:410:1;27712:157:0;27824:39;27841:4;27847:2;27851:7;27824:39;;;;;;;;;;;;:16;:39::i;22130:177::-;22197:7;22229:13;22043:12;;;21967:94;22229:13;22221:5;:21;22213:69;;;;-1:-1:-1;;;22213:69:0;;10232:2:1;22213:69:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310:34;10290:18;;;10283:62;-1:-1:-1;;;10361:18:1;;;10354:33;10404:19;;22213:69:0;10030:399:1;22213:69:0;-1:-1:-1;22296:5:0;22130:177::o;43063:100::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43134:23:::1;:13;43150:7:::0;;43134:23:::1;:::i;24955:118::-:0;25019:7;25042:20;25054:7;25042:11;:20::i;:::-;:25;;24955:118;-1:-1:-1;;24955:118:0:o;23832:211::-;23896:7;-1:-1:-1;;;;;23920:19:0;;23912:75;;;;-1:-1:-1;;;23912:75:0;;12949:2:1;23912:75:0;;;12931:21:1;12988:2;12968:18;;;12961:30;13027:34;13007:18;;;13000:62;-1:-1:-1;;;13078:18:1;;;13071:41;13129:19;;23912:75:0;12747:407:1;23912:75:0;-1:-1:-1;;;;;;24009:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24009:27:0;;23832:211::o;39927:94::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;39992:21:::1;40010:1;39992:9;:21::i;:::-;39927:94::o:0;43834:109::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43904:18:::1;:34:::0;43834:109::o;43593:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43714:20:0;43726:7;43714:11;:20::i;25287:98::-;25343:13;25372:7;25365:14;;;;;:::i;43951:120::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;44031:14:::1;:35:::0;43951:120::o;41766:557::-;17449:10;41872:12;41864:35;;;;-1:-1:-1;;;41864:35:0;;9542:2:1;41864:35:0;;;9524:21:1;9581:2;9561:18;;;9554:30;-1:-1:-1;;;9600:18:1;;;9593:40;9650:18;;41864:35:0;9340:334:1;41864:35:0;41918:9;-1:-1:-1;;;;;41918:20:0;;;41910:45;;;;-1:-1:-1;;;41910:45:0;;19957:2:1;41910:45:0;;;19939:21:1;19996:2;19976:18;;;19969:30;-1:-1:-1;;;20015:18:1;;;20008:42;20067:18;;41910:45:0;19755:336:1;41910:45:0;22043:12;;41972:18;;:35;41969:300;;42047:8;42029:14;;:26;;42021:62;;;;-1:-1:-1;;;42021:62:0;;11819:2:1;42021:62:0;;;11801:21:1;11858:2;11838:18;;;11831:30;-1:-1:-1;;;11877:18:1;;;11870:52;11939:18;;42021:62:0;11617:346:1;42021:62:0;41969:300;;;42138:8;42124:10;;:22;;42116:58;;;;-1:-1:-1;;;42116:58:0;;9881:2:1;42116:58:0;;;9863:21:1;9920:2;9900:18;;;9893:30;-1:-1:-1;;;9939:18:1;;;9932:52;10001:18;;42116:58:0;9679:346:1;42116:58:0;42218:8;42210:5;;:16;;;;:::i;:::-;42197:9;:29;;42189:64;;;;-1:-1:-1;;;42189:64:0;;16834:2:1;42189:64:0;;;16816:21:1;16873:2;16853:18;;;16846:30;-1:-1:-1;;;16892:18:1;;;16885:52;16954:18;;42189:64:0;16632:346:1;42189:64:0;42281:31;42291:10;42303:8;42281:9;:31::i;:::-;41815:508;41766:557;:::o;26925:274::-;-1:-1:-1;;;;;27016:24:0;;17449:10;27016:24;;27008:63;;;;-1:-1:-1;;;27008:63:0;;14892:2:1;27008:63:0;;;14874:21:1;14931:2;14911:18;;;14904:30;14970:28;14950:18;;;14943:56;15016:18;;27008:63:0;14690:350:1;27008:63:0;17449:10;27080:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27080:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27080:53:0;;;;;;;;;;27145:48;;7491:41:1;;;27080:42:0;;17449:10;27145:48;;7464:18:1;27145:48:0;;;;;;;26925:274;;:::o;43169:181::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;37390:1:::1;37986:7;;:19;;37978:63;;;::::0;-1:-1:-1;;;37978:63:0;;18767:2:1;37978:63:0::1;::::0;::::1;18749:21:1::0;18806:2;18786:18;;;18779:30;18845:33;18825:18;;;18818:61;18896:18;;37978:63:0::1;18565:355:1::0;37978:63:0::1;37390:1;38119:7;:18:::0;43252:49:::2;::::0;43234:12:::2;::::0;43252:10:::2;::::0;43275:21:::2;::::0;43234:12;43252:49;43234:12;43252:49;43275:21;43252:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43233:68;;;43316:7;43308:36;;;::::0;-1:-1:-1;;;43308:36:0;;16069:2:1;43308:36:0::2;::::0;::::2;16051:21:1::0;16108:2;16088:18;;;16081:30;-1:-1:-1;;;16127:18:1;;;16120:46;16183:18;;43308:36:0::2;15867:340:1::0;42329:339:0;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;42482:8:::1;:15;42462:9;:16;:35;42446:109;;;::::0;-1:-1:-1;;;42446:109:0;;20701:2:1;42446:109:0::1;::::0;::::1;20683:21:1::0;20740:2;20720:18;;;20713:30;20779:34;20759:18;;;20752:62;-1:-1:-1;;;20830:18:1;;;20823:38;20878:19;;42446:109:0::1;20499:404:1::0;42446:109:0::1;42567:9;42562:101;42586:9;:16;42582:1;:20;42562:101;;;42644:8;42653:1;42644:11;;;;;;;;:::i;:::-;;;;;;;42618:9;:23;42628:9;42638:1;42628:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42618:23:0::1;-1:-1:-1::0;;;;;42618:23:0::1;;;;;;;;;;;;:37;;;;42604:3;;;;;:::i;:::-;;;;42562:101;;27932:311:::0;28069:28;28079:4;28085:2;28089:7;28069:9;:28::i;:::-;28120:48;28143:4;28149:2;28153:7;28162:5;28120:22;:48::i;:::-;28104:133;;;;-1:-1:-1;;;28104:133:0;;;;;;;:::i;:::-;27932:311;;;;:::o;25448:394::-;25546:13;25587:16;25595:7;28569:12;;-1:-1:-1;28559:22:0;28482:105;25587:16;25571:97;;;;-1:-1:-1;;;25571:97:0;;14476:2:1;25571:97:0;;;14458:21:1;14515:2;14495:18;;;14488:30;14554:34;14534:18;;;14527:62;-1:-1:-1;;;14605:18:1;;;14598:45;14660:19;;25571:97:0;14274:411:1;25571:97:0;25677:21;25701:10;:8;:10::i;:::-;25677:34;;25756:1;25738:7;25732:21;:25;:104;;;;;;;;;;;;;;;;;25793:7;25802:18;:7;:16;:18::i;:::-;25776:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25732:104;25718:118;25448:394;-1:-1:-1;;;25448:394:0:o;44331:104::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;44403:10:::1;:27:::0;44331:104::o;43744:84::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43806:5:::1;:17:::0;43744:84::o;43480:107::-;43538:7;43561:20;43575:5;43561:13;:20::i;40176:192::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;17449:10;39496:23;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40265:22:0;::::1;40257:73;;;::::0;-1:-1:-1;;;40257:73:0;;8724:2:1;40257:73:0::1;::::0;::::1;8706:21:1::0;8763:2;8743:18;;;8736:30;8802:34;8782:18;;;8775:62;-1:-1:-1;;;8853:18:1;;;8846:36;8899:19;;40257:73:0::1;8522:402:1::0;40257:73:0::1;40341:19;40351:8;40341:9;:19::i;28593:98::-:0;28658:27;28668:2;28672:8;28658:27;;;;;;;;;;;;:9;:27::i;32169:172::-;32266:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32266:29:0;-1:-1:-1;;;;;32266:29:0;;;;;;;;;32307:28;;32266:24;;32307:28;;;;;;;32169:172;;;:::o;30534:1529::-;30631:35;30669:20;30681:7;30669:11;:20::i;:::-;30740:18;;30631:58;;-1:-1:-1;30698:22:0;;-1:-1:-1;;;;;30724:34:0;17449:10;-1:-1:-1;;;;;30724:34:0;;:81;;;-1:-1:-1;17449:10:0;30769:20;30781:7;30769:11;:20::i;:::-;-1:-1:-1;;;;;30769:36:0;;30724:81;:142;;;-1:-1:-1;30833:18:0;;30816:50;;17449:10;27262:186;:::i;30816:50::-;30698:169;;30892:17;30876:101;;;;-1:-1:-1;;;30876:101:0;;15247:2:1;30876:101:0;;;15229:21:1;15286:2;15266:18;;;15259:30;15325:34;15305:18;;;15298:62;-1:-1:-1;;;15376:18:1;;;15369:48;15434:19;;30876:101:0;15045:414:1;30876:101:0;31024:4;-1:-1:-1;;;;;31002:26:0;:13;:18;;;-1:-1:-1;;;;;31002:26:0;;30986:98;;;;-1:-1:-1;;;30986:98:0;;13708:2:1;30986:98:0;;;13690:21:1;13747:2;13727:18;;;13720:30;13786:34;13766:18;;;13759:62;-1:-1:-1;;;13837:18:1;;;13830:36;13883:19;;30986:98:0;13506:402:1;30986:98:0;-1:-1:-1;;;;;31099:16:0;;31091:66;;;;-1:-1:-1;;;31091:66:0;;10636:2:1;31091:66:0;;;10618:21:1;10675:2;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;-1:-1:-1;;;10765:18:1;;;10758:35;10810:19;;31091:66:0;10434:401:1;31091:66:0;31266:49;31283:1;31287:7;31296:13;:18;;;31266:8;:49::i;:::-;-1:-1:-1;;;;;31324:18:0;;;;;;:12;:18;;;;;:31;;31354:1;;31324:18;:31;;31354:1;;-1:-1:-1;;;;;31324:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31324:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31362:16:0;;-1:-1:-1;31362:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31362:16:0;;:29;;-1:-1:-1;;31362:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31362:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31421:43:0;;;;;;;;-1:-1:-1;;;;;31421:43:0;;;;;-1:-1:-1;;;;;31447:15:0;31421:43;;;;;;;;;-1:-1:-1;31398:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31398:66:0;-1:-1:-1;;;;;;31398:66:0;;;;;;;;;;;31714:11;31410:7;-1:-1:-1;31714:11:0;:::i;:::-;31777:1;31736:24;;;:11;:24;;;;;:29;31692:33;;-1:-1:-1;;;;;;31736:29:0;31732:236;;31794:20;31802:11;28569:12;;-1:-1:-1;28559:22:0;28482:105;31794:20;31790:171;;;31854:97;;;;;;;;31881:18;;-1:-1:-1;;;;;31854:97:0;;;;;;31912:28;;;;-1:-1:-1;;;;;31854:97:0;;;;;;;;;-1:-1:-1;31827:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;31827:124:0;-1:-1:-1;;;;;;31827:124:0;;;;;;;;;;;;31790:171;32000:7;31996:2;-1:-1:-1;;;;;31981:27:0;31990:4;-1:-1:-1;;;;;31981:27:0;;;;;;;;;;;32015:42;30624:1439;;;30534:1529;;;:::o;32495:846::-;32585:24;;32624:12;32616:49;;;;-1:-1:-1;;;32616:49:0;;12596:2:1;32616:49:0;;;12578:21:1;12635:2;12615:18;;;12608:30;12674:26;12654:18;;;12647:54;12718:18;;32616:49:0;12394:348:1;32616:49:0;32672:16;32722:1;32691:28;32711:8;32691:17;:28;:::i;:::-;:32;;;;:::i;:::-;32672:51;;32762:1;32745:14;;:18;;;;:::i;:::-;32734:8;:29;32730:81;;;32802:1;32785:14;;:18;;;;:::i;:::-;32774:29;;32730:81;32926:17;32934:8;28569:12;;-1:-1:-1;28559:22:0;28482:105;32926:17;32918:68;;;;-1:-1:-1;;;32918:68:0;;18360:2:1;32918:68:0;;;18342:21:1;18399:2;18379:18;;;18372:30;18438:34;18418:18;;;18411:62;-1:-1:-1;;;18489:18:1;;;18482:36;18535:19;;32918:68:0;18158:402:1;32918:68:0;33010:17;32993:297;33034:8;33029:1;:13;32993:297;;33093:1;33062:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;33062:19:0;33058:225;;33108:31;33142:14;33154:1;33142:11;:14::i;:::-;33184:89;;;;;;;;33211:14;;-1:-1:-1;;;;;33184:89:0;;;;;;33238:24;;;;-1:-1:-1;;;;;33184:89:0;;;;;;;;;-1:-1:-1;33167:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;33167:106:0;-1:-1:-1;;;;;;33167:106:0;;;;;;;;;;;;-1:-1:-1;33058:225:0;33044:3;;;;:::i;:::-;;;;32993:297;;;-1:-1:-1;33323:12:0;:8;33334:1;33323:12;:::i;:::-;33296:24;:39;-1:-1:-1;;;32495:846:0:o;24295:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;24412:16:0;24420:7;28569:12;;-1:-1:-1;28559:22:0;28482:105;24412:16;24404:71;;;;-1:-1:-1;;;24404:71:0;;9131:2:1;24404:71:0;;;9113:21:1;9170:2;9150:18;;;9143:30;9209:34;9189:18;;;9182:62;-1:-1:-1;;;9260:18:1;;;9253:40;9310:19;;24404:71:0;8929:406:1;24404:71:0;24484:26;24532:12;;24521:7;:23;24517:93;;24586:12;;24576:22;;:7;:22;:::i;:::-;:26;;24601:1;24576:26;:::i;:::-;24555:47;;24517:93;24638:7;24618:212;24655:18;24647:4;:26;24618:212;;24692:31;24726:17;;;:11;:17;;;;;;;;;24692:51;;;;;;;;;-1:-1:-1;;;;;24692:51:0;;;;;-1:-1:-1;;;24692:51:0;;;-1:-1:-1;;;;;24692:51:0;;;;;;;;24756:28;24752:71;;24804:9;24295:606;-1:-1:-1;;;;24295:606:0:o;24752:71::-;-1:-1:-1;24675:6:0;;;;:::i;:::-;;;;24618:212;;;-1:-1:-1;24838:57:0;;-1:-1:-1;;;24838:57:0;;19127:2:1;24838:57:0;;;19109:21:1;19166:2;19146:18;;;19139:30;19205:34;19185:18;;;19178:62;-1:-1:-1;;;19256:18:1;;;19249:45;19311:19;;24838:57:0;18925:411:1;40376:173:0;40432:16;40451:6;;-1:-1:-1;;;;;40468:17:0;;;-1:-1:-1;;;;;;40468:17:0;;;;;;40501:40;;40451:6;;;;;;;40501:40;;40432:16;40501:40;40421:128;40376:173;:::o;33884:690::-;34021:4;-1:-1:-1;;;;;34038:13:0;;2809:20;2857:8;34034:535;;34077:72;;-1:-1:-1;;;34077:72:0;;-1:-1:-1;;;;;34077:36:0;;;;;:72;;17449:10;;34128:4;;34134:7;;34143:5;;34077:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34077:72:0;;;;;;;;-1:-1:-1;;34077:72:0;;;;;;;;;;;;:::i;:::-;;;34064:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34308:13:0;;34304:215;;34341:61;;-1:-1:-1;;;34341:61:0;;;;;;;:::i;34304:215::-;34487:6;34481:13;34472:6;34468:2;34464:15;34457:38;34064:464;-1:-1:-1;;;;;;34199:55:0;-1:-1:-1;;;34199:55:0;;-1:-1:-1;34192:62:0;;34034:535;-1:-1:-1;34557:4:0;34034:535;33884:690;;;;;;:::o;42949:108::-;43009:13;43038;43031:20;;;;;:::i;17838:723::-;17894:13;18115:10;18111:53;;-1:-1:-1;;18142:10:0;;;;;;;;;;;;-1:-1:-1;;;18142:10:0;;;;;17838:723::o;18111:53::-;18189:5;18174:12;18230:78;18237:9;;18230:78;;18263:8;;;;:::i;:::-;;-1:-1:-1;18286:10:0;;-1:-1:-1;18294:2:0;18286:10;;:::i;:::-;;;18230:78;;;18318:19;18350:6;-1:-1:-1;;;;;18340:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18340:17:0;;18318:39;;18368:154;18375:10;;18368:154;;18402:11;18412:1;18402:11;;:::i;:::-;;-1:-1:-1;18471:10:0;18479:2;18471:5;:10;:::i;:::-;18458:24;;:2;:24;:::i;:::-;18445:39;;18428:6;18435;18428:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18428:56:0;;;;;;;;-1:-1:-1;18499:11:0;18508:2;18499:11;;:::i;:::-;;;18368:154;;24049:240;24110:7;-1:-1:-1;;;;;24142:19:0;;24126:102;;;;-1:-1:-1;;;24126:102:0;;11042:2:1;24126:102:0;;;11024:21:1;11081:2;11061:18;;;11054:30;11120:34;11100:18;;;11093:62;-1:-1:-1;;;11171:18:1;;;11164:47;11228:19;;24126:102:0;10840:413:1;24126:102:0;-1:-1:-1;;;;;;24250:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24250:32:0;;-1:-1:-1;;;;;24250:32:0;;24049:240::o;29030:1272::-;29158:12;;-1:-1:-1;;;;;29185:16:0;;29177:62;;;;-1:-1:-1;;;29177:62:0;;17543:2:1;29177:62:0;;;17525:21:1;17582:2;17562:18;;;17555:30;17621:34;17601:18;;;17594:62;-1:-1:-1;;;17672:18:1;;;17665:31;17713:19;;29177:62:0;17341:397:1;29177:62:0;29376:21;29384:12;28569;;-1:-1:-1;28559:22:0;28482:105;29376:21;29375:22;29367:64;;;;-1:-1:-1;;;29367:64:0;;17185:2:1;29367:64:0;;;17167:21:1;17224:2;17204:18;;;17197:30;17263:31;17243:18;;;17236:59;17312:18;;29367:64:0;16983:353:1;29367:64:0;29458:12;;29446:8;:24;;29438:71;;;;-1:-1:-1;;;29438:71:0;;20298:2:1;29438:71:0;;;20280:21:1;20337:2;20317:18;;;20310:30;20376:34;20356:18;;;20349:62;-1:-1:-1;;;20427:18:1;;;20420:32;20469:19;;29438:71:0;20096:398:1;29438:71:0;-1:-1:-1;;;;;29621:16:0;;29588:30;29621:16;;;:12;:16;;;;;;;;;29588:49;;;;;;;;;-1:-1:-1;;;;;29588:49:0;;;;;-1:-1:-1;;;29588:49:0;;;;;;;;;;;29663:119;;;;;;;;29683:19;;29588:49;;29663:119;;;29683:39;;29713:8;;29683:39;:::i;:::-;-1:-1:-1;;;;;29663:119:0;;;;;29766:8;29731:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29663:119:0;;;;;;-1:-1:-1;;;;;29644:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;29644:138:0;;;;;;;;;;;;29817:43;;;;;;;;;;-1:-1:-1;;;;;29843:15:0;29817:43;;;;;;;;29789:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29789:71:0;-1:-1:-1;;;;;;29789:71:0;;;;;;;;;;;;;;;;;;29801:12;;29913:281;29937:8;29933:1;:12;29913:281;;;29966:38;;29991:12;;-1:-1:-1;;;;;29966:38:0;;;29983:1;;29966:38;;29983:1;;29966:38;30031:59;30062:1;30066:2;30070:12;30084:5;30031:22;:59::i;:::-;30013:150;;;;-1:-1:-1;;;30013:150:0;;;;;;;:::i;:::-;30172:14;;;;:::i;:::-;;;;29947:3;;;;;:::i;:::-;;;;29913:281;;;-1:-1:-1;30202:12:0;:27;;;30236:60;27932:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:53;;;1848:1;1845;1838:12;1799:53;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;-1:-1:-1;;;;;2144:2:1;2136:6;2133:14;2130:34;;;2160:1;2157;2150:12;2130:34;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:55;;2265:1;2262;2255:12;2214:55;2301:2;2288:16;2323:2;2319;2316:10;2313:36;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:1;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2563:2;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1659:980;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:60;;2957:1;2954;2947:12;2901:60;2980:5;2970:15;;;2644:347;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;2996:254:1:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;-1:-1:-1;;;;;3560:2:1;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3717:2;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:61;;;3997:1;3994;3987:12;3940:61;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:1;-1:-1:-1;;4260:18:1;;4247:32;;-1:-1:-1;;4291:16:1;;;4288:36;;;4320:1;4317;4310:12;4288:36;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3255:1157;;;;;:::o;4417:245::-;4475:6;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;4583:9;4570:23;4602:30;4626:5;4602:30;:::i;4667:249::-;4736:6;4789:2;4777:9;4768:7;4764:23;4760:32;4757:52;;;4805:1;4802;4795:12;4757:52;4837:9;4831:16;4856:30;4880:5;4856:30;:::i;4921:592::-;4992:6;5000;5053:2;5041:9;5032:7;5028:23;5024:32;5021:52;;;5069:1;5066;5059:12;5021:52;5109:9;5096:23;-1:-1:-1;;;;;5179:2:1;5171:6;5168:14;5165:34;;;5195:1;5192;5185:12;5165:34;5233:6;5222:9;5218:22;5208:32;;5278:7;5271:4;5267:2;5263:13;5259:27;5249:55;;5300:1;5297;5290:12;5249:55;5340:2;5327:16;5366:2;5358:6;5355:14;5352:34;;;5382:1;5379;5372:12;5352:34;5427:7;5422:2;5413:6;5409:2;5405:15;5401:24;5398:37;5395:57;;;5448:1;5445;5438:12;5395:57;5479:2;5471:11;;;;;5501:6;;-1:-1:-1;4921:592:1;;-1:-1:-1;;;;4921:592:1:o;5518:180::-;5577:6;5630:2;5618:9;5609:7;5605:23;5601:32;5598:52;;;5646:1;5643;5636:12;5598:52;-1:-1:-1;5669:23:1;;5518:180;-1:-1:-1;5518:180:1:o;5703:257::-;5744:3;5782:5;5776:12;5809:6;5804:3;5797:19;5825:63;5881:6;5874:4;5869:3;5865:14;5858:4;5851:5;5847:16;5825:63;:::i;:::-;5942:2;5921:15;-1:-1:-1;;5917:29:1;5908:39;;;;5949:4;5904:50;;5703:257;-1:-1:-1;;5703:257:1:o;5965:470::-;6144:3;6182:6;6176:13;6198:53;6244:6;6239:3;6232:4;6224:6;6220:17;6198:53;:::i;:::-;6314:13;;6273:16;;;;6336:57;6314:13;6273:16;6370:4;6358:17;;6336:57;:::i;:::-;6409:20;;5965:470;-1:-1:-1;;;;5965:470:1:o;6858:488::-;-1:-1:-1;;;;;7127:15:1;;;7109:34;;7179:15;;7174:2;7159:18;;7152:43;7226:2;7211:18;;7204:34;;;7274:3;7269:2;7254:18;;7247:31;;;7052:4;;7295:45;;7320:19;;7312:6;7295:45;:::i;:::-;7287:53;6858:488;-1:-1:-1;;;;;;6858:488:1:o;7543:219::-;7692:2;7681:9;7674:21;7655:4;7712:44;7752:2;7741:9;7737:18;7729:6;7712:44;:::i;13913:356::-;14115:2;14097:21;;;14134:18;;;14127:30;14193:34;14188:2;14173:18;;14166:62;14260:2;14245:18;;13913:356::o;16212:415::-;16414:2;16396:21;;;16453:2;16433:18;;;16426:30;16492:34;16487:2;16472:18;;16465:62;-1:-1:-1;;;16558:2:1;16543:18;;16536:49;16617:3;16602:19;;16212:415::o;21660:275::-;21731:2;21725:9;21796:2;21777:13;;-1:-1:-1;;21773:27:1;21761:40;;-1:-1:-1;;;;;21816:34:1;;21852:22;;;21813:62;21810:88;;;21878:18;;:::i;:::-;21914:2;21907:22;21660:275;;-1:-1:-1;21660:275:1:o;21940:183::-;22000:4;-1:-1:-1;;;;;22025:6:1;22022:30;22019:56;;;22055:18;;:::i;:::-;-1:-1:-1;22100:1:1;22096:14;22112:4;22092:25;;21940:183::o;22128:253::-;22168:3;-1:-1:-1;;;;;22257:2:1;22254:1;22250:10;22287:2;22284:1;22280:10;22318:3;22314:2;22310:12;22305:3;22302:21;22299:47;;;22326:18;;:::i;22386:128::-;22426:3;22457:1;22453:6;22450:1;22447:13;22444:39;;;22463:18;;:::i;:::-;-1:-1:-1;22499:9:1;;22386:128::o;22519:120::-;22559:1;22585;22575:35;;22590:18;;:::i;:::-;-1:-1:-1;22624:9:1;;22519:120::o;22644:168::-;22684:7;22750:1;22746;22742:6;22738:14;22735:1;22732:21;22727:1;22720:9;22713:17;22709:45;22706:71;;;22757:18;;:::i;:::-;-1:-1:-1;22797:9:1;;22644:168::o;22817:246::-;22857:4;-1:-1:-1;;;;;22970:10:1;;;;22940;;22992:12;;;22989:38;;;23007:18;;:::i;:::-;23044:13;;22817:246;-1:-1:-1;;;22817:246:1:o;23068:125::-;23108:4;23136:1;23133;23130:8;23127:34;;;23141:18;;:::i;:::-;-1:-1:-1;23178:9:1;;23068:125::o;23198:258::-;23270:1;23280:113;23294:6;23291:1;23288:13;23280:113;;;23370:11;;;23364:18;23351:11;;;23344:39;23316:2;23309:10;23280:113;;;23411:6;23408:1;23405:13;23402:48;;;-1:-1:-1;;23446:1:1;23428:16;;23421:27;23198:258::o;23461:136::-;23500:3;23528:5;23518:39;;23537:18;;:::i;:::-;-1:-1:-1;;;23573:18:1;;23461:136::o;23602:380::-;23681:1;23677:12;;;;23724;;;23745:61;;23799:4;23791:6;23787:17;23777:27;;23745:61;23852:2;23844:6;23841:14;23821:18;23818:38;23815:161;;;23898:10;23893:3;23889:20;23886:1;23879:31;23933:4;23930:1;23923:15;23961:4;23958:1;23951:15;23815:161;;23602:380;;;:::o;23987:135::-;24026:3;-1:-1:-1;;24047:17:1;;24044:43;;;24067:18;;:::i;:::-;-1:-1:-1;24114:1:1;24103:13;;23987:135::o;24127:112::-;24159:1;24185;24175:35;;24190:18;;:::i;:::-;-1:-1:-1;24224:9:1;;24127:112::o;24244:127::-;24305:10;24300:3;24296:20;24293:1;24286:31;24336:4;24333:1;24326:15;24360:4;24357:1;24350:15;24376:127;24437:10;24432:3;24428:20;24425:1;24418:31;24468:4;24465:1;24458:15;24492:4;24489:1;24482:15;24508:127;24569:10;24564:3;24560:20;24557:1;24550:31;24600:4;24597:1;24590:15;24624:4;24621:1;24614:15;24640:127;24701:10;24696:3;24692:20;24689:1;24682:31;24732:4;24729:1;24722:15;24756:4;24753:1;24746:15;24772:131;-1:-1:-1;;;;;;24846:32:1;;24836:43;;24826:71;;24893:1;24890;24883:12

Swarm Source

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