ETH Price: $3,287.23 (+1.40%)
Gas: 1 Gwei

Token

Adofo-Y (ADOFO-Y)
 

Overview

Max Total Supply

875 ADOFO-Y

Holders

181

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 ADOFO-Y
0x0fEbB3fb06D174167A0296c8Fb8709Ff468A182c
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:
AdofoY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-31
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/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 making 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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/AdofoYTestnet.sol





/*

 █████╗ ██████╗  ██████╗ ███████╗ ██████╗      ██╗   ██╗    
██╔══██╗██╔══██╗██╔═══██╗██╔════╝██╔═══██╗     ╚██╗ ██╔╝    
███████║██║  ██║██║   ██║█████╗  ██║   ██║█████╗╚████╔╝     
██╔══██║██║  ██║██║   ██║██╔══╝  ██║   ██║╚════╝ ╚██╔╝      
██║  ██║██████╔╝╚██████╔╝██║     ╚██████╔╝        ██║       
╚═╝  ╚═╝╚═════╝  ╚═════╝ ╚═╝      ╚═════╝         ╚═╝       

                                        Developer: BR33D
                                        Artist: JC-X     */



pragma solidity ^0.8.0;







interface MintPass {

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

}



contract AdofoY is Ownable, ERC721A, ReentrancyGuard {

  uint256 public immutable maxPerAddressDuringMint;

  uint256 public immutable maxPerWhitelistMint;

  uint256 public immutable amountForDevs;

  uint256 public maxPerTxPublic;

  address public mintPassedContract = 0xF92cF4a3776bA3F6a3eD96E1974D38Fcf59307f6;

  address[] public whitelistedAddresses;

  address payable public payments;

  bool public hasDevMinted;

  address private authority;

  uint private key;



  struct SaleConfig {

    uint32 holdersSaleStartTime;

    uint32 whitelistSaleStartTime;

    uint32 publicSaleStartTime;

    uint64 adofoXMintPrice;

    uint64 publicPrice;

  }



  SaleConfig public saleConfig;



  mapping(address => bool) public whitelistMinted;

  mapping(address => bool) public adofoXHolderMinted;

  mapping(address => bool) public mintPassHolders;



  constructor(

    uint256 maxBatchSize_,

    uint256 maxWhitelistBatch_,

    uint256 collectionSize_,

    uint256 amountForDevs_,

    uint256 txMaxPer_,

    address payments_,

    bool devMint_

  ) ERC721A("Adofo-Y", "ADOFO-Y", maxBatchSize_, collectionSize_) {

    payments = payable(payments_);

    maxPerAddressDuringMint = maxBatchSize_;

    amountForDevs = amountForDevs_;

    maxPerWhitelistMint = maxWhitelistBatch_;

    maxPerTxPublic = txMaxPer_;

    hasDevMinted = devMint_;

  }



  modifier callerIsUser() {

    require(tx.origin == msg.sender, "The caller is another contract");

    _;

  }



  /*

    |----------------------------|

    |------ Mint Functions ------|

    |----------------------------|

  */



    // adofo-x holders mint

  function adofoXHoldersMint(uint256 numOfAdofos) external payable callerIsUser {

    uint256 price = uint256(saleConfig.adofoXMintPrice);

    uint256 saleStart = uint256(saleConfig.holdersSaleStartTime);

    require(

      block.timestamp >= saleStart && 

      saleStart > 0, "holders sale has not begun yet");

    require(isWhitelisted(msg.sender), "user is not whitelisted");

    require(price != 0, "X holder sale has not begun yet");

    require(adofoXHolderMinted[msg.sender] == false, "not eligible for X holder mint");

    require(totalSupply() + numOfAdofos <= collectionSize, "reached max supply");

    require(numOfAdofos <= maxPerWhitelistMint, "exceeds mint allowance");

    adofoXHolderMinted[msg.sender] = true;

    _safeMint(msg.sender, numOfAdofos);

    refundIfOver(price);

  }

    // whitelist mint

  function whiteListMint(bytes32 _hash, uint256 numOfAdofos) external payable callerIsUser {

    uint256 price = uint256(saleConfig.publicPrice);

    uint256 saleStart = uint256(saleConfig.whitelistSaleStartTime);

    require(

      block.timestamp >= saleStart && 

      saleStart > 0, "whitelist sale has not begun yet");

    require(totalSupply() + numOfAdofos <= collectionSize, "reached max supply");

    require(numOfAdofos <= maxPerWhitelistMint, "exceeds mint allowance");

    require(_hash == checkHash(msg.sender), "Not a true warrior");

    require(whitelistMinted[msg.sender] == false, "Already minted");

    whitelistMinted[msg.sender] = true;

    _safeMint(msg.sender, numOfAdofos);

    refundIfOver(price);

  }

    // NFT holders mint

  function tokenHoldersMint(uint256 numOfAdofos) external payable callerIsUser {

    uint256 price = uint256(saleConfig.adofoXMintPrice);

    uint256 saleStart = uint256(saleConfig.holdersSaleStartTime);

    require(

      block.timestamp >= saleStart && 

      saleStart > 0, "holders sale has not begun yet");

    bool minted = mintPassHolders[msg.sender];

    require(hasMintPass(msg.sender) == true, "must hold a mint pass");

    require(totalSupply() + numOfAdofos <= collectionSize, "reached max supply");

    require(numOfAdofos <= maxPerWhitelistMint, "exceeds mint allowance");

    require(minted == false, "already minted");



    mintPassHolders[msg.sender] = true;

    _safeMint(msg.sender, numOfAdofos);

    refundIfOver(price);

  }

    // public sale

  function publicSaleMint(uint256 quantity)

    external

    payable

    callerIsUser

  {

    SaleConfig memory config = saleConfig;

    uint256 publicPrice = uint256(config.publicPrice);

    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

    require(isPublicSaleOn(publicPrice, publicSaleStartTime), "public sale has not begun yet");

    require(totalSupply() + quantity <= collectionSize, "reached max supply");

    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "can not mint this many");

    require(quantity <= maxPerTxPublic, "too many per tx");

    _safeMint(msg.sender, quantity);

    refundIfOver(publicPrice * quantity);

  }



  /*

    |----------------------------|

    |---- Contract Functions ----|

    |----------------------------|

  */



    // returns any extra funds sent by user, protects user from over paying

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

    }

  }



  /*

    |----------------------------|

    |------ View Functions ------|

    |----------------------------|

  */



    // check if public sale has started

  function isPublicSaleOn(

    uint256 publicPriceWei,

    uint256 publicSaleStartTime

  ) public view returns (bool) {

    return

      publicPriceWei != 0 &&

      block.timestamp >= publicSaleStartTime;

  }



    //Retrieves token ids owned of address provided

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {

        uint256 ownerTokenCount = balanceOf(_owner);

        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {

            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);

            

        }

        return tokenIds;

    }



  // check if an address is whitelisted

  function isWhitelisted(address _user) public view returns (bool) {

    for (uint i = 0; i < whitelistedAddresses.length; i++) {

      if (whitelistedAddresses[i] == _user) {

          return true;

      }

    }

    return false;

  }

    // check if holder has mint passed NFT

  function hasMintPass(address _user) public view returns (bool) {

		uint pass = MintPass(mintPassedContract).balanceOf(_user);

		

		if (pass >= 1){

			return true;

		}

		return false;

	}

    function checkHash(address _minter) internal view returns (bytes32) {

        bytes32 correctHash = bytes32(keccak256(abi.encodePacked(_minter, key, authority)));

        return correctHash;

    }



  function numberMinted(address owner) public view returns (uint256) {

    return _numberMinted(owner);

  }



  function getOwnershipData(uint256 tokenId)

    external

    view

    returns (TokenOwnership memory)

  {

    return ownershipOf(tokenId);

  }



  // metadata URI

  string private _baseTokenURI;



  function _baseURI() internal view virtual override returns (string memory) {

    return _baseTokenURI;

  }



  /*

    |----------------------------|

    |----- Owner  Functions -----|

    |----------------------------|

  */



    // setup minting info

  function setupSaleInfo(

    uint64 adofoXMintPriceWei,

    uint64 publicPriceWei,

    uint32 holdersSaleStartTime,

    uint32 whitelistSaleStartTime,

    uint32 publicSaleStartTime

  ) external onlyOwner {

    saleConfig = SaleConfig(

      holdersSaleStartTime,

      whitelistSaleStartTime,

      publicSaleStartTime,

      adofoXMintPriceWei,

      publicPriceWei

    );

  }



  // create list of adofo-x holders addresses

  function whitelistUsers(address[] calldata _users) public onlyOwner {

    delete whitelistedAddresses;

    whitelistedAddresses = _users;

  }



  // for OG holders/promotions/giveaways

  function devMint() external onlyOwner {

    require(

      totalSupply() + amountForDevs <= collectionSize,

      "too many already minted before dev mint"

    );

    require(

      hasDevMinted == false, "dev has already claimed"

    );

      _safeMint(msg.sender, amountForDevs);

      hasDevMinted = true;

  }



  function setBaseURI(string calldata baseURI) external onlyOwner {

    _baseTokenURI = baseURI;

  }



  function setMintPassContract(address _contract) public onlyOwner {

		mintPassedContract = _contract;

	}



  function withdraw() external onlyOwner nonReentrant {

    (bool success, ) = payable(payments).call{value: address(this).balance}("");

    require(success);

  }

  function setKey(uint _key) external onlyOwner{

    key = _key;

    }



    function setAuthority(address _address) external onlyOwner{

        authority = _address;

    }



  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {

    _setOwnersExplicit(quantity);

  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"maxWhitelistBatch_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"uint256","name":"txMaxPer_","type":"uint256"},{"internalType":"address","name":"payments_","type":"address"},{"internalType":"bool","name":"devMint_","type":"bool"}],"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":"adofoXHolderMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfAdofos","type":"uint256"}],"name":"adofoXHoldersMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"hasDevMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"hasMintPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPassHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPassedContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","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":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"holdersSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"adofoXMintPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_key","type":"uint256"}],"name":"setKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setMintPassContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"adofoXMintPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"holdersSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupSaleInfo","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":"uint256","name":"numOfAdofos","type":"uint256"}],"name":"tokenHoldersMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"uint256","name":"numOfAdofos","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61012060405260006001819055600855600b80546001600160a01b03191673f92cf4a3776ba3f6a3ed96e1974d38fcf59307f61790553480156200004257600080fd5b506040516200417938038062004179833981016040819052620000659162000314565b6040518060400160405280600781526020016641646f666f2d5960c81b8152506040518060400160405280600781526020016641444f464f2d5960c81b8152508887620000c1620000bb6200021a60201b60201c565b6200021e565b600081116200012e5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001905760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000125565b8351620001a59060029060208701906200026e565b508251620001bb9060039060208601906200026e565b5060a09190915260805250506001600955600d805460c0989098526101009490945260e095909552600a91909155921515600160a01b026001600160a81b03199094166001600160a01b039093169290921792909217905550620003d2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200027c9062000395565b90600052602060002090601f016020900481019282620002a05760008555620002eb565b82601f10620002bb57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002eb578251825591602001919060010190620002ce565b50620002f9929150620002fd565b5090565b5b80821115620002f95760008155600101620002fe565b600080600080600080600060e0888a0312156200033057600080fd5b8751602089015160408a015160608b015160808c015160a08d0151949b50929950909750955093506001600160a01b03811681146200036e57600080fd5b60c089015190925080151581146200038557600080fd5b8091505092959891949750929550565b600181811c90821680620003aa57607f821691505b60208210811415620003cc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051613d006200047960003960008181610a780152818161153301526116230152600081816105dd015281816118360152818161213f015261236801526000818161069b0152611b64015260008181612c9101528181612cbb01526132a9015260008181611512015281816117be01528181611aec015281816120c7015281816122f001528181612a960152612ac80152613d006000f3fe6080604052600436106103345760003560e01c80638da5cb5b116101b0578063c6b5243d116100ec578063dbcad76f11610095578063edec5f271161006f578063edec5f2714610a05578063f2fde38b14610a25578063f6a1d05b14610a45578063fbe1aa5114610a6657600080fd5b8063dbcad76f1461097c578063dc33e6811461099c578063e985e9c5146109bc57600080fd5b8063d6528776116100c6578063d652877614610933578063d7224ba014610953578063d743f0b51461096957600080fd5b8063c6b5243d146108e0578063c87b56dd14610900578063cb9197ee1461092057600080fd5b80639f1d12a111610159578063a813d23711610133578063a813d2371461086d578063b3ab66b01461088d578063b88d4fde146108a0578063ba4e5c49146108c057600080fd5b80639f1d12a11461081a578063a22cb4651461082d578063a6d23e101461084d57600080fd5b806395d89b411161018a57806395d89b41146107bf57806398a8cffe146107d45780639943770d1461080457600080fd5b80638da5cb5b146106bd57806390aa0b0f146106db5780639231ab2a1461077157600080fd5b8063438b63001161027f5780636ddf297b11610228578063735d2a2711610202578063735d2a27146106345780637a9e5e4b146106545780637c69e207146106745780638bc35c2f1461068957600080fd5b80636ddf297b146105cb57806370a08231146105ff578063715018a61461061f57600080fd5b806355f804b31161025957806355f804b31461055b57806359729a5b1461057b5780636352211e146105ab57600080fd5b8063438b6300146104ee5780634b2647d21461051b5780634f6ccce71461053b57600080fd5b806324e49f8d116102e15780633af32abf116102bb5780633af32abf146104995780633ccfd60b146104b957806342842e0e146104ce57600080fd5b806324e49f8d146104295780632d20fb60146104595780632f745c591461047957600080fd5b8063095ea7b311610312578063095ea7b3146103c857806318160ddd146103ea57806323b872dd1461040957600080fd5b806301ffc9a71461033957806306fdde031461036e578063081812fc14610390575b600080fd5b34801561034557600080fd5b506103596103543660046138c4565b610a9a565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b50610383610b07565b6040516103659190613ad0565b34801561039c57600080fd5b506103b06103ab36600461395e565b610b99565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103e86103e3366004613803565b610c29565b005b3480156103f657600080fd5b506001545b604051908152602001610365565b34801561041557600080fd5b506103e86104243660046136af565b610d41565b34801561043557600080fd5b50610359610444366004613661565b60136020526000908152604090205460ff1681565b34801561046557600080fd5b506103e861047436600461395e565b610d4c565b34801561048557600080fd5b506103fb610494366004613803565b610dfd565b3480156104a557600080fd5b506103596104b4366004613661565b610f85565b3480156104c557600080fd5b506103e8610fef565b3480156104da57600080fd5b506103e86104e93660046136af565b6110ef565b3480156104fa57600080fd5b5061050e610509366004613661565b61110a565b6040516103659190613a8c565b34801561052757600080fd5b50610359610536366004613661565b6111ac565b34801561054757600080fd5b506103fb61055636600461395e565b611240565b34801561056757600080fd5b506103e86105763660046138fe565b6112a9565b34801561058757600080fd5b50610359610596366004613661565b60126020526000908152604090205460ff1681565b3480156105b757600080fd5b506103b06105c636600461395e565b6112fd565b3480156105d757600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060b57600080fd5b506103fb61061a366004613661565b61130f565b34801561062b57600080fd5b506103e86113a0565b34801561064057600080fd5b506103e861064f366004613661565b6113f4565b34801561066057600080fd5b506103e861066f366004613661565b61145e565b34801561068057600080fd5b506103e86114c8565b34801561069557600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c957600080fd5b506000546001600160a01b03166103b0565b3480156106e757600080fd5b5060105461072f9063ffffffff808216916401000000008104821691680100000000000000008204169067ffffffffffffffff600160601b8204811691600160a01b90041685565b6040805163ffffffff96871681529486166020860152929094169183019190915267ffffffffffffffff9081166060830152909116608082015260a001610365565b34801561077d57600080fd5b5061079161078c36600461395e565b61165c565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610365565b3480156107cb57600080fd5b50610383611679565b3480156107e057600080fd5b506103596107ef366004613661565b60116020526000908152604090205460ff1681565b34801561081057600080fd5b506103fb600a5481565b6103e861082836600461395e565b611688565b34801561083957600080fd5b506103e86108483660046137c7565b61191e565b34801561085957600080fd5b50600d546103b0906001600160a01b031681565b34801561087957600080fd5b50600b546103b0906001600160a01b031681565b6103e861089b36600461395e565b6119e3565b3480156108ac57600080fd5b506103e86108bb3660046136eb565b611c53565b3480156108cc57600080fd5b506103b06108db36600461395e565b611cd2565b3480156108ec57600080fd5b506103e86108fb366004613990565b611cfc565b34801561090c57600080fd5b5061038361091b36600461395e565b611e22565b6103e861092e36600461395e565b611efd565b34801561093f57600080fd5b506103e861094e36600461395e565b6121d3565b34801561095f57600080fd5b506103fb60085481565b6103e86109773660046138a2565b612220565b34801561098857600080fd5b506103596109973660046138a2565b6124fd565b3480156109a857600080fd5b506103fb6109b7366004613661565b612512565b3480156109c857600080fd5b506103596109d736600461367c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1157600080fd5b506103e8610a2036600461382d565b61251d565b348015610a3157600080fd5b506103e8610a40366004613661565b61257d565b348015610a5157600080fd5b50600d5461035990600160a01b900460ff1681565b348015610a7257600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b1480610acb57506001600160e01b03198216635b5e139f60e01b145b80610ae657506001600160e01b0319821663780e9d6360e01b145b80610b0157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b1690613bd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4290613bd2565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610ba6826001541190565b610c0d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c34826112fd565b9050806001600160a01b0316836001600160a01b03161415610ca35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c04565b336001600160a01b0382161480610cbf5750610cbf81336109d7565b610d315760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c04565b610d3c838383612636565b505050565b610d3c838383612692565b6000546001600160a01b03163314610d945760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b60026009541415610de75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002600955610df581612a25565b506001600955565b6000610e088361130f565b8210610e615760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c04565b6000610e6c60015490565b905060008060005b83811015610f16576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ec757805192505b876001600160a01b0316836001600160a01b03161415610f035786841415610ef557509350610b0192505050565b83610eff81613c0d565b9450505b5080610f0e81613c0d565b915050610e74565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610c04565b6000805b600c54811015610fe657826001600160a01b0316600c8281548110610fb057610fb0613c68565b6000918252602090912001546001600160a01b03161415610fd45750600192915050565b80610fde81613c0d565b915050610f89565b50600092915050565b6000546001600160a01b031633146110375760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6002600954141561108a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002600955600d546040516000916001600160a01b03169047908381818185875af1925050503d80600081146110dc576040519150601f19603f3d011682016040523d82523d6000602084013e6110e1565b606091505b5050905080610df557600080fd5b610d3c83838360405180602001604052806000815250611c53565b606060006111178361130f565b905060008167ffffffffffffffff81111561113457611134613c7e565b60405190808252806020026020018201604052801561115d578160200160208202803683370190505b50905060005b828110156111a4576111758582610dfd565b82828151811061118757611187613c68565b60209081029190910101528061119c81613c0d565b915050611163565b509392505050565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b1580156111f557600080fd5b505afa158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190613977565b905060018110610fe65750600192915050565b600061124b60015490565b82106112a55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c04565b5090565b6000546001600160a01b031633146112f15760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b610d3c60148383613513565b600061130882612c0f565b5192915050565b60006001600160a01b03821661137b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c04565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113e85760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6113f26000612dc7565b565b6000546001600160a01b0316331461143c5760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114a65760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115105760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061155b60015490565b6115659190613b05565b11156115c35760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610c04565b600d54600160a01b900460ff161561161d5760405162461bcd60e51b815260206004820152601760248201527f6465762068617320616c726561647920636c61696d65640000000000000000006044820152606401610c04565b611647337f0000000000000000000000000000000000000000000000000000000000000000612e17565b600d805460ff60a01b1916600160a01b179055565b6040805180820190915260008082526020820152610b0182612c0f565b606060038054610b1690613bd2565b3233146116d75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b60105467ffffffffffffffff600160601b8204169063ffffffff164281118015906117025750600081115b61174e5760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c04565b3360008181526013602052604090205460ff169061176b906111ac565b15156001146117bc5760405162461bcd60e51b815260206004820152601560248201527f6d75737420686f6c642061206d696e74207061737300000000000000000000006044820152606401610c04565b7f0000000000000000000000000000000000000000000000000000000000000000846117e760015490565b6117f19190613b05565b11156118345760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000000084111561189d5760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c04565b80156118eb5760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c04565b336000818152601360205260409020805460ff1916600117905561190f9085612e17565b61191883612e35565b50505050565b6001600160a01b0382163314156119775760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c04565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314611a325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b6040805160a08101825260105463ffffffff80821683526401000000008204811660208401526801000000000000000082041692820183905267ffffffffffffffff600160601b820481166060840152600160a01b90910416608082018190529091611a9e82826124fd565b611aea5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000000084611b1560015490565b611b1f9190613b05565b1115611b625760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000000084611b8d33612512565b611b979190613b05565b1115611be55760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610c04565b600a54841115611c375760405162461bcd60e51b815260206004820152600f60248201527f746f6f206d616e792070657220747800000000000000000000000000000000006044820152606401610c04565b611c413385612e17565b611918611c4e8584613b31565b612e35565b611c5e848484612692565b611c6a84848484612ec3565b6119185760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c04565b600c8181548110611ce257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314611d445760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6040805160a08101825263ffffffff948516808252938516602082018190529290941690840181905267ffffffffffffffff958616606085018190529490951660809093018390526010805467ffffffffffffffff19169092176401000000009091021773ffffffffffffffffffffffff000000000000000019166801000000000000000090940273ffffffffffffffff000000000000000000000000191693909317600160601b909202919091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b909102179055565b6060611e2f826001541190565b611ea15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c04565b6000611eab61301d565b90506000815111611ecb5760405180602001604052806000815250611ef6565b80611ed58461302c565b604051602001611ee6929190613a21565b6040516020818303038152906040525b9392505050565b323314611f4c5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b60105467ffffffffffffffff600160601b8204169063ffffffff16428111801590611f775750600081115b611fc35760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c04565b611fcc33610f85565b6120185760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610c04565b816120655760405162461bcd60e51b815260206004820152601f60248201527f5820686f6c6465722073616c6520686173206e6f7420626567756e20796574006044820152606401610c04565b3360009081526012602052604090205460ff16156120c55760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420656c696769626c6520666f72205820686f6c646572206d696e7400006044820152606401610c04565b7f0000000000000000000000000000000000000000000000000000000000000000836120f060015490565b6120fa9190613b05565b111561213d5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000008311156121a65760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c04565b336000818152601260205260409020805460ff191660011790556121ca9084612e17565b610d3c82612e35565b6000546001600160a01b0316331461221b5760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b600f55565b32331461226f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b601054600160a01b810467ffffffffffffffff1690640100000000900463ffffffff164281118015906122a25750600081115b6122ee5760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000008361231960015490565b6123239190613b05565b11156123665760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000008311156123cf5760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c04565b600f54600e54604080516bffffffffffffffffffffffff1933606090811b821660208085019190915260348401969096529390931b90921660548301528051808303604801815260689092019052805191012084146124705760405162461bcd60e51b815260206004820152601260248201527f4e6f74206120747275652077617272696f7200000000000000000000000000006044820152606401610c04565b3360009081526011602052604090205460ff16156124d05760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c04565b336000818152601160205260409020805460ff191660011790556124f49084612e17565b61191882612e35565b60008215801590611ef6575050421015919050565b6000610b0182613142565b6000546001600160a01b031633146125655760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b612571600c6000613593565b610d3c600c83836135b1565b6000546001600160a01b031633146125c55760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6001600160a01b03811661262a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c04565b61263381612dc7565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061269d82612c0f565b80519091506000906001600160a01b0316336001600160a01b031614806126d45750336126c984610b99565b6001600160a01b0316145b806126e6575081516126e690336109d7565b90508061275b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610c04565b846001600160a01b031682600001516001600160a01b0316146127cf5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c04565b6001600160a01b0384166128335760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c04565b6128436000848460000151612636565b6001600160a01b03851660009081526005602052604081208054600192906128759084906001600160801b0316613b50565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926128c191859116613ae3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612949846001613b05565b6000818152600460205260409020549091506001600160a01b03166129db57612973816001541190565b156129db5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481612a755760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610c04565b60006001612a838484613b05565b612a8d9190613b78565b9050612aba60017f0000000000000000000000000000000000000000000000000000000000000000613b78565b811115612aef57612aec60017f0000000000000000000000000000000000000000000000000000000000000000613b78565b90505b612afa816001541190565b612b555760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610c04565b815b818111612bfb576000818152600460205260409020546001600160a01b0316612be9576000612b8582612c0f565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612bf381613c0d565b915050612b57565b50612c07816001613b05565b600855505050565b6040805180820190915260008082526020820152612c2e826001541190565b612c8d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c04565b60007f00000000000000000000000000000000000000000000000000000000000000008310612cee57612ce07f000000000000000000000000000000000000000000000000000000000000000084613b78565b612ceb906001613b05565b90505b825b818110612d58576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612d4557949350505050565b5080612d5081613bbb565b915050612cf0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610c04565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612e318282604051806020016040528060008152506131ec565b5050565b80341015612e855760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610c04565b8034111561263357336108fc612e9b8334613b78565b6040518115909202916000818181858888f19350505050158015612e31573d6000803e3d6000fd5b60006001600160a01b0384163b1561301157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f07903390899088908890600401613a50565b602060405180830381600087803b158015612f2157600080fd5b505af1925050508015612f51575060408051601f3d908101601f19168201909252612f4e918101906138e1565b60015b612ff7573d808015612f7f576040519150601f19603f3d011682016040523d82523d6000602084013e612f84565b606091505b508051612fef5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613015565b5060015b949350505050565b606060148054610b1690613bd2565b6060816130505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561307a578061306481613c0d565b91506130739050600a83613b1d565b9150613054565b60008167ffffffffffffffff81111561309557613095613c7e565b6040519080825280601f01601f1916602001820160405280156130bf576020820181803683370190505b5090505b8415613015576130d4600183613b78565b91506130e1600a86613c28565b6130ec906030613b05565b60f81b81838151811061310157613101613c68565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061313b600a86613b1d565b94506130c3565b60006001600160a01b0382166131c05760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610c04565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661324f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c04565b61325a816001541190565b156132a75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000008311156133225760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c04565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061337e908790613ae3565b6001600160801b0316815260200185836020015161339c9190613ae3565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156135085760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46134806000888488612ec3565b6134e85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c04565b816134f281613c0d565b925050808061350090613c0d565b915050613433565b506001819055612a1d565b82805461351f90613bd2565b90600052602060002090601f0160209004810192826135415760008555613587565b82601f1061355a5782800160ff19823516178555613587565b82800160010185558215613587579182015b8281111561358757823582559160200191906001019061356c565b506112a5929150613604565b50805460008255906000526020600020908101906126339190613604565b828054828255906000526020600020908101928215613587579160200282015b828111156135875781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906135d1565b5b808211156112a55760008155600101613605565b80356001600160a01b038116811461363057600080fd5b919050565b803563ffffffff8116811461363057600080fd5b803567ffffffffffffffff8116811461363057600080fd5b60006020828403121561367357600080fd5b611ef682613619565b6000806040838503121561368f57600080fd5b61369883613619565b91506136a660208401613619565b90509250929050565b6000806000606084860312156136c457600080fd5b6136cd84613619565b92506136db60208501613619565b9150604084013590509250925092565b6000806000806080858703121561370157600080fd5b61370a85613619565b935061371860208601613619565b925060408501359150606085013567ffffffffffffffff8082111561373c57600080fd5b818701915087601f83011261375057600080fd5b81358181111561376257613762613c7e565b604051601f8201601f19908116603f0116810190838211818310171561378a5761378a613c7e565b816040528281528a60208487010111156137a357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156137da57600080fd5b6137e383613619565b9150602083013580151581146137f857600080fd5b809150509250929050565b6000806040838503121561381657600080fd5b61381f83613619565b946020939093013593505050565b6000806020838503121561384057600080fd5b823567ffffffffffffffff8082111561385857600080fd5b818501915085601f83011261386c57600080fd5b81358181111561387b57600080fd5b8660208260051b850101111561389057600080fd5b60209290920196919550909350505050565b600080604083850312156138b557600080fd5b50508035926020909101359150565b6000602082840312156138d657600080fd5b8135611ef681613c94565b6000602082840312156138f357600080fd5b8151611ef681613c94565b6000806020838503121561391157600080fd5b823567ffffffffffffffff8082111561392957600080fd5b818501915085601f83011261393d57600080fd5b81358181111561394c57600080fd5b86602082850101111561389057600080fd5b60006020828403121561397057600080fd5b5035919050565b60006020828403121561398957600080fd5b5051919050565b600080600080600060a086880312156139a857600080fd5b6139b186613649565b94506139bf60208701613649565b93506139cd60408701613635565b92506139db60608701613635565b91506139e960808701613635565b90509295509295909350565b60008151808452613a0d816020860160208601613b8f565b601f01601f19169290920160200192915050565b60008351613a33818460208801613b8f565b835190830190613a47818360208801613b8f565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613a8260808301846139f5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613ac457835183529284019291840191600101613aa8565b50909695505050505050565b602081526000611ef660208301846139f5565b60006001600160801b03808316818516808303821115613a4757613a47613c3c565b60008219821115613b1857613b18613c3c565b500190565b600082613b2c57613b2c613c52565b500490565b6000816000190483118215151615613b4b57613b4b613c3c565b500290565b60006001600160801b0383811690831681811015613b7057613b70613c3c565b039392505050565b600082821015613b8a57613b8a613c3c565b500390565b60005b83811015613baa578181015183820152602001613b92565b838111156119185750506000910152565b600081613bca57613bca613c3c565b506000190190565b600181811c90821680613be657607f821691505b60208210811415613c0757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c2157613c21613c3c565b5060010190565b600082613c3757613c37613c52565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461263357600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220d8ae2863685b3052959606103041242d5909681434ac38ca49d5b05f90a8115864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000001770000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000362c5e9380d01a9b4e9aa6ee7722c344f727b640000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103345760003560e01c80638da5cb5b116101b0578063c6b5243d116100ec578063dbcad76f11610095578063edec5f271161006f578063edec5f2714610a05578063f2fde38b14610a25578063f6a1d05b14610a45578063fbe1aa5114610a6657600080fd5b8063dbcad76f1461097c578063dc33e6811461099c578063e985e9c5146109bc57600080fd5b8063d6528776116100c6578063d652877614610933578063d7224ba014610953578063d743f0b51461096957600080fd5b8063c6b5243d146108e0578063c87b56dd14610900578063cb9197ee1461092057600080fd5b80639f1d12a111610159578063a813d23711610133578063a813d2371461086d578063b3ab66b01461088d578063b88d4fde146108a0578063ba4e5c49146108c057600080fd5b80639f1d12a11461081a578063a22cb4651461082d578063a6d23e101461084d57600080fd5b806395d89b411161018a57806395d89b41146107bf57806398a8cffe146107d45780639943770d1461080457600080fd5b80638da5cb5b146106bd57806390aa0b0f146106db5780639231ab2a1461077157600080fd5b8063438b63001161027f5780636ddf297b11610228578063735d2a2711610202578063735d2a27146106345780637a9e5e4b146106545780637c69e207146106745780638bc35c2f1461068957600080fd5b80636ddf297b146105cb57806370a08231146105ff578063715018a61461061f57600080fd5b806355f804b31161025957806355f804b31461055b57806359729a5b1461057b5780636352211e146105ab57600080fd5b8063438b6300146104ee5780634b2647d21461051b5780634f6ccce71461053b57600080fd5b806324e49f8d116102e15780633af32abf116102bb5780633af32abf146104995780633ccfd60b146104b957806342842e0e146104ce57600080fd5b806324e49f8d146104295780632d20fb60146104595780632f745c591461047957600080fd5b8063095ea7b311610312578063095ea7b3146103c857806318160ddd146103ea57806323b872dd1461040957600080fd5b806301ffc9a71461033957806306fdde031461036e578063081812fc14610390575b600080fd5b34801561034557600080fd5b506103596103543660046138c4565b610a9a565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b50610383610b07565b6040516103659190613ad0565b34801561039c57600080fd5b506103b06103ab36600461395e565b610b99565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103e86103e3366004613803565b610c29565b005b3480156103f657600080fd5b506001545b604051908152602001610365565b34801561041557600080fd5b506103e86104243660046136af565b610d41565b34801561043557600080fd5b50610359610444366004613661565b60136020526000908152604090205460ff1681565b34801561046557600080fd5b506103e861047436600461395e565b610d4c565b34801561048557600080fd5b506103fb610494366004613803565b610dfd565b3480156104a557600080fd5b506103596104b4366004613661565b610f85565b3480156104c557600080fd5b506103e8610fef565b3480156104da57600080fd5b506103e86104e93660046136af565b6110ef565b3480156104fa57600080fd5b5061050e610509366004613661565b61110a565b6040516103659190613a8c565b34801561052757600080fd5b50610359610536366004613661565b6111ac565b34801561054757600080fd5b506103fb61055636600461395e565b611240565b34801561056757600080fd5b506103e86105763660046138fe565b6112a9565b34801561058757600080fd5b50610359610596366004613661565b60126020526000908152604090205460ff1681565b3480156105b757600080fd5b506103b06105c636600461395e565b6112fd565b3480156105d757600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000481565b34801561060b57600080fd5b506103fb61061a366004613661565b61130f565b34801561062b57600080fd5b506103e86113a0565b34801561064057600080fd5b506103e861064f366004613661565b6113f4565b34801561066057600080fd5b506103e861066f366004613661565b61145e565b34801561068057600080fd5b506103e86114c8565b34801561069557600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000008c81565b3480156106c957600080fd5b506000546001600160a01b03166103b0565b3480156106e757600080fd5b5060105461072f9063ffffffff808216916401000000008104821691680100000000000000008204169067ffffffffffffffff600160601b8204811691600160a01b90041685565b6040805163ffffffff96871681529486166020860152929094169183019190915267ffffffffffffffff9081166060830152909116608082015260a001610365565b34801561077d57600080fd5b5061079161078c36600461395e565b61165c565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610365565b3480156107cb57600080fd5b50610383611679565b3480156107e057600080fd5b506103596107ef366004613661565b60116020526000908152604090205460ff1681565b34801561081057600080fd5b506103fb600a5481565b6103e861082836600461395e565b611688565b34801561083957600080fd5b506103e86108483660046137c7565b61191e565b34801561085957600080fd5b50600d546103b0906001600160a01b031681565b34801561087957600080fd5b50600b546103b0906001600160a01b031681565b6103e861089b36600461395e565b6119e3565b3480156108ac57600080fd5b506103e86108bb3660046136eb565b611c53565b3480156108cc57600080fd5b506103b06108db36600461395e565b611cd2565b3480156108ec57600080fd5b506103e86108fb366004613990565b611cfc565b34801561090c57600080fd5b5061038361091b36600461395e565b611e22565b6103e861092e36600461395e565b611efd565b34801561093f57600080fd5b506103e861094e36600461395e565b6121d3565b34801561095f57600080fd5b506103fb60085481565b6103e86109773660046138a2565b612220565b34801561098857600080fd5b506103596109973660046138a2565b6124fd565b3480156109a857600080fd5b506103fb6109b7366004613661565b612512565b3480156109c857600080fd5b506103596109d736600461367c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1157600080fd5b506103e8610a2036600461382d565b61251d565b348015610a3157600080fd5b506103e8610a40366004613661565b61257d565b348015610a5157600080fd5b50600d5461035990600160a01b900460ff1681565b348015610a7257600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000008c81565b60006001600160e01b031982166380ac58cd60e01b1480610acb57506001600160e01b03198216635b5e139f60e01b145b80610ae657506001600160e01b0319821663780e9d6360e01b145b80610b0157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b1690613bd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4290613bd2565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610ba6826001541190565b610c0d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c34826112fd565b9050806001600160a01b0316836001600160a01b03161415610ca35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c04565b336001600160a01b0382161480610cbf5750610cbf81336109d7565b610d315760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c04565b610d3c838383612636565b505050565b610d3c838383612692565b6000546001600160a01b03163314610d945760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b60026009541415610de75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002600955610df581612a25565b506001600955565b6000610e088361130f565b8210610e615760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c04565b6000610e6c60015490565b905060008060005b83811015610f16576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ec757805192505b876001600160a01b0316836001600160a01b03161415610f035786841415610ef557509350610b0192505050565b83610eff81613c0d565b9450505b5080610f0e81613c0d565b915050610e74565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610c04565b6000805b600c54811015610fe657826001600160a01b0316600c8281548110610fb057610fb0613c68565b6000918252602090912001546001600160a01b03161415610fd45750600192915050565b80610fde81613c0d565b915050610f89565b50600092915050565b6000546001600160a01b031633146110375760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6002600954141561108a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c04565b6002600955600d546040516000916001600160a01b03169047908381818185875af1925050503d80600081146110dc576040519150601f19603f3d011682016040523d82523d6000602084013e6110e1565b606091505b5050905080610df557600080fd5b610d3c83838360405180602001604052806000815250611c53565b606060006111178361130f565b905060008167ffffffffffffffff81111561113457611134613c7e565b60405190808252806020026020018201604052801561115d578160200160208202803683370190505b50905060005b828110156111a4576111758582610dfd565b82828151811061118757611187613c68565b60209081029190910101528061119c81613c0d565b915050611163565b509392505050565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b1580156111f557600080fd5b505afa158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190613977565b905060018110610fe65750600192915050565b600061124b60015490565b82106112a55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c04565b5090565b6000546001600160a01b031633146112f15760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b610d3c60148383613513565b600061130882612c0f565b5192915050565b60006001600160a01b03821661137b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c04565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113e85760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6113f26000612dc7565b565b6000546001600160a01b0316331461143c5760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114a65760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115105760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000017707f000000000000000000000000000000000000000000000000000000000000008c61155b60015490565b6115659190613b05565b11156115c35760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610c04565b600d54600160a01b900460ff161561161d5760405162461bcd60e51b815260206004820152601760248201527f6465762068617320616c726561647920636c61696d65640000000000000000006044820152606401610c04565b611647337f000000000000000000000000000000000000000000000000000000000000008c612e17565b600d805460ff60a01b1916600160a01b179055565b6040805180820190915260008082526020820152610b0182612c0f565b606060038054610b1690613bd2565b3233146116d75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b60105467ffffffffffffffff600160601b8204169063ffffffff164281118015906117025750600081115b61174e5760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c04565b3360008181526013602052604090205460ff169061176b906111ac565b15156001146117bc5760405162461bcd60e51b815260206004820152601560248201527f6d75737420686f6c642061206d696e74207061737300000000000000000000006044820152606401610c04565b7f0000000000000000000000000000000000000000000000000000000000001770846117e760015490565b6117f19190613b05565b11156118345760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000000484111561189d5760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c04565b80156118eb5760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c04565b336000818152601360205260409020805460ff1916600117905561190f9085612e17565b61191883612e35565b50505050565b6001600160a01b0382163314156119775760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c04565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314611a325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b6040805160a08101825260105463ffffffff80821683526401000000008204811660208401526801000000000000000082041692820183905267ffffffffffffffff600160601b820481166060840152600160a01b90910416608082018190529091611a9e82826124fd565b611aea5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000177084611b1560015490565b611b1f9190613b05565b1115611b625760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000008c84611b8d33612512565b611b979190613b05565b1115611be55760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610c04565b600a54841115611c375760405162461bcd60e51b815260206004820152600f60248201527f746f6f206d616e792070657220747800000000000000000000000000000000006044820152606401610c04565b611c413385612e17565b611918611c4e8584613b31565b612e35565b611c5e848484612692565b611c6a84848484612ec3565b6119185760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c04565b600c8181548110611ce257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314611d445760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6040805160a08101825263ffffffff948516808252938516602082018190529290941690840181905267ffffffffffffffff958616606085018190529490951660809093018390526010805467ffffffffffffffff19169092176401000000009091021773ffffffffffffffffffffffff000000000000000019166801000000000000000090940273ffffffffffffffff000000000000000000000000191693909317600160601b909202919091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b909102179055565b6060611e2f826001541190565b611ea15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c04565b6000611eab61301d565b90506000815111611ecb5760405180602001604052806000815250611ef6565b80611ed58461302c565b604051602001611ee6929190613a21565b6040516020818303038152906040525b9392505050565b323314611f4c5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b60105467ffffffffffffffff600160601b8204169063ffffffff16428111801590611f775750600081115b611fc35760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c04565b611fcc33610f85565b6120185760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610c04565b816120655760405162461bcd60e51b815260206004820152601f60248201527f5820686f6c6465722073616c6520686173206e6f7420626567756e20796574006044820152606401610c04565b3360009081526012602052604090205460ff16156120c55760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420656c696769626c6520666f72205820686f6c646572206d696e7400006044820152606401610c04565b7f0000000000000000000000000000000000000000000000000000000000001770836120f060015490565b6120fa9190613b05565b111561213d5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000048311156121a65760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c04565b336000818152601260205260409020805460ff191660011790556121ca9084612e17565b610d3c82612e35565b6000546001600160a01b0316331461221b5760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b600f55565b32331461226f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c04565b601054600160a01b810467ffffffffffffffff1690640100000000900463ffffffff164281118015906122a25750600081115b6122ee5760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000017708361231960015490565b6123239190613b05565b11156123665760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c04565b7f00000000000000000000000000000000000000000000000000000000000000048311156123cf5760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c04565b600f54600e54604080516bffffffffffffffffffffffff1933606090811b821660208085019190915260348401969096529390931b90921660548301528051808303604801815260689092019052805191012084146124705760405162461bcd60e51b815260206004820152601260248201527f4e6f74206120747275652077617272696f7200000000000000000000000000006044820152606401610c04565b3360009081526011602052604090205460ff16156124d05760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c04565b336000818152601160205260409020805460ff191660011790556124f49084612e17565b61191882612e35565b60008215801590611ef6575050421015919050565b6000610b0182613142565b6000546001600160a01b031633146125655760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b612571600c6000613593565b610d3c600c83836135b1565b6000546001600160a01b031633146125c55760405162461bcd60e51b81526020600482018190526024820152600080516020613cab8339815191526044820152606401610c04565b6001600160a01b03811661262a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c04565b61263381612dc7565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061269d82612c0f565b80519091506000906001600160a01b0316336001600160a01b031614806126d45750336126c984610b99565b6001600160a01b0316145b806126e6575081516126e690336109d7565b90508061275b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610c04565b846001600160a01b031682600001516001600160a01b0316146127cf5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c04565b6001600160a01b0384166128335760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c04565b6128436000848460000151612636565b6001600160a01b03851660009081526005602052604081208054600192906128759084906001600160801b0316613b50565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926128c191859116613ae3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612949846001613b05565b6000818152600460205260409020549091506001600160a01b03166129db57612973816001541190565b156129db5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481612a755760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610c04565b60006001612a838484613b05565b612a8d9190613b78565b9050612aba60017f0000000000000000000000000000000000000000000000000000000000001770613b78565b811115612aef57612aec60017f0000000000000000000000000000000000000000000000000000000000001770613b78565b90505b612afa816001541190565b612b555760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610c04565b815b818111612bfb576000818152600460205260409020546001600160a01b0316612be9576000612b8582612c0f565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612bf381613c0d565b915050612b57565b50612c07816001613b05565b600855505050565b6040805180820190915260008082526020820152612c2e826001541190565b612c8d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c04565b60007f000000000000000000000000000000000000000000000000000000000000008c8310612cee57612ce07f000000000000000000000000000000000000000000000000000000000000008c84613b78565b612ceb906001613b05565b90505b825b818110612d58576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612d4557949350505050565b5080612d5081613bbb565b915050612cf0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610c04565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612e318282604051806020016040528060008152506131ec565b5050565b80341015612e855760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610c04565b8034111561263357336108fc612e9b8334613b78565b6040518115909202916000818181858888f19350505050158015612e31573d6000803e3d6000fd5b60006001600160a01b0384163b1561301157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f07903390899088908890600401613a50565b602060405180830381600087803b158015612f2157600080fd5b505af1925050508015612f51575060408051601f3d908101601f19168201909252612f4e918101906138e1565b60015b612ff7573d808015612f7f576040519150601f19603f3d011682016040523d82523d6000602084013e612f84565b606091505b508051612fef5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613015565b5060015b949350505050565b606060148054610b1690613bd2565b6060816130505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561307a578061306481613c0d565b91506130739050600a83613b1d565b9150613054565b60008167ffffffffffffffff81111561309557613095613c7e565b6040519080825280601f01601f1916602001820160405280156130bf576020820181803683370190505b5090505b8415613015576130d4600183613b78565b91506130e1600a86613c28565b6130ec906030613b05565b60f81b81838151811061310157613101613c68565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061313b600a86613b1d565b94506130c3565b60006001600160a01b0382166131c05760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610c04565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661324f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c04565b61325a816001541190565b156132a75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c04565b7f000000000000000000000000000000000000000000000000000000000000008c8311156133225760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c04565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061337e908790613ae3565b6001600160801b0316815260200185836020015161339c9190613ae3565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156135085760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46134806000888488612ec3565b6134e85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c04565b816134f281613c0d565b925050808061350090613c0d565b915050613433565b506001819055612a1d565b82805461351f90613bd2565b90600052602060002090601f0160209004810192826135415760008555613587565b82601f1061355a5782800160ff19823516178555613587565b82800160010185558215613587579182015b8281111561358757823582559160200191906001019061356c565b506112a5929150613604565b50805460008255906000526020600020908101906126339190613604565b828054828255906000526020600020908101928215613587579160200282015b828111156135875781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906135d1565b5b808211156112a55760008155600101613605565b80356001600160a01b038116811461363057600080fd5b919050565b803563ffffffff8116811461363057600080fd5b803567ffffffffffffffff8116811461363057600080fd5b60006020828403121561367357600080fd5b611ef682613619565b6000806040838503121561368f57600080fd5b61369883613619565b91506136a660208401613619565b90509250929050565b6000806000606084860312156136c457600080fd5b6136cd84613619565b92506136db60208501613619565b9150604084013590509250925092565b6000806000806080858703121561370157600080fd5b61370a85613619565b935061371860208601613619565b925060408501359150606085013567ffffffffffffffff8082111561373c57600080fd5b818701915087601f83011261375057600080fd5b81358181111561376257613762613c7e565b604051601f8201601f19908116603f0116810190838211818310171561378a5761378a613c7e565b816040528281528a60208487010111156137a357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156137da57600080fd5b6137e383613619565b9150602083013580151581146137f857600080fd5b809150509250929050565b6000806040838503121561381657600080fd5b61381f83613619565b946020939093013593505050565b6000806020838503121561384057600080fd5b823567ffffffffffffffff8082111561385857600080fd5b818501915085601f83011261386c57600080fd5b81358181111561387b57600080fd5b8660208260051b850101111561389057600080fd5b60209290920196919550909350505050565b600080604083850312156138b557600080fd5b50508035926020909101359150565b6000602082840312156138d657600080fd5b8135611ef681613c94565b6000602082840312156138f357600080fd5b8151611ef681613c94565b6000806020838503121561391157600080fd5b823567ffffffffffffffff8082111561392957600080fd5b818501915085601f83011261393d57600080fd5b81358181111561394c57600080fd5b86602082850101111561389057600080fd5b60006020828403121561397057600080fd5b5035919050565b60006020828403121561398957600080fd5b5051919050565b600080600080600060a086880312156139a857600080fd5b6139b186613649565b94506139bf60208701613649565b93506139cd60408701613635565b92506139db60608701613635565b91506139e960808701613635565b90509295509295909350565b60008151808452613a0d816020860160208601613b8f565b601f01601f19169290920160200192915050565b60008351613a33818460208801613b8f565b835190830190613a47818360208801613b8f565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613a8260808301846139f5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613ac457835183529284019291840191600101613aa8565b50909695505050505050565b602081526000611ef660208301846139f5565b60006001600160801b03808316818516808303821115613a4757613a47613c3c565b60008219821115613b1857613b18613c3c565b500190565b600082613b2c57613b2c613c52565b500490565b6000816000190483118215151615613b4b57613b4b613c3c565b500290565b60006001600160801b0383811690831681811015613b7057613b70613c3c565b039392505050565b600082821015613b8a57613b8a613c3c565b500390565b60005b83811015613baa578181015183820152602001613b92565b838111156119185750506000910152565b600081613bca57613bca613c3c565b506000190190565b600181811c90821680613be657607f821691505b60208210811415613c0757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c2157613c21613c3c565b5060010190565b600082613c3757613c37613c52565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461263357600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220d8ae2863685b3052959606103041242d5909681434ac38ca49d5b05f90a8115864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000001770000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000362c5e9380d01a9b4e9aa6ee7722c344f727b640000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 140
Arg [1] : maxWhitelistBatch_ (uint256): 4
Arg [2] : collectionSize_ (uint256): 6000
Arg [3] : amountForDevs_ (uint256): 140
Arg [4] : txMaxPer_ (uint256): 10
Arg [5] : payments_ (address): 0x0362c5E9380d01A9b4e9aA6eE7722c344f727b64
Arg [6] : devMint_ (bool): False

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000008c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001770
Arg [3] : 000000000000000000000000000000000000000000000000000000000000008c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000362c5e9380d01a9b4e9aa6ee7722c344f727b64
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44532:9440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27663:394;;;;;;;;;;-1:-1:-1;27663:394:0;;;;;:::i;:::-;;:::i;:::-;;;9328:14:1;;9321:22;9303:41;;9291:2;9276:18;27663:394:0;;;;;;;;29513:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31158:212::-;;;;;;;;;;-1:-1:-1;31158:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7696:55:1;;;7678:74;;7666:2;7651:18;31158:212:0;7532:226:1;30691:399:0;;;;;;;;;;-1:-1:-1;30691:399:0;;;;;:::i;:::-;;:::i;:::-;;26134:98;;;;;;;;;;-1:-1:-1;26212:12:0;;26134:98;;;26104:25:1;;;26092:2;26077:18;26134:98:0;25958:177:1;32072:154:0;;;;;;;;;;-1:-1:-1;32072:154:0;;;;;:::i;:::-;;:::i;45389:47::-;;;;;;;;;;-1:-1:-1;45389:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53845:122;;;;;;;;;;-1:-1:-1;53845:122:0;;;;;:::i;:::-;;:::i;26799:790::-;;;;;;;;;;-1:-1:-1;26799:790:0;;;;;:::i;:::-;;:::i;50837:253::-;;;;;;;;;;-1:-1:-1;50837:253:0;;;;;:::i;:::-;;:::i;53473:169::-;;;;;;;;;;;;;:::i;32299:::-;;;;;;;;;;-1:-1:-1;32299:169:0;;;;;:::i;:::-;;:::i;50396:388::-;;;;;;;;;;-1:-1:-1;50396:388:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51142:206::-;;;;;;;;;;-1:-1:-1;51142:206:0;;;;;:::i;:::-;;:::i;26311:183::-;;;;;;;;;;-1:-1:-1;26311:183:0;;;;;:::i;:::-;;:::i;53240:104::-;;;;;;;;;;-1:-1:-1;53240:104:0;;;;;:::i;:::-;;:::i;45332:50::-;;;;;;;;;;-1:-1:-1;45332:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29322:122;;;;;;;;;;-1:-1:-1;29322:122:0;;;;;:::i;:::-;;:::i;44647:44::-;;;;;;;;;;;;;;;28123:217;;;;;;;;;;-1:-1:-1;28123:217:0;;;;;:::i;:::-;;:::i;42516:103::-;;;;;;;;;;;;;:::i;53354:109::-;;;;;;;;;;-1:-1:-1;53354:109:0;;;;;:::i;:::-;;:::i;53734:101::-;;;;;;;;;;-1:-1:-1;53734:101:0;;;;;:::i;:::-;;:::i;52888:342::-;;;;;;;;;;;;;:::i;44592:48::-;;;;;;;;;;;;;;;41865:87;;;;;;;;;;-1:-1:-1;41911:7:0;41938:6;-1:-1:-1;;;;;41938:6:0;41865:87;;45239:28;;;;;;;;;;-1:-1:-1;45239:28:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45239:28:0;;;;;-1:-1:-1;;;45239:28:0;;;;;;;;;26399:10:1;26436:15;;;26418:34;;26488:15;;;26483:2;26468:18;;26461:43;26540:15;;;;26520:18;;;26513:43;;;;26575:18;26629:15;;;26624:2;26609:18;;26602:43;26682:15;;;26676:3;26661:19;;26654:44;26376:3;26361:19;45239:28:0;26140:564:1;51692:159:0;;;;;;;;;;-1:-1:-1;51692:159:0;;;;;:::i;:::-;;:::i;:::-;;;;25800:13:1;;-1:-1:-1;;;;;25796:62:1;25778:81;;25919:4;25907:17;;;25901:24;25927:18;25897:49;25875:20;;;25868:79;;;;25751:18;51692:159:0;25570:383:1;29682:102:0;;;;;;;;;;;;;:::i;45278:47::-;;;;;;;;;;-1:-1:-1;45278:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44743:29;;;;;;;;;;;;;;;;47943:787;;;;;;:::i;:::-;;:::i;31444:284::-;;;;;;;;;;-1:-1:-1;31444:284:0;;;;;:::i;:::-;;:::i;44908:31::-;;;;;;;;;;-1:-1:-1;44908:31:0;;;;-1:-1:-1;;;;;44908:31:0;;;44779:78;;;;;;;;;;-1:-1:-1;44779:78:0;;;;-1:-1:-1;;;;;44779:78:0;;;48758:719;;;;;;:::i;:::-;;:::i;32541:333::-;;;;;;;;;;-1:-1:-1;32541:333:0;;;;;:::i;:::-;;:::i;44864:37::-;;;;;;;;;;-1:-1:-1;44864:37:0;;;;;:::i;:::-;;:::i;52206:419::-;;;;;;;;;;-1:-1:-1;52206:419:0;;;;;:::i;:::-;;:::i;29857:428::-;;;;;;;;;;-1:-1:-1;29857:428:0;;;;;:::i;:::-;;:::i;46281:836::-;;;;;;:::i;:::-;;:::i;53648:74::-;;;;;;;;;;-1:-1:-1;53648:74:0;;;;;:::i;:::-;;:::i;37246:43::-;;;;;;;;;;;;;;;;47148:762;;;;;;:::i;:::-;;:::i;50101:228::-;;;;;;;;;;-1:-1:-1;50101:228:0;;;;;:::i;:::-;;:::i;51571:111::-;;;;;;;;;;-1:-1:-1;51571:111:0;;;;;:::i;:::-;;:::i;31801:202::-;;;;;;;;;;-1:-1:-1;31801:202:0;;;;;:::i;:::-;-1:-1:-1;;;;;31960:25:0;;;31933:4;31960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31801:202;52684:150;;;;;;;;;;-1:-1:-1;52684:150:0;;;;;:::i;:::-;;:::i;42774:201::-;;;;;;;;;;-1:-1:-1;42774:201:0;;;;;:::i;:::-;;:::i;44946:24::-;;;;;;;;;;-1:-1:-1;44946:24:0;;;;-1:-1:-1;;;44946:24:0;;;;;;44698:38;;;;;;;;;;;;;;;27663:394;27800:4;-1:-1:-1;;;;;;27836:40:0;;-1:-1:-1;;;27836:40:0;;:101;;-1:-1:-1;;;;;;;27889:48:0;;-1:-1:-1;;;27889:48:0;27836:101;:164;;;-1:-1:-1;;;;;;;27950:50:0;;-1:-1:-1;;;27950:50:0;27836:164;:213;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;28013:36;27820:229;27663:394;-1:-1:-1;;27663:394:0:o;29513:98::-;29567:13;29598:5;29591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29513:98;:::o;31158:212::-;31226:7;31252:16;31260:7;33220:12;;-1:-1:-1;33210:22:0;33131:109;31252:16;31244:74;;;;-1:-1:-1;;;31244:74:0;;24612:2:1;31244:74:0;;;24594:21:1;24651:2;24631:18;;;24624:30;24690:34;24670:18;;;24663:62;-1:-1:-1;;;24741:18:1;;;24734:43;24794:19;;31244:74:0;;;;;;;;;-1:-1:-1;31338:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31338:24:0;;31158:212::o;30691:399::-;30762:13;30778:24;30794:7;30778:15;:24::i;:::-;30762:40;;30825:5;-1:-1:-1;;;;;30819:11:0;:2;-1:-1:-1;;;;;30819:11:0;;;30811:58;;;;-1:-1:-1;;;30811:58:0;;19618:2:1;30811:58:0;;;19600:21:1;19657:2;19637:18;;;19630:30;19696:34;19676:18;;;19669:62;-1:-1:-1;;;19747:18:1;;;19740:32;19789:19;;30811:58:0;19416:398:1;30811:58:0;23518:10;-1:-1:-1;;;;;30900:21:0;;;;:62;;-1:-1:-1;30925:37:0;30942:5;23518:10;31801:202;:::i;30925:37::-;30882:159;;;;-1:-1:-1;;;30882:159:0;;14351:2:1;30882:159:0;;;14333:21:1;14390:2;14370:18;;;14363:30;14429:34;14409:18;;;14402:62;14500:27;14480:18;;;14473:55;14545:19;;30882:159:0;14149:421:1;30882:159:0;31054:28;31063:2;31067:7;31076:5;31054:8;:28::i;:::-;30753:337;30691:399;;:::o;32072:154::-;32190:28;32200:4;32206:2;32210:7;32190:9;:28::i;53845:122::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;21812:1:::1;22410:7;;:19;;22402:63;;;::::0;-1:-1:-1;;;22402:63:0;;23836:2:1;22402:63:0::1;::::0;::::1;23818:21:1::0;23875:2;23855:18;;;23848:30;23914:33;23894:18;;;23887:61;23965:18;;22402:63:0::1;23634:355:1::0;22402:63:0::1;21812:1;22543:7;:18:::0;53931:28:::2;53950:8:::0;53931:18:::2;:28::i;:::-;-1:-1:-1::0;21768:1:0::1;22722:7;:22:::0;53845:122::o;26799:790::-;26916:7;26955:16;26965:5;26955:9;:16::i;:::-;26947:5;:24;26939:71;;;;-1:-1:-1;;;26939:71:0;;9781:2:1;26939:71:0;;;9763:21:1;9820:2;9800:18;;;9793:30;9859:34;9839:18;;;9832:62;-1:-1:-1;;;9910:18:1;;;9903:32;9952:19;;26939:71:0;9579:398:1;26939:71:0;27019:22;27044:13;26212:12;;;26134:98;27044:13;27019:38;;27066:19;27098:25;27150:9;27145:372;27169:14;27165:1;:18;27145:372;;;27201:31;27235:14;;;:11;:14;;;;;;;;;27201:48;;;;;;;;;-1:-1:-1;;;;;27201:48:0;;;;;-1:-1:-1;;;27201:48:0;;;;;;;;;;;;27264:28;27260:93;;27327:14;;;-1:-1:-1;27260:93:0;27388:5;-1:-1:-1;;;;;27367:26:0;:17;-1:-1:-1;;;;;27367:26:0;;27363:145;;;27427:5;27412:11;:20;27408:63;;;-1:-1:-1;27456:1:0;-1:-1:-1;27449:8:0;;-1:-1:-1;;;27449:8:0;27408:63;27483:13;;;;:::i;:::-;;;;27363:145;-1:-1:-1;27185:3:0;;;;:::i;:::-;;;;27145:372;;;-1:-1:-1;27525:56:0;;-1:-1:-1;;;27525:56:0;;22662:2:1;27525:56:0;;;22644:21:1;22701:2;22681:18;;;22674:30;22740:34;22720:18;;;22713:62;22811:16;22791:18;;;22784:44;22845:19;;27525:56:0;22460:410:1;50837:253:0;50896:4;;50911:151;50932:20;:27;50928:31;;50911:151;;;51008:5;-1:-1:-1;;;;;50981:32:0;:20;51002:1;50981:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;50981:23:0;:32;50977:76;;;-1:-1:-1;51037:4:0;;50837:253;-1:-1:-1;;50837:253:0:o;50977:76::-;50961:3;;;;:::i;:::-;;;;50911:151;;;-1:-1:-1;51077:5:0;;50837:253;-1:-1:-1;;50837:253:0:o;53473:169::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;21812:1:::1;22410:7;;:19;;22402:63;;;::::0;-1:-1:-1;;;22402:63:0;;23836:2:1;22402:63:0::1;::::0;::::1;23818:21:1::0;23875:2;23855:18;;;23848:30;23914:33;23894:18;;;23887:61;23965:18;;22402:63:0::1;23634:355:1::0;22402:63:0::1;21812:1;22543:7;:18:::0;53561:8:::2;::::0;53553:56:::2;::::0;53535:12:::2;::::0;-1:-1:-1;;;;;53561:8:0::2;::::0;53583:21:::2;::::0;53535:12;53553:56;53535:12;53553:56;53583:21;53561:8;53553:56:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53534:75;;;53626:7;53618:16;;;::::0;::::2;32299:169:::0;32421:39;32438:4;32444:2;32448:7;32421:39;;;;;;;;;;;;:16;:39::i;50396:388::-;50456:16;50487:23;50513:17;50523:6;50513:9;:17::i;:::-;50487:43;;50543:25;50585:15;50571:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50571:30:0;;50543:58;;50619:9;50614:133;50634:15;50630:1;:19;50614:133;;;50687:30;50707:6;50715:1;50687:19;:30::i;:::-;50673:8;50682:1;50673:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50651:3;;;;:::i;:::-;;;;50614:133;;;-1:-1:-1;50766:8:0;50396:388;-1:-1:-1;;;50396:388:0:o;51142:206::-;51233:18;;51224:45;;-1:-1:-1;;;51224:45:0;;-1:-1:-1;;;;;7696:55:1;;;51224:45:0;;;7678:74:1;51199:4:0;;;;51233:18;;;51224:38;;7651:18:1;;51224:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51212:57;;51294:1;51286:4;:9;51282:41;;-1:-1:-1;51311:4:0;;51142:206;-1:-1:-1;;51142:206:0:o;26311:183::-;26378:7;26412:13;26212:12;;;26134:98;26412:13;26404:5;:21;26396:69;;;;-1:-1:-1;;;26396:69:0;;12764:2:1;26396:69:0;;;12746:21:1;12803:2;12783:18;;;12776:30;12842:34;12822:18;;;12815:62;-1:-1:-1;;;12893:18:1;;;12886:33;12936:19;;26396:69:0;12562:399:1;26396:69:0;-1:-1:-1;26481:5:0;26311:183::o;53240:104::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;53313:23:::1;:13;53329:7:::0;;53313:23:::1;:::i;29322:122::-:0;29386:7;29411:20;29423:7;29411:11;:20::i;:::-;:25;;29322:122;-1:-1:-1;;29322:122:0:o;28123:217::-;28187:7;-1:-1:-1;;;;;28213:19:0;;28205:75;;;;-1:-1:-1;;;28205:75:0;;15849:2:1;28205:75:0;;;15831:21:1;15888:2;15868:18;;;15861:30;15927:34;15907:18;;;15900:62;-1:-1:-1;;;15978:18:1;;;15971:41;16029:19;;28205:75:0;15647:407:1;28205:75:0;-1:-1:-1;;;;;;28304:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28304:27:0;;28123:217::o;42516:103::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;42581:30:::1;42608:1;42581:18;:30::i;:::-;42516:103::o:0;53354:109::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;53426:18:::1;:30:::0;;-1:-1:-1;;;;;;53426:30:0::1;-1:-1:-1::0;;;;;53426:30:0;;;::::1;::::0;;;::::1;::::0;;53354:109::o;53734:101::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;53805:9:::1;:20:::0;;-1:-1:-1;;;;;;53805:20:0::1;-1:-1:-1::0;;;;;53805:20:0;;;::::1;::::0;;;::::1;::::0;;53734:101::o;52888:342::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;52986:14:::1;52969:13;52953;26212:12:::0;;;26134:98;52953:13:::1;:29;;;;:::i;:::-;:47;;52935:126;;;::::0;-1:-1:-1;;;52935:126:0;;22254:2:1;52935:126:0::1;::::0;::::1;22236:21:1::0;22293:2;22273:18;;;22266:30;22332:34;22312:18;;;22305:62;-1:-1:-1;;;22383:18:1;;;22376:37;22430:19;;52935:126:0::1;22052:403:1::0;52935:126:0::1;53088:12;::::0;-1:-1:-1;;;53088:12:0;::::1;;;:21;53070:75;;;::::0;-1:-1:-1;;;53070:75:0;;10527:2:1;53070:75:0::1;::::0;::::1;10509:21:1::0;10566:2;10546:18;;;10539:30;10605:25;10585:18;;;10578:53;10648:18;;53070:75:0::1;10325:347:1::0;53070:75:0::1;53156:36;53166:10;53178:13;53156:9;:36::i;:::-;53203:12;:19:::0;;-1:-1:-1;;;;53203:19:0::1;-1:-1:-1::0;;;53203:19:0::1;::::0;;52888:342::o;51692:159::-;-1:-1:-1;;;;;;;;;;;;;;;;;51823:20:0;51835:7;51823:11;:20::i;29682:102::-;29738:13;29769:7;29762:14;;;;;:::i;47943:787::-;46030:9;46043:10;46030:23;46022:66;;;;-1:-1:-1;;;46022:66:0;;13992:2:1;46022:66:0;;;13974:21:1;14031:2;14011:18;;;14004:30;14070:32;14050:18;;;14043:60;14120:18;;46022:66:0;13790:354:1;46022:66:0;48053:10:::1;:26:::0;::::1;-1:-1:-1::0;;;48053:26:0;::::1;;::::0;48117:31:::1;;48176:15;:28:::0;-1:-1:-1;48176:28:0;::::1;::::0;:55:::1;;;48230:1;48218:9;:13;48176:55;48158:108;;;::::0;-1:-1:-1;;;48158:108:0;;12058:2:1;48158:108:0::1;::::0;::::1;12040:21:1::0;12097:2;12077:18;;;12070:30;12136:32;12116:18;;;12109:60;12186:18;;48158:108:0::1;11856:354:1::0;48158:108:0::1;48305:10;48275:11;48289:27:::0;;;:15:::1;:27;::::0;;;;;::::1;;::::0;48333:23:::1;::::0;:11:::1;:23::i;:::-;:31;;48360:4;48333:31;48325:65;;;::::0;-1:-1:-1;;;48325:65:0;;16608:2:1;48325:65:0::1;::::0;::::1;16590:21:1::0;16647:2;16627:18;;;16620:30;16686:23;16666:18;;;16659:51;16727:18;;48325:65:0::1;16406:345:1::0;48325:65:0::1;48438:14;48423:11;48407:13;26212:12:::0;;;26134:98;48407:13:::1;:27;;;;:::i;:::-;:45;;48399:76;;;::::0;-1:-1:-1;;;48399:76:0;;16261:2:1;48399:76:0::1;::::0;::::1;16243:21:1::0;16300:2;16280:18;;;16273:30;-1:-1:-1;;;16319:18:1;;;16312:48;16377:18;;48399:76:0::1;16059:342:1::0;48399:76:0::1;48507:19;48492:11;:34;;48484:69;;;::::0;-1:-1:-1;;;48484:69:0;;20021:2:1;48484:69:0::1;::::0;::::1;20003:21:1::0;20060:2;20040:18;;;20033:30;-1:-1:-1;;;20079:18:1;;;20072:52;20141:18;;48484:69:0::1;19819:346:1::0;48484:69:0::1;48570:15:::0;::::1;48562:42;;;::::0;-1:-1:-1;;;48562:42:0;;25429:2:1;48562:42:0::1;::::0;::::1;25411:21:1::0;25468:2;25448:18;;;25441:30;25507:16;25487:18;;;25480:44;25541:18;;48562:42:0::1;25227:338:1::0;48562:42:0::1;48633:10;48617:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;48617:34:0::1;48647:4;48617:34;::::0;;48660::::1;::::0;48682:11;48660:9:::1;:34::i;:::-;48703:19;48716:5;48703:12;:19::i;:::-;48020:710;;;47943:787:::0;:::o;31444:284::-;-1:-1:-1;;;;;31537:24:0;;23518:10;31537:24;;31529:63;;;;-1:-1:-1;;;31529:63:0;;18142:2:1;31529:63:0;;;18124:21:1;18181:2;18161:18;;;18154:30;18220:28;18200:18;;;18193:56;18266:18;;31529:63:0;17940:350:1;31529:63:0;23518:10;31605:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31605:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31605:53:0;;;;;;;;;;31672:48;;9303:41:1;;;31605:42:0;;23518:10;31672:48;;9276:18:1;31672:48:0;;;;;;;31444:284;;:::o;48758:719::-;46030:9;46043:10;46030:23;46022:66;;;;-1:-1:-1;;;46022:66:0;;13992:2:1;46022:66:0;;;13974:21:1;14031:2;14011:18;;;14004:30;14070:32;14050:18;;;14043:60;14120:18;;46022:66:0;13790:354:1;46022:66:0;48865:37:::1;::::0;;::::1;::::0;::::1;::::0;;48892:10:::1;48865:37:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;;;;;::::1;-1:-1:-1::0;;;48865:37:0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;48865:37:0;;::::1;;::::0;;;;;;;;49051:48:::1;48865:37:::0;;49051:14:::1;:48::i;:::-;49043:90;;;::::0;-1:-1:-1;;;49043:90:0;;19260:2:1;49043:90:0::1;::::0;::::1;19242:21:1::0;19299:2;19279:18;;;19272:30;19338:31;19318:18;;;19311:59;19387:18;;49043:90:0::1;19058:353:1::0;49043:90:0::1;49178:14;49166:8;49150:13;26212:12:::0;;;26134:98;49150:13:::1;:24;;;;:::i;:::-;:42;;49142:73;;;::::0;-1:-1:-1;;;49142:73:0;;16261:2:1;49142:73:0::1;::::0;::::1;16243:21:1::0;16300:2;16280:18;;;16273:30;-1:-1:-1;;;16319:18:1;;;16312:48;16377:18;;49142:73:0::1;16059:342:1::0;49142:73:0::1;49271:23;49259:8;49232:24;49245:10;49232:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;49224:97;;;::::0;-1:-1:-1;;;49224:97:0;;21903:2:1;49224:97:0::1;::::0;::::1;21885:21:1::0;21942:2;21922:18;;;21915:30;21981:24;21961:18;;;21954:52;22023:18;;49224:97:0::1;21701:346:1::0;49224:97:0::1;49350:14;;49338:8;:26;;49330:54;;;::::0;-1:-1:-1;;;49330:54:0;;18916:2:1;49330:54:0::1;::::0;::::1;18898:21:1::0;18955:2;18935:18;;;18928:30;18994:17;18974:18;;;18967:45;19029:18;;49330:54:0::1;18714:339:1::0;49330:54:0::1;49393:31;49403:10;49415:8;49393:9;:31::i;:::-;49433:36;49446:22;49460:8:::0;49446:11;:22:::1;:::i;:::-;49433:12;:36::i;32541:333::-:0;32690:28;32700:4;32706:2;32710:7;32690:9;:28::i;:::-;32745:48;32768:4;32774:2;32778:7;32787:5;32745:22;:48::i;:::-;32727:139;;;;-1:-1:-1;;;32727:139:0;;20372:2:1;32727:139:0;;;20354:21:1;20411:2;20391:18;;;20384:30;20450:34;20430:18;;;20423:62;-1:-1:-1;;;20501:18:1;;;20494:49;20560:19;;32727:139:0;20170:415:1;44864:37:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44864:37:0;;-1:-1:-1;44864:37:0;:::o;52206:419::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;52450:167:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;52437:10:::1;:180:::0;;-1:-1:-1;;52437:180:0;;;;;;;::::1;;-1:-1:-1::0;;52437:180:0;;;;::::1;-1:-1:-1::0;;52437:180:0;;;;;-1:-1:-1;;;52437:180:0;;::::1;::::0;;;::::1;::::0;::::1;-1:-1:-1::0;;;52437:180:0;;::::1;;::::0;;52206:419::o;29857:428::-;29965:13;30012:16;30020:7;33220:12;;-1:-1:-1;33210:22:0;33131:109;30012:16;29994:103;;;;-1:-1:-1;;;29994:103:0;;17726:2:1;29994:103:0;;;17708:21:1;17765:2;17745:18;;;17738:30;17804:34;17784:18;;;17777:62;17875:17;17855:18;;;17848:45;17910:19;;29994:103:0;17524:411:1;29994:103:0;30110:21;30134:10;:8;:10::i;:::-;30110:34;;30193:1;30175:7;30169:21;:25;:108;;;;;;;;;;;;;;;;;30232:7;30241:18;:7;:16;:18::i;:::-;30215:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30169:108;30153:124;29857:428;-1:-1:-1;;;29857:428:0:o;46281:836::-;46030:9;46043:10;46030:23;46022:66;;;;-1:-1:-1;;;46022:66:0;;13992:2:1;46022:66:0;;;13974:21:1;14031:2;14011:18;;;14004:30;14070:32;14050:18;;;14043:60;14120:18;;46022:66:0;13790:354:1;46022:66:0;46392:10:::1;:26:::0;::::1;-1:-1:-1::0;;;46392:26:0;::::1;;::::0;46456:31:::1;;46515:15;:28:::0;-1:-1:-1;46515:28:0;::::1;::::0;:55:::1;;;46569:1;46557:9;:13;46515:55;46497:108;;;::::0;-1:-1:-1;;;46497:108:0;;12058:2:1;46497:108:0::1;::::0;::::1;12040:21:1::0;12097:2;12077:18;;;12070:30;12136:32;12116:18;;;12109:60;12186:18;;46497:108:0::1;11856:354:1::0;46497:108:0::1;46622:25;46636:10;46622:13;:25::i;:::-;46614:61;;;::::0;-1:-1:-1;;;46614:61:0;;23484:2:1;46614:61:0::1;::::0;::::1;23466:21:1::0;23523:2;23503:18;;;23496:30;23562:25;23542:18;;;23535:53;23605:18;;46614:61:0::1;23282:347:1::0;46614:61:0::1;46692:10:::0;46684:54:::1;;;::::0;-1:-1:-1;;;46684:54:0;;15489:2:1;46684:54:0::1;::::0;::::1;15471:21:1::0;15528:2;15508:18;;;15501:30;15567:33;15547:18;;;15540:61;15618:18;;46684:54:0::1;15287:355:1::0;46684:54:0::1;46774:10;46755:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;:39;46747:82;;;::::0;-1:-1:-1;;;46747:82:0;;15130:2:1;46747:82:0::1;::::0;::::1;15112:21:1::0;15169:2;15149:18;;;15142:30;15208:32;15188:18;;;15181:60;15258:18;;46747:82:0::1;14928:354:1::0;46747:82:0::1;46877:14;46862:11;46846:13;26212:12:::0;;;26134:98;46846:13:::1;:27;;;;:::i;:::-;:45;;46838:76;;;::::0;-1:-1:-1;;;46838:76:0;;16261:2:1;46838:76:0::1;::::0;::::1;16243:21:1::0;16300:2;16280:18;;;16273:30;-1:-1:-1;;;16319:18:1;;;16312:48;16377:18;;46838:76:0::1;16059:342:1::0;46838:76:0::1;46946:19;46931:11;:34;;46923:69;;;::::0;-1:-1:-1;;;46923:69:0;;20021:2:1;46923:69:0::1;::::0;::::1;20003:21:1::0;20060:2;20040:18;;;20033:30;-1:-1:-1;;;20079:18:1;;;20072:52;20141:18;;46923:69:0::1;19819:346:1::0;46923:69:0::1;47020:10;47001:30;::::0;;;:18:::1;:30;::::0;;;;:37;;-1:-1:-1;;47001:37:0::1;47034:4;47001:37;::::0;;47047:34:::1;::::0;47069:11;47047:9:::1;:34::i;:::-;47090:19;47103:5;47090:12;:19::i;53648:74::-:0;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;53702:3:::1;:10:::0;53648:74::o;47148:762::-;46030:9;46043:10;46030:23;46022:66;;;;-1:-1:-1;;;46022:66:0;;13992:2:1;46022:66:0;;;13974:21:1;14031:2;14011:18;;;14004:30;14070:32;14050:18;;;14043:60;14120:18;;46022:66:0;13790:354:1;46022:66:0;47270:10:::1;:22:::0;-1:-1:-1;;;47270:22:0;::::1;;;::::0;47330:33;;::::1;;;47391:15;-1:-1:-1::0;;47391:28:0;::::1;::::0;:55:::1;;;47445:1;47433:9;:13;47391:55;47373:110;;;::::0;-1:-1:-1;;;47373:110:0;;10879:2:1;47373:110:0::1;::::0;::::1;10861:21:1::0;;;10898:18;;;10891:30;10957:34;10937:18;;;10930:62;11009:18;;47373:110:0::1;10677:356:1::0;47373:110:0::1;47531:14;47516:11;47500:13;26212:12:::0;;;26134:98;47500:13:::1;:27;;;;:::i;:::-;:45;;47492:76;;;::::0;-1:-1:-1;;;47492:76:0;;16261:2:1;47492:76:0::1;::::0;::::1;16243:21:1::0;16300:2;16280:18;;;16273:30;-1:-1:-1;;;16319:18:1;;;16312:48;16377:18;;47492:76:0::1;16059:342:1::0;47492:76:0::1;47600:19;47585:11;:34;;47577:69;;;::::0;-1:-1:-1;;;47577:69:0;;20021:2:1;47577:69:0::1;::::0;::::1;20003:21:1::0;20060:2;20040:18;;;20033:30;-1:-1:-1;;;20079:18:1;;;20072:52;20141:18;;47577:69:0::1;19819:346:1::0;47577:69:0::1;51503:3:::0;;51508:9;;51477:41;;;-1:-1:-1;;47682:10:0::1;6699:2:1::0;6695:15;;;6691:24;;51477:41:0;;;;6679:37:1;;;;6732:12;;;6725:28;;;;6787:15;;;;;;;6769:12;;;6762:46;51477:41:0;;;;;;;;;6824:12:1;;;;51477:41:0;;51467:52;;;;;47663:5:::1;:30;47655:61;;;::::0;-1:-1:-1;;;47655:61:0;;12417:2:1;47655:61:0::1;::::0;::::1;12399:21:1::0;12456:2;12436:18;;;12429:30;12495:20;12475:18;;;12468:48;12533:18;;47655:61:0::1;12215:342:1::0;47655:61:0::1;47749:10;47733:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;:36;47725:63;;;::::0;-1:-1:-1;;;47725:63:0;;10184:2:1;47725:63:0::1;::::0;::::1;10166:21:1::0;10223:2;10203:18;;;10196:30;10262:16;10242:18;;;10235:44;10296:18;;47725:63:0::1;9982:338:1::0;47725:63:0::1;47813:10;47797:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;47797:34:0::1;47827:4;47797:34;::::0;;47840::::1;::::0;47862:11;47840:9:::1;:34::i;:::-;47883:19;47896:5;47883:12;:19::i;50101:228::-:0;50220:4;50251:19;;;;;:70;;-1:-1:-1;;50283:15:0;:38;;;50235:86;-1:-1:-1;50101:228:0:o;51571:111::-;51629:7;51654:20;51668:5;51654:13;:20::i;52684:150::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;52761:27:::1;52768:20;;52761:27;:::i;:::-;52797:29;:20;52820:6:::0;;52797:29:::1;:::i;42774:201::-:0;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17365:2:1;42077:68:0;;;17347:21:1;;;17384:18;;;17377:30;-1:-1:-1;;;;;;;;;;;17423:18:1;;;17416:62;17495:18;;42077:68:0;17163:356:1;42077:68:0;-1:-1:-1;;;;;42863:22:0;::::1;42855:73;;;::::0;-1:-1:-1;;;42855:73:0;;11240:2:1;42855:73:0::1;::::0;::::1;11222:21:1::0;11279:2;11259:18;;;11252:30;11318:34;11298:18;;;11291:62;-1:-1:-1;;;11369:18:1;;;11362:36;11415:19;;42855:73:0::1;11038:402:1::0;42855:73:0::1;42939:28;42958:8;42939:18;:28::i;:::-;42774:201:::0;:::o;37050:186::-;37157:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37157:29:0;-1:-1:-1;;;;;37157:29:0;;;;;;;;;37200:28;;37157:24;;37200:28;;;;;;;37050:186;;;:::o;35311:1619::-;35418:35;35456:20;35468:7;35456:11;:20::i;:::-;35531:18;;35418:58;;-1:-1:-1;35489:22:0;;-1:-1:-1;;;;;35515:34:0;23518:10;-1:-1:-1;;;;;35515:34:0;;:83;;;-1:-1:-1;23518:10:0;35562:20;35574:7;35562:11;:20::i;:::-;-1:-1:-1;;;;;35562:36:0;;35515:83;:146;;;-1:-1:-1;35628:18:0;;35611:50;;23518:10;31801:202;:::i;35611:50::-;35489:173;;35693:17;35675:107;;;;-1:-1:-1;;;35675:107:0;;18497:2:1;35675:107:0;;;18479:21:1;18536:2;18516:18;;;18509:30;18575:34;18555:18;;;18548:62;18646:20;18626:18;;;18619:48;18684:19;;35675:107:0;18295:414:1;35675:107:0;35835:4;-1:-1:-1;;;;;35813:26:0;:13;:18;;;-1:-1:-1;;;;;35813:26:0;;35795:104;;;;-1:-1:-1;;;35795:104:0;;16958:2:1;35795:104:0;;;16940:21:1;16997:2;16977:18;;;16970:30;17036:34;17016:18;;;17009:62;-1:-1:-1;;;17087:18:1;;;17080:36;17133:19;;35795:104:0;16756:402:1;35795:104:0;-1:-1:-1;;;;;35916:16:0;;35908:66;;;;-1:-1:-1;;;35908:66:0;;13168:2:1;35908:66:0;;;13150:21:1;13207:2;13187:18;;;13180:30;13246:34;13226:18;;;13219:62;-1:-1:-1;;;13297:18:1;;;13290:35;13342:19;;35908:66:0;12966:401:1;35908:66:0;36093:49;36110:1;36114:7;36123:13;:18;;;36093:8;:49::i;:::-;-1:-1:-1;;;;;36155:18:0;;;;;;:12;:18;;;;;:31;;36185:1;;36155:18;:31;;36185:1;;-1:-1:-1;;;;;36155:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36155:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36195:16:0;;-1:-1:-1;36195:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36195:16:0;;:29;;-1:-1:-1;;36195:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36195:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36256:43:0;;;;;;;;-1:-1:-1;;;;;36256:43:0;;;;;;36282:15;36256:43;;;;;;;;;-1:-1:-1;36233:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36233:66:0;-1:-1:-1;;;;;;36233:66:0;;;;;;;;;;;36557:11;36245:7;-1:-1:-1;36557:11:0;:::i;:::-;36622:1;36581:24;;;:11;:24;;;;;:29;36535:33;;-1:-1:-1;;;;;;36581:29:0;36577:250;;36641:20;36649:11;33220:12;;-1:-1:-1;33210:22:0;33131:109;36641:20;36637:181;;;36703:103;;;;;;;;36732:18;;-1:-1:-1;;;;;36703:103:0;;;;;;36765:28;;;;36703:103;;;;;;;;;;-1:-1:-1;36676:24:0;;;:11;:24;;;;;;;:130;;;;;;;;;-1:-1:-1;;;36676:130:0;-1:-1:-1;;;;;;36676:130:0;;;;;;;;;;;;36637:181;36863:7;36859:2;-1:-1:-1;;;;;36844:27:0;36853:4;-1:-1:-1;;;;;36844:27:0;;;;;;;;;;;36880:42;35409:1521;;;35311:1619;;;:::o;37404:884::-;37496:24;;37537:12;37529:49;;;;-1:-1:-1;;;37529:49:0;;14777:2:1;37529:49:0;;;14759:21:1;14816:2;14796:18;;;14789:30;14855:26;14835:18;;;14828:54;14899:18;;37529:49:0;14575:348:1;37529:49:0;37587:16;37637:1;37606:28;37626:8;37606:17;:28;:::i;:::-;:32;;;;:::i;:::-;37587:51;-1:-1:-1;37662:18:0;37679:1;37662:14;:18;:::i;:::-;37651:8;:29;37647:85;;;37704:18;37721:1;37704:14;:18;:::i;:::-;37693:29;;37647:85;37851:17;37859:8;33220:12;;-1:-1:-1;33210:22:0;33131:109;37851:17;37843:68;;;;-1:-1:-1;;;37843:68:0;;23077:2:1;37843:68:0;;;23059:21:1;23116:2;23096:18;;;23089:30;23155:34;23135:18;;;23128:62;-1:-1:-1;;;23206:18:1;;;23199:36;23252:19;;37843:68:0;22875:402:1;37843:68:0;37937:17;37920:313;37961:8;37956:1;:13;37920:313;;38022:1;37991:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37991:19:0;37987:237;;38039:31;38073:14;38085:1;38073:11;:14::i;:::-;38117:95;;;;;;;;38146:14;;-1:-1:-1;;;;;38117:95:0;;;;;;38175:24;;;;38117:95;;;;;;;;;;-1:-1:-1;38100:14:0;;;:11;:14;;;;;;;:112;;;;;;;;;-1:-1:-1;;;38100:112:0;-1:-1:-1;;;;;;38100:112:0;;;;;;;;;;;;-1:-1:-1;37987:237:0;37971:3;;;;:::i;:::-;;;;37920:313;;;-1:-1:-1;38268:12:0;:8;38279:1;38268:12;:::i;:::-;38241:24;:39;-1:-1:-1;;;37404:884:0:o;28612:646::-;-1:-1:-1;;;;;;;;;;;;;;;;;28739:16:0;28747:7;33220:12;;-1:-1:-1;33210:22:0;33131:109;28739:16;28731:71;;;;-1:-1:-1;;;28731:71:0;;11647:2:1;28731:71:0;;;11629:21:1;11686:2;11666:18;;;11659:30;11725:34;11705:18;;;11698:62;-1:-1:-1;;;11776:18:1;;;11769:40;11826:19;;28731:71:0;11445:406:1;28731:71:0;28815:26;28865:12;28854:7;:23;28850:97;;28911:22;28921:12;28911:7;:22;:::i;:::-;:26;;28936:1;28911:26;:::i;:::-;28890:47;;28850:97;28979:7;28959:222;28996:18;28988:4;:26;28959:222;;29035:31;29069:17;;;:11;:17;;;;;;;;;29035:51;;;;;;;;;-1:-1:-1;;;;;29035:51:0;;;;;-1:-1:-1;;;29035:51:0;;;;;;;;;;;;29101:28;29097:75;;29151:9;28612:646;-1:-1:-1;;;;28612:646:0:o;29097:75::-;-1:-1:-1;29016:6:0;;;;:::i;:::-;;;;28959:222;;;-1:-1:-1;29193:57:0;;-1:-1:-1;;;29193:57:0;;24196:2:1;29193:57:0;;;24178:21:1;24235:2;24215:18;;;24208:30;24274:34;24254:18;;;24247:62;24345:17;24325:18;;;24318:45;24380:19;;29193:57:0;23994:411:1;43135:191:0;43209:16;43228:6;;-1:-1:-1;;;;;43245:17:0;;;-1:-1:-1;;;;;;43245:17:0;;;;;;43278:40;;43228:6;;;;;;;43278:40;;43209:16;43278:40;43198:128;43135:191;:::o;33250:102::-;33317:27;33327:2;33331:8;33317:27;;;;;;;;;;;;:9;:27::i;:::-;33250:102;;:::o;49700:214::-;49775:5;49762:9;:18;;49754:53;;;;-1:-1:-1;;;49754:53:0;;20792:2:1;49754:53:0;;;20774:21:1;20831:2;20811:18;;;20804:30;20870:24;20850:18;;;20843:52;20912:18;;49754:53:0;20590:346:1;49754:53:0;49832:5;49820:9;:17;49816:91;;;49858:10;49850:47;49879:17;49891:5;49879:9;:17;:::i;:::-;49850:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38855:736;39002:4;-1:-1:-1;;;;;39021:13:0;;3267:20;3315:8;39017:567;;39064:72;;-1:-1:-1;;;39064:72:0;;-1:-1:-1;;;;;39064:36:0;;;;;:72;;23518:10;;39115:4;;39121:7;;39130:5;;39064:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39064:72:0;;;;;;;;-1:-1:-1;;39064:72:0;;;;;;;;;;;;:::i;:::-;;;39049:488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39303:13:0;;39299:227;;39338:61;;-1:-1:-1;;;39338:61:0;;20372:2:1;39338:61:0;;;20354:21:1;20411:2;20391:18;;;20384:30;20450:34;20430:18;;;20423:62;-1:-1:-1;;;20501:18:1;;;20494:49;20560:19;;39338:61:0;20170:415:1;39299:227:0;39490:6;39484:13;39475:6;39471:2;39467:15;39460:38;39049:488;-1:-1:-1;;;;;;39190:55:0;-1:-1:-1;;;39190:55:0;;-1:-1:-1;39183:62:0;;39017:567;-1:-1:-1;39570:4:0;39017:567;38855:736;;;;;;:::o;51921:112::-;51981:13;52012;52005:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28350:252;28411:7;-1:-1:-1;;;;;28447:19:0;;28429:108;;;;-1:-1:-1;;;28429:108:0;;13574:2:1;28429:108:0;;;13556:21:1;13613:2;13593:18;;;13586:30;13652:34;13632:18;;;13625:62;13723:19;13703:18;;;13696:47;13760:19;;28429:108:0;13372:413:1;28429:108:0;-1:-1:-1;;;;;;28561:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28561:32:0;;-1:-1:-1;;;;;28561:32:0;;28350:252::o;33717:1338::-;33855:12;;-1:-1:-1;;;;;33884:16:0;;33876:62;;;;-1:-1:-1;;;33876:62:0;;21501:2:1;33876:62:0;;;21483:21:1;21540:2;21520:18;;;21513:30;21579:34;21559:18;;;21552:62;-1:-1:-1;;;21630:18:1;;;21623:31;21671:19;;33876:62:0;21299:397:1;33876:62:0;34079:21;34087:12;33220;;-1:-1:-1;33210:22:0;33131:109;34079:21;34078:22;34070:64;;;;-1:-1:-1;;;34070:64:0;;21143:2:1;34070:64:0;;;21125:21:1;21182:2;21162:18;;;21155:30;21221:31;21201:18;;;21194:59;21270:18;;34070:64:0;20941:353:1;34070:64:0;34163:12;34151:8;:24;;34143:71;;;;-1:-1:-1;;;34143:71:0;;25026:2:1;34143:71:0;;;25008:21:1;25065:2;25045:18;;;25038:30;25104:34;25084:18;;;25077:62;-1:-1:-1;;;25155:18:1;;;25148:32;25197:19;;34143:71:0;24824:398:1;34143:71:0;-1:-1:-1;;;;;34334:16:0;;34301:30;34334:16;;;:12;:16;;;;;;;;;34301:49;;;;;;;;;-1:-1:-1;;;;;34301:49:0;;;;;-1:-1:-1;;;34301:49:0;;;;;;;;;;;34378:125;;;;;;;;34400:19;;34301:49;;34378:125;;;34400:39;;34430:8;;34400:39;:::i;:::-;-1:-1:-1;;;;;34378:125:0;;;;;34485:8;34450:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34378:125:0;;;;;;-1:-1:-1;;;;;34359:16:0;;;;;;;:12;:16;;;;;;;;:144;;;;;;;;-1:-1:-1;;;34359:144:0;;;;;;;;;;;;34540:43;;;;;;;;;;;34566:15;34540:43;;;;;;;;34512:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34512:71:0;-1:-1:-1;;;;;;34512:71:0;;;;;;;;;;;;;;;;;;34524:12;;34644:295;34668:8;34664:1;:12;34644:295;;;34699:38;;34724:12;;-1:-1:-1;;;;;34699:38:0;;;34716:1;;34699:38;;34716:1;;34699:38;34768:59;34799:1;34803:2;34807:12;34821:5;34768:22;:59::i;:::-;34748:156;;;;-1:-1:-1;;;34748:156:0;;20372:2:1;34748:156:0;;;20354:21:1;20411:2;20391:18;;;20384:30;20450:34;20430:18;;;20423:62;-1:-1:-1;;;20501:18:1;;;20494:49;20560:19;;34748:156:0;20170:415:1;34748:156:0;34915:14;;;;:::i;:::-;;;;34678:3;;;;;:::i;:::-;;;;34644:295;;;-1:-1:-1;34951:12:0;:27;;;34987:60;47943:787;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:163::-;282:20;;342:10;331:22;;321:33;;311:61;;368:1;365;358:12;383:171;450:20;;510:18;499:30;;489:41;;479:69;;544:1;541;534:12;559:186;618:6;671:2;659:9;650:7;646:23;642:32;639:52;;;687:1;684;677:12;639:52;710:29;729:9;710:29;:::i;750:260::-;818:6;826;879:2;867:9;858:7;854:23;850:32;847:52;;;895:1;892;885:12;847:52;918:29;937:9;918:29;:::i;:::-;908:39;;966:38;1000:2;989:9;985:18;966:38;:::i;:::-;956:48;;750:260;;;;;:::o;1015:328::-;1092:6;1100;1108;1161:2;1149:9;1140:7;1136:23;1132:32;1129:52;;;1177:1;1174;1167:12;1129:52;1200:29;1219:9;1200:29;:::i;:::-;1190:39;;1248:38;1282:2;1271:9;1267:18;1248:38;:::i;:::-;1238:48;;1333:2;1322:9;1318:18;1305:32;1295:42;;1015:328;;;;;:::o;1348:1138::-;1443:6;1451;1459;1467;1520:3;1508:9;1499:7;1495:23;1491:33;1488:53;;;1537:1;1534;1527:12;1488:53;1560:29;1579:9;1560:29;:::i;:::-;1550:39;;1608:38;1642:2;1631:9;1627:18;1608:38;:::i;:::-;1598:48;;1693:2;1682:9;1678:18;1665:32;1655:42;;1748:2;1737:9;1733:18;1720:32;1771:18;1812:2;1804:6;1801:14;1798:34;;;1828:1;1825;1818:12;1798:34;1866:6;1855:9;1851:22;1841:32;;1911:7;1904:4;1900:2;1896:13;1892:27;1882:55;;1933:1;1930;1923:12;1882:55;1969:2;1956:16;1991:2;1987;1984:10;1981:36;;;1997:18;;:::i;:::-;2072:2;2066:9;2040:2;2126:13;;-1:-1:-1;;2122:22:1;;;2146:2;2118:31;2114:40;2102:53;;;2170:18;;;2190:22;;;2167:46;2164:72;;;2216:18;;:::i;:::-;2256:10;2252:2;2245:22;2291:2;2283:6;2276:18;2331:7;2326:2;2321;2317;2313:11;2309:20;2306:33;2303:53;;;2352:1;2349;2342:12;2303:53;2408:2;2403;2399;2395:11;2390:2;2382:6;2378:15;2365:46;2453:1;2448:2;2443;2435:6;2431:15;2427:24;2420:35;2474:6;2464:16;;;;;;;1348:1138;;;;;;;:::o;2491:347::-;2556:6;2564;2617:2;2605:9;2596:7;2592:23;2588:32;2585:52;;;2633:1;2630;2623:12;2585:52;2656:29;2675:9;2656:29;:::i;:::-;2646:39;;2735:2;2724:9;2720:18;2707:32;2782:5;2775:13;2768:21;2761:5;2758:32;2748:60;;2804:1;2801;2794:12;2748:60;2827:5;2817:15;;;2491:347;;;;;:::o;2843:254::-;2911:6;2919;2972:2;2960:9;2951:7;2947:23;2943:32;2940:52;;;2988:1;2985;2978:12;2940:52;3011:29;3030:9;3011:29;:::i;:::-;3001:39;3087:2;3072:18;;;;3059:32;;-1:-1:-1;;;2843:254:1:o;3102:615::-;3188:6;3196;3249:2;3237:9;3228:7;3224:23;3220:32;3217:52;;;3265:1;3262;3255:12;3217:52;3305:9;3292:23;3334:18;3375:2;3367:6;3364:14;3361:34;;;3391:1;3388;3381:12;3361:34;3429:6;3418:9;3414:22;3404:32;;3474:7;3467:4;3463:2;3459:13;3455:27;3445:55;;3496:1;3493;3486:12;3445:55;3536:2;3523:16;3562:2;3554:6;3551:14;3548:34;;;3578:1;3575;3568:12;3548:34;3631:7;3626:2;3616:6;3613:1;3609:14;3605:2;3601:23;3597:32;3594:45;3591:65;;;3652:1;3649;3642:12;3591:65;3683:2;3675:11;;;;;3705:6;;-1:-1:-1;3102:615:1;;-1:-1:-1;;;;3102:615:1:o;3722:248::-;3790:6;3798;3851:2;3839:9;3830:7;3826:23;3822:32;3819:52;;;3867:1;3864;3857:12;3819:52;-1:-1:-1;;3890:23:1;;;3960:2;3945:18;;;3932:32;;-1:-1:-1;3722:248:1:o;3975:245::-;4033:6;4086:2;4074:9;4065:7;4061:23;4057:32;4054:52;;;4102:1;4099;4092:12;4054:52;4141:9;4128:23;4160:30;4184:5;4160:30;:::i;4225:249::-;4294:6;4347:2;4335:9;4326:7;4322:23;4318:32;4315:52;;;4363:1;4360;4353:12;4315:52;4395:9;4389:16;4414:30;4438:5;4414:30;:::i;4479:592::-;4550:6;4558;4611:2;4599:9;4590:7;4586:23;4582:32;4579:52;;;4627:1;4624;4617:12;4579:52;4667:9;4654:23;4696:18;4737:2;4729:6;4726:14;4723:34;;;4753:1;4750;4743:12;4723:34;4791:6;4780:9;4776:22;4766:32;;4836:7;4829:4;4825:2;4821:13;4817:27;4807:55;;4858:1;4855;4848:12;4807:55;4898:2;4885:16;4924:2;4916:6;4913:14;4910:34;;;4940:1;4937;4930:12;4910:34;4985:7;4980:2;4971:6;4967:2;4963:15;4959:24;4956:37;4953:57;;;5006:1;5003;4996:12;5076:180;5135:6;5188:2;5176:9;5167:7;5163:23;5159:32;5156:52;;;5204:1;5201;5194:12;5156:52;-1:-1:-1;5227:23:1;;5076:180;-1:-1:-1;5076:180:1:o;5261:184::-;5331:6;5384:2;5372:9;5363:7;5359:23;5355:32;5352:52;;;5400:1;5397;5390:12;5352:52;-1:-1:-1;5423:16:1;;5261:184;-1:-1:-1;5261:184:1:o;5703:474::-;5793:6;5801;5809;5817;5825;5878:3;5866:9;5857:7;5853:23;5849:33;5846:53;;;5895:1;5892;5885:12;5846:53;5918:28;5936:9;5918:28;:::i;:::-;5908:38;;5965:37;5998:2;5987:9;5983:18;5965:37;:::i;:::-;5955:47;;6021:37;6054:2;6043:9;6039:18;6021:37;:::i;:::-;6011:47;;6077:37;6110:2;6099:9;6095:18;6077:37;:::i;:::-;6067:47;;6133:38;6166:3;6155:9;6151:19;6133:38;:::i;:::-;6123:48;;5703:474;;;;;;;;:::o;6182:257::-;6223:3;6261:5;6255:12;6288:6;6283:3;6276:19;6304:63;6360:6;6353:4;6348:3;6344:14;6337:4;6330:5;6326:16;6304:63;:::i;:::-;6421:2;6400:15;-1:-1:-1;;6396:29:1;6387:39;;;;6428:4;6383:50;;6182:257;-1:-1:-1;;6182:257:1:o;6847:470::-;7026:3;7064:6;7058:13;7080:53;7126:6;7121:3;7114:4;7106:6;7102:17;7080:53;:::i;:::-;7196:13;;7155:16;;;;7218:57;7196:13;7155:16;7252:4;7240:17;;7218:57;:::i;:::-;7291:20;;6847:470;-1:-1:-1;;;;6847:470:1:o;8010:511::-;8204:4;-1:-1:-1;;;;;8314:2:1;8306:6;8302:15;8291:9;8284:34;8366:2;8358:6;8354:15;8349:2;8338:9;8334:18;8327:43;;8406:6;8401:2;8390:9;8386:18;8379:34;8449:3;8444:2;8433:9;8429:18;8422:31;8470:45;8510:3;8499:9;8495:19;8487:6;8470:45;:::i;:::-;8462:53;8010:511;-1:-1:-1;;;;;;8010:511:1:o;8526:632::-;8697:2;8749:21;;;8819:13;;8722:18;;;8841:22;;;8668:4;;8697:2;8920:15;;;;8894:2;8879:18;;;8668:4;8963:169;8977:6;8974:1;8971:13;8963:169;;;9038:13;;9026:26;;9107:15;;;;9072:12;;;;8999:1;8992:9;8963:169;;;-1:-1:-1;9149:3:1;;8526:632;-1:-1:-1;;;;;;8526:632:1:o;9355:219::-;9504:2;9493:9;9486:21;9467:4;9524:44;9564:2;9553:9;9549:18;9541:6;9524:44;:::i;26709:253::-;26749:3;-1:-1:-1;;;;;26838:2:1;26835:1;26831:10;26868:2;26865:1;26861:10;26899:3;26895:2;26891:12;26886:3;26883:21;26880:47;;;26907:18;;:::i;26967:128::-;27007:3;27038:1;27034:6;27031:1;27028:13;27025:39;;;27044:18;;:::i;:::-;-1:-1:-1;27080:9:1;;26967:128::o;27100:120::-;27140:1;27166;27156:35;;27171:18;;:::i;:::-;-1:-1:-1;27205:9:1;;27100:120::o;27225:168::-;27265:7;27331:1;27327;27323:6;27319:14;27316:1;27313:21;27308:1;27301:9;27294:17;27290:45;27287:71;;;27338:18;;:::i;:::-;-1:-1:-1;27378:9:1;;27225:168::o;27398:246::-;27438:4;-1:-1:-1;;;;;27551:10:1;;;;27521;;27573:12;;;27570:38;;;27588:18;;:::i;:::-;27625:13;;27398:246;-1:-1:-1;;;27398:246:1:o;27649:125::-;27689:4;27717:1;27714;27711:8;27708:34;;;27722:18;;:::i;:::-;-1:-1:-1;27759:9:1;;27649:125::o;27779:258::-;27851:1;27861:113;27875:6;27872:1;27869:13;27861:113;;;27951:11;;;27945:18;27932:11;;;27925:39;27897:2;27890:10;27861:113;;;27992:6;27989:1;27986:13;27983:48;;;-1:-1:-1;;28027:1:1;28009:16;;28002:27;27779:258::o;28042:136::-;28081:3;28109:5;28099:39;;28118:18;;:::i;:::-;-1:-1:-1;;;28154:18:1;;28042:136::o;28183:380::-;28262:1;28258:12;;;;28305;;;28326:61;;28380:4;28372:6;28368:17;28358:27;;28326:61;28433:2;28425:6;28422:14;28402:18;28399:38;28396:161;;;28479:10;28474:3;28470:20;28467:1;28460:31;28514:4;28511:1;28504:15;28542:4;28539:1;28532:15;28396:161;;28183:380;;;:::o;28568:135::-;28607:3;-1:-1:-1;;28628:17:1;;28625:43;;;28648:18;;:::i;:::-;-1:-1:-1;28695:1:1;28684:13;;28568:135::o;28708:112::-;28740:1;28766;28756:35;;28771:18;;:::i;:::-;-1:-1:-1;28805:9:1;;28708:112::o;28825:127::-;28886:10;28881:3;28877:20;28874:1;28867:31;28917:4;28914:1;28907:15;28941:4;28938:1;28931:15;28957:127;29018:10;29013:3;29009:20;29006:1;28999:31;29049:4;29046:1;29039:15;29073:4;29070:1;29063:15;29089:127;29150:10;29145:3;29141:20;29138:1;29131:31;29181:4;29178:1;29171:15;29205:4;29202:1;29195:15;29221:127;29282:10;29277:3;29273:20;29270:1;29263:31;29313:4;29310:1;29303:15;29337:4;29334:1;29327:15;29353:131;-1:-1:-1;;;;;;29427:32:1;;29417:43;;29407:71;;29474:1;29471;29464:12

Swarm Source

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