ETH Price: $3,479.74 (+7.17%)
Gas: 11 Gwei

Token

ToonBird (ToonBird)
 

Overview

Max Total Supply

3,208 ToonBird

Holders

576

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ToonBird
0x98cd5015f8eab6e47e2243a91384e42a3ceebcc4
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:
ToonBirds

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-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 ToonBirds is Ownable, ERC721A, ReentrancyGuard {
  uint256 public maxPerAddressDuringMint;
  uint256 public amountForDevs;
  uint256 public price = 0.0069 ether;
  uint256 public freemintAmount = 2;
  uint256 public mintAmount = 20;

  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;

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

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

  function Mint(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 Claim(uint256 quantity)
    external
    payable
    callerIsUser
  {
    require(quantity <= freemintAmount, "Too many minted at once");
    require(totalSupply() + quantity <= collectionSizeFree, "reached max supply");
    _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 Mints(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":"Claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mints","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":[],"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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006001556000600b556618838370f34000600f55600260105560146011553480156200003057600080fd5b5060405162002e0738038062002e078339810160408190526200005391620002cc565b60405180604001604052806008815260200167151bdbdb909a5c9960c21b81525060405180604001604052806008815260200167151bdbdb909a5c9960c21b815250858585620000b2620000ac620001d260201b60201c565b620001d6565b600082116200011f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008311620001815760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000116565b84516200019690600590602088019062000226565b508351620001ac90600690602087019062000226565b5060049290925560025560035550506001600c556014600d55600e55506200033f915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002349062000303565b90600052602060002090601f016020900481019282620002585760008555620002a3565b82601f106200027357805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a357825182559160200191906001019062000286565b50620002b1929150620002b5565b5090565b5b80821115620002b15760008155600101620002b6565b60008060008060808587031215620002e357600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200031857607f821691505b6020821081036200033957634e487b7160e01b600052602260045260246000fd5b50919050565b612ab8806200034f6000396000f3fe6080604052600436106102515760003560e01c80638bc35c2f11610139578063b05863d5116100b6578063d7224ba01161007a578063d7224ba0146106f7578063dc33e6811461070d578063e985e9c51461072d578063eb7f13ad14610776578063f2fde38b14610796578063fbe1aa51146107b657600080fd5b8063b05863d514610657578063b88d4fde14610677578063c87b56dd14610697578063d0d99907146106b7578063d49f0fa5146106d757600080fd5b80639f8afbcc116100fd5780639f8afbcc146105bf578063a035b1fe146105df578063a22cb465146105f5578063a7cd52cb14610615578063ac4460021461064257600080fd5b80638bc35c2f146104f15780638da5cb5b1461050757806390aa0b0f146105255780639231ab2a1461055d57806395d89b41146105aa57600080fd5b80632d20fb60116101d25780635a2bcc18116101965780635a2bcc18146104535780636352211e1461046957806370a0823114610489578063715018a6146104a95780637bb2b3c1146104be57806380e28ea5146104d157600080fd5b80632d20fb60146103b35780632f745c59146103d357806342842e0e146103f35780634f6ccce71461041357806355f804b31461043357600080fd5b8063130db2bb11610219578063130db2bb1461031a57806318160ddd1461033e57806321b2a6cb1461035357806323b872dd1461037357806327e410f11461039357600080fd5b806301ffc9a71461025657806306fdde031461028b57806307883703146102ad578063081812fc146102c2578063095ea7b3146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004612395565b6107cc565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610839565b604051610282919061240a565b6102c06102bb36600461241d565b6108cb565b005b3480156102ce57600080fd5b506102e26102dd36600461241d565b610a28565b6040516001600160a01b039091168152602001610282565b34801561030657600080fd5b506102c0610315366004612452565b610ab3565b34801561032657600080fd5b5061033060105481565b604051908152602001610282565b34801561034a57600080fd5b50600154610330565b34801561035f57600080fd5b506102c061036e36600461241d565b610bca565b34801561037f57600080fd5b506102c061038e36600461247c565b610bf9565b34801561039f57600080fd5b506102c06103ae36600461241d565b610c04565b3480156103bf57600080fd5b506102c06103ce36600461241d565b610c33565b3480156103df57600080fd5b506103306103ee366004612452565b610cc5565b3480156103ff57600080fd5b506102c061040e36600461247c565b610e3b565b34801561041f57600080fd5b5061033061042e36600461241d565b610e56565b34801561043f57600080fd5b506102c061044e3660046124b8565b610ebf565b34801561045f57600080fd5b5061033060115481565b34801561047557600080fd5b506102e261048436600461241d565b610ef5565b34801561049557600080fd5b506103306104a4366004612529565b610f07565b3480156104b557600080fd5b506102c0610f98565b6102c06104cc36600461241d565b610fce565b3480156104dd57600080fd5b506102c06104ec36600461241d565b611076565b3480156104fd57600080fd5b50610330600d5481565b34801561051357600080fd5b506000546001600160a01b03166102e2565b34801561053157600080fd5b50601254610545906001600160401b031681565b6040516001600160401b039091168152602001610282565b34801561056957600080fd5b5061057d61057836600461241d565b6110a5565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610282565b3480156105b657600080fd5b506102a06110c2565b3480156105cb57600080fd5b506102c06105da36600461241d565b6110d1565b3480156105eb57600080fd5b50610330600f5481565b34801561060157600080fd5b506102c0610610366004612544565b611100565b34801561062157600080fd5b50610330610630366004612529565b60136020526000908152604090205481565b34801561064e57600080fd5b506102c06111c4565b34801561066357600080fd5b506102c0610672366004612654565b6112d0565b34801561068357600080fd5b506102c0610692366004612713565b6113d7565b3480156106a357600080fd5b506102a06106b236600461241d565b611410565b3480156106c357600080fd5b506102c06106d236600461241d565b6114dd565b3480156106e357600080fd5b506102c06106f236600461241d565b61150c565b34801561070357600080fd5b50610330600b5481565b34801561071957600080fd5b50610330610728366004612529565b61153b565b34801561073957600080fd5b506102766107483660046127d2565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102c061079136600461241d565b611546565b3480156107a257600080fd5b506102c06107b1366004612529565b61157d565b3480156107c257600080fd5b50610330600e5481565b60006001600160e01b031982166380ac58cd60e01b14806107fd57506001600160e01b03198216635b5e139f60e01b145b8061081857506001600160e01b0319821663780e9d6360e01b145b8061083357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606005805461084890612805565b80601f016020809104026020016040519081016040528092919081815260200182805461087490612805565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b32331461091f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b60115481111561096b5760405162461bcd60e51b8152602060048201526017602482015276546f6f206d616e79206d696e746564206174206f6e636560481b6044820152606401610916565b80600f546109799190612855565b3410156109c15760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610916565b600254816109ce60015490565b6109d89190612874565b1115610a1b5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610916565b610a253382611615565b50565b6000610a35826001541190565b610a975760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610916565b506000908152600960205260409020546001600160a01b031690565b6000610abe82610ef5565b9050806001600160a01b0316836001600160a01b031603610b2c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610916565b336001600160a01b0382161480610b485750610b488133610748565b610bba5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610916565b610bc5838383611633565b505050565b6000546001600160a01b03163314610bf45760405162461bcd60e51b81526004016109169061288c565b600e55565b610bc583838361168f565b6000546001600160a01b03163314610c2e5760405162461bcd60e51b81526004016109169061288c565b601055565b6000546001600160a01b03163314610c5d5760405162461bcd60e51b81526004016109169061288c565b6002600c5403610caf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610916565b6002600c55610cbd81611a15565b506001600c55565b6000610cd083610f07565b8210610d295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610916565b6000610d3460015490565b905060008060005b83811015610ddb576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d8e57805192505b876001600160a01b0316836001600160a01b031603610dc857868403610dba5750935061083392505050565b83610dc4816128c1565b9450505b5080610dd3816128c1565b915050610d3c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610916565b610bc5838383604051806020016040528060008152506113d7565b6000610e6160015490565b8210610ebb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610916565b5090565b6000546001600160a01b03163314610ee95760405162461bcd60e51b81526004016109169061288c565b610bc5601483836122ef565b6000610f0082611bc6565b5192915050565b60006001600160a01b038216610f735760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610916565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b03163314610fc25760405162461bcd60e51b81526004016109169061288c565b610fcc6000611d34565b565b32331461101d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610916565b6010548111156110695760405162461bcd60e51b8152602060048201526017602482015276546f6f206d616e79206d696e746564206174206f6e636560481b6044820152606401610916565b600354816109ce60015490565b6000546001600160a01b031633146110a05760405162461bcd60e51b81526004016109169061288c565b600355565b604080518082019091526000808252602082015261083382611bc6565b60606006805461084890612805565b6000546001600160a01b031633146110fb5760405162461bcd60e51b81526004016109169061288c565b600255565b336001600160a01b038316036111585760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610916565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111ee5760405162461bcd60e51b81526004016109169061288c565b6002600c54036112405760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610916565b6002600c55604051600090339047908381818185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b5050905080610cbd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610916565b6000546001600160a01b031633146112fa5760405162461bcd60e51b81526004016109169061288c565b805182511461135c5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610916565b60005b8251811015610bc55781818151811061137a5761137a6128da565b602002602001015160136000858481518110611398576113986128da565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113cf906128c1565b91505061135f565b6113e284848461168f565b6113ee84848484611d84565b61140a5760405162461bcd60e51b8152600401610916906128f0565b50505050565b606061141d826001541190565b6114815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610916565b600061148b611e86565b905060008151116114ab57604051806020016040528060008152506114d6565b806114b584611e95565b6040516020016114c6929190612943565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115075760405162461bcd60e51b81526004016109169061288c565b601155565b6000546001600160a01b031633146115365760405162461bcd60e51b81526004016109169061288c565b600f55565b600061083382611f95565b6000546001600160a01b031633146115705760405162461bcd60e51b81526004016109169061288c565b600e54816109ce60015490565b6000546001600160a01b031633146115a75760405162461bcd60e51b81526004016109169061288c565b6001600160a01b03811661160c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610916565b610a2581611d34565b61162f828260405180602001604052806000815250612033565b5050565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169a82611bc6565b80519091506000906001600160a01b0316336001600160a01b031614806116d15750336116c684610a28565b6001600160a01b0316145b806116e3575081516116e39033610748565b90508061174d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610916565b846001600160a01b031682600001516001600160a01b0316146117c15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610916565b6001600160a01b0384166118255760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610916565b6118356000848460000151611633565b6001600160a01b03851660009081526008602052604081208054600192906118679084906001600160801b0316612972565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926118b39185911661299a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561193a846001612874565b6000818152600760205260409020549091506001600160a01b03166119cb57611964816001541190565b156119cb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b5481611a655760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610916565b60006001611a738484612874565b611a7d91906129bc565b90506001600254611a8e91906129bc565b811115611aa7576001600254611aa491906129bc565b90505b611ab2816001541190565b611b0d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610916565b815b818111611bb2576000818152600760205260409020546001600160a01b0316611ba0576000611b3d82611bc6565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611baa816128c1565b915050611b0f565b50611bbe816001612874565b600b55505050565b6040805180820190915260008082526020820152611be5826001541190565b611c445760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610916565b60006004548310611c6a57600454611c5c90846129bc565b611c67906001612874565b90505b825b818110611cd3576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611cc057949350505050565b5080611ccb816129d3565b915050611c6c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610916565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611e7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dc89033908990889088906004016129ea565b6020604051808303816000875af1925050508015611e03575060408051601f3d908101601f19168201909252611e0091810190612a27565b60015b611e60573d808015611e31576040519150601f19603f3d011682016040523d82523d6000602084013e611e36565b606091505b508051600003611e585760405162461bcd60e51b8152600401610916906128f0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e7e565b5060015b949350505050565b60606014805461084890612805565b606081600003611ebc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ee65780611ed0816128c1565b9150611edf9050600a83612a5a565b9150611ec0565b6000816001600160401b03811115611f0057611f00612580565b6040519080825280601f01601f191660200182016040528015611f2a576020820181803683370190505b5090505b8415611e7e57611f3f6001836129bc565b9150611f4c600a86612a6e565b611f57906030612874565b60f81b818381518110611f6c57611f6c6128da565b60200101906001600160f81b031916908160001a905350611f8e600a86612a5a565b9450611f2e565b60006001600160a01b0382166120075760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610916565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166120965760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610916565b6120a1816001541190565b156120ee5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610916565b60045483111561214b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610916565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121a790879061299a565b6001600160801b031681526020018583602001516121c5919061299a565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122e45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a86000888488611d84565b6122c45760405162461bcd60e51b8152600401610916906128f0565b816122ce816128c1565b92505080806122dc906128c1565b91505061225b565b506001819055611a0d565b8280546122fb90612805565b90600052602060002090601f01602090048101928261231d5760008555612363565b82601f106123365782800160ff19823516178555612363565b82800160010185558215612363579182015b82811115612363578235825591602001919060010190612348565b50610ebb9291505b80821115610ebb576000815560010161236b565b6001600160e01b031981168114610a2557600080fd5b6000602082840312156123a757600080fd5b81356114d68161237f565b60005b838110156123cd5781810151838201526020016123b5565b8381111561140a5750506000910152565b600081518084526123f68160208601602086016123b2565b601f01601f19169290920160200192915050565b6020815260006114d660208301846123de565b60006020828403121561242f57600080fd5b5035919050565b80356001600160a01b038116811461244d57600080fd5b919050565b6000806040838503121561246557600080fd5b61246e83612436565b946020939093013593505050565b60008060006060848603121561249157600080fd5b61249a84612436565b92506124a860208501612436565b9150604084013590509250925092565b600080602083850312156124cb57600080fd5b82356001600160401b03808211156124e257600080fd5b818501915085601f8301126124f657600080fd5b81358181111561250557600080fd5b86602082850101111561251757600080fd5b60209290920196919550909350505050565b60006020828403121561253b57600080fd5b6114d682612436565b6000806040838503121561255757600080fd5b61256083612436565b91506020830135801515811461257557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125be576125be612580565b604052919050565b60006001600160401b038211156125df576125df612580565b5060051b60200190565b600082601f8301126125fa57600080fd5b8135602061260f61260a836125c6565b612596565b82815260059290921b8401810191818101908684111561262e57600080fd5b8286015b848110156126495780358352918301918301612632565b509695505050505050565b6000806040838503121561266757600080fd5b82356001600160401b038082111561267e57600080fd5b818501915085601f83011261269257600080fd5b813560206126a261260a836125c6565b82815260059290921b840181019181810190898411156126c157600080fd5b948201945b838610156126e6576126d786612436565b825294820194908201906126c6565b965050860135925050808211156126fc57600080fd5b50612709858286016125e9565b9150509250929050565b6000806000806080858703121561272957600080fd5b61273285612436565b93506020612741818701612436565b93506040860135925060608601356001600160401b038082111561276457600080fd5b818801915088601f83011261277857600080fd5b81358181111561278a5761278a612580565b61279c601f8201601f19168501612596565b915080825289848285010111156127b257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156127e557600080fd5b6127ee83612436565b91506127fc60208401612436565b90509250929050565b600181811c9082168061281957607f821691505b60208210810361283957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561286f5761286f61283f565b500290565b600082198211156128875761288761283f565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600182016128d3576128d361283f565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516129558184602088016123b2565b8351908301906129698183602088016123b2565b01949350505050565b60006001600160801b03838116908316818110156129925761299261283f565b039392505050565b60006001600160801b038083168185168083038211156129695761296961283f565b6000828210156129ce576129ce61283f565b500390565b6000816129e2576129e261283f565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a1d908301846123de565b9695505050505050565b600060208284031215612a3957600080fd5b81516114d68161237f565b634e487b7160e01b600052601260045260246000fd5b600082612a6957612a69612a44565b500490565b600082612a7d57612a7d612a44565b50069056fea26469706673582212201446a55f40150db56806b2334a41a7eda49bf893876f80d0e4ce5b8d94d6c3b664736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000823500000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000008235

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638bc35c2f11610139578063b05863d5116100b6578063d7224ba01161007a578063d7224ba0146106f7578063dc33e6811461070d578063e985e9c51461072d578063eb7f13ad14610776578063f2fde38b14610796578063fbe1aa51146107b657600080fd5b8063b05863d514610657578063b88d4fde14610677578063c87b56dd14610697578063d0d99907146106b7578063d49f0fa5146106d757600080fd5b80639f8afbcc116100fd5780639f8afbcc146105bf578063a035b1fe146105df578063a22cb465146105f5578063a7cd52cb14610615578063ac4460021461064257600080fd5b80638bc35c2f146104f15780638da5cb5b1461050757806390aa0b0f146105255780639231ab2a1461055d57806395d89b41146105aa57600080fd5b80632d20fb60116101d25780635a2bcc18116101965780635a2bcc18146104535780636352211e1461046957806370a0823114610489578063715018a6146104a95780637bb2b3c1146104be57806380e28ea5146104d157600080fd5b80632d20fb60146103b35780632f745c59146103d357806342842e0e146103f35780634f6ccce71461041357806355f804b31461043357600080fd5b8063130db2bb11610219578063130db2bb1461031a57806318160ddd1461033e57806321b2a6cb1461035357806323b872dd1461037357806327e410f11461039357600080fd5b806301ffc9a71461025657806306fdde031461028b57806307883703146102ad578063081812fc146102c2578063095ea7b3146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004612395565b6107cc565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610839565b604051610282919061240a565b6102c06102bb36600461241d565b6108cb565b005b3480156102ce57600080fd5b506102e26102dd36600461241d565b610a28565b6040516001600160a01b039091168152602001610282565b34801561030657600080fd5b506102c0610315366004612452565b610ab3565b34801561032657600080fd5b5061033060105481565b604051908152602001610282565b34801561034a57600080fd5b50600154610330565b34801561035f57600080fd5b506102c061036e36600461241d565b610bca565b34801561037f57600080fd5b506102c061038e36600461247c565b610bf9565b34801561039f57600080fd5b506102c06103ae36600461241d565b610c04565b3480156103bf57600080fd5b506102c06103ce36600461241d565b610c33565b3480156103df57600080fd5b506103306103ee366004612452565b610cc5565b3480156103ff57600080fd5b506102c061040e36600461247c565b610e3b565b34801561041f57600080fd5b5061033061042e36600461241d565b610e56565b34801561043f57600080fd5b506102c061044e3660046124b8565b610ebf565b34801561045f57600080fd5b5061033060115481565b34801561047557600080fd5b506102e261048436600461241d565b610ef5565b34801561049557600080fd5b506103306104a4366004612529565b610f07565b3480156104b557600080fd5b506102c0610f98565b6102c06104cc36600461241d565b610fce565b3480156104dd57600080fd5b506102c06104ec36600461241d565b611076565b3480156104fd57600080fd5b50610330600d5481565b34801561051357600080fd5b506000546001600160a01b03166102e2565b34801561053157600080fd5b50601254610545906001600160401b031681565b6040516001600160401b039091168152602001610282565b34801561056957600080fd5b5061057d61057836600461241d565b6110a5565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610282565b3480156105b657600080fd5b506102a06110c2565b3480156105cb57600080fd5b506102c06105da36600461241d565b6110d1565b3480156105eb57600080fd5b50610330600f5481565b34801561060157600080fd5b506102c0610610366004612544565b611100565b34801561062157600080fd5b50610330610630366004612529565b60136020526000908152604090205481565b34801561064e57600080fd5b506102c06111c4565b34801561066357600080fd5b506102c0610672366004612654565b6112d0565b34801561068357600080fd5b506102c0610692366004612713565b6113d7565b3480156106a357600080fd5b506102a06106b236600461241d565b611410565b3480156106c357600080fd5b506102c06106d236600461241d565b6114dd565b3480156106e357600080fd5b506102c06106f236600461241d565b61150c565b34801561070357600080fd5b50610330600b5481565b34801561071957600080fd5b50610330610728366004612529565b61153b565b34801561073957600080fd5b506102766107483660046127d2565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102c061079136600461241d565b611546565b3480156107a257600080fd5b506102c06107b1366004612529565b61157d565b3480156107c257600080fd5b50610330600e5481565b60006001600160e01b031982166380ac58cd60e01b14806107fd57506001600160e01b03198216635b5e139f60e01b145b8061081857506001600160e01b0319821663780e9d6360e01b145b8061083357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606005805461084890612805565b80601f016020809104026020016040519081016040528092919081815260200182805461087490612805565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b32331461091f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b60115481111561096b5760405162461bcd60e51b8152602060048201526017602482015276546f6f206d616e79206d696e746564206174206f6e636560481b6044820152606401610916565b80600f546109799190612855565b3410156109c15760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610916565b600254816109ce60015490565b6109d89190612874565b1115610a1b5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610916565b610a253382611615565b50565b6000610a35826001541190565b610a975760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610916565b506000908152600960205260409020546001600160a01b031690565b6000610abe82610ef5565b9050806001600160a01b0316836001600160a01b031603610b2c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610916565b336001600160a01b0382161480610b485750610b488133610748565b610bba5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610916565b610bc5838383611633565b505050565b6000546001600160a01b03163314610bf45760405162461bcd60e51b81526004016109169061288c565b600e55565b610bc583838361168f565b6000546001600160a01b03163314610c2e5760405162461bcd60e51b81526004016109169061288c565b601055565b6000546001600160a01b03163314610c5d5760405162461bcd60e51b81526004016109169061288c565b6002600c5403610caf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610916565b6002600c55610cbd81611a15565b506001600c55565b6000610cd083610f07565b8210610d295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610916565b6000610d3460015490565b905060008060005b83811015610ddb576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d8e57805192505b876001600160a01b0316836001600160a01b031603610dc857868403610dba5750935061083392505050565b83610dc4816128c1565b9450505b5080610dd3816128c1565b915050610d3c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610916565b610bc5838383604051806020016040528060008152506113d7565b6000610e6160015490565b8210610ebb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610916565b5090565b6000546001600160a01b03163314610ee95760405162461bcd60e51b81526004016109169061288c565b610bc5601483836122ef565b6000610f0082611bc6565b5192915050565b60006001600160a01b038216610f735760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610916565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b03163314610fc25760405162461bcd60e51b81526004016109169061288c565b610fcc6000611d34565b565b32331461101d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610916565b6010548111156110695760405162461bcd60e51b8152602060048201526017602482015276546f6f206d616e79206d696e746564206174206f6e636560481b6044820152606401610916565b600354816109ce60015490565b6000546001600160a01b031633146110a05760405162461bcd60e51b81526004016109169061288c565b600355565b604080518082019091526000808252602082015261083382611bc6565b60606006805461084890612805565b6000546001600160a01b031633146110fb5760405162461bcd60e51b81526004016109169061288c565b600255565b336001600160a01b038316036111585760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610916565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111ee5760405162461bcd60e51b81526004016109169061288c565b6002600c54036112405760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610916565b6002600c55604051600090339047908381818185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b5050905080610cbd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610916565b6000546001600160a01b031633146112fa5760405162461bcd60e51b81526004016109169061288c565b805182511461135c5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610916565b60005b8251811015610bc55781818151811061137a5761137a6128da565b602002602001015160136000858481518110611398576113986128da565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113cf906128c1565b91505061135f565b6113e284848461168f565b6113ee84848484611d84565b61140a5760405162461bcd60e51b8152600401610916906128f0565b50505050565b606061141d826001541190565b6114815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610916565b600061148b611e86565b905060008151116114ab57604051806020016040528060008152506114d6565b806114b584611e95565b6040516020016114c6929190612943565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115075760405162461bcd60e51b81526004016109169061288c565b601155565b6000546001600160a01b031633146115365760405162461bcd60e51b81526004016109169061288c565b600f55565b600061083382611f95565b6000546001600160a01b031633146115705760405162461bcd60e51b81526004016109169061288c565b600e54816109ce60015490565b6000546001600160a01b031633146115a75760405162461bcd60e51b81526004016109169061288c565b6001600160a01b03811661160c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610916565b610a2581611d34565b61162f828260405180602001604052806000815250612033565b5050565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169a82611bc6565b80519091506000906001600160a01b0316336001600160a01b031614806116d15750336116c684610a28565b6001600160a01b0316145b806116e3575081516116e39033610748565b90508061174d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610916565b846001600160a01b031682600001516001600160a01b0316146117c15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610916565b6001600160a01b0384166118255760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610916565b6118356000848460000151611633565b6001600160a01b03851660009081526008602052604081208054600192906118679084906001600160801b0316612972565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926118b39185911661299a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561193a846001612874565b6000818152600760205260409020549091506001600160a01b03166119cb57611964816001541190565b156119cb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b5481611a655760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610916565b60006001611a738484612874565b611a7d91906129bc565b90506001600254611a8e91906129bc565b811115611aa7576001600254611aa491906129bc565b90505b611ab2816001541190565b611b0d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610916565b815b818111611bb2576000818152600760205260409020546001600160a01b0316611ba0576000611b3d82611bc6565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611baa816128c1565b915050611b0f565b50611bbe816001612874565b600b55505050565b6040805180820190915260008082526020820152611be5826001541190565b611c445760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610916565b60006004548310611c6a57600454611c5c90846129bc565b611c67906001612874565b90505b825b818110611cd3576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611cc057949350505050565b5080611ccb816129d3565b915050611c6c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610916565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611e7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dc89033908990889088906004016129ea565b6020604051808303816000875af1925050508015611e03575060408051601f3d908101601f19168201909252611e0091810190612a27565b60015b611e60573d808015611e31576040519150601f19603f3d011682016040523d82523d6000602084013e611e36565b606091505b508051600003611e585760405162461bcd60e51b8152600401610916906128f0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e7e565b5060015b949350505050565b60606014805461084890612805565b606081600003611ebc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ee65780611ed0816128c1565b9150611edf9050600a83612a5a565b9150611ec0565b6000816001600160401b03811115611f0057611f00612580565b6040519080825280601f01601f191660200182016040528015611f2a576020820181803683370190505b5090505b8415611e7e57611f3f6001836129bc565b9150611f4c600a86612a6e565b611f57906030612874565b60f81b818381518110611f6c57611f6c6128da565b60200101906001600160f81b031916908160001a905350611f8e600a86612a5a565b9450611f2e565b60006001600160a01b0382166120075760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610916565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166120965760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610916565b6120a1816001541190565b156120ee5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610916565b60045483111561214b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610916565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121a790879061299a565b6001600160801b031681526020018583602001516121c5919061299a565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122e45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a86000888488611d84565b6122c45760405162461bcd60e51b8152600401610916906128f0565b816122ce816128c1565b92505080806122dc906128c1565b91505061225b565b506001819055611a0d565b8280546122fb90612805565b90600052602060002090601f01602090048101928261231d5760008555612363565b82601f106123365782800160ff19823516178555612363565b82800160010185558215612363579182015b82811115612363578235825591602001919060010190612348565b50610ebb9291505b80821115610ebb576000815560010161236b565b6001600160e01b031981168114610a2557600080fd5b6000602082840312156123a757600080fd5b81356114d68161237f565b60005b838110156123cd5781810151838201526020016123b5565b8381111561140a5750506000910152565b600081518084526123f68160208601602086016123b2565b601f01601f19169290920160200192915050565b6020815260006114d660208301846123de565b60006020828403121561242f57600080fd5b5035919050565b80356001600160a01b038116811461244d57600080fd5b919050565b6000806040838503121561246557600080fd5b61246e83612436565b946020939093013593505050565b60008060006060848603121561249157600080fd5b61249a84612436565b92506124a860208501612436565b9150604084013590509250925092565b600080602083850312156124cb57600080fd5b82356001600160401b03808211156124e257600080fd5b818501915085601f8301126124f657600080fd5b81358181111561250557600080fd5b86602082850101111561251757600080fd5b60209290920196919550909350505050565b60006020828403121561253b57600080fd5b6114d682612436565b6000806040838503121561255757600080fd5b61256083612436565b91506020830135801515811461257557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125be576125be612580565b604052919050565b60006001600160401b038211156125df576125df612580565b5060051b60200190565b600082601f8301126125fa57600080fd5b8135602061260f61260a836125c6565b612596565b82815260059290921b8401810191818101908684111561262e57600080fd5b8286015b848110156126495780358352918301918301612632565b509695505050505050565b6000806040838503121561266757600080fd5b82356001600160401b038082111561267e57600080fd5b818501915085601f83011261269257600080fd5b813560206126a261260a836125c6565b82815260059290921b840181019181810190898411156126c157600080fd5b948201945b838610156126e6576126d786612436565b825294820194908201906126c6565b965050860135925050808211156126fc57600080fd5b50612709858286016125e9565b9150509250929050565b6000806000806080858703121561272957600080fd5b61273285612436565b93506020612741818701612436565b93506040860135925060608601356001600160401b038082111561276457600080fd5b818801915088601f83011261277857600080fd5b81358181111561278a5761278a612580565b61279c601f8201601f19168501612596565b915080825289848285010111156127b257600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156127e557600080fd5b6127ee83612436565b91506127fc60208401612436565b90509250929050565b600181811c9082168061281957607f821691505b60208210810361283957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561286f5761286f61283f565b500290565b600082198211156128875761288761283f565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600182016128d3576128d361283f565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516129558184602088016123b2565b8351908301906129698183602088016123b2565b01949350505050565b60006001600160801b03838116908316818110156129925761299261283f565b039392505050565b60006001600160801b038083168185168083038211156129695761296961283f565b6000828210156129ce576129ce61283f565b500390565b6000816129e2576129e261283f565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a1d908301846123de565b9695505050505050565b600060208284031215612a3957600080fd5b81516114d68161237f565b634e487b7160e01b600052601260045260246000fd5b600082612a6957612a69612a44565b500490565b600082612a7d57612a7d612a44565b50069056fea26469706673582212201446a55f40150db56806b2334a41a7eda49bf893876f80d0e4ce5b8d94d6c3b664736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000823500000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000008235

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 200
Arg [1] : collectionSize_ (uint256): 33333
Arg [2] : collectionSizeFree_ (uint256): 200
Arg [3] : amountForDevs_ (uint256): 33333

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000008235
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000008235


Deployed Bytecode Sourcemap

40516:3597:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23335:370;;;;;;;;;;-1:-1:-1;23335:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23335:370:0;;;;;;;;25061:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41339:350::-;;;;;;:::i;:::-;;:::i;:::-;;26586:204;;;;;;;;;;-1:-1:-1;26586:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26586:204:0;1528:203:1;26149:379:0;;;;;;;;;;-1:-1:-1;26149:379:0;;;;;:::i;:::-;;:::i;40693:33::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;40693:33:0;2173:177:1;21896:94:0;;;;;;;;;;-1:-1:-1;21972:12:0;;21896:94;;43750:116;;;;;;;;;;-1:-1:-1;43750:116:0;;;;;:::i;:::-;;:::i;27436:142::-;;;;;;;;;;-1:-1:-1;27436:142:0;;;;;:::i;:::-;;:::i;43874:120::-;;;;;;;;;;-1:-1:-1;43874:120:0;;;;;:::i;:::-;;:::i;43027:118::-;;;;;;;;;;-1:-1:-1;43027:118:0;;;;;:::i;:::-;;:::i;22527:744::-;;;;;;;;;;-1:-1:-1;22527:744:0;;;;;:::i;:::-;;:::i;27641:157::-;;;;;;;;;;-1:-1:-1;27641:157:0;;;;;:::i;:::-;;:::i;22059:177::-;;;;;;;;;;-1:-1:-1;22059:177:0;;;;;:::i;:::-;;:::i;42734:100::-;;;;;;;;;;-1:-1:-1;42734:100:0;;;;;:::i;:::-;;:::i;40731:30::-;;;;;;;;;;;;;;;;24884:118;;;;;;;;;;-1:-1:-1;24884:118:0;;;;;:::i;:::-;;:::i;23761:211::-;;;;;;;;;;-1:-1:-1;23761:211:0;;;;;:::i;:::-;;:::i;39856:94::-;;;;;;;;;;;;;:::i;41701:278::-;;;;;;:::i;:::-;;:::i;43505:109::-;;;;;;;;;;-1:-1:-1;43505:109:0;;;;;:::i;:::-;;:::i;40577:38::-;;;;;;;;;;;;;;;;39205:87;;;;;;;;;;-1:-1:-1;39251:7:0;39278:6;-1:-1:-1;;;;;39278:6:0;39205:87;;40823:28;;;;;;;;;;-1:-1:-1;40823:28:0;;;;-1:-1:-1;;;;;40823:28:0;;;;;;-1:-1:-1;;;;;3638:31:1;;;3620:50;;3608:2;3593:18;40823:28:0;3476:200:1;43264:147:0;;;;;;;;;;-1:-1:-1;43264:147:0;;;;;:::i;:::-;;:::i;:::-;;;;3911:13:1;;-1:-1:-1;;;;;3907:39:1;3889:58;;4007:4;3995:17;;;3989:24;-1:-1:-1;;;;;3985:49:1;3963:20;;;3956:79;;;;3862:18;43264:147:0;3681:360:1;25216:98:0;;;;;;;;;;;;;:::i;43622:120::-;;;;;;;;;;-1:-1:-1;43622:120:0;;;;;:::i;:::-;;:::i;40653:35::-;;;;;;;;;;;;;;;;26854:274;;;;;;;;;;-1:-1:-1;26854:274:0;;;;;:::i;:::-;;:::i;40858:44::-;;;;;;;;;;-1:-1:-1;40858:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;42840:181;;;;;;;;;;;;;:::i;41999:339::-;;;;;;;;;;-1:-1:-1;41999:339:0;;;;;:::i;:::-;;:::i;27861:311::-;;;;;;;;;;-1:-1:-1;27861:311:0;;;;;:::i;:::-;;:::i;25377:394::-;;;;;;;;;;-1:-1:-1;25377:394:0;;;;;:::i;:::-;;:::i;44002:104::-;;;;;;;;;;-1:-1:-1;44002:104:0;;;;;:::i;:::-;;:::i;43415:84::-;;;;;;;;;;-1:-1:-1;43415:84:0;;;;;:::i;:::-;;:::i;32276:43::-;;;;;;;;;;;;;;;;43151:107;;;;;;;;;;-1:-1:-1;43151:107:0;;;;;:::i;:::-;;:::i;27191:186::-;;;;;;;;;;-1:-1:-1;27191:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;27336:25:0;;;27313:4;27336:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27191:186;42369:182;;;;;;;;;;-1:-1:-1;42369:182:0;;;;;:::i;:::-;;:::i;40105:192::-;;;;;;;;;;-1:-1:-1;40105:192:0;;;;;:::i;:::-;;:::i;40620:28::-;;;;;;;;;;;;;;;;23335:370;23462:4;-1:-1:-1;;;;;;23492:40:0;;-1:-1:-1;;;23492:40:0;;:99;;-1:-1:-1;;;;;;;23543:48:0;;-1:-1:-1;;;23543:48:0;23492:99;:160;;;-1:-1:-1;;;;;;;23602:50:0;;-1:-1:-1;;;23602:50:0;23492:160;:207;;;-1:-1:-1;;;;;;;;;;1650:40:0;;;23663:36;23478:221;23335:370;-1:-1:-1;;23335:370:0:o;25061:94::-;25115:13;25144:5;25137:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:94;:::o;41339:350::-;41261:9;41274:10;41261:23;41253:66;;;;-1:-1:-1;;;41253:66:0;;8653:2:1;41253:66:0;;;8635:21:1;8692:2;8672:18;;;8665:30;8731:32;8711:18;;;8704:60;8781:18;;41253:66:0;;;;;;;;;41448:10:::1;;41436:8;:22;;41428:58;;;::::0;-1:-1:-1;;;41428:58:0;;9012:2:1;41428:58:0::1;::::0;::::1;8994:21:1::0;9051:2;9031:18;;;9024:30;-1:-1:-1;;;9070:18:1;;;9063:53;9133:18;;41428:58:0::1;8810:347:1::0;41428:58:0::1;41524:8;41516:5;;:16;;;;:::i;:::-;41503:9;:29;;41495:64;;;::::0;-1:-1:-1;;;41495:64:0;;9669:2:1;41495:64:0::1;::::0;::::1;9651:21:1::0;9708:2;9688:18;;;9681:30;-1:-1:-1;;;9727:18:1;;;9720:52;9789:18;;41495:64:0::1;9467:346:1::0;41495:64:0::1;41602:14;;41590:8;41574:13;21972:12:::0;;;21896:94;41574:13:::1;:24;;;;:::i;:::-;:42;;41566:73;;;::::0;-1:-1:-1;;;41566:73:0;;10153:2:1;41566:73:0::1;::::0;::::1;10135:21:1::0;10192:2;10172:18;;;10165:30;-1:-1:-1;;;10211:18:1;;;10204:48;10269:18;;41566:73:0::1;9951:342:1::0;41566:73:0::1;41646:31;41656:10;41668:8;41646:9;:31::i;:::-;41339:350:::0;:::o;26586:204::-;26654:7;26678:16;26686:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;26678:16;26670:74;;;;-1:-1:-1;;;26670:74:0;;10500:2:1;26670:74:0;;;10482:21:1;10539:2;10519:18;;;10512:30;10578:34;10558:18;;;10551:62;-1:-1:-1;;;10629:18:1;;;10622:43;10682:19;;26670:74:0;10298:409:1;26670:74:0;-1:-1:-1;26760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26760:24:0;;26586:204::o;26149:379::-;26218:13;26234:24;26250:7;26234:15;:24::i;:::-;26218:40;;26279:5;-1:-1:-1;;;;;26273:11:0;:2;-1:-1:-1;;;;;26273:11:0;;26265:58;;;;-1:-1:-1;;;26265:58:0;;10914:2:1;26265:58:0;;;10896:21:1;10953:2;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;-1:-1:-1;;;11043:18:1;;;11036:32;11085:19;;26265:58:0;10712:398:1;26265:58:0;17378:10;-1:-1:-1;;;;;26348:21:0;;;;:62;;-1:-1:-1;26373:37:0;26390:5;17378:10;27191:186;:::i;26373:37::-;26332:153;;;;-1:-1:-1;;;26332:153:0;;11317:2:1;26332:153:0;;;11299:21:1;11356:2;11336:18;;;11329:30;11395:34;11375:18;;;11368:62;11466:27;11446:18;;;11439:55;11511:19;;26332:153:0;11115:421:1;26332:153:0;26494:28;26503:2;26507:7;26516:5;26494:8;:28::i;:::-;26211:317;26149:379;;:::o;43750:116::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43828:13:::1;:33:::0;43750:116::o;27436:142::-;27544:28;27554:4;27560:2;27564:7;27544:9;:28::i;43874:120::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43954:14:::1;:35:::0;43874:120::o;43027:118::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;37319:1:::1;37915:7;;:19:::0;37907:63:::1;;;::::0;-1:-1:-1;;;37907:63:0;;12104:2:1;37907:63:0::1;::::0;::::1;12086:21:1::0;12143:2;12123:18;;;12116:30;12182:33;12162:18;;;12155:61;12233:18;;37907:63:0::1;11902:355:1::0;37907:63:0::1;37319:1;38048:7;:18:::0;43111:28:::2;43130:8:::0;43111:18:::2;:28::i;:::-;-1:-1:-1::0;37275:1:0::1;38227:7;:22:::0;43027:118::o;22527:744::-;22636:7;22671:16;22681:5;22671:9;:16::i;:::-;22663:5;:24;22655:71;;;;-1:-1:-1;;;22655:71:0;;12464:2:1;22655:71:0;;;12446:21:1;12503:2;12483:18;;;12476:30;12542:34;12522:18;;;12515:62;-1:-1:-1;;;12593:18:1;;;12586:32;12635:19;;22655:71:0;12262:398:1;22655:71:0;22733:22;22758:13;21972:12;;;21896:94;22758:13;22733:38;;22778:19;22808:25;22858:9;22853:350;22877:14;22873:1;:18;22853:350;;;22907:31;22941:14;;;:11;:14;;;;;;;;;22907:48;;;;;;;;;-1:-1:-1;;;;;22907:48:0;;;;;-1:-1:-1;;;22907:48:0;;;-1:-1:-1;;;;;22907:48:0;;;;;;;;22968:28;22964:89;;23029:14;;;-1:-1:-1;22964:89:0;23086:5;-1:-1:-1;;;;;23065:26:0;:17;-1:-1:-1;;;;;23065:26:0;;23061:135;;23123:5;23108:11;:20;23104:59;;-1:-1:-1;23150:1:0;-1:-1:-1;23143:8:0;;-1:-1:-1;;;23143:8:0;23104:59;23173:13;;;;:::i;:::-;;;;23061:135;-1:-1:-1;22893:3:0;;;;:::i;:::-;;;;22853:350;;;-1:-1:-1;23209:56:0;;-1:-1:-1;;;23209:56:0;;13007:2:1;23209:56:0;;;12989:21:1;13046:2;13026:18;;;13019:30;13085:34;13065:18;;;13058:62;-1:-1:-1;;;13136:18:1;;;13129:44;13190:19;;23209:56:0;12805:410:1;27641:157:0;27753:39;27770:4;27776:2;27780:7;27753:39;;;;;;;;;;;;:16;:39::i;22059:177::-;22126:7;22158:13;21972:12;;;21896:94;22158:13;22150:5;:21;22142:69;;;;-1:-1:-1;;;22142:69:0;;13422:2:1;22142:69:0;;;13404:21:1;13461:2;13441:18;;;13434:30;13500:34;13480:18;;;13473:62;-1:-1:-1;;;13551:18:1;;;13544:33;13594:19;;22142:69:0;13220:399:1;22142:69:0;-1:-1:-1;22225:5:0;22059:177::o;42734:100::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42805:23:::1;:13;42821:7:::0;;42805:23:::1;:::i;24884:118::-:0;24948:7;24971:20;24983:7;24971:11;:20::i;:::-;:25;;24884:118;-1:-1:-1;;24884:118:0:o;23761:211::-;23825:7;-1:-1:-1;;;;;23849:19:0;;23841:75;;;;-1:-1:-1;;;23841:75:0;;13826:2:1;23841:75:0;;;13808:21:1;13865:2;13845:18;;;13838:30;13904:34;13884:18;;;13877:62;-1:-1:-1;;;13955:18:1;;;13948:41;14006:19;;23841:75:0;13624:407:1;23841:75:0;-1:-1:-1;;;;;;23938:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23938:27:0;;23761:211::o;39856:94::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;39921:21:::1;39939:1;39921:9;:21::i;:::-;39856:94::o:0;41701:278::-;41261:9;41274:10;41261:23;41253:66;;;;-1:-1:-1;;;41253:66:0;;8653:2:1;41253:66:0;;;8635:21:1;8692:2;8672:18;;;8665:30;8731:32;8711:18;;;8704:60;8781:18;;41253:66:0;8451:354:1;41253:66:0;41809:14:::1;;41797:8;:26;;41789:62;;;::::0;-1:-1:-1;;;41789:62:0;;9012:2:1;41789:62:0::1;::::0;::::1;8994:21:1::0;9051:2;9031:18;;;9024:30;-1:-1:-1;;;9070:18:1;;;9063:53;9133:18;;41789:62:0::1;8810:347:1::0;41789:62:0::1;41894:18;;41882:8;41866:13;21972:12:::0;;;21896:94;43505:109;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43575:18:::1;:34:::0;43505:109::o;43264:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43385:20:0;43397:7;43385:11;:20::i;25216:98::-;25272:13;25301:7;25294:14;;;;;:::i;43622:120::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43702:14:::1;:35:::0;43622:120::o;26854:274::-;17378:10;-1:-1:-1;;;;;26945:24:0;;;26937:63;;;;-1:-1:-1;;;26937:63:0;;14238:2:1;26937:63:0;;;14220:21:1;14277:2;14257:18;;;14250:30;14316:28;14296:18;;;14289:56;14362:18;;26937:63:0;14036:350:1;26937:63:0;17378:10;27009:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27009:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27009:53:0;;;;;;;;;;27074:48;;540:41:1;;;27009:42:0;;17378:10;27074:48;;513:18:1;27074:48:0;;;;;;;26854:274;;:::o;42840:181::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;37319:1:::1;37915:7;;:19:::0;37907:63:::1;;;::::0;-1:-1:-1;;;37907:63:0;;12104:2:1;37907:63:0::1;::::0;::::1;12086:21:1::0;12143:2;12123:18;;;12116:30;12182:33;12162:18;;;12155:61;12233:18;;37907:63:0::1;11902:355:1::0;37907:63:0::1;37319:1;38048:7;:18:::0;42923:49:::2;::::0;42905:12:::2;::::0;42923:10:::2;::::0;42946:21:::2;::::0;42905:12;42923:49;42905:12;42923:49;42946:21;42923:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42904:68;;;42987:7;42979:36;;;::::0;-1:-1:-1;;;42979:36:0;;14803:2:1;42979:36:0::2;::::0;::::2;14785:21:1::0;14842:2;14822:18;;;14815:30;-1:-1:-1;;;14861:18:1;;;14854:46;14917:18;;42979:36:0::2;14601:340:1::0;41999:339:0;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42152:8:::1;:15;42132:9;:16;:35;42116:109;;;::::0;-1:-1:-1;;;42116:109:0;;15148:2:1;42116:109:0::1;::::0;::::1;15130:21:1::0;15187:2;15167:18;;;15160:30;15226:34;15206:18;;;15199:62;-1:-1:-1;;;15277:18:1;;;15270:38;15325:19;;42116:109:0::1;14946:404:1::0;42116:109:0::1;42237:9;42232:101;42256:9;:16;42252:1;:20;42232:101;;;42314:8;42323:1;42314:11;;;;;;;;:::i;:::-;;;;;;;42288:9;:23;42298:9;42308:1;42298:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42288:23:0::1;-1:-1:-1::0;;;;;42288:23:0::1;;;;;;;;;;;;:37;;;;42274:3;;;;;:::i;:::-;;;;42232:101;;27861:311:::0;27998:28;28008:4;28014:2;28018:7;27998:9;:28::i;:::-;28049:48;28072:4;28078:2;28082:7;28091:5;28049:22;:48::i;:::-;28033:133;;;;-1:-1:-1;;;28033:133:0;;;;;;;:::i;:::-;27861:311;;;;:::o;25377:394::-;25475:13;25516:16;25524:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;25516:16;25500:97;;;;-1:-1:-1;;;25500:97:0;;16109:2:1;25500:97:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:45;16293:19;;25500:97:0;15907:411:1;25500:97:0;25606:21;25630:10;:8;:10::i;:::-;25606:34;;25685:1;25667:7;25661:21;:25;:104;;;;;;;;;;;;;;;;;25722:7;25731:18;:7;:16;:18::i;:::-;25705:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25661:104;25647:118;25377:394;-1:-1:-1;;;25377:394:0:o;44002:104::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;44074:10:::1;:27:::0;44002:104::o;43415:84::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43477:5:::1;:17:::0;43415:84::o;43151:107::-;43209:7;43232:20;43246:5;43232:13;:20::i;42369:182::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42471:13:::1;;42459:8;42443:13;21972:12:::0;;;21896:94;40105:192;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40194:22:0;::::1;40186:73;;;::::0;-1:-1:-1;;;40186:73:0;;17000:2:1;40186:73:0::1;::::0;::::1;16982:21:1::0;17039:2;17019:18;;;17012:30;17078:34;17058:18;;;17051:62;-1:-1:-1;;;17129:18:1;;;17122:36;17175:19;;40186:73:0::1;16798:402:1::0;40186:73:0::1;40270:19;40280:8;40270:9;:19::i;28522:98::-:0;28587:27;28597:2;28601:8;28587:27;;;;;;;;;;;;:9;:27::i;:::-;28522:98;;:::o;32098:172::-;32195:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32195:29:0;-1:-1:-1;;;;;32195:29:0;;;;;;;;;32236:28;;32195:24;;32236:28;;;;;;;32098:172;;;:::o;30463:1529::-;30560:35;30598:20;30610:7;30598:11;:20::i;:::-;30669:18;;30560:58;;-1:-1:-1;30627:22:0;;-1:-1:-1;;;;;30653:34:0;17378:10;-1:-1:-1;;;;;30653:34:0;;:81;;;-1:-1:-1;17378:10:0;30698:20;30710:7;30698:11;:20::i;:::-;-1:-1:-1;;;;;30698:36:0;;30653:81;:142;;;-1:-1:-1;30762:18:0;;30745:50;;17378:10;27191:186;:::i;30745:50::-;30627:169;;30821:17;30805:101;;;;-1:-1:-1;;;30805:101:0;;17407:2:1;30805:101:0;;;17389:21:1;17446:2;17426:18;;;17419:30;17485:34;17465:18;;;17458:62;-1:-1:-1;;;17536:18:1;;;17529:48;17594:19;;30805:101:0;17205:414:1;30805:101:0;30953:4;-1:-1:-1;;;;;30931:26:0;:13;:18;;;-1:-1:-1;;;;;30931:26:0;;30915:98;;;;-1:-1:-1;;;30915:98:0;;17826:2:1;30915:98:0;;;17808:21:1;17865:2;17845:18;;;17838:30;17904:34;17884:18;;;17877:62;-1:-1:-1;;;17955:18:1;;;17948:36;18001:19;;30915:98:0;17624:402:1;30915:98:0;-1:-1:-1;;;;;31028:16:0;;31020:66;;;;-1:-1:-1;;;31020:66:0;;18233:2:1;31020:66:0;;;18215:21:1;18272:2;18252:18;;;18245:30;18311:34;18291:18;;;18284:62;-1:-1:-1;;;18362:18:1;;;18355:35;18407:19;;31020:66:0;18031:401:1;31020:66:0;31195:49;31212:1;31216:7;31225:13;:18;;;31195:8;:49::i;:::-;-1:-1:-1;;;;;31253:18:0;;;;;;:12;:18;;;;;:31;;31283:1;;31253:18;:31;;31283:1;;-1:-1:-1;;;;;31253:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31253:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31291:16:0;;-1:-1:-1;31291:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31291:16:0;;:29;;-1:-1:-1;;31291:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31291:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31350:43:0;;;;;;;;-1:-1:-1;;;;;31350:43:0;;;;;-1:-1:-1;;;;;31376:15:0;31350:43;;;;;;;;;-1:-1:-1;31327:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31327:66:0;-1:-1:-1;;;;;;31327:66:0;;;;;;;;;;;31643:11;31339:7;-1:-1:-1;31643:11:0;:::i;:::-;31706:1;31665:24;;;:11;:24;;;;;:29;31621:33;;-1:-1:-1;;;;;;31665:29:0;31661:236;;31723:20;31731:11;28498:12;;-1:-1:-1;28488:22:0;28411:105;31723:20;31719:171;;;31783:97;;;;;;;;31810:18;;-1:-1:-1;;;;;31783:97:0;;;;;;31841:28;;;;-1:-1:-1;;;;;31783:97:0;;;;;;;;;-1:-1:-1;31756:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;31756:124:0;-1:-1:-1;;;;;;31756:124:0;;;;;;;;;;;;31719:171;31929:7;31925:2;-1:-1:-1;;;;;31910:27:0;31919:4;-1:-1:-1;;;;;31910:27:0;;;;;;;;;;;31944:42;30553:1439;;;30463:1529;;;:::o;32424:846::-;32514:24;;32553:12;32545:49;;;;-1:-1:-1;;;32545:49:0;;19148:2:1;32545:49:0;;;19130:21:1;19187:2;19167:18;;;19160:30;19226:26;19206:18;;;19199:54;19270:18;;32545:49:0;18946:348:1;32545:49:0;32601:16;32651:1;32620:28;32640:8;32620:17;:28;:::i;:::-;:32;;;;:::i;:::-;32601:51;;32691:1;32674:14;;:18;;;;:::i;:::-;32663:8;:29;32659:81;;;32731:1;32714:14;;:18;;;;:::i;:::-;32703:29;;32659:81;32855:17;32863:8;28498:12;;-1:-1:-1;28488:22:0;28411:105;32855:17;32847:68;;;;-1:-1:-1;;;32847:68:0;;19631:2:1;32847:68:0;;;19613:21:1;19670:2;19650:18;;;19643:30;19709:34;19689:18;;;19682:62;-1:-1:-1;;;19760:18:1;;;19753:36;19806:19;;32847:68:0;19429:402:1;32847:68:0;32939:17;32922:297;32963:8;32958:1;:13;32922:297;;33022:1;32991:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;32991:19:0;32987:225;;33037:31;33071:14;33083:1;33071:11;:14::i;:::-;33113:89;;;;;;;;33140:14;;-1:-1:-1;;;;;33113:89:0;;;;;;33167:24;;;;-1:-1:-1;;;;;33113:89:0;;;;;;;;;-1:-1:-1;33096:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;33096:106:0;-1:-1:-1;;;;;;33096:106:0;;;;;;;;;;;;-1:-1:-1;32987:225:0;32973:3;;;;:::i;:::-;;;;32922:297;;;-1:-1:-1;33252:12:0;:8;33263:1;33252:12;:::i;:::-;33225:24;:39;-1:-1:-1;;;32424:846:0:o;24224:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;24341:16:0;24349:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;24341:16;24333:71;;;;-1:-1:-1;;;24333:71:0;;20038:2:1;24333:71:0;;;20020:21:1;20077:2;20057:18;;;20050:30;20116:34;20096:18;;;20089:62;-1:-1:-1;;;20167:18:1;;;20160:40;20217:19;;24333:71:0;19836:406:1;24333:71:0;24413:26;24461:12;;24450:7;:23;24446:93;;24515:12;;24505:22;;:7;:22;:::i;:::-;:26;;24530:1;24505:26;:::i;:::-;24484:47;;24446:93;24567:7;24547:212;24584:18;24576:4;:26;24547:212;;24621:31;24655:17;;;:11;:17;;;;;;;;;24621:51;;;;;;;;;-1:-1:-1;;;;;24621:51:0;;;;;-1:-1:-1;;;24621:51:0;;;-1:-1:-1;;;;;24621:51:0;;;;;;;;24685:28;24681:71;;24733:9;24224:606;-1:-1:-1;;;;24224:606:0:o;24681:71::-;-1:-1:-1;24604:6:0;;;;:::i;:::-;;;;24547:212;;;-1:-1:-1;24767:57:0;;-1:-1:-1;;;24767:57:0;;20590:2:1;24767:57:0;;;20572:21:1;20629:2;20609:18;;;20602:30;20668:34;20648:18;;;20641:62;-1:-1:-1;;;20719:18:1;;;20712:45;20774:19;;24767:57:0;20388:411:1;40305:173:0;40361:16;40380:6;;-1:-1:-1;;;;;40397:17:0;;;-1:-1:-1;;;;;;40397:17:0;;;;;;40430:40;;40380:6;;;;;;;40430:40;;40361:16;40430:40;40350:128;40305:173;:::o;33813:690::-;33950:4;-1:-1:-1;;;;;33967:13:0;;2738:20;2786:8;33963:535;;34006:72;;-1:-1:-1;;;34006:72:0;;-1:-1:-1;;;;;34006:36:0;;;;;:72;;17378:10;;34057:4;;34063:7;;34072:5;;34006:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34006:72:0;;;;;;;;-1:-1:-1;;34006:72:0;;;;;;;;;;;;:::i;:::-;;;33993:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34237:6;:13;34254:1;34237:18;34233:215;;34270:61;;-1:-1:-1;;;34270:61:0;;;;;;;:::i;34233:215::-;34416:6;34410:13;34401:6;34397:2;34393:15;34386:38;33993:464;-1:-1:-1;;;;;;34128:55:0;-1:-1:-1;;;34128:55:0;;-1:-1:-1;34121:62:0;;33963:535;-1:-1:-1;34486:4:0;33963:535;33813:690;;;;;;:::o;42620:108::-;42680:13;42709;42702:20;;;;;:::i;17767:723::-;17823:13;18044:5;18053:1;18044:10;18040:53;;-1:-1:-1;;18071:10:0;;;;;;;;;;;;-1:-1:-1;;;18071:10:0;;;;;17767:723::o;18040:53::-;18118:5;18103:12;18159:78;18166:9;;18159:78;;18192:8;;;;:::i;:::-;;-1:-1:-1;18215:10:0;;-1:-1:-1;18223:2:0;18215:10;;:::i;:::-;;;18159:78;;;18247:19;18279:6;-1:-1:-1;;;;;18269:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18269:17:0;;18247:39;;18297:154;18304:10;;18297:154;;18331:11;18341:1;18331:11;;:::i;:::-;;-1:-1:-1;18400:10:0;18408:2;18400:5;:10;:::i;:::-;18387:24;;:2;:24;:::i;:::-;18374:39;;18357:6;18364;18357:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18357:56:0;;;;;;;;-1:-1:-1;18428:11:0;18437:2;18428:11;;:::i;:::-;;;18297:154;;23978:240;24039:7;-1:-1:-1;;;;;24071:19:0;;24055:102;;;;-1:-1:-1;;;24055:102:0;;22128:2:1;24055:102:0;;;22110:21:1;22167:2;22147:18;;;22140:30;22206:34;22186:18;;;22179:62;-1:-1:-1;;;22257:18:1;;;22250:47;22314:19;;24055:102:0;21926:413:1;24055:102:0;-1:-1:-1;;;;;;24179:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24179:32:0;;-1:-1:-1;;;;;24179:32:0;;23978:240::o;28959:1272::-;29087:12;;-1:-1:-1;;;;;29114:16:0;;29106:62;;;;-1:-1:-1;;;29106:62:0;;22546:2:1;29106:62:0;;;22528:21:1;22585:2;22565:18;;;22558:30;22624:34;22604:18;;;22597:62;-1:-1:-1;;;22675:18:1;;;22668:31;22716:19;;29106:62:0;22344:397:1;29106:62:0;29305:21;29313:12;28498;;-1:-1:-1;28488:22:0;28411:105;29305:21;29304:22;29296:64;;;;-1:-1:-1;;;29296:64:0;;22948:2:1;29296:64:0;;;22930:21:1;22987:2;22967:18;;;22960:30;23026:31;23006:18;;;22999:59;23075:18;;29296:64:0;22746:353:1;29296:64:0;29387:12;;29375:8;:24;;29367:71;;;;-1:-1:-1;;;29367:71:0;;23306:2:1;29367:71:0;;;23288:21:1;23345:2;23325:18;;;23318:30;23384:34;23364:18;;;23357:62;-1:-1:-1;;;23435:18:1;;;23428:32;23477:19;;29367:71:0;23104:398:1;29367:71:0;-1:-1:-1;;;;;29550:16:0;;29517:30;29550:16;;;:12;:16;;;;;;;;;29517:49;;;;;;;;;-1:-1:-1;;;;;29517:49:0;;;;;-1:-1:-1;;;29517:49:0;;;;;;;;;;;29592:119;;;;;;;;29612:19;;29517:49;;29592:119;;;29612:39;;29642:8;;29612:39;:::i;:::-;-1:-1:-1;;;;;29592:119:0;;;;;29695:8;29660:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29592:119:0;;;;;;-1:-1:-1;;;;;29573:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;29573:138:0;;;;;;;;;;;;29746:43;;;;;;;;;;-1:-1:-1;;;;;29772:15:0;29746:43;;;;;;;;29718:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29718:71:0;-1:-1:-1;;;;;;29718:71:0;;;;;;;;;;;;;;;;;;29730:12;;29842:281;29866:8;29862:1;:12;29842:281;;;29895:38;;29920:12;;-1:-1:-1;;;;;29895:38:0;;;29912:1;;29895:38;;29912:1;;29895:38;29960:59;29991:1;29995:2;29999:12;30013:5;29960:22;:59::i;:::-;29942:150;;;;-1:-1:-1;;;29942:150:0;;;;;;;:::i;:::-;30101:14;;;;:::i;:::-;;;;29876:3;;;;;:::i;:::-;;;;29842:281;;;-1:-1:-1;30131:12:0;:27;;;30165:60;27861:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;-1:-1:-1;;;;;2946:2:1;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;4046:347::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4211:29;4230:9;4211:29;:::i;:::-;4201:39;;4290:2;4279:9;4275:18;4262:32;4337:5;4330:13;4323:21;4316:5;4313:32;4303:60;;4359:1;4356;4349:12;4303:60;4382:5;4372:15;;;4046:347;;;;;:::o;4398:127::-;4459:10;4454:3;4450:20;4447:1;4440:31;4490:4;4487:1;4480:15;4514:4;4511:1;4504:15;4530:275;4601:2;4595:9;4666:2;4647:13;;-1:-1:-1;;4643:27:1;4631:40;;-1:-1:-1;;;;;4686:34:1;;4722:22;;;4683:62;4680:88;;;4748:18;;:::i;:::-;4784:2;4777:22;4530:275;;-1:-1:-1;4530:275:1:o;4810:183::-;4870:4;-1:-1:-1;;;;;4895:6:1;4892:30;4889:56;;;4925:18;;:::i;:::-;-1:-1:-1;4970:1:1;4966:14;4982:4;4962:25;;4810:183::o;4998:662::-;5052:5;5105:3;5098:4;5090:6;5086:17;5082:27;5072:55;;5123:1;5120;5113:12;5072:55;5159:6;5146:20;5185:4;5209:60;5225:43;5265:2;5225:43;:::i;:::-;5209:60;:::i;:::-;5303:15;;;5389:1;5385:10;;;;5373:23;;5369:32;;;5334:12;;;;5413:15;;;5410:35;;;5441:1;5438;5431:12;5410:35;5477:2;5469:6;5465:15;5489:142;5505:6;5500:3;5497:15;5489:142;;;5571:17;;5559:30;;5609:12;;;;5522;;5489:142;;;-1:-1:-1;5649:5:1;4998:662;-1:-1:-1;;;;;;4998:662:1:o;5665:1146::-;5783:6;5791;5844:2;5832:9;5823:7;5819:23;5815:32;5812:52;;;5860:1;5857;5850:12;5812:52;5900:9;5887:23;-1:-1:-1;;;;;5970:2:1;5962:6;5959:14;5956:34;;;5986:1;5983;5976:12;5956:34;6024:6;6013:9;6009:22;5999:32;;6069:7;6062:4;6058:2;6054:13;6050:27;6040:55;;6091:1;6088;6081:12;6040:55;6127:2;6114:16;6149:4;6173:60;6189:43;6229:2;6189:43;:::i;6173:60::-;6267:15;;;6349:1;6345:10;;;;6337:19;;6333:28;;;6298:12;;;;6373:19;;;6370:39;;;6405:1;6402;6395:12;6370:39;6429:11;;;;6449:148;6465:6;6460:3;6457:15;6449:148;;;6531:23;6550:3;6531:23;:::i;:::-;6519:36;;6482:12;;;;6575;;;;6449:148;;;6616:5;-1:-1:-1;;6659:18:1;;6646:32;;-1:-1:-1;;6690:16:1;;;6687:36;;;6719:1;6716;6709:12;6687:36;;6742:63;6797:7;6786:8;6775:9;6771:24;6742:63;:::i;:::-;6732:73;;;5665:1146;;;;;:::o;6816:980::-;6911:6;6919;6927;6935;6988:3;6976:9;6967:7;6963:23;6959:33;6956:53;;;7005:1;7002;6995:12;6956:53;7028:29;7047:9;7028:29;:::i;:::-;7018:39;;7076:2;7097:38;7131:2;7120:9;7116:18;7097:38;:::i;:::-;7087:48;;7182:2;7171:9;7167:18;7154:32;7144:42;;7237:2;7226:9;7222:18;7209:32;-1:-1:-1;;;;;7301:2:1;7293:6;7290:14;7287:34;;;7317:1;7314;7307:12;7287:34;7355:6;7344:9;7340:22;7330:32;;7400:7;7393:4;7389:2;7385:13;7381:27;7371:55;;7422:1;7419;7412:12;7371:55;7458:2;7445:16;7480:2;7476;7473:10;7470:36;;;7486:18;;:::i;:::-;7528:53;7571:2;7552:13;;-1:-1:-1;;7548:27:1;7544:36;;7528:53;:::i;:::-;7515:66;;7604:2;7597:5;7590:17;7644:7;7639:2;7634;7630;7626:11;7622:20;7619:33;7616:53;;;7665:1;7662;7655:12;7616:53;7720:2;7715;7711;7707:11;7702:2;7695:5;7691:14;7678:45;7764:1;7759:2;7754;7747:5;7743:14;7739:23;7732:34;;7785:5;7775:15;;;;;6816:980;;;;;;;:::o;7801:260::-;7869:6;7877;7930:2;7918:9;7909:7;7905:23;7901:32;7898:52;;;7946:1;7943;7936:12;7898:52;7969:29;7988:9;7969:29;:::i;:::-;7959:39;;8017:38;8051:2;8040:9;8036:18;8017:38;:::i;:::-;8007:48;;7801:260;;;;;:::o;8066:380::-;8145:1;8141:12;;;;8188;;;8209:61;;8263:4;8255:6;8251:17;8241:27;;8209:61;8316:2;8308:6;8305:14;8285:18;8282:38;8279:161;;8362:10;8357:3;8353:20;8350:1;8343:31;8397:4;8394:1;8387:15;8425:4;8422:1;8415:15;8279:161;;8066:380;;;:::o;9162:127::-;9223:10;9218:3;9214:20;9211:1;9204:31;9254:4;9251:1;9244:15;9278:4;9275:1;9268:15;9294:168;9334:7;9400:1;9396;9392:6;9388:14;9385:1;9382:21;9377:1;9370:9;9363:17;9359:45;9356:71;;;9407:18;;:::i;:::-;-1:-1:-1;9447:9:1;;9294:168::o;9818:128::-;9858:3;9889:1;9885:6;9882:1;9879:13;9876:39;;;9895:18;;:::i;:::-;-1:-1:-1;9931:9:1;;9818:128::o;11541:356::-;11743:2;11725:21;;;11762:18;;;11755:30;11821:34;11816:2;11801:18;;11794:62;11888:2;11873:18;;11541:356::o;12665:135::-;12704:3;12725:17;;;12722:43;;12745:18;;:::i;:::-;-1:-1:-1;12792:1:1;12781:13;;12665:135::o;15355:127::-;15416:10;15411:3;15407:20;15404:1;15397:31;15447:4;15444:1;15437:15;15471:4;15468:1;15461:15;15487:415;15689:2;15671:21;;;15728:2;15708:18;;;15701:30;15767:34;15762:2;15747:18;;15740:62;-1:-1:-1;;;15833:2:1;15818:18;;15811:49;15892:3;15877:19;;15487:415::o;16323:470::-;16502:3;16540:6;16534:13;16556:53;16602:6;16597:3;16590:4;16582:6;16578:17;16556:53;:::i;:::-;16672:13;;16631:16;;;;16694:57;16672:13;16631:16;16728:4;16716:17;;16694:57;:::i;:::-;16767:20;;16323:470;-1:-1:-1;;;;16323:470:1:o;18437:246::-;18477:4;-1:-1:-1;;;;;18590:10:1;;;;18560;;18612:12;;;18609:38;;;18627:18;;:::i;:::-;18664:13;;18437:246;-1:-1:-1;;;18437:246:1:o;18688:253::-;18728:3;-1:-1:-1;;;;;18817:2:1;18814:1;18810:10;18847:2;18844:1;18840:10;18878:3;18874:2;18870:12;18865:3;18862:21;18859:47;;;18886:18;;:::i;19299:125::-;19339:4;19367:1;19364;19361:8;19358:34;;;19372:18;;:::i;:::-;-1:-1:-1;19409:9:1;;19299:125::o;20247:136::-;20286:3;20314:5;20304:39;;20323:18;;:::i;:::-;-1:-1:-1;;;20359:18:1;;20247:136::o;20804:489::-;-1:-1:-1;;;;;21073:15:1;;;21055:34;;21125:15;;21120:2;21105:18;;21098:43;21172:2;21157:18;;21150:34;;;21220:3;21215:2;21200:18;;21193:31;;;20998:4;;21241:46;;21267:19;;21259:6;21241:46;:::i;:::-;21233:54;20804:489;-1:-1:-1;;;;;;20804:489:1:o;21298:249::-;21367:6;21420:2;21408:9;21399:7;21395:23;21391:32;21388:52;;;21436:1;21433;21426:12;21388:52;21468:9;21462:16;21487:30;21511:5;21487:30;:::i;21552:127::-;21613:10;21608:3;21604:20;21601:1;21594:31;21644:4;21641:1;21634:15;21668:4;21665:1;21658:15;21684:120;21724:1;21750;21740:35;;21755:18;;:::i;:::-;-1:-1:-1;21789:9:1;;21684:120::o;21809:112::-;21841:1;21867;21857:35;;21872:18;;:::i;:::-;-1:-1:-1;21906:9:1;;21809:112::o

Swarm Source

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