ETH Price: $2,983.74 (-2.21%)
Gas: 2 Gwei

Token

BBZ Origin (BBZORIGIN)
 

Overview

Max Total Supply

2,042 BBZORIGIN

Holders

741

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 BBZORIGIN
0x8f0cacc1b3d0066a31fc97c6cf1db1b0f56f073f
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:
BBZOrigin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.5.0) (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);

    /**
     * @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/babyzuki/ERC721A.sol



pragma solidity ^0.8.0;









interface IOwnershipData{
    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (address _address, uint64 _timestamp);
}

/**
 * @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 internal 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/babyzuki/contracts.sol



pragma solidity ^0.8.0;





contract BBZOrigin is Ownable, ERC721A, ReentrancyGuard, IOwnershipData {
    struct MintConfig {
        uint256 dnmAmount;
        bool groupAActive;
        uint256 groupAPrice;
        bool groupBActive;
        uint256 groupBPrice;
        bool groupCActive;
        uint256 groupCPrice;
    }

    MintConfig public config;

    mapping(address => uint256) public groupA;
    mapping(address => uint256) public groupB;

    string private baseTokenURI;

    constructor(
        uint256 collectionSize,
        uint256 dnmAmount
    ) ERC721A("BBZ Origin", "BBZORIGIN", 5, collectionSize) {
      config.dnmAmount = dnmAmount;
      config.groupAPrice = 0.1 ether;
      config.groupBPrice = 0.12 ether;
      config.groupCPrice = 0.14 ether;
      baseTokenURI = "https://d359zl9sgwt1qi.cloudfront.net/";
    }

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

    /* DnM Related */
    function mintDnM() external onlyOwner {
        uint256 numChunks = config.dnmAmount / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    function mintUnclaimed() external onlyOwner {
        for (uint256 i = currentIndex; i < collectionSize; i++) {
            _safeMint(msg.sender, 1);
        }
    }

    /* Manage */
    function setGroupState(bool g1, bool g2, bool g3) external onlyOwner {
        config.groupAActive = g1;
        config.groupBActive = g2;
        config.groupCActive = g3;
    }

    function setGroupPrice(uint256 p1, uint256 p2, uint256 p3) external onlyOwner {
        config.groupAPrice = p1;
        config.groupBPrice = p2;
        config.groupCPrice = p3;
    }

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

    /* OG Mint */
    function isOGMintActive() external view returns (bool) {
        return config.groupAActive;
    }

    function isInOgList() external view returns (bool) {
        return (groupA[msg.sender] > 0);
    }

    function mintOG(uint256 quantity)
        external
        payable
        callerIsNotContract
    {
        uint256 totalCost = uint256(config.groupAPrice) * quantity;

        require(config.groupAActive, "OG Sale is not active");
        require(msg.value >= totalCost, "Not enough ETH");
        require(groupA[msg.sender] >= quantity, "Not in OG list or already minted max amount");
        require(currentIndex + quantity <= collectionSize, "Total tokens amount reached");

        groupA[msg.sender] = groupA[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
    }

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

    /* WL Mint */
    function isWLMintActive() external view returns (bool) {
        return config.groupBActive;
    }

    function isInWLList() external view returns (bool) {
        return (groupB[msg.sender] > 0);
    }

    function mintWL(uint256 quantity)
        external
        payable
        callerIsNotContract
    {
        uint256 totalCost = uint256(config.groupBPrice) * quantity;

        require(config.groupBActive, "WL Sale is not active");
        require(msg.value >= totalCost, "Not enough ETH");
        require(groupB[msg.sender] >= quantity, "Not in WL list or already minted max amount");
        require(currentIndex + quantity <= collectionSize, "Total tokens amount reached");

        groupB[msg.sender] = groupB[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
    }

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

    /* Public Mint */
    function isPublicMintActive() external view returns (bool) {
        return config.groupCActive;
    }

    function mint(uint256 quantity)
        external
        payable
        callerIsNotContract
    {
        uint256 totalCost = uint256(config.groupCPrice) * quantity;

        require(config.groupCActive, "Public Sale is not active");
        require(msg.value >= totalCost, "Not enough ETH");
        require(currentIndex + quantity <= collectionSize, "Total tokens amount reached");
        require(quantity <= 3, "Max mint amount is 3");

        _safeMint(msg.sender, quantity);
    }

    /* Metadata */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

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

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

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

    function getOwnershipData(uint256 tokenId)
        external override
        view
        returns (address _address, uint64 _timestamp)
    {
        TokenOwnership memory ownership = ownershipOf(tokenId);
        return (ownership.addr, ownership.startTimestamp);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"collectionSize","type":"uint256"},{"internalType":"uint256","name":"dnmAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"config","outputs":[{"internalType":"uint256","name":"dnmAmount","type":"uint256"},{"internalType":"bool","name":"groupAActive","type":"bool"},{"internalType":"uint256","name":"groupAPrice","type":"uint256"},{"internalType":"bool","name":"groupBActive","type":"bool"},{"internalType":"uint256","name":"groupBPrice","type":"uint256"},{"internalType":"bool","name":"groupCActive","type":"bool"},{"internalType":"uint256","name":"groupCPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint64","name":"_timestamp","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"groupA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"groupB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInOgList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInWLList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOGMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWLMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintDnM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintUnclaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"p1","type":"uint256"},{"internalType":"uint256","name":"p2","type":"uint256"},{"internalType":"uint256","name":"p3","type":"uint256"}],"name":"setGroupPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"g1","type":"bool"},{"internalType":"bool","name":"g2","type":"bool"},{"internalType":"bool","name":"g3","type":"bool"}],"name":"setGroupState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setOGList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setWLList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008553480156200001b57600080fd5b50604051620065d2380380620065d28339818101604052810190620000419190620003b7565b6040518060400160405280600a81526020017f42425a204f726967696e000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f42425a4f524947494e0000000000000000000000000000000000000000000000815250600584620000d0620000c46200022460201b60201c565b6200022c60201b60201c565b6000811162000116576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010d906200046e565b60405180910390fd5b600082116200015c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000153906200044c565b60405180910390fd5b836002908051906020019062000174929190620002f0565b5082600390805190602001906200018d929190620002f0565b508160a08181525050806080818152505050505050600160098190555080600a6000018190555067016345785d8a0000600a600201819055506701aa535d3d0c0000600a600401819055506701f161421c8e0000600a60060181905550604051806060016040528060268152602001620065ac60269139601390805190602001906200021b929190620002f0565b505050620005cd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002fe90620004ab565b90600052602060002090601f0160209004810192826200032257600085556200036e565b82601f106200033d57805160ff19168380011785556200036e565b828001600101855582156200036e579182015b828111156200036d57825182559160200191906001019062000350565b5b5090506200037d919062000381565b5090565b5b808211156200039c57600081600090555060010162000382565b5090565b600081519050620003b181620005b3565b92915050565b60008060408385031215620003d157620003d062000510565b5b6000620003e185828601620003a0565b9250506020620003f485828601620003a0565b9150509250929050565b60006200040d60278362000490565b91506200041a8262000515565b604082019050919050565b600062000434602e8362000490565b9150620004418262000564565b604082019050919050565b600060208201905081810360008301526200046781620003fe565b9050919050565b60006020820190508181036000830152620004898162000425565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004c457607f821691505b60208210811415620004db57620004da620004e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005be81620004a1565b8114620005ca57600080fd5b50565b60805160a051615f7a6200063260003960008181611463015281816114a5015281816131a9015281816131d2015261397b01526000818161193001528181611be60152818161201f015281816121c901528181612f310152612f650152615f7a6000f3fe6080604052600436106102515760003560e01c806379502c5511610139578063bb2b3442116100b6578063d4d1a3721161007a578063d4d1a372146108a0578063d7224ba0146108c9578063dc33e681146108f4578063e086e5ec14610931578063e985e9c514610948578063f2fde38b1461098557610251565b8063bb2b3442146107cb578063c1f37496146107f6578063c4bf4ff81461080d578063c87b56dd14610838578063d245d3f31461087557610251565b806395d89b41116100fd57806395d89b4114610716578063a0712d6814610741578063a22cb4651461075d578063b88d4fde14610786578063ba419de0146107af57610251565b806379502c55146106375780638da5cb5b146106685780639231ab2a14610693578063944279d3146106d157806394bb4c04146106fa57610251565b80632d20fb60116101d2578063554e58f911610196578063554e58f91461053b57806355f804b3146105665780636352211e1461058f57806366939886146105cc57806370a08231146105e3578063715018a61461062057610251565b80632d20fb60146104445780632d6b62241461046d5780632f745c591461049857806342842e0e146104d55780634f6ccce7146104fe57610251565b806318160ddd1161021957806318160ddd1461034d5780631dccffbc1461037857806323b872dd146103b5578063259c011d146103de57806328fe035d1461040757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063082df96c146102fb578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190614392565b6109ae565b60405161028a9190614b4d565b60405180910390f35b34801561029f57600080fd5b506102a8610af8565b6040516102b59190614b68565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190614439565b610b8a565b6040516102f29190614abd565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061433f565b610c0f565b005b34801561033057600080fd5b5061034b60048036038101906103469190614287565b610ce7565b005b34801561035957600080fd5b50610362610e00565b60405161036f9190614fea565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190614104565b610e0a565b6040516103ac9190614fea565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190614171565b610e22565b005b3480156103ea57600080fd5b50610405600480360381019061040091906142c7565b610e32565b005b34801561041357600080fd5b5061042e60048036038101906104299190614104565b610fa0565b60405161043b9190614fea565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190614439565b610fb8565b005b34801561047957600080fd5b50610482611096565b60405161048f9190614b4d565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190614287565b6110b0565b6040516104cc9190614fea565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190614171565b6112ae565b005b34801561050a57600080fd5b5061052560048036038101906105209190614439565b6112ce565b6040516105329190614fea565b60405180910390f35b34801561054757600080fd5b50610550611321565b60405161055d9190614b4d565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906143ec565b61133b565b005b34801561059b57600080fd5b506105b660048036038101906105b19190614439565b6113cd565b6040516105c39190614abd565b60405180910390f35b3480156105d857600080fd5b506105e16113e3565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190614104565b6114e0565b6040516106179190614fea565b60405180910390f35b34801561062c57600080fd5b506106356115c9565b005b34801561064357600080fd5b5061064c611651565b60405161065f9796959493929190615005565b60405180910390f35b34801561067457600080fd5b5061067d6116a8565b60405161068a9190614abd565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190614439565b6116d1565b6040516106c8929190614b24565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614466565b6116f5565b005b610714600480360381019061070f9190614439565b611794565b005b34801561072257600080fd5b5061072b611a3a565b6040516107389190614b68565b60405180910390f35b61075b60048036038101906107569190614439565b611acc565b005b34801561076957600080fd5b50610784600480360381019061077f9190614247565b611ca6565b005b34801561079257600080fd5b506107ad60048036038101906107a891906141c4565b611e27565b005b6107c960048036038101906107c49190614439565b611e83565b005b3480156107d757600080fd5b506107e0612129565b6040516107ed9190614b4d565b60405180910390f35b34801561080257600080fd5b5061080b612143565b005b34801561081957600080fd5b50610822612210565b60405161082f9190614b4d565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190614439565b612259565b60405161086c9190614b68565b60405180910390f35b34801561088157600080fd5b5061088a612300565b6040516108979190614b4d565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c291906142c7565b612349565b005b3480156108d557600080fd5b506108de6124b7565b6040516108eb9190614fea565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190614104565b6124bd565b6040516109289190614fea565b60405180910390f35b34801561093d57600080fd5b506109466124cf565b005b34801561095457600080fd5b5061096f600480360381019061096a9190614131565b612650565b60405161097c9190614b4d565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190614104565b6126e4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af15750610af0826127dc565b5b9050919050565b606060028054610b079061540f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b339061540f565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b9582612846565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90614faa565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c17612854565b73ffffffffffffffffffffffffffffffffffffffff16610c356116a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614daa565b60405180910390fd5b82600a60010160006101000a81548160ff02191690831515021790555081600a60030160006101000a81548160ff02191690831515021790555080600a60050160006101000a81548160ff021916908315150217905550505050565b6000610cf2826113cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90614e4a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d82612854565b73ffffffffffffffffffffffffffffffffffffffff161480610db15750610db081610dab612854565b612650565b5b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790614cea565b60405180910390fd5b610dfb83838361285c565b505050565b6000600154905090565b60116020528060005260406000206000915090505481565b610e2d83838361290e565b505050565b610e3a612854565b73ffffffffffffffffffffffffffffffffffffffff16610e586116a8565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590614daa565b60405180910390fd5b8051825114610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990614e2a565b60405180910390fd5b60005b8251811015610f9b57818181518110610f1157610f10615579565b5b602002602001015160126000858481518110610f3057610f2f615579565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8191906151b6565b925050819055508080610f9390615472565b915050610ef5565b505050565b60126020528060005260406000206000915090505481565b610fc0612854565b73ffffffffffffffffffffffffffffffffffffffff16610fde6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614daa565b60405180910390fd5b6002600954141561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614f4a565b60405180910390fd5b600260098190555061108b81612ec7565b600160098190555050565b6000600a60050160009054906101000a900460ff16905090565b60006110bb836114e0565b82106110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390614b8a565b60405180910390fd5b6000611106610e00565b905060008060005b8381101561126c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461120057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561125857868414156112495781955050505050506112a8565b838061125490615472565b9450505b50808061126490615472565b91505061110e565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614f0a565b60405180910390fd5b92915050565b6112c983838360405180602001604052806000815250611e27565b505050565b60006112d8610e00565b8210611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614c4a565b60405180910390fd5b819050919050565b6000600a60030160009054906101000a900460ff16905090565b611343612854565b73ffffffffffffffffffffffffffffffffffffffff166113616116a8565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90614daa565b60405180910390fd5b8181601391906113c8929190613dbc565b505050565b60006113d882613155565b600001519050919050565b6113eb612854565b73ffffffffffffffffffffffffffffffffffffffff166114096116a8565b73ffffffffffffffffffffffffffffffffffffffff161461145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690614daa565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000600a60000154611492919061520c565b905060005b818110156114dc576114c9337f0000000000000000000000000000000000000000000000000000000000000000613358565b80806114d490615472565b915050611497565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890614d4a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115d1612854565b73ffffffffffffffffffffffffffffffffffffffff166115ef6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90614daa565b60405180910390fd5b61164f6000613376565b565b600a8060000154908060010160009054906101000a900460ff16908060020154908060030160009054906101000a900460ff16908060040154908060050160009054906101000a900460ff16908060060154905087565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060006116df84613155565b9050806000015181602001519250925050915091565b6116fd612854565b73ffffffffffffffffffffffffffffffffffffffff1661171b6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614daa565b60405180910390fd5b82600a6002018190555081600a6004018190555080600a60060181905550505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990614cca565b60405180910390fd5b600081600a60020154611815919061523d565b9050600a60010160009054906101000a900460ff16611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090614baa565b60405180910390fd5b803410156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390614d8a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590614d2a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008260015461195d91906151b6565b111561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590614caa565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119e991906152cb565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a363383613358565b5050565b606060038054611a499061540f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a759061540f565b8015611ac25780601f10611a9757610100808354040283529160200191611ac2565b820191906000526020600020905b815481529060010190602001808311611aa557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614cca565b60405180910390fd5b600081600a60060154611b4d919061523d565b9050600a60050160009054906101000a900460ff16611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890614c0a565b60405180910390fd5b80341015611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb90614d8a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082600154611c1391906151b6565b1115611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b90614caa565b60405180910390fd5b6003821115611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614eea565b60405180910390fd5b611ca23383613358565b5050565b611cae612854565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390614dea565b60405180910390fd5b8060076000611d29612854565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd6612854565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1b9190614b4d565b60405180910390a35050565b611e3284848461290e565b611e3e8484848461343a565b611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614e8a565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890614cca565b60405180910390fd5b600081600a60040154611f04919061523d565b9050600a60030160009054906101000a900460ff16611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90614f8a565b60405180910390fd5b80341015611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290614d8a565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614c2a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008260015461204c91906151b6565b111561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490614caa565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d891906152cb565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121253383613358565b5050565b6000600a60010160009054906101000a900460ff16905090565b61214b612854565b73ffffffffffffffffffffffffffffffffffffffff166121696116a8565b73ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614daa565b60405180910390fd5b600060015490505b7f000000000000000000000000000000000000000000000000000000000000000081101561220d576121fa336001613358565b808061220590615472565b9150506121c7565b50565b600080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b606061226482612846565b6122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a90614dca565b60405180910390fd5b60006122ad6135d1565b905060008151116122cd57604051806020016040528060008152506122f8565b806122d784613663565b6040516020016122e8929190614a84565b6040516020818303038152906040525b915050919050565b600080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b612351612854565b73ffffffffffffffffffffffffffffffffffffffff1661236f6116a8565b73ffffffffffffffffffffffffffffffffffffffff16146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc90614daa565b60405180910390fd5b8051825114612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090614e2a565b60405180910390fd5b60005b82518110156124b25781818151811061242857612427615579565b5b60200260200101516011600085848151811061244757612446615579565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249891906151b6565b9250508190555080806124aa90615472565b91505061240c565b505050565b60085481565b60006124c8826137c4565b9050919050565b6124d7612854565b73ffffffffffffffffffffffffffffffffffffffff166124f56116a8565b73ffffffffffffffffffffffffffffffffffffffff161461254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290614daa565b60405180910390fd5b60026009541415612591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258890614f4a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516125bf90614aa8565b60006040518083038185875af1925050503d80600081146125fc576040519150601f19603f3d011682016040523d82523d6000602084013e612601565b606091505b5050905080612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c90614e6a565b60405180910390fd5b506001600981905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126ec612854565b73ffffffffffffffffffffffffffffffffffffffff1661270a6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614612760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275790614daa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614bca565b60405180910390fd5b6127d981613376565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061291982613155565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612940612854565b73ffffffffffffffffffffffffffffffffffffffff16148061299c5750612965612854565b73ffffffffffffffffffffffffffffffffffffffff1661298484610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b806129b857506129b782600001516129b2612854565b612650565b5b9050806129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614e0a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6390614d6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614c6a565b60405180910390fd5b612ae985858560016138ad565b612af9600084846000015161285c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b679190615297565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612c0b9190615170565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d1191906151b6565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e5757612d8781612846565b15612e56576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebf86868660016138b3565b505050505050565b6000600854905060008211612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0890614d0a565b60405180910390fd5b600060018383612f2191906151b6565b612f2b91906152cb565b905060017f0000000000000000000000000000000000000000000000000000000000000000612f5a91906152cb565b811115612f915760017f0000000000000000000000000000000000000000000000000000000000000000612f8e91906152cb565b90505b612f9a81612846565b612fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd090614f2a565b60405180910390fd5b60008290505b81811161313c57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561312957600061305c82613155565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061313490615472565b915050612fdf565b5060018161314a91906151b6565b600881905550505050565b61315d613e42565b61316682612846565b6131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90614bea565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106132095760017f0000000000000000000000000000000000000000000000000000000000000000846131fc91906152cb565b61320691906151b6565b90505b60008390505b818110613317576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461330357809350505050613353565b50808061330f906153e5565b91505061320f565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a90614f6a565b60405180910390fd5b919050565b6133728282604051806020016040528060008152506138b9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061345b8473ffffffffffffffffffffffffffffffffffffffff16613d99565b156135c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613484612854565b8786866040518563ffffffff1660e01b81526004016134a69493929190614ad8565b602060405180830381600087803b1580156134c057600080fd5b505af19250505080156134f157506040513d601f19601f820116820180604052508101906134ee91906143bf565b60015b613574573d8060008114613521576040519150601f19603f3d011682016040523d82523d6000602084013e613526565b606091505b5060008151141561356c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356390614e8a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135c9565b600190505b949350505050565b6060601380546135e09061540f565b80601f016020809104026020016040519081016040528092919081815260200182805461360c9061540f565b80156136595780601f1061362e57610100808354040283529160200191613659565b820191906000526020600020905b81548152906001019060200180831161363c57829003601f168201915b5050505050905090565b606060008214156136ab576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137bf565b600082905060005b600082146136dd5780806136c690615472565b915050600a826136d6919061520c565b91506136b3565b60008167ffffffffffffffff8111156136f9576136f86155a8565b5b6040519080825280601f01601f19166020018201604052801561372b5781602001600182028036833780820191505090505b5090505b600085146137b85760018261374491906152cb565b9150600a8561375391906154bb565b603061375f91906151b6565b60f81b81838151811061377557613774615579565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137b1919061520c565b945061372f565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382c90614c8a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392790614eca565b60405180910390fd5b61393981612846565b15613979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397090614eaa565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156139dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d390614fca565b60405180910390fd5b6139e960008583866138ad565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613ae69190615170565b6fffffffffffffffffffffffffffffffff168152602001858360200151613b0d9190615170565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613d7c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d1c600088848861343a565b613d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5290614e8a565b60405180910390fd5b8180613d6690615472565b9250508080613d7490615472565b915050613cab565b5080600181905550613d9160008785886138b3565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613dc89061540f565b90600052602060002090601f016020900481019282613dea5760008555613e31565b82601f10613e0357803560ff1916838001178555613e31565b82800160010185558215613e31579182015b82811115613e30578235825591602001919060010190613e15565b5b509050613e3e9190613e7c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613e95576000816000905550600101613e7d565b5090565b6000613eac613ea784615099565b615074565b90508083825260208201905082856020860282011115613ecf57613ece6155e1565b5b60005b85811015613eff5781613ee58882613fbb565b845260208401935060208301925050600181019050613ed2565b5050509392505050565b6000613f1c613f17846150c5565b615074565b90508083825260208201905082856020860282011115613f3f57613f3e6155e1565b5b60005b85811015613f6f5781613f5588826140ef565b845260208401935060208301925050600181019050613f42565b5050509392505050565b6000613f8c613f87846150f1565b615074565b905082815260208101848484011115613fa857613fa76155e6565b5b613fb38482856153a3565b509392505050565b600081359050613fca81615ee8565b92915050565b600082601f830112613fe557613fe46155dc565b5b8135613ff5848260208601613e99565b91505092915050565b600082601f830112614013576140126155dc565b5b8135614023848260208601613f09565b91505092915050565b60008135905061403b81615eff565b92915050565b60008135905061405081615f16565b92915050565b60008151905061406581615f16565b92915050565b600082601f8301126140805761407f6155dc565b5b8135614090848260208601613f79565b91505092915050565b60008083601f8401126140af576140ae6155dc565b5b8235905067ffffffffffffffff8111156140cc576140cb6155d7565b5b6020830191508360018202830111156140e8576140e76155e1565b5b9250929050565b6000813590506140fe81615f2d565b92915050565b60006020828403121561411a576141196155f0565b5b600061412884828501613fbb565b91505092915050565b60008060408385031215614148576141476155f0565b5b600061415685828601613fbb565b925050602061416785828601613fbb565b9150509250929050565b60008060006060848603121561418a576141896155f0565b5b600061419886828701613fbb565b93505060206141a986828701613fbb565b92505060406141ba868287016140ef565b9150509250925092565b600080600080608085870312156141de576141dd6155f0565b5b60006141ec87828801613fbb565b94505060206141fd87828801613fbb565b935050604061420e878288016140ef565b925050606085013567ffffffffffffffff81111561422f5761422e6155eb565b5b61423b8782880161406b565b91505092959194509250565b6000806040838503121561425e5761425d6155f0565b5b600061426c85828601613fbb565b925050602061427d8582860161402c565b9150509250929050565b6000806040838503121561429e5761429d6155f0565b5b60006142ac85828601613fbb565b92505060206142bd858286016140ef565b9150509250929050565b600080604083850312156142de576142dd6155f0565b5b600083013567ffffffffffffffff8111156142fc576142fb6155eb565b5b61430885828601613fd0565b925050602083013567ffffffffffffffff811115614329576143286155eb565b5b61433585828601613ffe565b9150509250929050565b600080600060608486031215614358576143576155f0565b5b60006143668682870161402c565b93505060206143778682870161402c565b92505060406143888682870161402c565b9150509250925092565b6000602082840312156143a8576143a76155f0565b5b60006143b684828501614041565b91505092915050565b6000602082840312156143d5576143d46155f0565b5b60006143e384828501614056565b91505092915050565b60008060208385031215614403576144026155f0565b5b600083013567ffffffffffffffff811115614421576144206155eb565b5b61442d85828601614099565b92509250509250929050565b60006020828403121561444f5761444e6155f0565b5b600061445d848285016140ef565b91505092915050565b60008060006060848603121561447f5761447e6155f0565b5b600061448d868287016140ef565b935050602061449e868287016140ef565b92505060406144af868287016140ef565b9150509250925092565b6144c2816152ff565b82525050565b6144d181615311565b82525050565b60006144e282615122565b6144ec8185615138565b93506144fc8185602086016153b2565b614505816155f5565b840191505092915050565b600061451b8261512d565b6145258185615154565b93506145358185602086016153b2565b61453e816155f5565b840191505092915050565b60006145548261512d565b61455e8185615165565b935061456e8185602086016153b2565b80840191505092915050565b6000614587602283615154565b915061459282615606565b604082019050919050565b60006145aa601583615154565b91506145b582615655565b602082019050919050565b60006145cd602683615154565b91506145d88261567e565b604082019050919050565b60006145f0602a83615154565b91506145fb826156cd565b604082019050919050565b6000614613601983615154565b915061461e8261571c565b602082019050919050565b6000614636602b83615154565b915061464182615745565b604082019050919050565b6000614659602383615154565b915061466482615794565b604082019050919050565b600061467c602583615154565b9150614687826157e3565b604082019050919050565b600061469f603183615154565b91506146aa82615832565b604082019050919050565b60006146c2601b83615154565b91506146cd82615881565b602082019050919050565b60006146e5601e83615154565b91506146f0826158aa565b602082019050919050565b6000614708603983615154565b9150614713826158d3565b604082019050919050565b600061472b601883615154565b915061473682615922565b602082019050919050565b600061474e602b83615154565b91506147598261594b565b604082019050919050565b6000614771602b83615154565b915061477c8261599a565b604082019050919050565b6000614794602683615154565b915061479f826159e9565b604082019050919050565b60006147b7600e83615154565b91506147c282615a38565b602082019050919050565b60006147da602083615154565b91506147e582615a61565b602082019050919050565b60006147fd602f83615154565b915061480882615a8a565b604082019050919050565b6000614820601a83615154565b915061482b82615ad9565b602082019050919050565b6000614843603283615154565b915061484e82615b02565b604082019050919050565b6000614866602883615154565b915061487182615b51565b604082019050919050565b6000614889602283615154565b915061489482615ba0565b604082019050919050565b60006148ac600083615149565b91506148b782615bef565b600082019050919050565b60006148cf601083615154565b91506148da82615bf2565b602082019050919050565b60006148f2603383615154565b91506148fd82615c1b565b604082019050919050565b6000614915601d83615154565b915061492082615c6a565b602082019050919050565b6000614938602183615154565b915061494382615c93565b604082019050919050565b600061495b601483615154565b915061496682615ce2565b602082019050919050565b600061497e602e83615154565b915061498982615d0b565b604082019050919050565b60006149a1602683615154565b91506149ac82615d5a565b604082019050919050565b60006149c4601f83615154565b91506149cf82615da9565b602082019050919050565b60006149e7602f83615154565b91506149f282615dd2565b604082019050919050565b6000614a0a601583615154565b9150614a1582615e21565b602082019050919050565b6000614a2d602d83615154565b9150614a3882615e4a565b604082019050919050565b6000614a50602283615154565b9150614a5b82615e99565b604082019050919050565b614a6f81615385565b82525050565b614a7e8161538f565b82525050565b6000614a908285614549565b9150614a9c8284614549565b91508190509392505050565b6000614ab38261489f565b9150819050919050565b6000602082019050614ad260008301846144b9565b92915050565b6000608082019050614aed60008301876144b9565b614afa60208301866144b9565b614b076040830185614a66565b8181036060830152614b1981846144d7565b905095945050505050565b6000604082019050614b3960008301856144b9565b614b466020830184614a75565b9392505050565b6000602082019050614b6260008301846144c8565b92915050565b60006020820190508181036000830152614b828184614510565b905092915050565b60006020820190508181036000830152614ba38161457a565b9050919050565b60006020820190508181036000830152614bc38161459d565b9050919050565b60006020820190508181036000830152614be3816145c0565b9050919050565b60006020820190508181036000830152614c03816145e3565b9050919050565b60006020820190508181036000830152614c2381614606565b9050919050565b60006020820190508181036000830152614c4381614629565b9050919050565b60006020820190508181036000830152614c638161464c565b9050919050565b60006020820190508181036000830152614c838161466f565b9050919050565b60006020820190508181036000830152614ca381614692565b9050919050565b60006020820190508181036000830152614cc3816146b5565b9050919050565b60006020820190508181036000830152614ce3816146d8565b9050919050565b60006020820190508181036000830152614d03816146fb565b9050919050565b60006020820190508181036000830152614d238161471e565b9050919050565b60006020820190508181036000830152614d4381614741565b9050919050565b60006020820190508181036000830152614d6381614764565b9050919050565b60006020820190508181036000830152614d8381614787565b9050919050565b60006020820190508181036000830152614da3816147aa565b9050919050565b60006020820190508181036000830152614dc3816147cd565b9050919050565b60006020820190508181036000830152614de3816147f0565b9050919050565b60006020820190508181036000830152614e0381614813565b9050919050565b60006020820190508181036000830152614e2381614836565b9050919050565b60006020820190508181036000830152614e4381614859565b9050919050565b60006020820190508181036000830152614e638161487c565b9050919050565b60006020820190508181036000830152614e83816148c2565b9050919050565b60006020820190508181036000830152614ea3816148e5565b9050919050565b60006020820190508181036000830152614ec381614908565b9050919050565b60006020820190508181036000830152614ee38161492b565b9050919050565b60006020820190508181036000830152614f038161494e565b9050919050565b60006020820190508181036000830152614f2381614971565b9050919050565b60006020820190508181036000830152614f4381614994565b9050919050565b60006020820190508181036000830152614f63816149b7565b9050919050565b60006020820190508181036000830152614f83816149da565b9050919050565b60006020820190508181036000830152614fa3816149fd565b9050919050565b60006020820190508181036000830152614fc381614a20565b9050919050565b60006020820190508181036000830152614fe381614a43565b9050919050565b6000602082019050614fff6000830184614a66565b92915050565b600060e08201905061501a600083018a614a66565b61502760208301896144c8565b6150346040830188614a66565b61504160608301876144c8565b61504e6080830186614a66565b61505b60a08301856144c8565b61506860c0830184614a66565b98975050505050505050565b600061507e61508f565b905061508a8282615441565b919050565b6000604051905090565b600067ffffffffffffffff8211156150b4576150b36155a8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150e0576150df6155a8565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561510c5761510b6155a8565b5b615115826155f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061517b82615349565b915061518683615349565b9250826fffffffffffffffffffffffffffffffff038211156151ab576151aa6154ec565b5b828201905092915050565b60006151c182615385565b91506151cc83615385565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615201576152006154ec565b5b828201905092915050565b600061521782615385565b915061522283615385565b9250826152325761523161551b565b5b828204905092915050565b600061524882615385565b915061525383615385565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561528c5761528b6154ec565b5b828202905092915050565b60006152a282615349565b91506152ad83615349565b9250828210156152c0576152bf6154ec565b5b828203905092915050565b60006152d682615385565b91506152e183615385565b9250828210156152f4576152f36154ec565b5b828203905092915050565b600061530a82615365565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156153d05780820151818401526020810190506153b5565b838111156153df576000848401525b50505050565b60006153f082615385565b91506000821415615404576154036154ec565b5b600182039050919050565b6000600282049050600182168061542757607f821691505b6020821081141561543b5761543a61554a565b5b50919050565b61544a826155f5565b810181811067ffffffffffffffff82111715615469576154686155a8565b5b80604052505050565b600061547d82615385565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154b0576154af6154ec565b5b600182019050919050565b60006154c682615385565b91506154d183615385565b9250826154e1576154e061551b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f472053616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c65206973206e6f742061637469766500000000000000600082015250565b7f4e6f7420696e20574c206c697374206f7220616c7265616479206d696e74656460008201527f206d617820616d6f756e74000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f546f74616c20746f6b656e7320616d6f756e7420726561636865640000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f4e6f7420696e204f47206c697374206f7220616c7265616479206d696e74656460008201527f206d617820616d6f756e74000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f41646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420616d6f756e742069732033000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f574c2053616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615ef1816152ff565b8114615efc57600080fd5b50565b615f0881615311565b8114615f1357600080fd5b50565b615f1f8161531d565b8114615f2a57600080fd5b50565b615f3681615385565b8114615f4157600080fd5b5056fea26469706673582212205930bd1ff727a8369262d7c8a845178143f75df28c77a3abf73190dae4896ae964736f6c6343000807003368747470733a2f2f643335397a6c39736777743171692e636c6f756466726f6e742e6e65742f00000000000000000000000000000000000000000000000000000000000015b300000000000000000000000000000000000000000000000000000000000000fa

Deployed Bytecode

0x6080604052600436106102515760003560e01c806379502c5511610139578063bb2b3442116100b6578063d4d1a3721161007a578063d4d1a372146108a0578063d7224ba0146108c9578063dc33e681146108f4578063e086e5ec14610931578063e985e9c514610948578063f2fde38b1461098557610251565b8063bb2b3442146107cb578063c1f37496146107f6578063c4bf4ff81461080d578063c87b56dd14610838578063d245d3f31461087557610251565b806395d89b41116100fd57806395d89b4114610716578063a0712d6814610741578063a22cb4651461075d578063b88d4fde14610786578063ba419de0146107af57610251565b806379502c55146106375780638da5cb5b146106685780639231ab2a14610693578063944279d3146106d157806394bb4c04146106fa57610251565b80632d20fb60116101d2578063554e58f911610196578063554e58f91461053b57806355f804b3146105665780636352211e1461058f57806366939886146105cc57806370a08231146105e3578063715018a61461062057610251565b80632d20fb60146104445780632d6b62241461046d5780632f745c591461049857806342842e0e146104d55780634f6ccce7146104fe57610251565b806318160ddd1161021957806318160ddd1461034d5780631dccffbc1461037857806323b872dd146103b5578063259c011d146103de57806328fe035d1461040757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063082df96c146102fb578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190614392565b6109ae565b60405161028a9190614b4d565b60405180910390f35b34801561029f57600080fd5b506102a8610af8565b6040516102b59190614b68565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190614439565b610b8a565b6040516102f29190614abd565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061433f565b610c0f565b005b34801561033057600080fd5b5061034b60048036038101906103469190614287565b610ce7565b005b34801561035957600080fd5b50610362610e00565b60405161036f9190614fea565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190614104565b610e0a565b6040516103ac9190614fea565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190614171565b610e22565b005b3480156103ea57600080fd5b50610405600480360381019061040091906142c7565b610e32565b005b34801561041357600080fd5b5061042e60048036038101906104299190614104565b610fa0565b60405161043b9190614fea565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190614439565b610fb8565b005b34801561047957600080fd5b50610482611096565b60405161048f9190614b4d565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190614287565b6110b0565b6040516104cc9190614fea565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190614171565b6112ae565b005b34801561050a57600080fd5b5061052560048036038101906105209190614439565b6112ce565b6040516105329190614fea565b60405180910390f35b34801561054757600080fd5b50610550611321565b60405161055d9190614b4d565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906143ec565b61133b565b005b34801561059b57600080fd5b506105b660048036038101906105b19190614439565b6113cd565b6040516105c39190614abd565b60405180910390f35b3480156105d857600080fd5b506105e16113e3565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190614104565b6114e0565b6040516106179190614fea565b60405180910390f35b34801561062c57600080fd5b506106356115c9565b005b34801561064357600080fd5b5061064c611651565b60405161065f9796959493929190615005565b60405180910390f35b34801561067457600080fd5b5061067d6116a8565b60405161068a9190614abd565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190614439565b6116d1565b6040516106c8929190614b24565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614466565b6116f5565b005b610714600480360381019061070f9190614439565b611794565b005b34801561072257600080fd5b5061072b611a3a565b6040516107389190614b68565b60405180910390f35b61075b60048036038101906107569190614439565b611acc565b005b34801561076957600080fd5b50610784600480360381019061077f9190614247565b611ca6565b005b34801561079257600080fd5b506107ad60048036038101906107a891906141c4565b611e27565b005b6107c960048036038101906107c49190614439565b611e83565b005b3480156107d757600080fd5b506107e0612129565b6040516107ed9190614b4d565b60405180910390f35b34801561080257600080fd5b5061080b612143565b005b34801561081957600080fd5b50610822612210565b60405161082f9190614b4d565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190614439565b612259565b60405161086c9190614b68565b60405180910390f35b34801561088157600080fd5b5061088a612300565b6040516108979190614b4d565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c291906142c7565b612349565b005b3480156108d557600080fd5b506108de6124b7565b6040516108eb9190614fea565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190614104565b6124bd565b6040516109289190614fea565b60405180910390f35b34801561093d57600080fd5b506109466124cf565b005b34801561095457600080fd5b5061096f600480360381019061096a9190614131565b612650565b60405161097c9190614b4d565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190614104565b6126e4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af15750610af0826127dc565b5b9050919050565b606060028054610b079061540f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b339061540f565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b6000610b9582612846565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90614faa565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c17612854565b73ffffffffffffffffffffffffffffffffffffffff16610c356116a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614daa565b60405180910390fd5b82600a60010160006101000a81548160ff02191690831515021790555081600a60030160006101000a81548160ff02191690831515021790555080600a60050160006101000a81548160ff021916908315150217905550505050565b6000610cf2826113cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90614e4a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d82612854565b73ffffffffffffffffffffffffffffffffffffffff161480610db15750610db081610dab612854565b612650565b5b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790614cea565b60405180910390fd5b610dfb83838361285c565b505050565b6000600154905090565b60116020528060005260406000206000915090505481565b610e2d83838361290e565b505050565b610e3a612854565b73ffffffffffffffffffffffffffffffffffffffff16610e586116a8565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590614daa565b60405180910390fd5b8051825114610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990614e2a565b60405180910390fd5b60005b8251811015610f9b57818181518110610f1157610f10615579565b5b602002602001015160126000858481518110610f3057610f2f615579565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8191906151b6565b925050819055508080610f9390615472565b915050610ef5565b505050565b60126020528060005260406000206000915090505481565b610fc0612854565b73ffffffffffffffffffffffffffffffffffffffff16610fde6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614daa565b60405180910390fd5b6002600954141561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614f4a565b60405180910390fd5b600260098190555061108b81612ec7565b600160098190555050565b6000600a60050160009054906101000a900460ff16905090565b60006110bb836114e0565b82106110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390614b8a565b60405180910390fd5b6000611106610e00565b905060008060005b8381101561126c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461120057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561125857868414156112495781955050505050506112a8565b838061125490615472565b9450505b50808061126490615472565b91505061110e565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614f0a565b60405180910390fd5b92915050565b6112c983838360405180602001604052806000815250611e27565b505050565b60006112d8610e00565b8210611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614c4a565b60405180910390fd5b819050919050565b6000600a60030160009054906101000a900460ff16905090565b611343612854565b73ffffffffffffffffffffffffffffffffffffffff166113616116a8565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90614daa565b60405180910390fd5b8181601391906113c8929190613dbc565b505050565b60006113d882613155565b600001519050919050565b6113eb612854565b73ffffffffffffffffffffffffffffffffffffffff166114096116a8565b73ffffffffffffffffffffffffffffffffffffffff161461145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690614daa565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000005600a60000154611492919061520c565b905060005b818110156114dc576114c9337f0000000000000000000000000000000000000000000000000000000000000005613358565b80806114d490615472565b915050611497565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890614d4a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115d1612854565b73ffffffffffffffffffffffffffffffffffffffff166115ef6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90614daa565b60405180910390fd5b61164f6000613376565b565b600a8060000154908060010160009054906101000a900460ff16908060020154908060030160009054906101000a900460ff16908060040154908060050160009054906101000a900460ff16908060060154905087565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060006116df84613155565b9050806000015181602001519250925050915091565b6116fd612854565b73ffffffffffffffffffffffffffffffffffffffff1661171b6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614daa565b60405180910390fd5b82600a6002018190555081600a6004018190555080600a60060181905550505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990614cca565b60405180910390fd5b600081600a60020154611815919061523d565b9050600a60010160009054906101000a900460ff16611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090614baa565b60405180910390fd5b803410156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390614d8a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590614d2a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000015b38260015461195d91906151b6565b111561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590614caa565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119e991906152cb565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a363383613358565b5050565b606060038054611a499061540f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a759061540f565b8015611ac25780601f10611a9757610100808354040283529160200191611ac2565b820191906000526020600020905b815481529060010190602001808311611aa557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614cca565b60405180910390fd5b600081600a60060154611b4d919061523d565b9050600a60050160009054906101000a900460ff16611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890614c0a565b60405180910390fd5b80341015611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb90614d8a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000015b382600154611c1391906151b6565b1115611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b90614caa565b60405180910390fd5b6003821115611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614eea565b60405180910390fd5b611ca23383613358565b5050565b611cae612854565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390614dea565b60405180910390fd5b8060076000611d29612854565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd6612854565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1b9190614b4d565b60405180910390a35050565b611e3284848461290e565b611e3e8484848461343a565b611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490614e8a565b60405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890614cca565b60405180910390fd5b600081600a60040154611f04919061523d565b9050600a60030160009054906101000a900460ff16611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90614f8a565b60405180910390fd5b80341015611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290614d8a565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614c2a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000015b38260015461204c91906151b6565b111561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490614caa565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d891906152cb565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121253383613358565b5050565b6000600a60010160009054906101000a900460ff16905090565b61214b612854565b73ffffffffffffffffffffffffffffffffffffffff166121696116a8565b73ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614daa565b60405180910390fd5b600060015490505b7f00000000000000000000000000000000000000000000000000000000000015b381101561220d576121fa336001613358565b808061220590615472565b9150506121c7565b50565b600080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b606061226482612846565b6122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a90614dca565b60405180910390fd5b60006122ad6135d1565b905060008151116122cd57604051806020016040528060008152506122f8565b806122d784613663565b6040516020016122e8929190614a84565b6040516020818303038152906040525b915050919050565b600080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b612351612854565b73ffffffffffffffffffffffffffffffffffffffff1661236f6116a8565b73ffffffffffffffffffffffffffffffffffffffff16146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc90614daa565b60405180910390fd5b8051825114612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090614e2a565b60405180910390fd5b60005b82518110156124b25781818151811061242857612427615579565b5b60200260200101516011600085848151811061244757612446615579565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249891906151b6565b9250508190555080806124aa90615472565b91505061240c565b505050565b60085481565b60006124c8826137c4565b9050919050565b6124d7612854565b73ffffffffffffffffffffffffffffffffffffffff166124f56116a8565b73ffffffffffffffffffffffffffffffffffffffff161461254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290614daa565b60405180910390fd5b60026009541415612591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258890614f4a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516125bf90614aa8565b60006040518083038185875af1925050503d80600081146125fc576040519150601f19603f3d011682016040523d82523d6000602084013e612601565b606091505b5050905080612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c90614e6a565b60405180910390fd5b506001600981905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126ec612854565b73ffffffffffffffffffffffffffffffffffffffff1661270a6116a8565b73ffffffffffffffffffffffffffffffffffffffff1614612760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275790614daa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614bca565b60405180910390fd5b6127d981613376565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061291982613155565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612940612854565b73ffffffffffffffffffffffffffffffffffffffff16148061299c5750612965612854565b73ffffffffffffffffffffffffffffffffffffffff1661298484610b8a565b73ffffffffffffffffffffffffffffffffffffffff16145b806129b857506129b782600001516129b2612854565b612650565b5b9050806129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614e0a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6390614d6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614c6a565b60405180910390fd5b612ae985858560016138ad565b612af9600084846000015161285c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b679190615297565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612c0b9190615170565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d1191906151b6565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e5757612d8781612846565b15612e56576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebf86868660016138b3565b505050505050565b6000600854905060008211612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0890614d0a565b60405180910390fd5b600060018383612f2191906151b6565b612f2b91906152cb565b905060017f00000000000000000000000000000000000000000000000000000000000015b3612f5a91906152cb565b811115612f915760017f00000000000000000000000000000000000000000000000000000000000015b3612f8e91906152cb565b90505b612f9a81612846565b612fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd090614f2a565b60405180910390fd5b60008290505b81811161313c57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561312957600061305c82613155565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061313490615472565b915050612fdf565b5060018161314a91906151b6565b600881905550505050565b61315d613e42565b61316682612846565b6131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90614bea565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000583106132095760017f0000000000000000000000000000000000000000000000000000000000000005846131fc91906152cb565b61320691906151b6565b90505b60008390505b818110613317576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461330357809350505050613353565b50808061330f906153e5565b91505061320f565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a90614f6a565b60405180910390fd5b919050565b6133728282604051806020016040528060008152506138b9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061345b8473ffffffffffffffffffffffffffffffffffffffff16613d99565b156135c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613484612854565b8786866040518563ffffffff1660e01b81526004016134a69493929190614ad8565b602060405180830381600087803b1580156134c057600080fd5b505af19250505080156134f157506040513d601f19601f820116820180604052508101906134ee91906143bf565b60015b613574573d8060008114613521576040519150601f19603f3d011682016040523d82523d6000602084013e613526565b606091505b5060008151141561356c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356390614e8a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135c9565b600190505b949350505050565b6060601380546135e09061540f565b80601f016020809104026020016040519081016040528092919081815260200182805461360c9061540f565b80156136595780601f1061362e57610100808354040283529160200191613659565b820191906000526020600020905b81548152906001019060200180831161363c57829003601f168201915b5050505050905090565b606060008214156136ab576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137bf565b600082905060005b600082146136dd5780806136c690615472565b915050600a826136d6919061520c565b91506136b3565b60008167ffffffffffffffff8111156136f9576136f86155a8565b5b6040519080825280601f01601f19166020018201604052801561372b5781602001600182028036833780820191505090505b5090505b600085146137b85760018261374491906152cb565b9150600a8561375391906154bb565b603061375f91906151b6565b60f81b81838151811061377557613774615579565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137b1919061520c565b945061372f565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382c90614c8a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392790614eca565b60405180910390fd5b61393981612846565b15613979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397090614eaa565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000058311156139dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d390614fca565b60405180910390fd5b6139e960008583866138ad565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613ae69190615170565b6fffffffffffffffffffffffffffffffff168152602001858360200151613b0d9190615170565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613d7c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d1c600088848861343a565b613d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5290614e8a565b60405180910390fd5b8180613d6690615472565b9250508080613d7490615472565b915050613cab565b5080600181905550613d9160008785886138b3565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613dc89061540f565b90600052602060002090601f016020900481019282613dea5760008555613e31565b82601f10613e0357803560ff1916838001178555613e31565b82800160010185558215613e31579182015b82811115613e30578235825591602001919060010190613e15565b5b509050613e3e9190613e7c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613e95576000816000905550600101613e7d565b5090565b6000613eac613ea784615099565b615074565b90508083825260208201905082856020860282011115613ecf57613ece6155e1565b5b60005b85811015613eff5781613ee58882613fbb565b845260208401935060208301925050600181019050613ed2565b5050509392505050565b6000613f1c613f17846150c5565b615074565b90508083825260208201905082856020860282011115613f3f57613f3e6155e1565b5b60005b85811015613f6f5781613f5588826140ef565b845260208401935060208301925050600181019050613f42565b5050509392505050565b6000613f8c613f87846150f1565b615074565b905082815260208101848484011115613fa857613fa76155e6565b5b613fb38482856153a3565b509392505050565b600081359050613fca81615ee8565b92915050565b600082601f830112613fe557613fe46155dc565b5b8135613ff5848260208601613e99565b91505092915050565b600082601f830112614013576140126155dc565b5b8135614023848260208601613f09565b91505092915050565b60008135905061403b81615eff565b92915050565b60008135905061405081615f16565b92915050565b60008151905061406581615f16565b92915050565b600082601f8301126140805761407f6155dc565b5b8135614090848260208601613f79565b91505092915050565b60008083601f8401126140af576140ae6155dc565b5b8235905067ffffffffffffffff8111156140cc576140cb6155d7565b5b6020830191508360018202830111156140e8576140e76155e1565b5b9250929050565b6000813590506140fe81615f2d565b92915050565b60006020828403121561411a576141196155f0565b5b600061412884828501613fbb565b91505092915050565b60008060408385031215614148576141476155f0565b5b600061415685828601613fbb565b925050602061416785828601613fbb565b9150509250929050565b60008060006060848603121561418a576141896155f0565b5b600061419886828701613fbb565b93505060206141a986828701613fbb565b92505060406141ba868287016140ef565b9150509250925092565b600080600080608085870312156141de576141dd6155f0565b5b60006141ec87828801613fbb565b94505060206141fd87828801613fbb565b935050604061420e878288016140ef565b925050606085013567ffffffffffffffff81111561422f5761422e6155eb565b5b61423b8782880161406b565b91505092959194509250565b6000806040838503121561425e5761425d6155f0565b5b600061426c85828601613fbb565b925050602061427d8582860161402c565b9150509250929050565b6000806040838503121561429e5761429d6155f0565b5b60006142ac85828601613fbb565b92505060206142bd858286016140ef565b9150509250929050565b600080604083850312156142de576142dd6155f0565b5b600083013567ffffffffffffffff8111156142fc576142fb6155eb565b5b61430885828601613fd0565b925050602083013567ffffffffffffffff811115614329576143286155eb565b5b61433585828601613ffe565b9150509250929050565b600080600060608486031215614358576143576155f0565b5b60006143668682870161402c565b93505060206143778682870161402c565b92505060406143888682870161402c565b9150509250925092565b6000602082840312156143a8576143a76155f0565b5b60006143b684828501614041565b91505092915050565b6000602082840312156143d5576143d46155f0565b5b60006143e384828501614056565b91505092915050565b60008060208385031215614403576144026155f0565b5b600083013567ffffffffffffffff811115614421576144206155eb565b5b61442d85828601614099565b92509250509250929050565b60006020828403121561444f5761444e6155f0565b5b600061445d848285016140ef565b91505092915050565b60008060006060848603121561447f5761447e6155f0565b5b600061448d868287016140ef565b935050602061449e868287016140ef565b92505060406144af868287016140ef565b9150509250925092565b6144c2816152ff565b82525050565b6144d181615311565b82525050565b60006144e282615122565b6144ec8185615138565b93506144fc8185602086016153b2565b614505816155f5565b840191505092915050565b600061451b8261512d565b6145258185615154565b93506145358185602086016153b2565b61453e816155f5565b840191505092915050565b60006145548261512d565b61455e8185615165565b935061456e8185602086016153b2565b80840191505092915050565b6000614587602283615154565b915061459282615606565b604082019050919050565b60006145aa601583615154565b91506145b582615655565b602082019050919050565b60006145cd602683615154565b91506145d88261567e565b604082019050919050565b60006145f0602a83615154565b91506145fb826156cd565b604082019050919050565b6000614613601983615154565b915061461e8261571c565b602082019050919050565b6000614636602b83615154565b915061464182615745565b604082019050919050565b6000614659602383615154565b915061466482615794565b604082019050919050565b600061467c602583615154565b9150614687826157e3565b604082019050919050565b600061469f603183615154565b91506146aa82615832565b604082019050919050565b60006146c2601b83615154565b91506146cd82615881565b602082019050919050565b60006146e5601e83615154565b91506146f0826158aa565b602082019050919050565b6000614708603983615154565b9150614713826158d3565b604082019050919050565b600061472b601883615154565b915061473682615922565b602082019050919050565b600061474e602b83615154565b91506147598261594b565b604082019050919050565b6000614771602b83615154565b915061477c8261599a565b604082019050919050565b6000614794602683615154565b915061479f826159e9565b604082019050919050565b60006147b7600e83615154565b91506147c282615a38565b602082019050919050565b60006147da602083615154565b91506147e582615a61565b602082019050919050565b60006147fd602f83615154565b915061480882615a8a565b604082019050919050565b6000614820601a83615154565b915061482b82615ad9565b602082019050919050565b6000614843603283615154565b915061484e82615b02565b604082019050919050565b6000614866602883615154565b915061487182615b51565b604082019050919050565b6000614889602283615154565b915061489482615ba0565b604082019050919050565b60006148ac600083615149565b91506148b782615bef565b600082019050919050565b60006148cf601083615154565b91506148da82615bf2565b602082019050919050565b60006148f2603383615154565b91506148fd82615c1b565b604082019050919050565b6000614915601d83615154565b915061492082615c6a565b602082019050919050565b6000614938602183615154565b915061494382615c93565b604082019050919050565b600061495b601483615154565b915061496682615ce2565b602082019050919050565b600061497e602e83615154565b915061498982615d0b565b604082019050919050565b60006149a1602683615154565b91506149ac82615d5a565b604082019050919050565b60006149c4601f83615154565b91506149cf82615da9565b602082019050919050565b60006149e7602f83615154565b91506149f282615dd2565b604082019050919050565b6000614a0a601583615154565b9150614a1582615e21565b602082019050919050565b6000614a2d602d83615154565b9150614a3882615e4a565b604082019050919050565b6000614a50602283615154565b9150614a5b82615e99565b604082019050919050565b614a6f81615385565b82525050565b614a7e8161538f565b82525050565b6000614a908285614549565b9150614a9c8284614549565b91508190509392505050565b6000614ab38261489f565b9150819050919050565b6000602082019050614ad260008301846144b9565b92915050565b6000608082019050614aed60008301876144b9565b614afa60208301866144b9565b614b076040830185614a66565b8181036060830152614b1981846144d7565b905095945050505050565b6000604082019050614b3960008301856144b9565b614b466020830184614a75565b9392505050565b6000602082019050614b6260008301846144c8565b92915050565b60006020820190508181036000830152614b828184614510565b905092915050565b60006020820190508181036000830152614ba38161457a565b9050919050565b60006020820190508181036000830152614bc38161459d565b9050919050565b60006020820190508181036000830152614be3816145c0565b9050919050565b60006020820190508181036000830152614c03816145e3565b9050919050565b60006020820190508181036000830152614c2381614606565b9050919050565b60006020820190508181036000830152614c4381614629565b9050919050565b60006020820190508181036000830152614c638161464c565b9050919050565b60006020820190508181036000830152614c838161466f565b9050919050565b60006020820190508181036000830152614ca381614692565b9050919050565b60006020820190508181036000830152614cc3816146b5565b9050919050565b60006020820190508181036000830152614ce3816146d8565b9050919050565b60006020820190508181036000830152614d03816146fb565b9050919050565b60006020820190508181036000830152614d238161471e565b9050919050565b60006020820190508181036000830152614d4381614741565b9050919050565b60006020820190508181036000830152614d6381614764565b9050919050565b60006020820190508181036000830152614d8381614787565b9050919050565b60006020820190508181036000830152614da3816147aa565b9050919050565b60006020820190508181036000830152614dc3816147cd565b9050919050565b60006020820190508181036000830152614de3816147f0565b9050919050565b60006020820190508181036000830152614e0381614813565b9050919050565b60006020820190508181036000830152614e2381614836565b9050919050565b60006020820190508181036000830152614e4381614859565b9050919050565b60006020820190508181036000830152614e638161487c565b9050919050565b60006020820190508181036000830152614e83816148c2565b9050919050565b60006020820190508181036000830152614ea3816148e5565b9050919050565b60006020820190508181036000830152614ec381614908565b9050919050565b60006020820190508181036000830152614ee38161492b565b9050919050565b60006020820190508181036000830152614f038161494e565b9050919050565b60006020820190508181036000830152614f2381614971565b9050919050565b60006020820190508181036000830152614f4381614994565b9050919050565b60006020820190508181036000830152614f63816149b7565b9050919050565b60006020820190508181036000830152614f83816149da565b9050919050565b60006020820190508181036000830152614fa3816149fd565b9050919050565b60006020820190508181036000830152614fc381614a20565b9050919050565b60006020820190508181036000830152614fe381614a43565b9050919050565b6000602082019050614fff6000830184614a66565b92915050565b600060e08201905061501a600083018a614a66565b61502760208301896144c8565b6150346040830188614a66565b61504160608301876144c8565b61504e6080830186614a66565b61505b60a08301856144c8565b61506860c0830184614a66565b98975050505050505050565b600061507e61508f565b905061508a8282615441565b919050565b6000604051905090565b600067ffffffffffffffff8211156150b4576150b36155a8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150e0576150df6155a8565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561510c5761510b6155a8565b5b615115826155f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061517b82615349565b915061518683615349565b9250826fffffffffffffffffffffffffffffffff038211156151ab576151aa6154ec565b5b828201905092915050565b60006151c182615385565b91506151cc83615385565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615201576152006154ec565b5b828201905092915050565b600061521782615385565b915061522283615385565b9250826152325761523161551b565b5b828204905092915050565b600061524882615385565b915061525383615385565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561528c5761528b6154ec565b5b828202905092915050565b60006152a282615349565b91506152ad83615349565b9250828210156152c0576152bf6154ec565b5b828203905092915050565b60006152d682615385565b91506152e183615385565b9250828210156152f4576152f36154ec565b5b828203905092915050565b600061530a82615365565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156153d05780820151818401526020810190506153b5565b838111156153df576000848401525b50505050565b60006153f082615385565b91506000821415615404576154036154ec565b5b600182039050919050565b6000600282049050600182168061542757607f821691505b6020821081141561543b5761543a61554a565b5b50919050565b61544a826155f5565b810181811067ffffffffffffffff82111715615469576154686155a8565b5b80604052505050565b600061547d82615385565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154b0576154af6154ec565b5b600182019050919050565b60006154c682615385565b91506154d183615385565b9250826154e1576154e061551b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f472053616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c65206973206e6f742061637469766500000000000000600082015250565b7f4e6f7420696e20574c206c697374206f7220616c7265616479206d696e74656460008201527f206d617820616d6f756e74000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f546f74616c20746f6b656e7320616d6f756e7420726561636865640000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f4e6f7420696e204f47206c697374206f7220616c7265616479206d696e74656460008201527f206d617820616d6f756e74000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f41646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420616d6f756e742069732033000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f574c2053616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615ef1816152ff565b8114615efc57600080fd5b50565b615f0881615311565b8114615f1357600080fd5b50565b615f1f8161531d565b8114615f2a57600080fd5b50565b615f3681615385565b8114615f4157600080fd5b5056fea26469706673582212205930bd1ff727a8369262d7c8a845178143f75df28c77a3abf73190dae4896ae964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000015b300000000000000000000000000000000000000000000000000000000000000fa

-----Decoded View---------------
Arg [0] : collectionSize (uint256): 5555
Arg [1] : dnmAmount (uint256): 250

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000fa


Deployed Bytecode Sourcemap

42860:5946:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27944:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29670:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31195:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44294:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30758:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26505:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43208:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32045:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46954:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43256:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48241:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47366:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27136:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32250:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26668:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48128:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29493:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43871:220;;;;;;;;;;;;;:::i;:::-;;28370:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41959:103;;;;;;;;;;;;;:::i;:::-;;43175:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;41308:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48526:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;44484:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45113:600;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29825:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47478:501;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31463:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32470:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46346:600;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44896:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44099:169;;;;;;;;;;;;;:::i;:::-;;45004:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29986:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46237:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45721:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36885:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48405:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44680:189;;;;;;;;;;;;;:::i;:::-;;31800:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42217:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27944:370;28071:4;28116:25;28101:40;;;:11;:40;;;;:99;;;;28167:33;28152:48;;;:11;:48;;;;28101:99;:160;;;;28226:35;28211:50;;;:11;:50;;;;28101:160;:207;;;;28272:36;28296:11;28272:23;:36::i;:::-;28101:207;28087:221;;27944:370;;;:::o;29670:94::-;29724:13;29753:5;29746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29670:94;:::o;31195:204::-;31263:7;31287:16;31295:7;31287;:16::i;:::-;31279:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31369:15;:24;31385:7;31369:24;;;;;;;;;;;;;;;;;;;;;31362:31;;31195:204;;;:::o;44294:182::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44396:2:::1;44374:6;:19;;;:24;;;;;;;;;;;;;;;;;;44431:2;44409:6;:19;;;:24;;;;;;;;;;;;;;;;;;44466:2;44444:6;:19;;;:24;;;;;;;;;;;;;;;;;;44294:182:::0;;;:::o;30758:379::-;30827:13;30843:24;30859:7;30843:15;:24::i;:::-;30827:40;;30888:5;30882:11;;:2;:11;;;;30874:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30973:5;30957:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30982:37;30999:5;31006:12;:10;:12::i;:::-;30982:16;:37::i;:::-;30957:62;30941:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31103:28;31112:2;31116:7;31125:5;31103:8;:28::i;:::-;30820:317;30758:379;;:::o;26505:94::-;26558:7;26581:12;;26574:19;;26505:94;:::o;43208:41::-;;;;;;;;;;;;;;;;;:::o;32045:142::-;32153:28;32163:4;32169:2;32173:7;32153:9;:28::i;:::-;32045:142;;;:::o;46954:381::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47125:8:::1;:15;47105:9;:16;:35;47083:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;47224:9;47219:109;47243:9;:16;47239:1;:20;47219:109;;;47305:8;47314:1;47305:11;;;;;;;;:::i;:::-;;;;;;;;47281:6;:20;47288:9;47298:1;47288:12;;;;;;;;:::i;:::-;;;;;;;;47281:20;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;47261:3;;;;;:::i;:::-;;;;47219:109;;;;46954:381:::0;;:::o;43256:41::-;;;;;;;;;;;;;;;;;:::o;48241:156::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;48361:28:::2;48380:8;48361:18;:28::i;:::-;22127:1:::1;23081:7;:22;;;;48241:156:::0;:::o;47366:104::-;47419:4;47443:6;:19;;;;;;;;;;;;47436:26;;47366:104;:::o;27136:744::-;27245:7;27280:16;27290:5;27280:9;:16::i;:::-;27272:5;:24;27264:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27342:22;27367:13;:11;:13::i;:::-;27342:38;;27387:19;27417:25;27467:9;27462:350;27486:14;27482:1;:18;27462:350;;;27516:31;27550:11;:14;27562:1;27550:14;;;;;;;;;;;27516:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27603:1;27577:28;;:9;:14;;;:28;;;27573:89;;27638:9;:14;;;27618:34;;27573:89;27695:5;27674:26;;:17;:26;;;27670:135;;;27732:5;27717:11;:20;27713:59;;;27759:1;27752:8;;;;;;;;;27713:59;27782:13;;;;;:::i;:::-;;;;27670:135;27507:305;27502:3;;;;;:::i;:::-;;;;27462:350;;;;27818:56;;;;;;;;;;:::i;:::-;;;;;;;;27136:744;;;;;:::o;32250:157::-;32362:39;32379:4;32385:2;32389:7;32362:39;;;;;;;;;;;;:16;:39::i;:::-;32250:157;;;:::o;26668:177::-;26735:7;26767:13;:11;:13::i;:::-;26759:5;:21;26751:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26834:5;26827:12;;26668:177;;;:::o;46129:100::-;46178:4;46202:6;:19;;;;;;;;;;;;46195:26;;46129:100;:::o;48128:105::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48218:7:::1;;48203:12;:22;;;;;;;:::i;:::-;;48128:105:::0;;:::o;29493:118::-;29557:7;29580:20;29592:7;29580:11;:20::i;:::-;:25;;;29573:32;;29493:118;;;:::o;43871:220::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43920:17:::1;43959:12;43940:6;:16;;;:31;;;;:::i;:::-;43920:51;;43987:9;43982:102;44006:9;44002:1;:13;43982:102;;;44037:35;44047:10;44059:12;44037:9;:35::i;:::-;44017:3;;;;;:::i;:::-;;;;43982:102;;;;43909:182;43871:220::o:0;28370:211::-;28434:7;28475:1;28458:19;;:5;:19;;;;28450:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28547:12;:19;28560:5;28547:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28539:36;;28532:43;;28370:211;;;:::o;41959:103::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42024:30:::1;42051:1;42024:18;:30::i;:::-;41959:103::o:0;43175:24::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41308:87::-;41354:7;41381:6;;;;;;;;;;;41374:13;;41308:87;:::o;48526:277::-;48628:16;48646:17;48681:31;48715:20;48727:7;48715:11;:20::i;:::-;48681:54;;48754:9;:14;;;48770:9;:24;;;48746:49;;;;;48526:277;;;:::o;44484:188::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44594:2:::1;44573:6;:18;;:23;;;;44628:2;44607:6;:18;;:23;;;;44662:2;44641:6;:18;;:23;;;;44484:188:::0;;;:::o;45113:600::-;43775:10;43762:23;;:9;:23;;;43754:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45227:17:::1;45277:8;45255:6;:18;;;45247:38;;;;:::i;:::-;45227:58;;45306:6;:19;;;;;;;;;;;;45298:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45383:9;45370;:22;;45362:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;45452:8;45430:6;:18;45437:10;45430:18;;;;;;;;;;;;;;;;:30;;45422:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;45554:14;45542:8;45527:12;;:23;;;;:::i;:::-;:41;;45519:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45655:8;45634:6;:18;45641:10;45634:18;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;45613:6;:18;45620:10;45613:18;;;;;;;;;;;;;;;:50;;;;45674:31;45684:10;45696:8;45674:9;:31::i;:::-;45216:497;45113:600:::0;:::o;29825:98::-;29881:13;29910:7;29903:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29825:98;:::o;47478:501::-;43775:10;43762:23;;:9;:23;;;43754:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47590:17:::1;47640:8;47618:6;:18;;;47610:38;;;;:::i;:::-;47590:58;;47669:6;:19;;;;;;;;;;;;47661:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47750:9;47737;:22;;47729:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47824:14;47812:8;47797:12;;:23;;;;:::i;:::-;:41;;47789:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;47901:1;47889:8;:13;;47881:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;47940:31;47950:10;47962:8;47940:9;:31::i;:::-;47579:400;47478:501:::0;:::o;31463:274::-;31566:12;:10;:12::i;:::-;31554:24;;:8;:24;;;;31546:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31663:8;31618:18;:32;31637:12;:10;:12::i;:::-;31618:32;;;;;;;;;;;;;;;:42;31651:8;31618:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31712:8;31683:48;;31698:12;:10;:12::i;:::-;31683:48;;;31722:8;31683:48;;;;;;:::i;:::-;;;;;;;;31463:274;;:::o;32470:311::-;32607:28;32617:4;32623:2;32627:7;32607:9;:28::i;:::-;32658:48;32681:4;32687:2;32691:7;32700:5;32658:22;:48::i;:::-;32642:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32470:311;;;;:::o;46346:600::-;43775:10;43762:23;;:9;:23;;;43754:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46460:17:::1;46510:8;46488:6;:18;;;46480:38;;;;:::i;:::-;46460:58;;46539:6;:19;;;;;;;;;;;;46531:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46616:9;46603;:22;;46595:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46685:8;46663:6;:18;46670:10;46663:18;;;;;;;;;;;;;;;;:30;;46655:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;46787:14;46775:8;46760:12;;:23;;;;:::i;:::-;:41;;46752:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46888:8;46867:6;:18;46874:10;46867:18;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;46846:6;:18;46853:10;46846:18;;;;;;;;;;;;;;;:50;;;;46907:31;46917:10;46929:8;46907:9;:31::i;:::-;46449:497;46346:600:::0;:::o;44896:100::-;44945:4;44969:6;:19;;;;;;;;;;;;44962:26;;44896:100;:::o;44099:169::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44159:9:::1;44171:12;;44159:24;;44154:107;44189:14;44185:1;:18;44154:107;;;44225:24;44235:10;44247:1;44225:9;:24::i;:::-;44205:3;;;;;:::i;:::-;;;;44154:107;;;;44099:169::o:0;45004:101::-;45049:4;45095:1;45074:6;:18;45081:10;45074:18;;;;;;;;;;;;;;;;:22;45066:31;;45004:101;:::o;29986:394::-;30084:13;30125:16;30133:7;30125;:16::i;:::-;30109:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30215:21;30239:10;:8;:10::i;:::-;30215:34;;30294:1;30276:7;30270:21;:25;:104;;;;;;;;;;;;;;;;;30331:7;30340:18;:7;:16;:18::i;:::-;30314:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30270:104;30256:118;;;29986:394;;;:::o;46237:101::-;46282:4;46328:1;46307:6;:18;46314:10;46307:18;;;;;;;;;;;;;;;;:22;46299:31;;46237:101;:::o;45721:381::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45892:8:::1;:15;45872:9;:16;:35;45850:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;45991:9;45986:109;46010:9;:16;46006:1;:20;45986:109;;;46072:8;46081:1;46072:11;;;;;;;;:::i;:::-;;;;;;;;46048:6;:20;46055:9;46065:1;46055:12;;;;;;;;:::i;:::-;;;;;;;;46048:20;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;46028:3;;;;;:::i;:::-;;;;45986:109;;;;45721:381:::0;;:::o;36885:43::-;;;;:::o;48405:113::-;48463:7;48490:20;48504:5;48490:13;:20::i;:::-;48483:27;;48405:113;;;:::o;44680:189::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;44747:12:::2;44765:10;:15;;44788:21;44765:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44746:68;;;44833:7;44825:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44735:134;22127:1:::1;23081:7;:22;;;;44680:189::o:0;31800:186::-;31922:4;31945:18;:25;31964:5;31945:25;;;;;;;;;;;;;;;:35;31971:8;31945:35;;;;;;;;;;;;;;;;;;;;;;;;;31938:42;;31800:186;;;;:::o;42217:201::-;41539:12;:10;:12::i;:::-;41528:23;;:7;:5;:7::i;:::-;:23;;;41520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42326:1:::1;42306:22;;:8;:22;;;;42298:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42382:28;42401:8;42382:18;:28::i;:::-;42217:201:::0;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;33020:105::-;33077:4;33107:12;;33097:7;:22;33090:29;;33020:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36707:172::-;36831:2;36804:15;:24;36820:7;36804:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36865:7;36861:2;36845:28;;36854:5;36845:28;;;;;;;;;;;;36707:172;;;:::o;35072:1529::-;35169:35;35207:20;35219:7;35207:11;:20::i;:::-;35169:58;;35236:22;35278:13;:18;;;35262:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35331:12;:10;:12::i;:::-;35307:36;;:20;35319:7;35307:11;:20::i;:::-;:36;;;35262:81;:142;;;;35354:50;35371:13;:18;;;35391:12;:10;:12::i;:::-;35354:16;:50::i;:::-;35262:142;35236:169;;35430:17;35414:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35562:4;35540:26;;:13;:18;;;:26;;;35524:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35651:1;35637:16;;:2;:16;;;;35629:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35704:43;35726:4;35732:2;35736:7;35745:1;35704:21;:43::i;:::-;35804:49;35821:1;35825:7;35834:13;:18;;;35804:8;:49::i;:::-;35892:1;35862:12;:18;35875:4;35862:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35928:1;35900:12;:16;35913:2;35900:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35959:43;;;;;;;;35974:2;35959:43;;;;;;35985:15;35959:43;;;;;35936:11;:20;35948:7;35936:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36230:19;36262:1;36252:7;:11;;;;:::i;:::-;36230:33;;36315:1;36274:43;;:11;:24;36286:11;36274:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36270:236;;;36332:20;36340:11;36332:7;:20::i;:::-;36328:171;;;36392:97;;;;;;;;36419:13;:18;;;36392:97;;;;;;36450:13;:28;;;36392:97;;;;;36365:11;:24;36377:11;36365:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36328:171;36270:236;36538:7;36534:2;36519:27;;36528:4;36519:27;;;;;;;;;;;;36553:42;36574:4;36580:2;36584:7;36593:1;36553:20;:42::i;:::-;35162:1439;;;35072:1529;;;:::o;37033:846::-;37095:25;37123:24;;37095:52;;37173:1;37162:8;:12;37154:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37210:16;37260:1;37249:8;37229:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37210:51;;37300:1;37283:14;:18;;;;:::i;:::-;37272:8;:29;37268:81;;;37340:1;37323:14;:18;;;;:::i;:::-;37312:29;;37268:81;37464:17;37472:8;37464:7;:17::i;:::-;37456:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37536:9;37548:17;37536:29;;37531:297;37572:8;37567:1;:13;37531:297;;37631:1;37600:33;;:11;:14;37612:1;37600:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37596:225;;;37646:31;37680:14;37692:1;37680:11;:14::i;:::-;37646:48;;37722:89;;;;;;;;37749:9;:14;;;37722:89;;;;;;37776:9;:24;;;37722:89;;;;;37705:11;:14;37717:1;37705:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37635:186;37596:225;37582:3;;;;;:::i;:::-;;;;37531:297;;;;37872:1;37861:8;:12;;;;:::i;:::-;37834:24;:39;;;;37088:791;;37033:846;:::o;28833:606::-;28909:21;;:::i;:::-;28950:16;28958:7;28950;:16::i;:::-;28942:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29022:26;29070:12;29059:7;:23;29055:93;;29139:1;29124:12;29114:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;29093:47;;29055:93;29161:12;29176:7;29161:22;;29156:212;29193:18;29185:4;:26;29156:212;;29230:31;29264:11;:17;29276:4;29264:17;;;;;;;;;;;29230:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29320:1;29294:28;;:9;:14;;;:28;;;29290:71;;29342:9;29335:16;;;;;;;29290:71;29221:147;29213:6;;;;;:::i;:::-;;;;29156:212;;;;29376:57;;;;;;;;;;:::i;:::-;;;;;;;;28833:606;;;;:::o;33131:98::-;33196:27;33206:2;33210:8;33196:27;;;;;;;;;;;;:9;:27::i;:::-;33131:98;;:::o;42578:191::-;42652:16;42671:6;;;;;;;;;;;42652:25;;42697:8;42688:6;;:17;;;;;;;;;;;;;;;;;;42752:8;42721:40;;42742:8;42721:40;;;;;;;;;;;;42641:128;42578:191;:::o;38422:690::-;38559:4;38576:15;:2;:13;;;:15::i;:::-;38572:535;;;38631:2;38615:36;;;38652:12;:10;:12::i;:::-;38666:4;38672:7;38681:5;38615:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38602:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38863:1;38846:6;:13;:18;38842:215;;;38879:61;;;;;;;;;;:::i;:::-;;;;;;;;38842:215;39025:6;39019:13;39010:6;39006:2;39002:15;38995:38;38602:464;38747:45;;;38737:55;;;:6;:55;;;;38730:62;;;;;38572:535;39095:4;39088:11;;38422:690;;;;;;;:::o;48007:113::-;48067:13;48100:12;48093:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48007:113;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;28587:240::-;28648:7;28697:1;28680:19;;:5;:19;;;;28664:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28788:12;:19;28801:5;28788:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28780:41;;28773:48;;28587:240;;;:::o;39574:141::-;;;;;:::o;40101:140::-;;;;;:::o;33568:1272::-;33673:20;33696:12;;33673:35;;33737:1;33723:16;;:2;:16;;;;33715:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33914:21;33922:12;33914:7;:21::i;:::-;33913:22;33905:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33996:12;33984:8;:24;;33976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34056:61;34086:1;34090:2;34094:12;34108:8;34056:21;:61::i;:::-;34126:30;34159:12;:16;34172:2;34159:16;;;;;;;;;;;;;;;34126:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34201:119;;;;;;;;34251:8;34221:11;:19;;;:39;;;;:::i;:::-;34201:119;;;;;;34304:8;34269:11;:24;;;:44;;;;:::i;:::-;34201:119;;;;;34182:12;:16;34195:2;34182:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34355:43;;;;;;;;34370:2;34355:43;;;;;;34381:15;34355:43;;;;;34327:11;:25;34339:12;34327:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34407:20;34430:12;34407:35;;34456:9;34451:281;34475:8;34471:1;:12;34451:281;;;34529:12;34525:2;34504:38;;34521:1;34504:38;;;;;;;;;;;;34569:59;34600:1;34604:2;34608:12;34622:5;34569:22;:59::i;:::-;34551:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34710:14;;;;;:::i;:::-;;;;34485:3;;;;;:::i;:::-;;;;34451:281;;;;34755:12;34740;:27;;;;34774:60;34803:1;34807:2;34811:12;34825:8;34774:20;:60::i;:::-;33666:1174;;;33568:1272;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2075:370::-;2146:5;2195:3;2188:4;2180:6;2176:17;2172:27;2162:122;;2203:79;;:::i;:::-;2162:122;2320:6;2307:20;2345:94;2435:3;2427:6;2420:4;2412:6;2408:17;2345:94;:::i;:::-;2336:103;;2152:293;2075:370;;;;:::o;2468:::-;2539:5;2588:3;2581:4;2573:6;2569:17;2565:27;2555:122;;2596:79;;:::i;:::-;2555:122;2713:6;2700:20;2738:94;2828:3;2820:6;2813:4;2805:6;2801:17;2738:94;:::i;:::-;2729:103;;2545:293;2468:370;;;;:::o;2844:133::-;2887:5;2925:6;2912:20;2903:29;;2941:30;2965:5;2941:30;:::i;:::-;2844:133;;;;:::o;2983:137::-;3028:5;3066:6;3053:20;3044:29;;3082:32;3108:5;3082:32;:::i;:::-;2983:137;;;;:::o;3126:141::-;3182:5;3213:6;3207:13;3198:22;;3229:32;3255:5;3229:32;:::i;:::-;3126:141;;;;:::o;3286:338::-;3341:5;3390:3;3383:4;3375:6;3371:17;3367:27;3357:122;;3398:79;;:::i;:::-;3357:122;3515:6;3502:20;3540:78;3614:3;3606:6;3599:4;3591:6;3587:17;3540:78;:::i;:::-;3531:87;;3347:277;3286:338;;;;:::o;3644:553::-;3702:8;3712:6;3762:3;3755:4;3747:6;3743:17;3739:27;3729:122;;3770:79;;:::i;:::-;3729:122;3883:6;3870:20;3860:30;;3913:18;3905:6;3902:30;3899:117;;;3935:79;;:::i;:::-;3899:117;4049:4;4041:6;4037:17;4025:29;;4103:3;4095:4;4087:6;4083:17;4073:8;4069:32;4066:41;4063:128;;;4110:79;;:::i;:::-;4063:128;3644:553;;;;;:::o;4203:139::-;4249:5;4287:6;4274:20;4265:29;;4303:33;4330:5;4303:33;:::i;:::-;4203:139;;;;:::o;4348:329::-;4407:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:119;;;4462:79;;:::i;:::-;4424:119;4582:1;4607:53;4652:7;4643:6;4632:9;4628:22;4607:53;:::i;:::-;4597:63;;4553:117;4348:329;;;;:::o;4683:474::-;4751:6;4759;4808:2;4796:9;4787:7;4783:23;4779:32;4776:119;;;4814:79;;:::i;:::-;4776:119;4934:1;4959:53;5004:7;4995:6;4984:9;4980:22;4959:53;:::i;:::-;4949:63;;4905:117;5061:2;5087:53;5132:7;5123:6;5112:9;5108:22;5087:53;:::i;:::-;5077:63;;5032:118;4683:474;;;;;:::o;5163:619::-;5240:6;5248;5256;5305:2;5293:9;5284:7;5280:23;5276:32;5273:119;;;5311:79;;:::i;:::-;5273:119;5431:1;5456:53;5501:7;5492:6;5481:9;5477:22;5456:53;:::i;:::-;5446:63;;5402:117;5558:2;5584:53;5629:7;5620:6;5609:9;5605:22;5584:53;:::i;:::-;5574:63;;5529:118;5686:2;5712:53;5757:7;5748:6;5737:9;5733:22;5712:53;:::i;:::-;5702:63;;5657:118;5163:619;;;;;:::o;5788:943::-;5883:6;5891;5899;5907;5956:3;5944:9;5935:7;5931:23;5927:33;5924:120;;;5963:79;;:::i;:::-;5924:120;6083:1;6108:53;6153:7;6144:6;6133:9;6129:22;6108:53;:::i;:::-;6098:63;;6054:117;6210:2;6236:53;6281:7;6272:6;6261:9;6257:22;6236:53;:::i;:::-;6226:63;;6181:118;6338:2;6364:53;6409:7;6400:6;6389:9;6385:22;6364:53;:::i;:::-;6354:63;;6309:118;6494:2;6483:9;6479:18;6466:32;6525:18;6517:6;6514:30;6511:117;;;6547:79;;:::i;:::-;6511:117;6652:62;6706:7;6697:6;6686:9;6682:22;6652:62;:::i;:::-;6642:72;;6437:287;5788:943;;;;;;;:::o;6737:468::-;6802:6;6810;6859:2;6847:9;6838:7;6834:23;6830:32;6827:119;;;6865:79;;:::i;:::-;6827:119;6985:1;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;:::i;:::-;7000:63;;6956:117;7112:2;7138:50;7180:7;7171:6;7160:9;7156:22;7138:50;:::i;:::-;7128:60;;7083:115;6737:468;;;;;:::o;7211:474::-;7279:6;7287;7336:2;7324:9;7315:7;7311:23;7307:32;7304:119;;;7342:79;;:::i;:::-;7304:119;7462:1;7487:53;7532:7;7523:6;7512:9;7508:22;7487:53;:::i;:::-;7477:63;;7433:117;7589:2;7615:53;7660:7;7651:6;7640:9;7636:22;7615:53;:::i;:::-;7605:63;;7560:118;7211:474;;;;;:::o;7691:894::-;7809:6;7817;7866:2;7854:9;7845:7;7841:23;7837:32;7834:119;;;7872:79;;:::i;:::-;7834:119;8020:1;8009:9;8005:17;7992:31;8050:18;8042:6;8039:30;8036:117;;;8072:79;;:::i;:::-;8036:117;8177:78;8247:7;8238:6;8227:9;8223:22;8177:78;:::i;:::-;8167:88;;7963:302;8332:2;8321:9;8317:18;8304:32;8363:18;8355:6;8352:30;8349:117;;;8385:79;;:::i;:::-;8349:117;8490:78;8560:7;8551:6;8540:9;8536:22;8490:78;:::i;:::-;8480:88;;8275:303;7691:894;;;;;:::o;8591:601::-;8659:6;8667;8675;8724:2;8712:9;8703:7;8699:23;8695:32;8692:119;;;8730:79;;:::i;:::-;8692:119;8850:1;8875:50;8917:7;8908:6;8897:9;8893:22;8875:50;:::i;:::-;8865:60;;8821:114;8974:2;9000:50;9042:7;9033:6;9022:9;9018:22;9000:50;:::i;:::-;8990:60;;8945:115;9099:2;9125:50;9167:7;9158:6;9147:9;9143:22;9125:50;:::i;:::-;9115:60;;9070:115;8591:601;;;;;:::o;9198:327::-;9256:6;9305:2;9293:9;9284:7;9280:23;9276:32;9273:119;;;9311:79;;:::i;:::-;9273:119;9431:1;9456:52;9500:7;9491:6;9480:9;9476:22;9456:52;:::i;:::-;9446:62;;9402:116;9198:327;;;;:::o;9531:349::-;9600:6;9649:2;9637:9;9628:7;9624:23;9620:32;9617:119;;;9655:79;;:::i;:::-;9617:119;9775:1;9800:63;9855:7;9846:6;9835:9;9831:22;9800:63;:::i;:::-;9790:73;;9746:127;9531:349;;;;:::o;9886:529::-;9957:6;9965;10014:2;10002:9;9993:7;9989:23;9985:32;9982:119;;;10020:79;;:::i;:::-;9982:119;10168:1;10157:9;10153:17;10140:31;10198:18;10190:6;10187:30;10184:117;;;10220:79;;:::i;:::-;10184:117;10333:65;10390:7;10381:6;10370:9;10366:22;10333:65;:::i;:::-;10315:83;;;;10111:297;9886:529;;;;;:::o;10421:329::-;10480:6;10529:2;10517:9;10508:7;10504:23;10500:32;10497:119;;;10535:79;;:::i;:::-;10497:119;10655:1;10680:53;10725:7;10716:6;10705:9;10701:22;10680:53;:::i;:::-;10670:63;;10626:117;10421:329;;;;:::o;10756:619::-;10833:6;10841;10849;10898:2;10886:9;10877:7;10873:23;10869:32;10866:119;;;10904:79;;:::i;:::-;10866:119;11024:1;11049:53;11094:7;11085:6;11074:9;11070:22;11049:53;:::i;:::-;11039:63;;10995:117;11151:2;11177:53;11222:7;11213:6;11202:9;11198:22;11177:53;:::i;:::-;11167:63;;11122:118;11279:2;11305:53;11350:7;11341:6;11330:9;11326:22;11305:53;:::i;:::-;11295:63;;11250:118;10756:619;;;;;:::o;11381:118::-;11468:24;11486:5;11468:24;:::i;:::-;11463:3;11456:37;11381:118;;:::o;11505:109::-;11586:21;11601:5;11586:21;:::i;:::-;11581:3;11574:34;11505:109;;:::o;11620:360::-;11706:3;11734:38;11766:5;11734:38;:::i;:::-;11788:70;11851:6;11846:3;11788:70;:::i;:::-;11781:77;;11867:52;11912:6;11907:3;11900:4;11893:5;11889:16;11867:52;:::i;:::-;11944:29;11966:6;11944:29;:::i;:::-;11939:3;11935:39;11928:46;;11710:270;11620:360;;;;:::o;11986:364::-;12074:3;12102:39;12135:5;12102:39;:::i;:::-;12157:71;12221:6;12216:3;12157:71;:::i;:::-;12150:78;;12237:52;12282:6;12277:3;12270:4;12263:5;12259:16;12237:52;:::i;:::-;12314:29;12336:6;12314:29;:::i;:::-;12309:3;12305:39;12298:46;;12078:272;11986:364;;;;:::o;12356:377::-;12462:3;12490:39;12523:5;12490:39;:::i;:::-;12545:89;12627:6;12622:3;12545:89;:::i;:::-;12538:96;;12643:52;12688:6;12683:3;12676:4;12669:5;12665:16;12643:52;:::i;:::-;12720:6;12715:3;12711:16;12704:23;;12466:267;12356:377;;;;:::o;12739:366::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:::-;16229:3;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16326:93;16415:3;16326:93;:::i;:::-;16444:2;16439:3;16435:12;16428:19;;16087:366;;;:::o;16459:::-;16601:3;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16698:93;16787:3;16698:93;:::i;:::-;16816:2;16811:3;16807:12;16800:19;;16459:366;;;:::o;16831:::-;16973:3;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17070:93;17159:3;17070:93;:::i;:::-;17188:2;17183:3;17179:12;17172:19;;16831:366;;;:::o;17203:::-;17345:3;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17442:93;17531:3;17442:93;:::i;:::-;17560:2;17555:3;17551:12;17544:19;;17203:366;;;:::o;17575:::-;17717:3;17738:67;17802:2;17797:3;17738:67;:::i;:::-;17731:74;;17814:93;17903:3;17814:93;:::i;:::-;17932:2;17927:3;17923:12;17916:19;;17575:366;;;:::o;17947:::-;18089:3;18110:67;18174:2;18169:3;18110:67;:::i;:::-;18103:74;;18186:93;18275:3;18186:93;:::i;:::-;18304:2;18299:3;18295:12;18288:19;;17947:366;;;:::o;18319:::-;18461:3;18482:67;18546:2;18541:3;18482:67;:::i;:::-;18475:74;;18558:93;18647:3;18558:93;:::i;:::-;18676:2;18671:3;18667:12;18660:19;;18319:366;;;:::o;18691:::-;18833:3;18854:67;18918:2;18913:3;18854:67;:::i;:::-;18847:74;;18930:93;19019:3;18930:93;:::i;:::-;19048:2;19043:3;19039:12;19032:19;;18691:366;;;:::o;19063:::-;19205:3;19226:67;19290:2;19285:3;19226:67;:::i;:::-;19219:74;;19302:93;19391:3;19302:93;:::i;:::-;19420:2;19415:3;19411:12;19404:19;;19063:366;;;:::o;19435:::-;19577:3;19598:67;19662:2;19657:3;19598:67;:::i;:::-;19591:74;;19674:93;19763:3;19674:93;:::i;:::-;19792:2;19787:3;19783:12;19776:19;;19435:366;;;:::o;19807:::-;19949:3;19970:67;20034:2;20029:3;19970:67;:::i;:::-;19963:74;;20046:93;20135:3;20046:93;:::i;:::-;20164:2;20159:3;20155:12;20148:19;;19807:366;;;:::o;20179:::-;20321:3;20342:67;20406:2;20401:3;20342:67;:::i;:::-;20335:74;;20418:93;20507:3;20418:93;:::i;:::-;20536:2;20531:3;20527:12;20520:19;;20179:366;;;:::o;20551:::-;20693:3;20714:67;20778:2;20773:3;20714:67;:::i;:::-;20707:74;;20790:93;20879:3;20790:93;:::i;:::-;20908:2;20903:3;20899:12;20892:19;;20551:366;;;:::o;20923:::-;21065:3;21086:67;21150:2;21145:3;21086:67;:::i;:::-;21079:74;;21162:93;21251:3;21162:93;:::i;:::-;21280:2;21275:3;21271:12;21264:19;;20923:366;;;:::o;21295:398::-;21454:3;21475:83;21556:1;21551:3;21475:83;:::i;:::-;21468:90;;21567:93;21656:3;21567:93;:::i;:::-;21685:1;21680:3;21676:11;21669:18;;21295:398;;;:::o;21699:366::-;21841:3;21862:67;21926:2;21921:3;21862:67;:::i;:::-;21855:74;;21938:93;22027:3;21938:93;:::i;:::-;22056:2;22051:3;22047:12;22040:19;;21699:366;;;:::o;22071:::-;22213:3;22234:67;22298:2;22293:3;22234:67;:::i;:::-;22227:74;;22310:93;22399:3;22310:93;:::i;:::-;22428:2;22423:3;22419:12;22412:19;;22071:366;;;:::o;22443:::-;22585:3;22606:67;22670:2;22665:3;22606:67;:::i;:::-;22599:74;;22682:93;22771:3;22682:93;:::i;:::-;22800:2;22795:3;22791:12;22784:19;;22443:366;;;:::o;22815:::-;22957:3;22978:67;23042:2;23037:3;22978:67;:::i;:::-;22971:74;;23054:93;23143:3;23054:93;:::i;:::-;23172:2;23167:3;23163:12;23156:19;;22815:366;;;:::o;23187:::-;23329:3;23350:67;23414:2;23409:3;23350:67;:::i;:::-;23343:74;;23426:93;23515:3;23426:93;:::i;:::-;23544:2;23539:3;23535:12;23528:19;;23187:366;;;:::o;23559:::-;23701:3;23722:67;23786:2;23781:3;23722:67;:::i;:::-;23715:74;;23798:93;23887:3;23798:93;:::i;:::-;23916:2;23911:3;23907:12;23900:19;;23559:366;;;:::o;23931:::-;24073:3;24094:67;24158:2;24153:3;24094:67;:::i;:::-;24087:74;;24170:93;24259:3;24170:93;:::i;:::-;24288:2;24283:3;24279:12;24272:19;;23931:366;;;:::o;24303:::-;24445:3;24466:67;24530:2;24525:3;24466:67;:::i;:::-;24459:74;;24542:93;24631:3;24542:93;:::i;:::-;24660:2;24655:3;24651:12;24644:19;;24303:366;;;:::o;24675:::-;24817:3;24838:67;24902:2;24897:3;24838:67;:::i;:::-;24831:74;;24914:93;25003:3;24914:93;:::i;:::-;25032:2;25027:3;25023:12;25016:19;;24675:366;;;:::o;25047:::-;25189:3;25210:67;25274:2;25269:3;25210:67;:::i;:::-;25203:74;;25286:93;25375:3;25286:93;:::i;:::-;25404:2;25399:3;25395:12;25388:19;;25047:366;;;:::o;25419:::-;25561:3;25582:67;25646:2;25641:3;25582:67;:::i;:::-;25575:74;;25658:93;25747:3;25658:93;:::i;:::-;25776:2;25771:3;25767:12;25760:19;;25419:366;;;:::o;25791:::-;25933:3;25954:67;26018:2;26013:3;25954:67;:::i;:::-;25947:74;;26030:93;26119:3;26030:93;:::i;:::-;26148:2;26143:3;26139:12;26132:19;;25791:366;;;:::o;26163:118::-;26250:24;26268:5;26250:24;:::i;:::-;26245:3;26238:37;26163:118;;:::o;26287:115::-;26372:23;26389:5;26372:23;:::i;:::-;26367:3;26360:36;26287:115;;:::o;26408:435::-;26588:3;26610:95;26701:3;26692:6;26610:95;:::i;:::-;26603:102;;26722:95;26813:3;26804:6;26722:95;:::i;:::-;26715:102;;26834:3;26827:10;;26408:435;;;;;:::o;26849:379::-;27033:3;27055:147;27198:3;27055:147;:::i;:::-;27048:154;;27219:3;27212:10;;26849:379;;;:::o;27234:222::-;27327:4;27365:2;27354:9;27350:18;27342:26;;27378:71;27446:1;27435:9;27431:17;27422:6;27378:71;:::i;:::-;27234:222;;;;:::o;27462:640::-;27657:4;27695:3;27684:9;27680:19;27672:27;;27709:71;27777:1;27766:9;27762:17;27753:6;27709:71;:::i;:::-;27790:72;27858:2;27847:9;27843:18;27834:6;27790:72;:::i;:::-;27872;27940:2;27929:9;27925:18;27916:6;27872:72;:::i;:::-;27991:9;27985:4;27981:20;27976:2;27965:9;27961:18;27954:48;28019:76;28090:4;28081:6;28019:76;:::i;:::-;28011:84;;27462:640;;;;;;;:::o;28108:328::-;28227:4;28265:2;28254:9;28250:18;28242:26;;28278:71;28346:1;28335:9;28331:17;28322:6;28278:71;:::i;:::-;28359:70;28425:2;28414:9;28410:18;28401:6;28359:70;:::i;:::-;28108:328;;;;;:::o;28442:210::-;28529:4;28567:2;28556:9;28552:18;28544:26;;28580:65;28642:1;28631:9;28627:17;28618:6;28580:65;:::i;:::-;28442:210;;;;:::o;28658:313::-;28771:4;28809:2;28798:9;28794:18;28786:26;;28858:9;28852:4;28848:20;28844:1;28833:9;28829:17;28822:47;28886:78;28959:4;28950:6;28886:78;:::i;:::-;28878:86;;28658:313;;;;:::o;28977:419::-;29143:4;29181:2;29170:9;29166:18;29158:26;;29230:9;29224:4;29220:20;29216:1;29205:9;29201:17;29194:47;29258:131;29384:4;29258:131;:::i;:::-;29250:139;;28977:419;;;:::o;29402:::-;29568:4;29606:2;29595:9;29591:18;29583:26;;29655:9;29649:4;29645:20;29641:1;29630:9;29626:17;29619:47;29683:131;29809:4;29683:131;:::i;:::-;29675:139;;29402:419;;;:::o;29827:::-;29993:4;30031:2;30020:9;30016:18;30008:26;;30080:9;30074:4;30070:20;30066:1;30055:9;30051:17;30044:47;30108:131;30234:4;30108:131;:::i;:::-;30100:139;;29827:419;;;:::o;30252:::-;30418:4;30456:2;30445:9;30441:18;30433:26;;30505:9;30499:4;30495:20;30491:1;30480:9;30476:17;30469:47;30533:131;30659:4;30533:131;:::i;:::-;30525:139;;30252:419;;;:::o;30677:::-;30843:4;30881:2;30870:9;30866:18;30858:26;;30930:9;30924:4;30920:20;30916:1;30905:9;30901:17;30894:47;30958:131;31084:4;30958:131;:::i;:::-;30950:139;;30677:419;;;:::o;31102:::-;31268:4;31306:2;31295:9;31291:18;31283:26;;31355:9;31349:4;31345:20;31341:1;31330:9;31326:17;31319:47;31383:131;31509:4;31383:131;:::i;:::-;31375:139;;31102:419;;;:::o;31527:::-;31693:4;31731:2;31720:9;31716:18;31708:26;;31780:9;31774:4;31770:20;31766:1;31755:9;31751:17;31744:47;31808:131;31934:4;31808:131;:::i;:::-;31800:139;;31527:419;;;:::o;31952:::-;32118:4;32156:2;32145:9;32141:18;32133:26;;32205:9;32199:4;32195:20;32191:1;32180:9;32176:17;32169:47;32233:131;32359:4;32233:131;:::i;:::-;32225:139;;31952:419;;;:::o;32377:::-;32543:4;32581:2;32570:9;32566:18;32558:26;;32630:9;32624:4;32620:20;32616:1;32605:9;32601:17;32594:47;32658:131;32784:4;32658:131;:::i;:::-;32650:139;;32377:419;;;:::o;32802:::-;32968:4;33006:2;32995:9;32991:18;32983:26;;33055:9;33049:4;33045:20;33041:1;33030:9;33026:17;33019:47;33083:131;33209:4;33083:131;:::i;:::-;33075:139;;32802:419;;;:::o;33227:::-;33393:4;33431:2;33420:9;33416:18;33408:26;;33480:9;33474:4;33470:20;33466:1;33455:9;33451:17;33444:47;33508:131;33634:4;33508:131;:::i;:::-;33500:139;;33227:419;;;:::o;33652:::-;33818:4;33856:2;33845:9;33841:18;33833:26;;33905:9;33899:4;33895:20;33891:1;33880:9;33876:17;33869:47;33933:131;34059:4;33933:131;:::i;:::-;33925:139;;33652:419;;;:::o;34077:::-;34243:4;34281:2;34270:9;34266:18;34258:26;;34330:9;34324:4;34320:20;34316:1;34305:9;34301:17;34294:47;34358:131;34484:4;34358:131;:::i;:::-;34350:139;;34077:419;;;:::o;34502:::-;34668:4;34706:2;34695:9;34691:18;34683:26;;34755:9;34749:4;34745:20;34741:1;34730:9;34726:17;34719:47;34783:131;34909:4;34783:131;:::i;:::-;34775:139;;34502:419;;;:::o;34927:::-;35093:4;35131:2;35120:9;35116:18;35108:26;;35180:9;35174:4;35170:20;35166:1;35155:9;35151:17;35144:47;35208:131;35334:4;35208:131;:::i;:::-;35200:139;;34927:419;;;:::o;35352:::-;35518:4;35556:2;35545:9;35541:18;35533:26;;35605:9;35599:4;35595:20;35591:1;35580:9;35576:17;35569:47;35633:131;35759:4;35633:131;:::i;:::-;35625:139;;35352:419;;;:::o;35777:::-;35943:4;35981:2;35970:9;35966:18;35958:26;;36030:9;36024:4;36020:20;36016:1;36005:9;36001:17;35994:47;36058:131;36184:4;36058:131;:::i;:::-;36050:139;;35777:419;;;:::o;36202:::-;36368:4;36406:2;36395:9;36391:18;36383:26;;36455:9;36449:4;36445:20;36441:1;36430:9;36426:17;36419:47;36483:131;36609:4;36483:131;:::i;:::-;36475:139;;36202:419;;;:::o;36627:::-;36793:4;36831:2;36820:9;36816:18;36808:26;;36880:9;36874:4;36870:20;36866:1;36855:9;36851:17;36844:47;36908:131;37034:4;36908:131;:::i;:::-;36900:139;;36627:419;;;:::o;37052:::-;37218:4;37256:2;37245:9;37241:18;37233:26;;37305:9;37299:4;37295:20;37291:1;37280:9;37276:17;37269:47;37333:131;37459:4;37333:131;:::i;:::-;37325:139;;37052:419;;;:::o;37477:::-;37643:4;37681:2;37670:9;37666:18;37658:26;;37730:9;37724:4;37720:20;37716:1;37705:9;37701:17;37694:47;37758:131;37884:4;37758:131;:::i;:::-;37750:139;;37477:419;;;:::o;37902:::-;38068:4;38106:2;38095:9;38091:18;38083:26;;38155:9;38149:4;38145:20;38141:1;38130:9;38126:17;38119:47;38183:131;38309:4;38183:131;:::i;:::-;38175:139;;37902:419;;;:::o;38327:::-;38493:4;38531:2;38520:9;38516:18;38508:26;;38580:9;38574:4;38570:20;38566:1;38555:9;38551:17;38544:47;38608:131;38734:4;38608:131;:::i;:::-;38600:139;;38327:419;;;:::o;38752:::-;38918:4;38956:2;38945:9;38941:18;38933:26;;39005:9;38999:4;38995:20;38991:1;38980:9;38976:17;38969:47;39033:131;39159:4;39033:131;:::i;:::-;39025:139;;38752:419;;;:::o;39177:::-;39343:4;39381:2;39370:9;39366:18;39358:26;;39430:9;39424:4;39420:20;39416:1;39405:9;39401:17;39394:47;39458:131;39584:4;39458:131;:::i;:::-;39450:139;;39177:419;;;:::o;39602:::-;39768:4;39806:2;39795:9;39791:18;39783:26;;39855:9;39849:4;39845:20;39841:1;39830:9;39826:17;39819:47;39883:131;40009:4;39883:131;:::i;:::-;39875:139;;39602:419;;;:::o;40027:::-;40193:4;40231:2;40220:9;40216:18;40208:26;;40280:9;40274:4;40270:20;40266:1;40255:9;40251:17;40244:47;40308:131;40434:4;40308:131;:::i;:::-;40300:139;;40027:419;;;:::o;40452:::-;40618:4;40656:2;40645:9;40641:18;40633:26;;40705:9;40699:4;40695:20;40691:1;40680:9;40676:17;40669:47;40733:131;40859:4;40733:131;:::i;:::-;40725:139;;40452:419;;;:::o;40877:::-;41043:4;41081:2;41070:9;41066:18;41058:26;;41130:9;41124:4;41120:20;41116:1;41105:9;41101:17;41094:47;41158:131;41284:4;41158:131;:::i;:::-;41150:139;;40877:419;;;:::o;41302:::-;41468:4;41506:2;41495:9;41491:18;41483:26;;41555:9;41549:4;41545:20;41541:1;41530:9;41526:17;41519:47;41583:131;41709:4;41583:131;:::i;:::-;41575:139;;41302:419;;;:::o;41727:::-;41893:4;41931:2;41920:9;41916:18;41908:26;;41980:9;41974:4;41970:20;41966:1;41955:9;41951:17;41944:47;42008:131;42134:4;42008:131;:::i;:::-;42000:139;;41727:419;;;:::o;42152:::-;42318:4;42356:2;42345:9;42341:18;42333:26;;42405:9;42399:4;42395:20;42391:1;42380:9;42376:17;42369:47;42433:131;42559:4;42433:131;:::i;:::-;42425:139;;42152:419;;;:::o;42577:::-;42743:4;42781:2;42770:9;42766:18;42758:26;;42830:9;42824:4;42820:20;42816:1;42805:9;42801:17;42794:47;42858:131;42984:4;42858:131;:::i;:::-;42850:139;;42577:419;;;:::o;43002:::-;43168:4;43206:2;43195:9;43191:18;43183:26;;43255:9;43249:4;43245:20;43241:1;43230:9;43226:17;43219:47;43283:131;43409:4;43283:131;:::i;:::-;43275:139;;43002:419;;;:::o;43427:::-;43593:4;43631:2;43620:9;43616:18;43608:26;;43680:9;43674:4;43670:20;43666:1;43655:9;43651:17;43644:47;43708:131;43834:4;43708:131;:::i;:::-;43700:139;;43427:419;;;:::o;43852:222::-;43945:4;43983:2;43972:9;43968:18;43960:26;;43996:71;44064:1;44053:9;44049:17;44040:6;43996:71;:::i;:::-;43852:222;;;;:::o;44080:850::-;44323:4;44361:3;44350:9;44346:19;44338:27;;44375:71;44443:1;44432:9;44428:17;44419:6;44375:71;:::i;:::-;44456:66;44518:2;44507:9;44503:18;44494:6;44456:66;:::i;:::-;44532:72;44600:2;44589:9;44585:18;44576:6;44532:72;:::i;:::-;44614:66;44676:2;44665:9;44661:18;44652:6;44614:66;:::i;:::-;44690:73;44758:3;44747:9;44743:19;44734:6;44690:73;:::i;:::-;44773:67;44835:3;44824:9;44820:19;44811:6;44773:67;:::i;:::-;44850:73;44918:3;44907:9;44903:19;44894:6;44850:73;:::i;:::-;44080:850;;;;;;;;;;:::o;44936:129::-;44970:6;44997:20;;:::i;:::-;44987:30;;45026:33;45054:4;45046:6;45026:33;:::i;:::-;44936:129;;;:::o;45071:75::-;45104:6;45137:2;45131:9;45121:19;;45071:75;:::o;45152:311::-;45229:4;45319:18;45311:6;45308:30;45305:56;;;45341:18;;:::i;:::-;45305:56;45391:4;45383:6;45379:17;45371:25;;45451:4;45445;45441:15;45433:23;;45152:311;;;:::o;45469:::-;45546:4;45636:18;45628:6;45625:30;45622:56;;;45658:18;;:::i;:::-;45622:56;45708:4;45700:6;45696:17;45688:25;;45768:4;45762;45758:15;45750:23;;45469:311;;;:::o;45786:307::-;45847:4;45937:18;45929:6;45926:30;45923:56;;;45959:18;;:::i;:::-;45923:56;45997:29;46019:6;45997:29;:::i;:::-;45989:37;;46081:4;46075;46071:15;46063:23;;45786:307;;;:::o;46099:98::-;46150:6;46184:5;46178:12;46168:22;;46099:98;;;:::o;46203:99::-;46255:6;46289:5;46283:12;46273:22;;46203:99;;;:::o;46308:168::-;46391:11;46425:6;46420:3;46413:19;46465:4;46460:3;46456:14;46441:29;;46308:168;;;;:::o;46482:147::-;46583:11;46620:3;46605:18;;46482:147;;;;:::o;46635:169::-;46719:11;46753:6;46748:3;46741:19;46793:4;46788:3;46784:14;46769:29;;46635:169;;;;:::o;46810:148::-;46912:11;46949:3;46934:18;;46810:148;;;;:::o;46964:273::-;47004:3;47023:20;47041:1;47023:20;:::i;:::-;47018:25;;47057:20;47075:1;47057:20;:::i;:::-;47052:25;;47179:1;47143:34;47139:42;47136:1;47133:49;47130:75;;;47185:18;;:::i;:::-;47130:75;47229:1;47226;47222:9;47215:16;;46964:273;;;;:::o;47243:305::-;47283:3;47302:20;47320:1;47302:20;:::i;:::-;47297:25;;47336:20;47354:1;47336:20;:::i;:::-;47331:25;;47490:1;47422:66;47418:74;47415:1;47412:81;47409:107;;;47496:18;;:::i;:::-;47409:107;47540:1;47537;47533:9;47526:16;;47243:305;;;;:::o;47554:185::-;47594:1;47611:20;47629:1;47611:20;:::i;:::-;47606:25;;47645:20;47663:1;47645:20;:::i;:::-;47640:25;;47684:1;47674:35;;47689:18;;:::i;:::-;47674:35;47731:1;47728;47724:9;47719:14;;47554:185;;;;:::o;47745:348::-;47785:7;47808:20;47826:1;47808:20;:::i;:::-;47803:25;;47842:20;47860:1;47842:20;:::i;:::-;47837:25;;48030:1;47962:66;47958:74;47955:1;47952:81;47947:1;47940:9;47933:17;47929:105;47926:131;;;48037:18;;:::i;:::-;47926:131;48085:1;48082;48078:9;48067:20;;47745:348;;;;:::o;48099:191::-;48139:4;48159:20;48177:1;48159:20;:::i;:::-;48154:25;;48193:20;48211:1;48193:20;:::i;:::-;48188:25;;48232:1;48229;48226:8;48223:34;;;48237:18;;:::i;:::-;48223:34;48282:1;48279;48275:9;48267:17;;48099:191;;;;:::o;48296:::-;48336:4;48356:20;48374:1;48356:20;:::i;:::-;48351:25;;48390:20;48408:1;48390:20;:::i;:::-;48385:25;;48429:1;48426;48423:8;48420:34;;;48434:18;;:::i;:::-;48420:34;48479:1;48476;48472:9;48464:17;;48296:191;;;;:::o;48493:96::-;48530:7;48559:24;48577:5;48559:24;:::i;:::-;48548:35;;48493:96;;;:::o;48595:90::-;48629:7;48672:5;48665:13;48658:21;48647:32;;48595:90;;;:::o;48691:149::-;48727:7;48767:66;48760:5;48756:78;48745:89;;48691:149;;;:::o;48846:118::-;48883:7;48923:34;48916:5;48912:46;48901:57;;48846:118;;;:::o;48970:126::-;49007:7;49047:42;49040:5;49036:54;49025:65;;48970:126;;;:::o;49102:77::-;49139:7;49168:5;49157:16;;49102:77;;;:::o;49185:101::-;49221:7;49261:18;49254:5;49250:30;49239:41;;49185:101;;;:::o;49292:154::-;49376:6;49371:3;49366;49353:30;49438:1;49429:6;49424:3;49420:16;49413:27;49292:154;;;:::o;49452:307::-;49520:1;49530:113;49544:6;49541:1;49538:13;49530:113;;;49629:1;49624:3;49620:11;49614:18;49610:1;49605:3;49601:11;49594:39;49566:2;49563:1;49559:10;49554:15;;49530:113;;;49661:6;49658:1;49655:13;49652:101;;;49741:1;49732:6;49727:3;49723:16;49716:27;49652:101;49501:258;49452:307;;;:::o;49765:171::-;49804:3;49827:24;49845:5;49827:24;:::i;:::-;49818:33;;49873:4;49866:5;49863:15;49860:41;;;49881:18;;:::i;:::-;49860:41;49928:1;49921:5;49917:13;49910:20;;49765:171;;;:::o;49942:320::-;49986:6;50023:1;50017:4;50013:12;50003:22;;50070:1;50064:4;50060:12;50091:18;50081:81;;50147:4;50139:6;50135:17;50125:27;;50081:81;50209:2;50201:6;50198:14;50178:18;50175:38;50172:84;;;50228:18;;:::i;:::-;50172:84;49993:269;49942:320;;;:::o;50268:281::-;50351:27;50373:4;50351:27;:::i;:::-;50343:6;50339:40;50481:6;50469:10;50466:22;50445:18;50433:10;50430:34;50427:62;50424:88;;;50492:18;;:::i;:::-;50424:88;50532:10;50528:2;50521:22;50311:238;50268:281;;:::o;50555:233::-;50594:3;50617:24;50635:5;50617:24;:::i;:::-;50608:33;;50663:66;50656:5;50653:77;50650:103;;;50733:18;;:::i;:::-;50650:103;50780:1;50773:5;50769:13;50762:20;;50555:233;;;:::o;50794:176::-;50826:1;50843:20;50861:1;50843:20;:::i;:::-;50838:25;;50877:20;50895:1;50877:20;:::i;:::-;50872:25;;50916:1;50906:35;;50921:18;;:::i;:::-;50906:35;50962:1;50959;50955:9;50950:14;;50794:176;;;;:::o;50976:180::-;51024:77;51021:1;51014:88;51121:4;51118:1;51111:15;51145:4;51142:1;51135:15;51162:180;51210:77;51207:1;51200:88;51307:4;51304:1;51297:15;51331:4;51328:1;51321:15;51348:180;51396:77;51393:1;51386:88;51493:4;51490:1;51483:15;51517:4;51514:1;51507:15;51534:180;51582:77;51579:1;51572:88;51679:4;51676:1;51669:15;51703:4;51700:1;51693:15;51720:180;51768:77;51765:1;51758:88;51865:4;51862:1;51855:15;51889:4;51886:1;51879:15;51906:117;52015:1;52012;52005:12;52029:117;52138:1;52135;52128:12;52152:117;52261:1;52258;52251:12;52275:117;52384:1;52381;52374:12;52398:117;52507:1;52504;52497:12;52521:117;52630:1;52627;52620:12;52644:102;52685:6;52736:2;52732:7;52727:2;52720:5;52716:14;52712:28;52702:38;;52644:102;;;:::o;52752:221::-;52892:34;52888:1;52880:6;52876:14;52869:58;52961:4;52956:2;52948:6;52944:15;52937:29;52752:221;:::o;52979:171::-;53119:23;53115:1;53107:6;53103:14;53096:47;52979:171;:::o;53156:225::-;53296:34;53292:1;53284:6;53280:14;53273:58;53365:8;53360:2;53352:6;53348:15;53341:33;53156:225;:::o;53387:229::-;53527:34;53523:1;53515:6;53511:14;53504:58;53596:12;53591:2;53583:6;53579:15;53572:37;53387:229;:::o;53622:175::-;53762:27;53758:1;53750:6;53746:14;53739:51;53622:175;:::o;53803:230::-;53943:34;53939:1;53931:6;53927:14;53920:58;54012:13;54007:2;53999:6;53995:15;53988:38;53803:230;:::o;54039:222::-;54179:34;54175:1;54167:6;54163:14;54156:58;54248:5;54243:2;54235:6;54231:15;54224:30;54039:222;:::o;54267:224::-;54407:34;54403:1;54395:6;54391:14;54384:58;54476:7;54471:2;54463:6;54459:15;54452:32;54267:224;:::o;54497:236::-;54637:34;54633:1;54625:6;54621:14;54614:58;54706:19;54701:2;54693:6;54689:15;54682:44;54497:236;:::o;54739:177::-;54879:29;54875:1;54867:6;54863:14;54856:53;54739:177;:::o;54922:180::-;55062:32;55058:1;55050:6;55046:14;55039:56;54922:180;:::o;55108:244::-;55248:34;55244:1;55236:6;55232:14;55225:58;55317:27;55312:2;55304:6;55300:15;55293:52;55108:244;:::o;55358:174::-;55498:26;55494:1;55486:6;55482:14;55475:50;55358:174;:::o;55538:230::-;55678:34;55674:1;55666:6;55662:14;55655:58;55747:13;55742:2;55734:6;55730:15;55723:38;55538:230;:::o;55774:::-;55914:34;55910:1;55902:6;55898:14;55891:58;55983:13;55978:2;55970:6;55966:15;55959:38;55774:230;:::o;56010:225::-;56150:34;56146:1;56138:6;56134:14;56127:58;56219:8;56214:2;56206:6;56202:15;56195:33;56010:225;:::o;56241:164::-;56381:16;56377:1;56369:6;56365:14;56358:40;56241:164;:::o;56411:182::-;56551:34;56547:1;56539:6;56535:14;56528:58;56411:182;:::o;56599:234::-;56739:34;56735:1;56727:6;56723:14;56716:58;56808:17;56803:2;56795:6;56791:15;56784:42;56599:234;:::o;56839:176::-;56979:28;56975:1;56967:6;56963:14;56956:52;56839:176;:::o;57021:237::-;57161:34;57157:1;57149:6;57145:14;57138:58;57230:20;57225:2;57217:6;57213:15;57206:45;57021:237;:::o;57264:227::-;57404:34;57400:1;57392:6;57388:14;57381:58;57473:10;57468:2;57460:6;57456:15;57449:35;57264:227;:::o;57497:221::-;57637:34;57633:1;57625:6;57621:14;57614:58;57706:4;57701:2;57693:6;57689:15;57682:29;57497:221;:::o;57724:114::-;;:::o;57844:166::-;57984:18;57980:1;57972:6;57968:14;57961:42;57844:166;:::o;58016:238::-;58156:34;58152:1;58144:6;58140:14;58133:58;58225:21;58220:2;58212:6;58208:15;58201:46;58016:238;:::o;58260:179::-;58400:31;58396:1;58388:6;58384:14;58377:55;58260:179;:::o;58445:220::-;58585:34;58581:1;58573:6;58569:14;58562:58;58654:3;58649:2;58641:6;58637:15;58630:28;58445:220;:::o;58671:170::-;58811:22;58807:1;58799:6;58795:14;58788:46;58671:170;:::o;58847:233::-;58987:34;58983:1;58975:6;58971:14;58964:58;59056:16;59051:2;59043:6;59039:15;59032:41;58847:233;:::o;59086:225::-;59226:34;59222:1;59214:6;59210:14;59203:58;59295:8;59290:2;59282:6;59278:15;59271:33;59086:225;:::o;59317:181::-;59457:33;59453:1;59445:6;59441:14;59434:57;59317:181;:::o;59504:234::-;59644:34;59640:1;59632:6;59628:14;59621:58;59713:17;59708:2;59700:6;59696:15;59689:42;59504:234;:::o;59744:171::-;59884:23;59880:1;59872:6;59868:14;59861:47;59744:171;:::o;59921:232::-;60061:34;60057:1;60049:6;60045:14;60038:58;60130:15;60125:2;60117:6;60113:15;60106:40;59921:232;:::o;60159:221::-;60299:34;60295:1;60287:6;60283:14;60276:58;60368:4;60363:2;60355:6;60351:15;60344:29;60159:221;:::o;60386:122::-;60459:24;60477:5;60459:24;:::i;:::-;60452:5;60449:35;60439:63;;60498:1;60495;60488:12;60439:63;60386:122;:::o;60514:116::-;60584:21;60599:5;60584:21;:::i;:::-;60577:5;60574:32;60564:60;;60620:1;60617;60610:12;60564:60;60514:116;:::o;60636:120::-;60708:23;60725:5;60708:23;:::i;:::-;60701:5;60698:34;60688:62;;60746:1;60743;60736:12;60688:62;60636:120;:::o;60762:122::-;60835:24;60853:5;60835:24;:::i;:::-;60828:5;60825:35;60815:63;;60874:1;60871;60864:12;60815:63;60762:122;:::o

Swarm Source

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