ETH Price: $2,519.27 (+2.05%)

Token

Engagement Farming Bored Apes Yacht Club (EFBAYC)
 

Overview

Max Total Supply

197 EFBAYC

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 EFBAYC
0x6aeef79942c292551f47c88e24bcb7b3deed7726
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:
EFBAYC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-15
*/

// SPDX-License-Identifier: MIT
// File: contracts/Strings.sol
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);
    }
}

// File: contracts/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: contracts/IERC165.sol



pragma solidity ^0.8.0;

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

// File: contracts/ERC165.sol



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

// File: contracts/IERC721.sol



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

// File: contracts/IERC721Enumerable.sol



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

// File: contracts/IERC721Metadata.sol



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

// File: contracts/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/Context.sol



pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



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 immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

// File: contracts/Ownable.sol



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

// File: contracts/EFBAYC.sol



pragma solidity ^0.8.0;





contract EFBAYC is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  uint256 public immutable amountForFree;
  uint256 public mintPrice = 0; //0.05 ETH
  uint256 public listPrice = 0; //0.05 ETH

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_,
    uint256 amountForFree_
  ) ERC721A("Engagement Farming Bored Apes Yacht Club", "EFBAYC", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
    amountForFree = amountForFree_;
  }

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

  function publicFreeMint(uint256 quantity) external callerIsUser {

    require(totalSupply() + quantity <= amountForFree, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }

  function baycFreeMint() external payable callerIsUser {
    uint256 price = listPrice;
    require(price != 0, "allowlist sale has not begun yet");
    require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    allowlist[msg.sender]--;
    _safeMint(msg.sender, 1);
    refundIfOver(price);
  }

  function publicPaidMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    uint256 publicPrice = mintPrice;

    require(
      isPublicSaleOn(publicPrice),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicPriceWei
  ) public view returns (bool) {
    return
      publicPriceWei != 0 ;
  }


  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 devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // 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 setListPrice(uint256 newPrice) public onlyOwner {
      listPrice = newPrice;
  }

  function setMintPrice(uint256 newPrice) public onlyOwner {
      mintPrice = newPrice;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"uint256","name":"amountForFree_","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":"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":[],"name":"amountForFree","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":"baycFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicPaidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"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":"newPrice","type":"uint256"}],"name":"setListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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"}]

610120604052600060015560006008556000600a556000600b553480156200002657600080fd5b5060405162003251380380620032518339810160408190526200004991620002a2565b604051806060016040528060288152602001620032296028913960408051808201909152600681526545464241594360d01b602082015285856200008d33620001ac565b60008111620000fa5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200015c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000f1565b835162000171906002906020870190620001fc565b50825162000187906003906020860190620001fc565b5060a0919091526080525050600160095560c09390935260e052506101005262000316565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200020a90620002d9565b90600052602060002090601f0160209004810192826200022e576000855562000279565b82601f106200024957805160ff191683800117855562000279565b8280016001018555821562000279579182015b82811115620002795782518255916020019190600101906200025c565b50620002879291506200028b565b5090565b5b808211156200028757600081556001016200028c565b60008060008060808587031215620002b957600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c90821680620002ee57607f821691505b602082108114156200031057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051612e7a620003af60003960008181610608015261103e01526000818161073b0152610dbf0152600081816104d20152818161109101526112a0015260008181610e5501528181610ee301528181610f1b01528181611f3401528181611f5e01526124200152600081816108530152818161124d01528181611d3a0152611d6c0152612e7a6000f3fe60806040526004361061022f5760003560e01c8063715018a61161012e578063b59e1c79116100ab578063e985e9c51161006f578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fbe1aa5114610729578063fe7d5bbb1461075d57600080fd5b8063b59e1c79146105f6578063b88d4fde1461062a578063c87b56dd1461064a578063d7224ba01461066a578063dc33e6811461068057600080fd5b806395d89b41116100f257806395d89b411461055f578063a22cb46514610574578063a7cd52cb14610594578063ac446002146105c1578063b05863d5146105d657600080fd5b8063715018a6146104985780637f10acef146104ad5780638bc35c2f146104c05780638da5cb5b146104f45780639231ab2a1461051257600080fd5b8063375a069a116101bc5780636352211e116101805780636352211e1461040c57806363b28ee61461042c5780636817c76c1461044c5780636eb588d91461046257806370a082311461047857600080fd5b8063375a069a1461036c57806342842e0e1461038c5780634f6ccce7146103ac57806355f804b3146103cc5780635ec08519146103ec57600080fd5b8063095ea7b311610203578063095ea7b3146102cd57806318160ddd146102ed57806323b872dd1461030c5780632d20fb601461032c5780632f745c591461034c57600080fd5b8062ecc6d21461023457806301ffc9a71461023e57806306fdde0314610273578063081812fc14610295575b600080fd5b61023c61077d565b005b34801561024a57600080fd5b5061025e6102593660046129d0565b6108db565b60405190151581526020015b60405180910390f35b34801561027f57600080fd5b50610288610948565b60405161026a9190612b2c565b3480156102a157600080fd5b506102b56102b0366004612a7b565b6109da565b6040516001600160a01b03909116815260200161026a565b3480156102d957600080fd5b5061023c6102e83660046128e0565b610a65565b3480156102f957600080fd5b506001545b60405190815260200161026a565b34801561031857600080fd5b5061023c6103273660046127a9565b610b7d565b34801561033857600080fd5b5061023c610347366004612a7b565b610b88565b34801561035857600080fd5b506102fe6103673660046128e0565b610c1b565b34801561037857600080fd5b5061023c610387366004612a7b565b610d93565b34801561039857600080fd5b5061023c6103a73660046127a9565b610f51565b3480156103b857600080fd5b506102fe6103c7366004612a7b565b610f6c565b3480156103d857600080fd5b5061023c6103e7366004612a0a565b610fd5565b3480156103f857600080fd5b5061025e610407366004612a7b565b151590565b34801561041857600080fd5b506102b5610427366004612a7b565b61100b565b34801561043857600080fd5b5061023c610447366004612a7b565b61101d565b34801561045857600080fd5b506102fe600a5481565b34801561046e57600080fd5b506102fe600b5481565b34801561048457600080fd5b506102fe61049336600461275b565b611115565b3480156104a457600080fd5b5061023c6111a6565b61023c6104bb366004612a7b565b6111dc565b3480156104cc57600080fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000081565b34801561050057600080fd5b506000546001600160a01b03166102b5565b34801561051e57600080fd5b5061053261052d366004612a7b565b61133a565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161026a565b34801561056b57600080fd5b50610288611357565b34801561058057600080fd5b5061023c61058f3660046128a4565b611366565b3480156105a057600080fd5b506102fe6105af36600461275b565b600c6020526000908152604090205481565b3480156105cd57600080fd5b5061023c61142b565b3480156105e257600080fd5b5061023c6105f136600461290a565b611538565b34801561060257600080fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063657600080fd5b5061023c6106453660046127e5565b61163f565b34801561065657600080fd5b50610288610665366004612a7b565b611678565b34801561067657600080fd5b506102fe60085481565b34801561068c57600080fd5b506102fe61069b36600461275b565b611745565b3480156106ac57600080fd5b5061025e6106bb366004612776565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b5061023c61070436600461275b565b611750565b34801561071557600080fd5b5061023c610724366004612a7b565b6117e8565b34801561073557600080fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000081565b34801561076957600080fd5b5061023c610778366004612a7b565b611817565b3233146107a55760405162461bcd60e51b815260040161079c90612b3f565b60405180910390fd5b600b54806107f55760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e20796574604482015260640161079c565b336000908152600c60205260409020546108515760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400604482015260640161079c565b7f000000000000000000000000000000000000000000000000000000000000000061087b60015490565b610886906001612c9f565b11156108a45760405162461bcd60e51b815260040161079c90612b76565b336000908152600c602052604081208054916108bf83612d55565b91905055506108cf336001611846565b6108d881611860565b50565b60006001600160e01b031982166380ac58cd60e01b148061090c57506001600160e01b03198216635b5e139f60e01b145b8061092757506001600160e01b0319821663780e9d6360e01b145b8061094257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461095790612d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461098390612d6c565b80156109d05780601f106109a5576101008083540402835291602001916109d0565b820191906000526020600020905b8154815290600101906020018083116109b357829003601f168201915b5050505050905090565b60006109e7826001541190565b610a495760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161079c565b506000908152600660205260409020546001600160a01b031690565b6000610a708261100b565b9050806001600160a01b0316836001600160a01b03161415610adf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161079c565b336001600160a01b0382161480610afb5750610afb81336106bb565b610b6d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161079c565b610b788383836118e7565b505050565b610b78838383611943565b6000546001600160a01b03163314610bb25760405162461bcd60e51b815260040161079c90612ba2565b60026009541415610c055760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079c565b6002600955610c1381611cc9565b506001600955565b6000610c2683611115565b8210610c7f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161079c565b6000610c8a60015490565b905060008060005b83811015610d33576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610ce457805192505b876001600160a01b0316836001600160a01b03161415610d205786841415610d125750935061094292505050565b83610d1c81612da7565b9450505b5080610d2b81612da7565b915050610c92565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161079c565b6000546001600160a01b03163314610dbd5760405162461bcd60e51b815260040161079c90612ba2565b7f000000000000000000000000000000000000000000000000000000000000000081610de860015490565b610df29190612c9f565b1115610e505760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b606482015260840161079c565b610e7a7f000000000000000000000000000000000000000000000000000000000000000082612dc2565b15610edc5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b606482015260840161079c565b6000610f087f000000000000000000000000000000000000000000000000000000000000000083612cb7565b905060005b81811015610b7857610f3f337f0000000000000000000000000000000000000000000000000000000000000000611846565b80610f4981612da7565b915050610f0d565b610b788383836040518060200160405280600081525061163f565b6000610f7760015490565b8210610fd15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161079c565b5090565b6000546001600160a01b03163314610fff5760405162461bcd60e51b815260040161079c90612ba2565b610b78600d838361263d565b600061101682611eb2565b5192915050565b32331461103c5760405162461bcd60e51b815260040161079c90612b3f565b7f00000000000000000000000000000000000000000000000000000000000000008161106760015490565b6110719190612c9f565b111561108f5760405162461bcd60e51b815260040161079c90612b76565b7f0000000000000000000000000000000000000000000000000000000000000000816110ba33611745565b6110c49190612c9f565b111561110b5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161079c565b6108d83382611846565b60006001600160a01b0382166111815760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161079c565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146111d05760405162461bcd60e51b815260040161079c90612ba2565b6111da600061205b565b565b3233146111fb5760405162461bcd60e51b815260040161079c90612b3f565b600a548061124b5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161079c565b7f00000000000000000000000000000000000000000000000000000000000000008261127660015490565b6112809190612c9f565b111561129e5760405162461bcd60e51b815260040161079c90612b76565b7f0000000000000000000000000000000000000000000000000000000000000000826112c933611745565b6112d39190612c9f565b111561131a5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161079c565b6113243383611846565b6113366113318383612ccb565b611860565b5050565b604080518082019091526000808252602082015261094282611eb2565b60606003805461095790612d6c565b6001600160a01b0382163314156113bf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161079c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114555760405162461bcd60e51b815260040161079c90612ba2565b600260095414156114a85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079c565b6002600955604051600090339047908381818185875af1925050503d80600081146114ef576040519150601f19603f3d011682016040523d82523d6000602084013e6114f4565b606091505b5050905080610c135760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161079c565b6000546001600160a01b031633146115625760405162461bcd60e51b815260040161079c90612ba2565b80518251146115c45760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b606482015260840161079c565b60005b8251811015610b78578181815181106115e2576115e2612e02565b6020026020010151600c600085848151811061160057611600612e02565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061163790612da7565b9150506115c7565b61164a848484611943565b611656848484846120ab565b6116725760405162461bcd60e51b815260040161079c90612bd7565b50505050565b6060611685826001541190565b6116e95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079c565b60006116f36121b9565b90506000815111611713576040518060200160405280600081525061173e565b8061171d846121c8565b60405160200161172e929190612ac0565b6040516020818303038152906040525b9392505050565b6000610942826122c5565b6000546001600160a01b0316331461177a5760405162461bcd60e51b815260040161079c90612ba2565b6001600160a01b0381166117df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b6108d88161205b565b6000546001600160a01b031633146118125760405162461bcd60e51b815260040161079c90612ba2565b600a55565b6000546001600160a01b031633146118415760405162461bcd60e51b815260040161079c90612ba2565b600b55565b611336828260405180602001604052806000815250612363565b803410156118a95760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161079c565b803411156108d857336108fc6118bf8334612d12565b6040518115909202916000818181858888f19350505050158015611336573d6000803e3d6000fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061194e82611eb2565b80519091506000906001600160a01b0316336001600160a01b0316148061198557503361197a846109da565b6001600160a01b0316145b806119975750815161199790336106bb565b905080611a015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161079c565b846001600160a01b031682600001516001600160a01b031614611a755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161079c565b6001600160a01b038416611ad95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161079c565b611ae960008484600001516118e7565b6001600160a01b0385166000908152600560205260408120805460019290611b1b9084906001600160801b0316612cea565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611b6791859116612c7d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bee846001612c9f565b6000818152600460205260409020549091506001600160a01b0316611c7f57611c18816001541190565b15611c7f5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611d195760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161079c565b60006001611d278484612c9f565b611d319190612d12565b9050611d5e60017f0000000000000000000000000000000000000000000000000000000000000000612d12565b811115611d9357611d9060017f0000000000000000000000000000000000000000000000000000000000000000612d12565b90505b611d9e816001541190565b611df95760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161079c565b815b818111611e9e576000818152600460205260409020546001600160a01b0316611e8c576000611e2982611eb2565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e9681612da7565b915050611dfb565b50611eaa816001612c9f565b600855505050565b6040805180820190915260008082526020820152611ed1826001541190565b611f305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161079c565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f9157611f837f000000000000000000000000000000000000000000000000000000000000000084612d12565b611f8e906001612c9f565b90505b825b818110611ffa576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fe757949350505050565b5080611ff281612d55565b915050611f93565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161079c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156121ad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120ef903390899088908890600401612aef565b602060405180830381600087803b15801561210957600080fd5b505af1925050508015612139575060408051601f3d908101601f19168201909252612136918101906129ed565b60015b612193573d808015612167576040519150601f19603f3d011682016040523d82523d6000602084013e61216c565b606091505b50805161218b5760405162461bcd60e51b815260040161079c90612bd7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121b1565b5060015b949350505050565b6060600d805461095790612d6c565b6060816121ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612216578061220081612da7565b915061220f9050600a83612cb7565b91506121f0565b6000816001600160401b0381111561223057612230612e18565b6040519080825280601f01601f19166020018201604052801561225a576020820181803683370190505b5090505b84156121b15761226f600183612d12565b915061227c600a86612dc2565b612287906030612c9f565b60f81b81838151811061229c5761229c612e02565b60200101906001600160f81b031916908160001a9053506122be600a86612cb7565b945061225e565b60006001600160a01b0382166123375760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161079c565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123c65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161079c565b6123d1816001541190565b1561241e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161079c565b7f00000000000000000000000000000000000000000000000000000000000000008311156124995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161079c565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124f5908790612c7d565b6001600160801b031681526020018583602001516125139190612c7d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126325760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125f660008884886120ab565b6126125760405162461bcd60e51b815260040161079c90612bd7565b8161261c81612da7565b925050808061262a90612da7565b9150506125a9565b506001819055611cc1565b82805461264990612d6c565b90600052602060002090601f01602090048101928261266b57600085556126b1565b82601f106126845782800160ff198235161785556126b1565b828001600101855582156126b1579182015b828111156126b1578235825591602001919060010190612696565b50610fd19291505b80821115610fd157600081556001016126b9565b80356001600160a01b03811681146126e457600080fd5b919050565b600082601f8301126126fa57600080fd5b8135602061270f61270a83612c5a565b612c2a565b80838252828201915082860187848660051b890101111561272f57600080fd5b60005b8581101561274e57813584529284019290840190600101612732565b5090979650505050505050565b60006020828403121561276d57600080fd5b61173e826126cd565b6000806040838503121561278957600080fd5b612792836126cd565b91506127a0602084016126cd565b90509250929050565b6000806000606084860312156127be57600080fd5b6127c7846126cd565b92506127d5602085016126cd565b9150604084013590509250925092565b600080600080608085870312156127fb57600080fd5b612804856126cd565b935060206128138187016126cd565b93506040860135925060608601356001600160401b038082111561283657600080fd5b818801915088601f83011261284a57600080fd5b81358181111561285c5761285c612e18565b61286e601f8201601f19168501612c2a565b9150808252898482850101111561288457600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156128b757600080fd5b6128c0836126cd565b9150602083013580151581146128d557600080fd5b809150509250929050565b600080604083850312156128f357600080fd5b6128fc836126cd565b946020939093013593505050565b6000806040838503121561291d57600080fd5b82356001600160401b038082111561293457600080fd5b818501915085601f83011261294857600080fd5b8135602061295861270a83612c5a565b8083825282820191508286018a848660051b890101111561297857600080fd5b600096505b848710156129a25761298e816126cd565b83526001969096019591830191830161297d565b50965050860135925050808211156129b957600080fd5b506129c6858286016126e9565b9150509250929050565b6000602082840312156129e257600080fd5b813561173e81612e2e565b6000602082840312156129ff57600080fd5b815161173e81612e2e565b60008060208385031215612a1d57600080fd5b82356001600160401b0380821115612a3457600080fd5b818501915085601f830112612a4857600080fd5b813581811115612a5757600080fd5b866020828501011115612a6957600080fd5b60209290920196919550909350505050565b600060208284031215612a8d57600080fd5b5035919050565b60008151808452612aac816020860160208601612d29565b601f01601f19169290920160200192915050565b60008351612ad2818460208801612d29565b835190830190612ae6818360208801612d29565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2290830184612a94565b9695505050505050565b60208152600061173e6020830184612a94565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612c5257612c52612e18565b604052919050565b60006001600160401b03821115612c7357612c73612e18565b5060051b60200190565b60006001600160801b03808316818516808303821115612ae657612ae6612dd6565b60008219821115612cb257612cb2612dd6565b500190565b600082612cc657612cc6612dec565b500490565b6000816000190483118215151615612ce557612ce5612dd6565b500290565b60006001600160801b0383811690831681811015612d0a57612d0a612dd6565b039392505050565b600082821015612d2457612d24612dd6565b500390565b60005b83811015612d44578181015183820152602001612d2c565b838111156116725750506000910152565b600081612d6457612d64612dd6565b506000190190565b600181811c90821680612d8057607f821691505b60208210811415612da157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dbb57612dbb612dd6565b5060010190565b600082612dd157612dd1612dec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108d857600080fdfea2646970667358221220f13a3c30658ae9306b32ab1e984d1a5229c28b3e551471367b3b4a9987c0215e64736f6c63430008070033456e676167656d656e74204661726d696e6720426f726564204170657320596163687420436c75620000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000009c4

Deployed Bytecode

0x60806040526004361061022f5760003560e01c8063715018a61161012e578063b59e1c79116100ab578063e985e9c51161006f578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fbe1aa5114610729578063fe7d5bbb1461075d57600080fd5b8063b59e1c79146105f6578063b88d4fde1461062a578063c87b56dd1461064a578063d7224ba01461066a578063dc33e6811461068057600080fd5b806395d89b41116100f257806395d89b411461055f578063a22cb46514610574578063a7cd52cb14610594578063ac446002146105c1578063b05863d5146105d657600080fd5b8063715018a6146104985780637f10acef146104ad5780638bc35c2f146104c05780638da5cb5b146104f45780639231ab2a1461051257600080fd5b8063375a069a116101bc5780636352211e116101805780636352211e1461040c57806363b28ee61461042c5780636817c76c1461044c5780636eb588d91461046257806370a082311461047857600080fd5b8063375a069a1461036c57806342842e0e1461038c5780634f6ccce7146103ac57806355f804b3146103cc5780635ec08519146103ec57600080fd5b8063095ea7b311610203578063095ea7b3146102cd57806318160ddd146102ed57806323b872dd1461030c5780632d20fb601461032c5780632f745c591461034c57600080fd5b8062ecc6d21461023457806301ffc9a71461023e57806306fdde0314610273578063081812fc14610295575b600080fd5b61023c61077d565b005b34801561024a57600080fd5b5061025e6102593660046129d0565b6108db565b60405190151581526020015b60405180910390f35b34801561027f57600080fd5b50610288610948565b60405161026a9190612b2c565b3480156102a157600080fd5b506102b56102b0366004612a7b565b6109da565b6040516001600160a01b03909116815260200161026a565b3480156102d957600080fd5b5061023c6102e83660046128e0565b610a65565b3480156102f957600080fd5b506001545b60405190815260200161026a565b34801561031857600080fd5b5061023c6103273660046127a9565b610b7d565b34801561033857600080fd5b5061023c610347366004612a7b565b610b88565b34801561035857600080fd5b506102fe6103673660046128e0565b610c1b565b34801561037857600080fd5b5061023c610387366004612a7b565b610d93565b34801561039857600080fd5b5061023c6103a73660046127a9565b610f51565b3480156103b857600080fd5b506102fe6103c7366004612a7b565b610f6c565b3480156103d857600080fd5b5061023c6103e7366004612a0a565b610fd5565b3480156103f857600080fd5b5061025e610407366004612a7b565b151590565b34801561041857600080fd5b506102b5610427366004612a7b565b61100b565b34801561043857600080fd5b5061023c610447366004612a7b565b61101d565b34801561045857600080fd5b506102fe600a5481565b34801561046e57600080fd5b506102fe600b5481565b34801561048457600080fd5b506102fe61049336600461275b565b611115565b3480156104a457600080fd5b5061023c6111a6565b61023c6104bb366004612a7b565b6111dc565b3480156104cc57600080fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000581565b34801561050057600080fd5b506000546001600160a01b03166102b5565b34801561051e57600080fd5b5061053261052d366004612a7b565b61133a565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161026a565b34801561056b57600080fd5b50610288611357565b34801561058057600080fd5b5061023c61058f3660046128a4565b611366565b3480156105a057600080fd5b506102fe6105af36600461275b565b600c6020526000908152604090205481565b3480156105cd57600080fd5b5061023c61142b565b3480156105e257600080fd5b5061023c6105f136600461290a565b611538565b34801561060257600080fd5b506102fe7f00000000000000000000000000000000000000000000000000000000000009c481565b34801561063657600080fd5b5061023c6106453660046127e5565b61163f565b34801561065657600080fd5b50610288610665366004612a7b565b611678565b34801561067657600080fd5b506102fe60085481565b34801561068c57600080fd5b506102fe61069b36600461275b565b611745565b3480156106ac57600080fd5b5061025e6106bb366004612776565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b5061023c61070436600461275b565b611750565b34801561071557600080fd5b5061023c610724366004612a7b565b6117e8565b34801561073557600080fd5b506102fe7f00000000000000000000000000000000000000000000000000000000000000c881565b34801561076957600080fd5b5061023c610778366004612a7b565b611817565b3233146107a55760405162461bcd60e51b815260040161079c90612b3f565b60405180910390fd5b600b54806107f55760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e20796574604482015260640161079c565b336000908152600c60205260409020546108515760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400604482015260640161079c565b7f000000000000000000000000000000000000000000000000000000000000271061087b60015490565b610886906001612c9f565b11156108a45760405162461bcd60e51b815260040161079c90612b76565b336000908152600c602052604081208054916108bf83612d55565b91905055506108cf336001611846565b6108d881611860565b50565b60006001600160e01b031982166380ac58cd60e01b148061090c57506001600160e01b03198216635b5e139f60e01b145b8061092757506001600160e01b0319821663780e9d6360e01b145b8061094257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461095790612d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461098390612d6c565b80156109d05780601f106109a5576101008083540402835291602001916109d0565b820191906000526020600020905b8154815290600101906020018083116109b357829003601f168201915b5050505050905090565b60006109e7826001541190565b610a495760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161079c565b506000908152600660205260409020546001600160a01b031690565b6000610a708261100b565b9050806001600160a01b0316836001600160a01b03161415610adf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161079c565b336001600160a01b0382161480610afb5750610afb81336106bb565b610b6d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161079c565b610b788383836118e7565b505050565b610b78838383611943565b6000546001600160a01b03163314610bb25760405162461bcd60e51b815260040161079c90612ba2565b60026009541415610c055760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079c565b6002600955610c1381611cc9565b506001600955565b6000610c2683611115565b8210610c7f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161079c565b6000610c8a60015490565b905060008060005b83811015610d33576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610ce457805192505b876001600160a01b0316836001600160a01b03161415610d205786841415610d125750935061094292505050565b83610d1c81612da7565b9450505b5080610d2b81612da7565b915050610c92565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161079c565b6000546001600160a01b03163314610dbd5760405162461bcd60e51b815260040161079c90612ba2565b7f00000000000000000000000000000000000000000000000000000000000000c881610de860015490565b610df29190612c9f565b1115610e505760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b606482015260840161079c565b610e7a7f000000000000000000000000000000000000000000000000000000000000000582612dc2565b15610edc5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b606482015260840161079c565b6000610f087f000000000000000000000000000000000000000000000000000000000000000583612cb7565b905060005b81811015610b7857610f3f337f0000000000000000000000000000000000000000000000000000000000000005611846565b80610f4981612da7565b915050610f0d565b610b788383836040518060200160405280600081525061163f565b6000610f7760015490565b8210610fd15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161079c565b5090565b6000546001600160a01b03163314610fff5760405162461bcd60e51b815260040161079c90612ba2565b610b78600d838361263d565b600061101682611eb2565b5192915050565b32331461103c5760405162461bcd60e51b815260040161079c90612b3f565b7f00000000000000000000000000000000000000000000000000000000000009c48161106760015490565b6110719190612c9f565b111561108f5760405162461bcd60e51b815260040161079c90612b76565b7f0000000000000000000000000000000000000000000000000000000000000005816110ba33611745565b6110c49190612c9f565b111561110b5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161079c565b6108d83382611846565b60006001600160a01b0382166111815760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161079c565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146111d05760405162461bcd60e51b815260040161079c90612ba2565b6111da600061205b565b565b3233146111fb5760405162461bcd60e51b815260040161079c90612b3f565b600a548061124b5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161079c565b7f00000000000000000000000000000000000000000000000000000000000027108261127660015490565b6112809190612c9f565b111561129e5760405162461bcd60e51b815260040161079c90612b76565b7f0000000000000000000000000000000000000000000000000000000000000005826112c933611745565b6112d39190612c9f565b111561131a5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161079c565b6113243383611846565b6113366113318383612ccb565b611860565b5050565b604080518082019091526000808252602082015261094282611eb2565b60606003805461095790612d6c565b6001600160a01b0382163314156113bf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161079c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114555760405162461bcd60e51b815260040161079c90612ba2565b600260095414156114a85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079c565b6002600955604051600090339047908381818185875af1925050503d80600081146114ef576040519150601f19603f3d011682016040523d82523d6000602084013e6114f4565b606091505b5050905080610c135760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161079c565b6000546001600160a01b031633146115625760405162461bcd60e51b815260040161079c90612ba2565b80518251146115c45760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b606482015260840161079c565b60005b8251811015610b78578181815181106115e2576115e2612e02565b6020026020010151600c600085848151811061160057611600612e02565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061163790612da7565b9150506115c7565b61164a848484611943565b611656848484846120ab565b6116725760405162461bcd60e51b815260040161079c90612bd7565b50505050565b6060611685826001541190565b6116e95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079c565b60006116f36121b9565b90506000815111611713576040518060200160405280600081525061173e565b8061171d846121c8565b60405160200161172e929190612ac0565b6040516020818303038152906040525b9392505050565b6000610942826122c5565b6000546001600160a01b0316331461177a5760405162461bcd60e51b815260040161079c90612ba2565b6001600160a01b0381166117df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b6108d88161205b565b6000546001600160a01b031633146118125760405162461bcd60e51b815260040161079c90612ba2565b600a55565b6000546001600160a01b031633146118415760405162461bcd60e51b815260040161079c90612ba2565b600b55565b611336828260405180602001604052806000815250612363565b803410156118a95760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161079c565b803411156108d857336108fc6118bf8334612d12565b6040518115909202916000818181858888f19350505050158015611336573d6000803e3d6000fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061194e82611eb2565b80519091506000906001600160a01b0316336001600160a01b0316148061198557503361197a846109da565b6001600160a01b0316145b806119975750815161199790336106bb565b905080611a015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161079c565b846001600160a01b031682600001516001600160a01b031614611a755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161079c565b6001600160a01b038416611ad95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161079c565b611ae960008484600001516118e7565b6001600160a01b0385166000908152600560205260408120805460019290611b1b9084906001600160801b0316612cea565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611b6791859116612c7d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bee846001612c9f565b6000818152600460205260409020549091506001600160a01b0316611c7f57611c18816001541190565b15611c7f5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611d195760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161079c565b60006001611d278484612c9f565b611d319190612d12565b9050611d5e60017f0000000000000000000000000000000000000000000000000000000000002710612d12565b811115611d9357611d9060017f0000000000000000000000000000000000000000000000000000000000002710612d12565b90505b611d9e816001541190565b611df95760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161079c565b815b818111611e9e576000818152600460205260409020546001600160a01b0316611e8c576000611e2982611eb2565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e9681612da7565b915050611dfb565b50611eaa816001612c9f565b600855505050565b6040805180820190915260008082526020820152611ed1826001541190565b611f305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161079c565b60007f00000000000000000000000000000000000000000000000000000000000000058310611f9157611f837f000000000000000000000000000000000000000000000000000000000000000584612d12565b611f8e906001612c9f565b90505b825b818110611ffa576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fe757949350505050565b5080611ff281612d55565b915050611f93565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161079c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156121ad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120ef903390899088908890600401612aef565b602060405180830381600087803b15801561210957600080fd5b505af1925050508015612139575060408051601f3d908101601f19168201909252612136918101906129ed565b60015b612193573d808015612167576040519150601f19603f3d011682016040523d82523d6000602084013e61216c565b606091505b50805161218b5760405162461bcd60e51b815260040161079c90612bd7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121b1565b5060015b949350505050565b6060600d805461095790612d6c565b6060816121ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612216578061220081612da7565b915061220f9050600a83612cb7565b91506121f0565b6000816001600160401b0381111561223057612230612e18565b6040519080825280601f01601f19166020018201604052801561225a576020820181803683370190505b5090505b84156121b15761226f600183612d12565b915061227c600a86612dc2565b612287906030612c9f565b60f81b81838151811061229c5761229c612e02565b60200101906001600160f81b031916908160001a9053506122be600a86612cb7565b945061225e565b60006001600160a01b0382166123375760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161079c565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123c65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161079c565b6123d1816001541190565b1561241e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161079c565b7f00000000000000000000000000000000000000000000000000000000000000058311156124995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161079c565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124f5908790612c7d565b6001600160801b031681526020018583602001516125139190612c7d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126325760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125f660008884886120ab565b6126125760405162461bcd60e51b815260040161079c90612bd7565b8161261c81612da7565b925050808061262a90612da7565b9150506125a9565b506001819055611cc1565b82805461264990612d6c565b90600052602060002090601f01602090048101928261266b57600085556126b1565b82601f106126845782800160ff198235161785556126b1565b828001600101855582156126b1579182015b828111156126b1578235825591602001919060010190612696565b50610fd19291505b80821115610fd157600081556001016126b9565b80356001600160a01b03811681146126e457600080fd5b919050565b600082601f8301126126fa57600080fd5b8135602061270f61270a83612c5a565b612c2a565b80838252828201915082860187848660051b890101111561272f57600080fd5b60005b8581101561274e57813584529284019290840190600101612732565b5090979650505050505050565b60006020828403121561276d57600080fd5b61173e826126cd565b6000806040838503121561278957600080fd5b612792836126cd565b91506127a0602084016126cd565b90509250929050565b6000806000606084860312156127be57600080fd5b6127c7846126cd565b92506127d5602085016126cd565b9150604084013590509250925092565b600080600080608085870312156127fb57600080fd5b612804856126cd565b935060206128138187016126cd565b93506040860135925060608601356001600160401b038082111561283657600080fd5b818801915088601f83011261284a57600080fd5b81358181111561285c5761285c612e18565b61286e601f8201601f19168501612c2a565b9150808252898482850101111561288457600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156128b757600080fd5b6128c0836126cd565b9150602083013580151581146128d557600080fd5b809150509250929050565b600080604083850312156128f357600080fd5b6128fc836126cd565b946020939093013593505050565b6000806040838503121561291d57600080fd5b82356001600160401b038082111561293457600080fd5b818501915085601f83011261294857600080fd5b8135602061295861270a83612c5a565b8083825282820191508286018a848660051b890101111561297857600080fd5b600096505b848710156129a25761298e816126cd565b83526001969096019591830191830161297d565b50965050860135925050808211156129b957600080fd5b506129c6858286016126e9565b9150509250929050565b6000602082840312156129e257600080fd5b813561173e81612e2e565b6000602082840312156129ff57600080fd5b815161173e81612e2e565b60008060208385031215612a1d57600080fd5b82356001600160401b0380821115612a3457600080fd5b818501915085601f830112612a4857600080fd5b813581811115612a5757600080fd5b866020828501011115612a6957600080fd5b60209290920196919550909350505050565b600060208284031215612a8d57600080fd5b5035919050565b60008151808452612aac816020860160208601612d29565b601f01601f19169290920160200192915050565b60008351612ad2818460208801612d29565b835190830190612ae6818360208801612d29565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2290830184612a94565b9695505050505050565b60208152600061173e6020830184612a94565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612c5257612c52612e18565b604052919050565b60006001600160401b03821115612c7357612c73612e18565b5060051b60200190565b60006001600160801b03808316818516808303821115612ae657612ae6612dd6565b60008219821115612cb257612cb2612dd6565b500190565b600082612cc657612cc6612dec565b500490565b6000816000190483118215151615612ce557612ce5612dd6565b500290565b60006001600160801b0383811690831681811015612d0a57612d0a612dd6565b039392505050565b600082821015612d2457612d24612dd6565b500390565b60005b83811015612d44578181015183820152602001612d2c565b838111156116725750506000910152565b600081612d6457612d64612dd6565b506000190190565b600181811c90821680612d8057607f821691505b60208210811415612da157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dbb57612dbb612dd6565b5060010190565b600082612dd157612dd1612dec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108d857600080fdfea2646970667358221220f13a3c30658ae9306b32ab1e984d1a5229c28b3e551471367b3b4a9987c0215e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000009c4

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : amountForDevs_ (uint256): 200
Arg [3] : amountForFree_ (uint256): 2500

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [3] : 00000000000000000000000000000000000000000000000000000000000009c4


Deployed Bytecode Sourcemap

40912:4270:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42046:390;;;:::i;:::-;;26279:370;;;;;;;;;;-1:-1:-1;26279:370:0;;;;;:::i;:::-;;:::i;:::-;;;7516:14:1;;7509:22;7491:41;;7479:2;7464:18;26279:370:0;;;;;;;;28005:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29530:204::-;;;;;;;;;;-1:-1:-1;29530:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6814:32:1;;;6796:51;;6784:2;6769:18;29530:204:0;6650:203:1;29093:379:0;;;;;;;;;;-1:-1:-1;29093:379:0;;;;;:::i;:::-;;:::i;24840:94::-;;;;;;;;;;-1:-1:-1;24916:12:0;;24840:94;;;21936:25:1;;;21924:2;21909:18;24840:94:0;21790:177:1;30380:142:0;;;;;;;;;;-1:-1:-1;30380:142:0;;;;;:::i;:::-;;:::i;44599:118::-;;;;;;;;;;-1:-1:-1;44599:118:0;;;;;:::i;:::-;;:::i;25471:744::-;;;;;;;;;;-1:-1:-1;25471:744:0;;;;;:::i;:::-;;:::i;43687:442::-;;;;;;;;;;-1:-1:-1;43687:442:0;;;;;:::i;:::-;;:::i;30585:157::-;;;;;;;;;;-1:-1:-1;30585:157:0;;;;;:::i;:::-;;:::i;25003:177::-;;;;;;;;;;-1:-1:-1;25003:177:0;;;;;:::i;:::-;;:::i;44306:100::-;;;;;;;;;;-1:-1:-1;44306:100:0;;;;;:::i;:::-;;:::i;43177:132::-;;;;;;;;;;-1:-1:-1;43177:132:0;;;;;:::i;:::-;43283:19;;;43177:132;27828:118;;;;;;;;;;-1:-1:-1;27828:118:0;;;;;:::i;:::-;;:::i;41726:314::-;;;;;;;;;;-1:-1:-1;41726:314:0;;;;;:::i;:::-;;:::i;41109:28::-;;;;;;;;;;;;;;;;41153;;;;;;;;;;;;;;;;26705:211;;;;;;;;;;-1:-1:-1;26705:211:0;;;;;:::i;:::-;;:::i;40211:94::-;;;;;;;;;;;;;:::i;42442:519::-;;;;;;:::i;:::-;;:::i;40970:48::-;;;;;;;;;;;;;;;39560:87;;;;;;;;;;-1:-1:-1;39606:7:0;39633:6;-1:-1:-1;;;;;39633:6:0;39560:87;;44836:147;;;;;;;;;;-1:-1:-1;44836:147:0;;;;;:::i;:::-;;:::i;:::-;;;;21655:13:1;;-1:-1:-1;;;;;21651:39:1;21633:58;;21751:4;21739:17;;;21733:24;-1:-1:-1;;;;;21729:49:1;21707:20;;;21700:79;;;;21606:18;44836:147:0;21425:360:1;28160:98:0;;;;;;;;;;;;;:::i;29798:274::-;;;;;;;;;;-1:-1:-1;29798:274:0;;;;;:::i;:::-;;:::i;41199:44::-;;;;;;;;;;-1:-1:-1;41199:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;44412:181;;;;;;;;;;;;;:::i;43317:339::-;;;;;;;;;;-1:-1:-1;43317:339:0;;;;;:::i;:::-;;:::i;41066:38::-;;;;;;;;;;;;;;;30805:311;;;;;;;;;;-1:-1:-1;30805:311:0;;;;;:::i;:::-;;:::i;28321:394::-;;;;;;;;;;-1:-1:-1;28321:394:0;;;;;:::i;:::-;;:::i;35220:43::-;;;;;;;;;;;;;;;;44723:107;;;;;;;;;;-1:-1:-1;44723:107:0;;;;;:::i;:::-;;:::i;30135:186::-;;;;;;;;;;-1:-1:-1;30135:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;30280:25:0;;;30257:4;30280:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30135:186;40460:192;;;;;;;;;;-1:-1:-1;40460:192:0;;;;;:::i;:::-;;:::i;45087:92::-;;;;;;;;;;-1:-1:-1;45087:92:0;;;;;:::i;:::-;;:::i;41023:38::-;;;;;;;;;;;;;;;44989:92;;;;;;;;;;-1:-1:-1;44989:92:0;;;;;:::i;:::-;;:::i;42046:390::-;41648:9;41661:10;41648:23;41640:66;;;;-1:-1:-1;;;41640:66:0;;;;;;;:::i;:::-;;;;;;;;;42123:9:::1;::::0;42147:10;42139:55:::1;;;::::0;-1:-1:-1;;;42139:55:0;;15046:2:1;42139:55:0::1;::::0;::::1;15028:21:1::0;;;15065:18;;;15058:30;15124:34;15104:18;;;15097:62;15176:18;;42139:55:0::1;14844:356:1::0;42139:55:0::1;42219:10;42233:1;42209:21:::0;;;:9:::1;:21;::::0;;;;;42201:69:::1;;;::::0;-1:-1:-1;;;42201:69:0;;12728:2:1;42201:69:0::1;::::0;::::1;12710:21:1::0;12767:2;12747:18;;;12740:30;12806:33;12786:18;;;12779:61;12857:18;;42201:69:0::1;12526:355:1::0;42201:69:0::1;42306:14;42285:13;24916:12:::0;;;24840:94;42285:13:::1;:17;::::0;42301:1:::1;42285:17;:::i;:::-;:35;;42277:66;;;;-1:-1:-1::0;;;42277:66:0::1;;;;;;;:::i;:::-;42360:10;42350:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;;;;;;42380:24;42390:10;42402:1;42380:9;:24::i;:::-;42411:19;42424:5;42411:12;:19::i;:::-;42100:336;42046:390::o:0;26279:370::-;26406:4;-1:-1:-1;;;;;;26436:40:0;;-1:-1:-1;;;26436:40:0;;:99;;-1:-1:-1;;;;;;;26487:48:0;;-1:-1:-1;;;26487:48:0;26436:99;:160;;;-1:-1:-1;;;;;;;26546:50:0;;-1:-1:-1;;;26546:50:0;26436:160;:207;;;-1:-1:-1;;;;;;;;;;12560:40:0;;;26607:36;26422:221;26279:370;-1:-1:-1;;26279:370:0:o;28005:94::-;28059:13;28088:5;28081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28005:94;:::o;29530:204::-;29598:7;29622:16;29630:7;31442:12;;-1:-1:-1;31432:22:0;31355:105;29622:16;29614:74;;;;-1:-1:-1;;;29614:74:0;;20401:2:1;29614:74:0;;;20383:21:1;20440:2;20420:18;;;20413:30;20479:34;20459:18;;;20452:62;-1:-1:-1;;;20530:18:1;;;20523:43;20583:19;;29614:74:0;20199:409:1;29614:74:0;-1:-1:-1;29704:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29704:24:0;;29530:204::o;29093:379::-;29162:13;29178:24;29194:7;29178:15;:24::i;:::-;29162:40;;29223:5;-1:-1:-1;;;;;29217:11:0;:2;-1:-1:-1;;;;;29217:11:0;;;29209:58;;;;-1:-1:-1;;;29209:58:0;;15765:2:1;29209:58:0;;;15747:21:1;15804:2;15784:18;;;15777:30;15843:34;15823:18;;;15816:62;-1:-1:-1;;;15894:18:1;;;15887:32;15936:19;;29209:58:0;15563:398:1;29209:58:0;22390:10;-1:-1:-1;;;;;29292:21:0;;;;:62;;-1:-1:-1;29317:37:0;29334:5;22390:10;30135:186;:::i;29317:37::-;29276:153;;;;-1:-1:-1;;;29276:153:0;;11190:2:1;29276:153:0;;;11172:21:1;11229:2;11209:18;;;11202:30;11268:34;11248:18;;;11241:62;11339:27;11319:18;;;11312:55;11384:19;;29276:153:0;10988:421:1;29276:153:0;29438:28;29447:2;29451:7;29460:5;29438:8;:28::i;:::-;29155:317;29093:379;;:::o;30380:142::-;30488:28;30498:4;30504:2;30508:7;30488:9;:28::i;44599:118::-;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;20761:1:::1;21357:7;;:19;;21349:63;;;::::0;-1:-1:-1;;;21349:63:0;;19625:2:1;21349:63:0::1;::::0;::::1;19607:21:1::0;19664:2;19644:18;;;19637:30;19703:33;19683:18;;;19676:61;19754:18;;21349:63:0::1;19423:355:1::0;21349:63:0::1;20761:1;21490:7;:18:::0;44683:28:::2;44702:8:::0;44683:18:::2;:28::i;:::-;-1:-1:-1::0;20717:1:0::1;21669:7;:22:::0;44599:118::o;25471:744::-;25580:7;25615:16;25625:5;25615:9;:16::i;:::-;25607:5;:24;25599:71;;;;-1:-1:-1;;;25599:71:0;;7969:2:1;25599:71:0;;;7951:21:1;8008:2;7988:18;;;7981:30;8047:34;8027:18;;;8020:62;-1:-1:-1;;;8098:18:1;;;8091:32;8140:19;;25599:71:0;7767:398:1;25599:71:0;25677:22;25702:13;24916:12;;;24840:94;25702:13;25677:38;;25722:19;25752:25;25802:9;25797:350;25821:14;25817:1;:18;25797:350;;;25851:31;25885:14;;;:11;:14;;;;;;;;;25851:48;;;;;;;;;-1:-1:-1;;;;;25851:48:0;;;;;-1:-1:-1;;;25851:48:0;;;-1:-1:-1;;;;;25851:48:0;;;;;;;;25912:28;25908:89;;25973:14;;;-1:-1:-1;25908:89:0;26030:5;-1:-1:-1;;;;;26009:26:0;:17;-1:-1:-1;;;;;26009:26:0;;26005:135;;;26067:5;26052:11;:20;26048:59;;;-1:-1:-1;26094:1:0;-1:-1:-1;26087:8:0;;-1:-1:-1;;;26087:8:0;26048:59;26117:13;;;;:::i;:::-;;;;26005:135;-1:-1:-1;25837:3:0;;;;:::i;:::-;;;;25797:350;;;-1:-1:-1;26153:56:0;;-1:-1:-1;;;26153:56:0;;18803:2:1;26153:56:0;;;18785:21:1;18842:2;18822:18;;;18815:30;18881:34;18861:18;;;18854:62;-1:-1:-1;;;18932:18:1;;;18925:44;18986:19;;26153:56:0;18601:410:1;43687:442:0;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;43792:13:::1;43780:8;43764:13;24916:12:::0;;;24840:94;43764:13:::1;:24;;;;:::i;:::-;:41;;43748:114;;;::::0;-1:-1:-1;;;43748:114:0;;18395:2:1;43748:114:0::1;::::0;::::1;18377:21:1::0;18434:2;18414:18;;;18407:30;18473:34;18453:18;;;18446:62;-1:-1:-1;;;18524:18:1;;;18517:37;18571:19;;43748:114:0::1;18193:403:1::0;43748:114:0::1;43885:23;43896:12;43885:8:::0;:23:::1;:::i;:::-;:28:::0;43869:106:::1;;;::::0;-1:-1:-1;;;43869:106:0;;9190:2:1;43869:106:0::1;::::0;::::1;9172:21:1::0;9229:2;9209:18;;;9202:30;9268:34;9248:18;;;9241:62;-1:-1:-1;;;9319:18:1;;;9312:42;9371:19;;43869:106:0::1;8988:408:1::0;43869:106:0::1;43982:17;44002:23;44013:12;44002:8:::0;:23:::1;:::i;:::-;43982:43;;44037:9;44032:92;44056:9;44052:1;:13;44032:92;;;44081:35;44091:10;44103:12;44081:9;:35::i;:::-;44067:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44032:92;;30585:157:::0;30697:39;30714:4;30720:2;30724:7;30697:39;;;;;;;;;;;;:16;:39::i;25003:177::-;25070:7;25102:13;24916:12;;;24840:94;25102:13;25094:5;:21;25086:69;;;;-1:-1:-1;;;25086:69:0;;9603:2:1;25086:69:0;;;9585:21:1;9642:2;9622:18;;;9615:30;9681:34;9661:18;;;9654:62;-1:-1:-1;;;9732:18:1;;;9725:33;9775:19;;25086:69:0;9401:399:1;25086:69:0;-1:-1:-1;25169:5:0;25003:177::o;44306:100::-;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;44377:23:::1;:13;44393:7:::0;;44377:23:::1;:::i;27828:118::-:0;27892:7;27915:20;27927:7;27915:11;:20::i;:::-;:25;;27828:118;-1:-1:-1;;27828:118:0:o;41726:314::-;41648:9;41661:10;41648:23;41640:66;;;;-1:-1:-1;;;41640:66:0;;;;;;;:::i;:::-;41835:13:::1;41823:8;41807:13;24916:12:::0;;;24840:94;41807:13:::1;:24;;;;:::i;:::-;:41;;41799:72;;;;-1:-1:-1::0;;;41799:72:0::1;;;;;;;:::i;:::-;41933:23;41921:8;41894:24;41907:10;41894:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;41878:118;;;::::0;-1:-1:-1;;;41878:118:0;;18044:2:1;41878:118:0::1;::::0;::::1;18026:21:1::0;18083:2;18063:18;;;18056:30;-1:-1:-1;;;18102:18:1;;;18095:52;18164:18;;41878:118:0::1;17842:346:1::0;41878:118:0::1;42003:31;42013:10;42025:8;42003:9;:31::i;26705:211::-:0;26769:7;-1:-1:-1;;;;;26793:19:0;;26785:75;;;;-1:-1:-1;;;26785:75:0;;11969:2:1;26785:75:0;;;11951:21:1;12008:2;11988:18;;;11981:30;12047:34;12027:18;;;12020:62;-1:-1:-1;;;12098:18:1;;;12091:41;12149:19;;26785:75:0;11767:407:1;26785:75:0;-1:-1:-1;;;;;;26882:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26882:27:0;;26705:211::o;40211:94::-;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;40276:21:::1;40294:1;40276:9;:21::i;:::-;40211:94::o:0;42442:519::-;41648:9;41661:10;41648:23;41640:66;;;;-1:-1:-1;;;41640:66:0;;;;;;;:::i;:::-;42561:9:::1;::::0;43283:19;42579:90:::1;;;::::0;-1:-1:-1;;;42579:90:0;;15407:2:1;42579:90:0::1;::::0;::::1;15389:21:1::0;15446:2;15426:18;;;15419:30;15485:31;15465:18;;;15458:59;15534:18;;42579:90:0::1;15205:353:1::0;42579:90:0::1;42712:14;42700:8;42684:13;24916:12:::0;;;24840:94;42684:13:::1;:24;;;;:::i;:::-;:42;;42676:73;;;;-1:-1:-1::0;;;42676:73:0::1;;;;;;;:::i;:::-;42811:23;42799:8;42772:24;42785:10;42772:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;42756:118;;;::::0;-1:-1:-1;;;42756:118:0;;18044:2:1;42756:118:0::1;::::0;::::1;18026:21:1::0;18083:2;18063:18;;;18056:30;-1:-1:-1;;;18102:18:1;;;18095:52;18164:18;;42756:118:0::1;17842:346:1::0;42756:118:0::1;42881:31;42891:10;42903:8;42881:9;:31::i;:::-;42919:36;42932:22;42946:8:::0;42932:11;:22:::1;:::i;:::-;42919:12;:36::i;:::-;42532:429;42442:519:::0;:::o;44836:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;44957:20:0;44969:7;44957:11;:20::i;28160:98::-;28216:13;28245:7;28238:14;;;;;:::i;29798:274::-;-1:-1:-1;;;;;29889:24:0;;22390:10;29889:24;;29881:63;;;;-1:-1:-1;;;29881:63:0;;14272:2:1;29881:63:0;;;14254:21:1;14311:2;14291:18;;;14284:30;14350:28;14330:18;;;14323:56;14396:18;;29881:63:0;14070:350:1;29881:63:0;22390:10;29953:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29953:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29953:53:0;;;;;;;;;;30018:48;;7491:41:1;;;29953:42:0;;22390:10;30018:48;;7464:18:1;30018:48:0;;;;;;;29798:274;;:::o;44412:181::-;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;20761:1:::1;21357:7;;:19;;21349:63;;;::::0;-1:-1:-1;;;21349:63:0;;19625:2:1;21349:63:0::1;::::0;::::1;19607:21:1::0;19664:2;19644:18;;;19637:30;19703:33;19683:18;;;19676:61;19754:18;;21349:63:0::1;19423:355:1::0;21349:63:0::1;20761:1;21490:7;:18:::0;44495:49:::2;::::0;44477:12:::2;::::0;44495:10:::2;::::0;44518:21:::2;::::0;44477:12;44495:49;44477:12;44495:49;44518:21;44495:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44476:68;;;44559:7;44551:36;;;::::0;-1:-1:-1;;;44551:36:0;;16168:2:1;44551:36:0::2;::::0;::::2;16150:21:1::0;16207:2;16187:18;;;16180:30;-1:-1:-1;;;16226:18:1;;;16219:46;16282:18;;44551:36:0::2;15966:340:1::0;43317:339:0;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;43470:8:::1;:15;43450:9;:16;:35;43434:109;;;::::0;-1:-1:-1;;;43434:109:0;;21218:2:1;43434:109:0::1;::::0;::::1;21200:21:1::0;21257:2;21237:18;;;21230:30;21296:34;21276:18;;;21269:62;-1:-1:-1;;;21347:18:1;;;21340:38;21395:19;;43434:109:0::1;21016:404:1::0;43434:109:0::1;43555:9;43550:101;43574:9;:16;43570:1;:20;43550:101;;;43632:8;43641:1;43632:11;;;;;;;;:::i;:::-;;;;;;;43606:9;:23;43616:9;43626:1;43616:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;43606:23:0::1;-1:-1:-1::0;;;;;43606:23:0::1;;;;;;;;;;;;:37;;;;43592:3;;;;;:::i;:::-;;;;43550:101;;30805:311:::0;30942:28;30952:4;30958:2;30962:7;30942:9;:28::i;:::-;30993:48;31016:4;31022:2;31026:7;31035:5;30993:22;:48::i;:::-;30977:133;;;;-1:-1:-1;;;30977:133:0;;;;;;;:::i;:::-;30805:311;;;;:::o;28321:394::-;28419:13;28460:16;28468:7;31442:12;;-1:-1:-1;31432:22:0;31355:105;28460:16;28444:97;;;;-1:-1:-1;;;28444:97:0;;13856:2:1;28444:97:0;;;13838:21:1;13895:2;13875:18;;;13868:30;13934:34;13914:18;;;13907:62;-1:-1:-1;;;13985:18:1;;;13978:45;14040:19;;28444:97:0;13654:411:1;28444:97:0;28550:21;28574:10;:8;:10::i;:::-;28550:34;;28629:1;28611:7;28605:21;:25;:104;;;;;;;;;;;;;;;;;28666:7;28675:18;:7;:16;:18::i;:::-;28649:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28605:104;28591:118;28321:394;-1:-1:-1;;;28321:394:0:o;44723:107::-;44781:7;44804:20;44818:5;44804:13;:20::i;40460:192::-;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40549:22:0;::::1;40541:73;;;::::0;-1:-1:-1;;;40541:73:0;;8372:2:1;40541:73:0::1;::::0;::::1;8354:21:1::0;8411:2;8391:18;;;8384:30;8450:34;8430:18;;;8423:62;-1:-1:-1;;;8501:18:1;;;8494:36;8547:19;;40541:73:0::1;8170:402:1::0;40541:73:0::1;40625:19;40635:8;40625:9;:19::i;45087:92::-:0;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;45153:9:::1;:20:::0;45087:92::o;44989:::-;39606:7;39633:6;-1:-1:-1;;;;;39633:6:0;22390:10;39780:23;39772:68;;;;-1:-1:-1;;;39772:68:0;;;;;;;:::i;:::-;45055:9:::1;:20:::0;44989:92::o;31466:98::-;31531:27;31541:2;31545:8;31531:27;;;;;;;;;;;;:9;:27::i;42967:204::-;43040:5;43027:9;:18;;43019:53;;;;-1:-1:-1;;;43019:53:0;;16933:2:1;43019:53:0;;;16915:21:1;16972:2;16952:18;;;16945:30;-1:-1:-1;;;16991:18:1;;;16984:52;17053:18;;43019:53:0;16731:346:1;43019:53:0;43095:5;43083:9;:17;43079:87;;;43119:10;43111:47;43140:17;43152:5;43140:9;:17;:::i;:::-;43111:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35042:172;35139:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35139:29:0;-1:-1:-1;;;;;35139:29:0;;;;;;;;;35180:28;;35139:24;;35180:28;;;;;;;35042:172;;;:::o;33407:1529::-;33504:35;33542:20;33554:7;33542:11;:20::i;:::-;33613:18;;33504:58;;-1:-1:-1;33571:22:0;;-1:-1:-1;;;;;33597:34:0;22390:10;-1:-1:-1;;;;;33597:34:0;;:81;;;-1:-1:-1;22390:10:0;33642:20;33654:7;33642:11;:20::i;:::-;-1:-1:-1;;;;;33642:36:0;;33597:81;:142;;;-1:-1:-1;33706:18:0;;33689:50;;22390:10;30135:186;:::i;33689:50::-;33571:169;;33765:17;33749:101;;;;-1:-1:-1;;;33749:101:0;;14627:2:1;33749:101:0;;;14609:21:1;14666:2;14646:18;;;14639:30;14705:34;14685:18;;;14678:62;-1:-1:-1;;;14756:18:1;;;14749:48;14814:19;;33749:101:0;14425:414:1;33749:101:0;33897:4;-1:-1:-1;;;;;33875:26:0;:13;:18;;;-1:-1:-1;;;;;33875:26:0;;33859:98;;;;-1:-1:-1;;;33859:98:0;;13088:2:1;33859:98:0;;;13070:21:1;13127:2;13107:18;;;13100:30;13166:34;13146:18;;;13139:62;-1:-1:-1;;;13217:18:1;;;13210:36;13263:19;;33859:98:0;12886:402:1;33859:98:0;-1:-1:-1;;;;;33972:16:0;;33964:66;;;;-1:-1:-1;;;33964:66:0;;10007:2:1;33964:66:0;;;9989:21:1;10046:2;10026:18;;;10019:30;10085:34;10065:18;;;10058:62;-1:-1:-1;;;10136:18:1;;;10129:35;10181:19;;33964:66:0;9805:401:1;33964:66:0;34139:49;34156:1;34160:7;34169:13;:18;;;34139:8;:49::i;:::-;-1:-1:-1;;;;;34197:18:0;;;;;;:12;:18;;;;;:31;;34227:1;;34197:18;:31;;34227:1;;-1:-1:-1;;;;;34197:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34197:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34235:16:0;;-1:-1:-1;34235:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34235:16:0;;:29;;-1:-1:-1;;34235:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34235:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34294:43:0;;;;;;;;-1:-1:-1;;;;;34294:43:0;;;;;-1:-1:-1;;;;;34320:15:0;34294:43;;;;;;;;;-1:-1:-1;34271:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34271:66:0;-1:-1:-1;;;;;;34271:66:0;;;;;;;;;;;34587:11;34283:7;-1:-1:-1;34587:11:0;:::i;:::-;34650:1;34609:24;;;:11;:24;;;;;:29;34565:33;;-1:-1:-1;;;;;;34609:29:0;34605:236;;34667:20;34675:11;31442:12;;-1:-1:-1;31432:22:0;31355:105;34667:20;34663:171;;;34727:97;;;;;;;;34754:18;;-1:-1:-1;;;;;34727:97:0;;;;;;34785:28;;;;-1:-1:-1;;;;;34727:97:0;;;;;;;;;-1:-1:-1;34700:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34700:124:0;-1:-1:-1;;;;;;34700:124:0;;;;;;;;;;;;34663:171;34873:7;34869:2;-1:-1:-1;;;;;34854:27:0;34863:4;-1:-1:-1;;;;;34854:27:0;;;;;;;;;;;34888:42;33497:1439;;;33407:1529;;;:::o;35368:846::-;35458:24;;35497:12;35489:49;;;;-1:-1:-1;;;35489:49:0;;11616:2:1;35489:49:0;;;11598:21:1;11655:2;11635:18;;;11628:30;11694:26;11674:18;;;11667:54;11738:18;;35489:49:0;11414:348:1;35489:49:0;35545:16;35595:1;35564:28;35584:8;35564:17;:28;:::i;:::-;:32;;;;:::i;:::-;35545:51;-1:-1:-1;35618:18:0;35635:1;35618:14;:18;:::i;:::-;35607:8;:29;35603:81;;;35658:18;35675:1;35658:14;:18;:::i;:::-;35647:29;;35603:81;35799:17;35807:8;31442:12;;-1:-1:-1;31432:22:0;31355:105;35799:17;35791:68;;;;-1:-1:-1;;;35791:68:0;;19218:2:1;35791:68:0;;;19200:21:1;19257:2;19237:18;;;19230:30;19296:34;19276:18;;;19269:62;-1:-1:-1;;;19347:18:1;;;19340:36;19393:19;;35791:68:0;19016:402:1;35791:68:0;35883:17;35866:297;35907:8;35902:1;:13;35866:297;;35966:1;35935:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;35935:19:0;35931:225;;35981:31;36015:14;36027:1;36015:11;:14::i;:::-;36057:89;;;;;;;;36084:14;;-1:-1:-1;;;;;36057:89:0;;;;;;36111:24;;;;-1:-1:-1;;;;;36057:89:0;;;;;;;;;-1:-1:-1;36040:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;36040:106:0;-1:-1:-1;;;;;;36040:106:0;;;;;;;;;;;;-1:-1:-1;35931:225:0;35917:3;;;;:::i;:::-;;;;35866:297;;;-1:-1:-1;36196:12:0;:8;36207:1;36196:12;:::i;:::-;36169:24;:39;-1:-1:-1;;;35368:846:0:o;27168:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;27285:16:0;27293:7;31442:12;;-1:-1:-1;31432:22:0;31355:105;27285:16;27277:71;;;;-1:-1:-1;;;27277:71:0;;8779:2:1;27277:71:0;;;8761:21:1;8818:2;8798:18;;;8791:30;8857:34;8837:18;;;8830:62;-1:-1:-1;;;8908:18:1;;;8901:40;8958:19;;27277:71:0;8577:406:1;27277:71:0;27357:26;27405:12;27394:7;:23;27390:93;;27449:22;27459:12;27449:7;:22;:::i;:::-;:26;;27474:1;27449:26;:::i;:::-;27428:47;;27390:93;27511:7;27491:212;27528:18;27520:4;:26;27491:212;;27565:31;27599:17;;;:11;:17;;;;;;;;;27565:51;;;;;;;;;-1:-1:-1;;;;;27565:51:0;;;;;-1:-1:-1;;;27565:51:0;;;-1:-1:-1;;;;;27565:51:0;;;;;;;;27629:28;27625:71;;27677:9;27168:606;-1:-1:-1;;;;27168:606:0:o;27625:71::-;-1:-1:-1;27548:6:0;;;;:::i;:::-;;;;27491:212;;;-1:-1:-1;27711:57:0;;-1:-1:-1;;;27711:57:0;;19985:2:1;27711:57:0;;;19967:21:1;20024:2;20004:18;;;19997:30;20063:34;20043:18;;;20036:62;-1:-1:-1;;;20114:18:1;;;20107:45;20169:19;;27711:57:0;19783:411:1;40660:173:0;40716:16;40735:6;;-1:-1:-1;;;;;40752:17:0;;;-1:-1:-1;;;;;;40752:17:0;;;;;;40785:40;;40735:6;;;;;;;40785:40;;40716:16;40785:40;40705:128;40660:173;:::o;36757:690::-;36894:4;-1:-1:-1;;;;;36911:13:0;;3146:20;3194:8;36907:535;;36950:72;;-1:-1:-1;;;36950:72:0;;-1:-1:-1;;;;;36950:36:0;;;;;:72;;22390:10;;37001:4;;37007:7;;37016:5;;36950:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36950:72:0;;;;;;;;-1:-1:-1;;36950:72:0;;;;;;;;;;;;:::i;:::-;;;36937:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37181:13:0;;37177:215;;37214:61;;-1:-1:-1;;;37214:61:0;;;;;;;:::i;37177:215::-;37360:6;37354:13;37345:6;37341:2;37337:15;37330:38;36937:464;-1:-1:-1;;;;;;37072:55:0;-1:-1:-1;;;37072:55:0;;-1:-1:-1;37065:62:0;;36907:535;-1:-1:-1;37430:4:0;36907:535;36757:690;;;;;;:::o;44192:108::-;44252:13;44281;44274:20;;;;;:::i;318:723::-;374:13;595:10;591:53;;-1:-1:-1;;622:10:0;;;;;;;;;;;;-1:-1:-1;;;622:10:0;;;;;318:723::o;591:53::-;669:5;654:12;710:78;717:9;;710:78;;743:8;;;;:::i;:::-;;-1:-1:-1;766:10:0;;-1:-1:-1;774:2:0;766:10;;:::i;:::-;;;710:78;;;798:19;830:6;-1:-1:-1;;;;;820:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;820:17:0;;798:39;;848:154;855:10;;848:154;;882:11;892:1;882:11;;:::i;:::-;;-1:-1:-1;951:10:0;959:2;951:5;:10;:::i;:::-;938:24;;:2;:24;:::i;:::-;925:39;;908:6;915;908:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;908:56:0;;;;;;;;-1:-1:-1;979:11:0;988:2;979:11;;:::i;:::-;;;848:154;;26922:240;26983:7;-1:-1:-1;;;;;27015:19:0;;26999:102;;;;-1:-1:-1;;;26999:102:0;;10413:2:1;26999:102:0;;;10395:21:1;10452:2;10432:18;;;10425:30;10491:34;10471:18;;;10464:62;-1:-1:-1;;;10542:18:1;;;10535:47;10599:19;;26999:102:0;10211:413:1;26999:102:0;-1:-1:-1;;;;;;27123:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27123:32:0;;-1:-1:-1;;;;;27123:32:0;;26922:240::o;31903:1272::-;32031:12;;-1:-1:-1;;;;;32058:16:0;;32050:62;;;;-1:-1:-1;;;32050:62:0;;17642:2:1;32050:62:0;;;17624:21:1;17681:2;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;-1:-1:-1;;;17771:18:1;;;17764:31;17812:19;;32050:62:0;17440:397:1;32050:62:0;32249:21;32257:12;31442;;-1:-1:-1;31432:22:0;31355:105;32249:21;32248:22;32240:64;;;;-1:-1:-1;;;32240:64:0;;17284:2:1;32240:64:0;;;17266:21:1;17323:2;17303:18;;;17296:30;17362:31;17342:18;;;17335:59;17411:18;;32240:64:0;17082:353:1;32240:64:0;32331:12;32319:8;:24;;32311:71;;;;-1:-1:-1;;;32311:71:0;;20815:2:1;32311:71:0;;;20797:21:1;20854:2;20834:18;;;20827:30;20893:34;20873:18;;;20866:62;-1:-1:-1;;;20944:18:1;;;20937:32;20986:19;;32311:71:0;20613:398:1;32311:71:0;-1:-1:-1;;;;;32494:16:0;;32461:30;32494:16;;;:12;:16;;;;;;;;;32461:49;;;;;;;;;-1:-1:-1;;;;;32461:49:0;;;;;-1:-1:-1;;;32461:49:0;;;;;;;;;;;32536:119;;;;;;;;32556:19;;32461:49;;32536:119;;;32556:39;;32586:8;;32556:39;:::i;:::-;-1:-1:-1;;;;;32536:119:0;;;;;32639:8;32604:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32536:119:0;;;;;;-1:-1:-1;;;;;32517:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32517:138:0;;;;;;;;;;;;32690:43;;;;;;;;;;-1:-1:-1;;;;;32716:15:0;32690:43;;;;;;;;32662:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32662:71:0;-1:-1:-1;;;;;;32662:71:0;;;;;;;;;;;;;;;;;;32674:12;;32786:281;32810:8;32806:1;:12;32786:281;;;32839:38;;32864:12;;-1:-1:-1;;;;;32839:38:0;;;32856:1;;32839:38;;32856:1;;32839:38;32904:59;32935:1;32939:2;32943:12;32957:5;32904:22;:59::i;:::-;32886:150;;;;-1:-1:-1;;;32886:150:0;;;;;;;:::i;:::-;33045:14;;;;:::i;:::-;;;;32820:3;;;;;:::i;:::-;;;;32786:281;;;-1:-1:-1;33075:12:0;:27;;;33109:60;30805:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:53;;;1848:1;1845;1838:12;1799:53;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;-1:-1:-1;;;;;2144:2:1;2136:6;2133:14;2130:34;;;2160:1;2157;2150:12;2130:34;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:55;;2265:1;2262;2255:12;2214:55;2301:2;2288:16;2323:2;2319;2316:10;2313:36;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:1;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2563:2;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1659:980;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:60;;2957:1;2954;2947:12;2901:60;2980:5;2970:15;;;2644:347;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;2996:254:1:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;-1:-1:-1;;;;;3560:2:1;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3717:2;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:61;;;3997:1;3994;3987:12;3940:61;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:1;-1:-1:-1;;4260:18:1;;4247:32;;-1:-1:-1;;4291:16:1;;;4288:36;;;4320:1;4317;4310:12;4288:36;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3255:1157;;;;;:::o;4417:245::-;4475:6;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;4583:9;4570:23;4602:30;4626:5;4602:30;:::i;4667:249::-;4736:6;4789:2;4777:9;4768:7;4764:23;4760:32;4757:52;;;4805:1;4802;4795:12;4757:52;4837:9;4831:16;4856:30;4880:5;4856:30;:::i;4921:592::-;4992:6;5000;5053:2;5041:9;5032:7;5028:23;5024:32;5021:52;;;5069:1;5066;5059:12;5021:52;5109:9;5096:23;-1:-1:-1;;;;;5179:2:1;5171:6;5168:14;5165:34;;;5195:1;5192;5185:12;5165:34;5233:6;5222:9;5218:22;5208:32;;5278:7;5271:4;5267:2;5263:13;5259:27;5249:55;;5300:1;5297;5290:12;5249:55;5340:2;5327:16;5366:2;5358:6;5355:14;5352:34;;;5382:1;5379;5372:12;5352:34;5427:7;5422:2;5413:6;5409:2;5405:15;5401:24;5398:37;5395:57;;;5448:1;5445;5438:12;5395:57;5479:2;5471:11;;;;;5501:6;;-1:-1:-1;4921:592:1;;-1:-1:-1;;;;4921:592:1:o;5518:180::-;5577:6;5630:2;5618:9;5609:7;5605:23;5601:32;5598:52;;;5646:1;5643;5636:12;5598:52;-1:-1:-1;5669:23:1;;5518:180;-1:-1:-1;5518:180:1:o;5703:257::-;5744:3;5782:5;5776:12;5809:6;5804:3;5797:19;5825:63;5881:6;5874:4;5869:3;5865:14;5858:4;5851:5;5847:16;5825:63;:::i;:::-;5942:2;5921:15;-1:-1:-1;;5917:29:1;5908:39;;;;5949:4;5904:50;;5703:257;-1:-1:-1;;5703:257:1:o;5965:470::-;6144:3;6182:6;6176:13;6198:53;6244:6;6239:3;6232:4;6224:6;6220:17;6198:53;:::i;:::-;6314:13;;6273:16;;;;6336:57;6314:13;6273:16;6370:4;6358:17;;6336:57;:::i;:::-;6409:20;;5965:470;-1:-1:-1;;;;5965:470:1:o;6858:488::-;-1:-1:-1;;;;;7127:15:1;;;7109:34;;7179:15;;7174:2;7159:18;;7152:43;7226:2;7211:18;;7204:34;;;7274:3;7269:2;7254:18;;7247:31;;;7052:4;;7295:45;;7320:19;;7312:6;7295:45;:::i;:::-;7287:53;6858:488;-1:-1:-1;;;;;;6858:488:1:o;7543:219::-;7692:2;7681:9;7674:21;7655:4;7712:44;7752:2;7741:9;7737:18;7729:6;7712:44;:::i;10629:354::-;10831:2;10813:21;;;10870:2;10850:18;;;10843:30;10909:32;10904:2;10889:18;;10882:60;10974:2;10959:18;;10629:354::o;12179:342::-;12381:2;12363:21;;;12420:2;12400:18;;;12393:30;-1:-1:-1;;;12454:2:1;12439:18;;12432:48;12512:2;12497:18;;12179:342::o;13293:356::-;13495:2;13477:21;;;13514:18;;;13507:30;13573:34;13568:2;13553:18;;13546:62;13640:2;13625:18;;13293:356::o;16311:415::-;16513:2;16495:21;;;16552:2;16532:18;;;16525:30;16591:34;16586:2;16571:18;;16564:62;-1:-1:-1;;;16657:2:1;16642:18;;16635:49;16716:3;16701:19;;16311:415::o;21972:275::-;22043:2;22037:9;22108:2;22089:13;;-1:-1:-1;;22085:27:1;22073:40;;-1:-1:-1;;;;;22128:34:1;;22164:22;;;22125:62;22122:88;;;22190:18;;:::i;:::-;22226:2;22219:22;21972:275;;-1:-1:-1;21972:275:1:o;22252:183::-;22312:4;-1:-1:-1;;;;;22337:6:1;22334:30;22331:56;;;22367:18;;:::i;:::-;-1:-1:-1;22412:1:1;22408:14;22424:4;22404:25;;22252:183::o;22440:253::-;22480:3;-1:-1:-1;;;;;22569:2:1;22566:1;22562:10;22599:2;22596:1;22592:10;22630:3;22626:2;22622:12;22617:3;22614:21;22611:47;;;22638:18;;:::i;22698:128::-;22738:3;22769:1;22765:6;22762:1;22759:13;22756:39;;;22775:18;;:::i;:::-;-1:-1:-1;22811:9:1;;22698:128::o;22831:120::-;22871:1;22897;22887:35;;22902:18;;:::i;:::-;-1:-1:-1;22936:9:1;;22831:120::o;22956:168::-;22996:7;23062:1;23058;23054:6;23050:14;23047:1;23044:21;23039:1;23032:9;23025:17;23021:45;23018:71;;;23069:18;;:::i;:::-;-1:-1:-1;23109:9:1;;22956:168::o;23129:246::-;23169:4;-1:-1:-1;;;;;23282:10:1;;;;23252;;23304:12;;;23301:38;;;23319:18;;:::i;:::-;23356:13;;23129:246;-1:-1:-1;;;23129:246:1:o;23380:125::-;23420:4;23448:1;23445;23442:8;23439:34;;;23453:18;;:::i;:::-;-1:-1:-1;23490:9:1;;23380:125::o;23510:258::-;23582:1;23592:113;23606:6;23603:1;23600:13;23592:113;;;23682:11;;;23676:18;23663:11;;;23656:39;23628:2;23621:10;23592:113;;;23723:6;23720:1;23717:13;23714:48;;;-1:-1:-1;;23758:1:1;23740:16;;23733:27;23510:258::o;23773:136::-;23812:3;23840:5;23830:39;;23849:18;;:::i;:::-;-1:-1:-1;;;23885:18:1;;23773:136::o;23914:380::-;23993:1;23989:12;;;;24036;;;24057:61;;24111:4;24103:6;24099:17;24089:27;;24057:61;24164:2;24156:6;24153:14;24133:18;24130:38;24127:161;;;24210:10;24205:3;24201:20;24198:1;24191:31;24245:4;24242:1;24235:15;24273:4;24270:1;24263:15;24127:161;;23914:380;;;:::o;24299:135::-;24338:3;-1:-1:-1;;24359:17:1;;24356:43;;;24379:18;;:::i;:::-;-1:-1:-1;24426:1:1;24415:13;;24299:135::o;24439:112::-;24471:1;24497;24487:35;;24502:18;;:::i;:::-;-1:-1:-1;24536:9:1;;24439:112::o;24556:127::-;24617:10;24612:3;24608:20;24605:1;24598:31;24648:4;24645:1;24638:15;24672:4;24669:1;24662:15;24688:127;24749:10;24744:3;24740:20;24737:1;24730:31;24780:4;24777:1;24770:15;24804:4;24801:1;24794:15;24820:127;24881:10;24876:3;24872:20;24869:1;24862:31;24912:4;24909:1;24902:15;24936:4;24933:1;24926:15;24952:127;25013:10;25008:3;25004:20;25001:1;24994:31;25044:4;25041:1;25034:15;25068:4;25065:1;25058:15;25084:131;-1:-1:-1;;;;;;25158:32:1;;25148:43;;25138:71;;25205:1;25202;25195:12

Swarm Source

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