ETH Price: $3,397.35 (-1.48%)
Gas: 2 Gwei

Token

SoulZ Monogatari (SLZM)
 

Overview

Max Total Supply

7,777 SLZM

Holders

4,479

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SLZM
0xe6c15f59072bb11769d2e818276ba97b78ddd6fb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

3027 AD. An evil regime has taken over the known world. Everything changed when a great force was released by the attack brought upon by the New Order. Orbs of great power were dispersed across the world.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SoulZ

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

// SPDX-License-Identifier: MIT

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



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: contracts/SoulZ.sol



pragma solidity ^0.8.0;





contract SoulZ is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 private immutable amountForDevs;
  uint256 private immutable amountForAuctionAndDev;
  uint256 private immutable maxPerWhitelist;
  uint256 private immutable maxPerCollected;

  struct SaleConfig {
    uint32 auctionSaleStartTime;
    uint32 whitelistSalesTime;
    uint32 publicSaleStartTime;
    uint64 whitelistPrice;
    uint64 collectedlistPrice;
    uint64 publicPrice;
    uint32 publicSaleKey;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public whitelist;
  mapping(address => uint256) public collectedlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 collectedlistBatchSize_,
    uint256 whitelistBatchSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_

  ) ERC721A("SoulZ Monogatari", "SLZM", maxBatchSize_, collectionSize_ ) {
    maxPerAddressDuringMint = maxBatchSize_;
    maxPerWhitelist = whitelistBatchSize_;
    maxPerCollected = collectedlistBatchSize_;
    amountForAuctionAndDev = amountForAuctionAndDev_;
    amountForDevs = amountForDevs_;
    require(
      amountForAuctionAndDev_ <= collectionSize_,
      "larger collection size needed"
    );
  }

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

  function auctionMint(uint256 quantity) external payable callerIsUser {
    uint256 _saleStartTime = uint256(saleConfig.auctionSaleStartTime);
    require(
      _saleStartTime != 0 && block.timestamp >= _saleStartTime,
      "sale has not started yet"
    );
    require(
      totalSupply() + quantity <= amountForAuctionAndDev,
      "not enough remaining reserved for auction to support desired mint amount"
    );
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    uint256 totalCost = getAuctionPrice(_saleStartTime) * quantity;
    _safeMint(msg.sender, quantity);
    refundIfOver(totalCost);
  }

    function whitelistMint(uint256 quantity) external payable callerIsUser {
    uint256 price = uint256(saleConfig.whitelistPrice);
    require(price != 0, "whitelist sale has not begun yet");
    require(whitelist[msg.sender] > 0, "not eligible for whitelist mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    require(numberMinted(msg.sender) + quantity <= maxPerWhitelist,"Ascended can not mint this many");
    whitelist[msg.sender]--;
    _safeMint(msg.sender, 1);
    refundIfOver(price);
  }

    function collectedlistMint(uint256 quantity) external payable callerIsUser {
    uint256 price = uint256(saleConfig.collectedlistPrice);
    require(price != 0, "Collected sale has not begun yet");
    require(collectedlist[msg.sender] > 0, "not eligible for collected mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    require(numberMinted(msg.sender) + quantity <= maxPerCollected,"Collected can not mint this many");
    collectedlist[msg.sender]--;
    _safeMint(msg.sender, 1);
    refundIfOver(price);
  }

  function publicSaleMint(uint256 quantity, uint256 callerPublicSaleKey)
    external
    payable
    callerIsUser
  {
    SaleConfig memory config = saleConfig;
    uint256 publicSaleKey = uint256(config.publicSaleKey);
    uint256 publicPrice = uint256(config.publicPrice);
    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
    require(
      publicSaleKey == callerPublicSaleKey,
      "called with incorrect public sale key"
    );

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

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

  function isPublicSaleOn(
    uint256 publicPriceWei,
    uint256 publicSaleKey,
    uint256 publicSaleStartTime
  ) public view returns (bool) {
    return
      publicPriceWei != 0 &&
      publicSaleKey != 0 &&
      block.timestamp >= publicSaleStartTime;
  }

  uint256 public constant AUCTION_START_PRICE = 0.75 ether;
  uint256 public constant AUCTION_END_PRICE = 0.2 ether;
  uint256 public constant AUCTION_PRICE_CURVE_LENGTH = 720 minutes;
  uint256 public constant AUCTION_DROP_INTERVAL = 30 minutes;
  uint256 public constant AUCTION_DROP_PER_STEP = 0.05 ether;
  
  function getAuctionPrice(uint256 _saleStartTime)
    public
    view
    returns (uint256)
  {
    if (block.timestamp < _saleStartTime) {
      return AUCTION_START_PRICE;
    }
    if (block.timestamp - _saleStartTime >= AUCTION_PRICE_CURVE_LENGTH) {
      return AUCTION_END_PRICE;
    } else {
      uint256 steps = (block.timestamp - _saleStartTime) /
        AUCTION_DROP_INTERVAL;
      return AUCTION_START_PRICE - (steps * AUCTION_DROP_PER_STEP);
    }
  }

  function endAuctionAndSetupNonAuctionSaleInfo(
    uint64 whitelistPriceWei,
    uint64 publicPriceWei,
    uint32 whitelistSaleStartTime,
    uint32 collectedlistSaleStartTime,
    uint32 publicSaleStartTime
  ) external onlyOwner {
    saleConfig = SaleConfig(
      0,
      publicSaleStartTime,
      whitelistSaleStartTime,
      collectedlistSaleStartTime,
      whitelistPriceWei,
      publicPriceWei,
      saleConfig.publicSaleKey
    );
  }

  function setAuctionSaleStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.auctionSaleStartTime = timestamp;
  }

  function setPublicSaleKey(uint32 key) external onlyOwner {
    saleConfig.publicSaleKey = key;
  }

  function seedWhitelist(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++) {
      whitelist[addresses[i]] = numSlots[i];
    }
  }

  function seedCollectedlist(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++) {
      collectedlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;
  bool public revealed = false;

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

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

  function changeRevealed(bool _revealed) public onlyOwner {
    revealed = _revealed;
  }
  
  function tokenURI(uint256 tokenid) public view override returns (string memory) {
    require(_exists(tokenid), "ERC721Metadata: URI query for nonexistant token");

    if (revealed) {
      string memory baseURI = _baseURI();
    return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenid)) : "";
    } else {
      return string(abi.encodePacked(_baseURI(), "Hidden.json"));
    }
  }

  
    function withdrawToSender() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdraw() external onlyOwner {
        address[8] memory addresses = [
            0x2bC46E31a324AB9a208B3B0Fb91958E390DC0797,
            0x897C456868d4888c258528f8660b932804Cb6948,
            0xc0524078b6ABC601158bFc328c9A2B64Ee376e23,
            0x8FE4A152939Ece65f1fC651e57b8aA84cFc137C2,
            0x29d54F704a4253B5c3a8aE6CBDFDb01472119713,
            0x896baBEE76dBdF3F6d3b7470ad1e47e8c2016BDB,
            0xE892C48B5CdD20F50dbFdF4A949c649Aee9F24Da,
            0x24e21ae83ccB58EbAE990Cf1e014e062F6bb7B19
        ];

        uint256[8] memory shares = [
            uint256(2),
            uint256(2),
            uint256(3),
            uint256(3),
            uint256(10),
            uint256(60),
            uint256(60),
            uint256(60)
        ];

        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 200;
            payable(addresses[i]).transfer(amount);
        }
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"collectedlistBatchSize_","type":"uint256"},{"internalType":"uint256","name":"whitelistBatchSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AUCTION_DROP_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_DROP_PER_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_END_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_PRICE_CURVE_LENGTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_START_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"changeRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collectedlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"collectedlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"whitelistPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"collectedlistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"endAuctionAndSetupNonAuctionSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"getAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleKey","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"auctionSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"whitelistSalesTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"whitelistPrice","type":"uint64"},{"internalType":"uint64","name":"collectedlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedCollectedlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedWhitelist","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":"uint32","name":"timestamp","type":"uint32"}],"name":"setAuctionSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"key","type":"uint32"}],"name":"setPublicSaleKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToSender","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61016060405260006001819055600855600f805460ff191690553480156200002657600080fd5b50604051620041e0380380620041e083398101604081905262000049916200032a565b6040518060400160405280601081526020016f536f756c5a204d6f6e6f67617461726960801b81525060405180604001604052806004815260200163534c5a4d60e01b8152508787620000ab620000a56200023060201b60201c565b62000234565b60008111620001185760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017a5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200010f565b83516200018f90600290602087019062000284565b508251620001a590600390602086019062000284565b5060a0919091526080525050600160095560c086905261012083905261014084905261010082905260e081905284821115620002245760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e656564656400000060448201526064016200010f565b505050505050620003b2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002929062000375565b90600052602060002090601f016020900481019282620002b6576000855562000301565b82601f10620002d157805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000301578251825591602001919060010190620002e4565b506200030f92915062000313565b5090565b5b808211156200030f576000815560010162000314565b60008060008060008060c087890312156200034457600080fd5b865195506020870151945060408701519350606087015192506080870151915060a087015190509295509295509295565b600181811c908216806200038a57607f821691505b60208210811415620003ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051610100516101205161014051613d866200045a600039600061152e01526000611b9c0152600061169801526000610fa2015260008181610671015281816117520152612416015260008181611038015281816110c6015281816110fe01528181612e0b01528181612e35015261326d0152600081816114b601528181611b240152818161239e01528181612b680152612b9a0152613d866000f3fe60806040526004361061031e5760003560e01c8063715018a6116101a5578063a22cb465116100ec578063cf3604dc11610095578063e985e9c51161006f578063e985e9c514610953578063f20425891461099c578063f2fde38b146109bc578063f8a987d8146109dc57600080fd5b8063cf3604dc146108fd578063d7224ba01461091d578063dc33e6811461093357600080fd5b8063c87b56dd116100c6578063c87b56dd146108ae578063caf8a6d1146108ce578063cb91d8b3146108ea57600080fd5b8063a22cb4651461084e578063ab5807001461086e578063b88d4fde1461088e57600080fd5b806390aa0b0f1161014e57806395d89b411161012857806395d89b41146107ec5780639b19251a146108015780639f984fd61461082e57600080fd5b806390aa0b0f146106d1578063917d009e1461077e5780639231ab2a1461079e57600080fd5b80638bc35c2f1161017f5780638bc35c2f1461065f5780638da5cb5b1461069357806390028083146106b157600080fd5b8063715018a61461061b5780637a1c4a5614610630578063868ff4a21461064c57600080fd5b806342842e0e1161026957806355f804b3116102125780636352211e116101ec5780636352211e146105bb5780636ebc5601146105db57806370a08231146105fb57600080fd5b806355f804b31461056a57806359f369fe1461058a5780635cae01d3146105a557600080fd5b80634f6ccce7116102435780634f6ccce714610503578063518302271461052357806352c9c2091461053d57600080fd5b806342842e0e146104bd57806343070e97146104dd5780634d3554c3146104f057600080fd5b806323b872dd116102cb578063375a069a116102a5578063375a069a146104685780633ccfd60b14610488578063422030ba1461049d57600080fd5b806323b872dd146104085780632d20fb60146104285780632f745c591461044857600080fd5b8063081812fc116102fc578063081812fc14610391578063095ea7b3146103c957806318160ddd146103e957600080fd5b806301ffc9a71461032357806306fdde0314610358578063077af4301461037a575b600080fd5b34801561032f57600080fd5b5061034361033e3660046138ac565b6109f2565b60405190151581526020015b60405180910390f35b34801561036457600080fd5b5061036d610a5f565b60405161034f9190613af8565b34801561038657600080fd5b5061038f610af1565b005b34801561039d57600080fd5b506103b16103ac366004613958565b610b71565b6040516001600160a01b03909116815260200161034f565b3480156103d557600080fd5b5061038f6103e43660046137a0565b610bfc565b3480156103f557600080fd5b506001545b60405190815260200161034f565b34801561041457600080fd5b5061038f61042336600461367a565b610d14565b34801561043457600080fd5b5061038f610443366004613958565b610d1f565b34801561045457600080fd5b506103fa6104633660046137a0565b610dd0565b34801561047457600080fd5b5061038f610483366004613958565b610f58565b34801561049457600080fd5b5061038f611134565b3480156104a957600080fd5b506103436104b8366004613993565b611369565b3480156104c957600080fd5b5061038f6104d836600461367a565b61138d565b61038f6104eb366004613958565b6113a8565b61038f6104fe366004613958565b6115e3565b34801561050f57600080fd5b506103fa61051e366004613958565b6117fe565b34801561052f57600080fd5b50600f546103439060ff1681565b34801561054957600080fd5b506103fa61055836600461362c565b600d6020526000908152604090205481565b34801561057657600080fd5b5061038f6105853660046138e6565b611867565b34801561059657600080fd5b506103fa66b1a2bc2ec5000081565b3480156105b157600080fd5b506103fa61070881565b3480156105c757600080fd5b506103b16105d6366004613958565b6118bb565b3480156105e757600080fd5b5061038f6105f63660046139bf565b6118cd565b34801561060757600080fd5b506103fa61061636600461362c565b611931565b34801561062757600080fd5b5061038f6119c2565b34801561063c57600080fd5b506103fa670a688906bd8b000081565b61038f61065a366004613958565b611a16565b34801561066b57600080fd5b506103fa7f000000000000000000000000000000000000000000000000000000000000000081565b34801561069f57600080fd5b506000546001600160a01b03166103b1565b3480156106bd57600080fd5b5061038f6106cc3660046139bf565b611c38565b3480156106dd57600080fd5b50600a54600b5461072f9163ffffffff808216926401000000008304821692600160401b80820484169367ffffffffffffffff600160601b8404811694600160a01b9094048116939081169290041687565b6040805163ffffffff988916815296881660208801529487169486019490945267ffffffffffffffff928316606086015290821660808501521660a083015290911660c082015260e00161034f565b34801561078a57600080fd5b506103fa610799366004613958565b611cab565b3480156107aa57600080fd5b506107be6107b9366004613958565b611d2f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161034f565b3480156107f857600080fd5b5061036d611d4c565b34801561080d57600080fd5b506103fa61081c36600461362c565b600c6020526000908152604090205481565b34801561083a57600080fd5b5061038f6108493660046139da565b611d5b565b34801561085a57600080fd5b5061038f610869366004613776565b611eb0565b34801561087a57600080fd5b5061038f6108893660046137ca565b611f75565b34801561089a57600080fd5b5061038f6108a93660046136b6565b61209a565b3480156108ba57600080fd5b5061036d6108c9366004613958565b612119565b3480156108da57600080fd5b506103fa6702c68af0bb14000081565b61038f6108f8366004613971565b612224565b34801561090957600080fd5b5061038f610918366004613891565b6124bb565b34801561092957600080fd5b506103fa60085481565b34801561093f57600080fd5b506103fa61094e36600461362c565b612516565b34801561095f57600080fd5b5061034361096e366004613647565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109a857600080fd5b5061038f6109b73660046137ca565b612521565b3480156109c857600080fd5b5061038f6109d736600461362c565b612646565b3480156109e857600080fd5b506103fa61a8c081565b60006001600160e01b031982166380ac58cd60e01b1480610a2357506001600160e01b03198216635b5e139f60e01b145b80610a3e57506001600160e01b0319821663780e9d6360e01b145b80610a5957506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a6e90613c58565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a90613c58565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000546001600160a01b03163314610b3e5760405162461bcd60e51b81526020600482018190526024820152600080516020613d3183398151915260448201526064015b60405180910390fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b5050565b6000610b7e826001541190565b610be05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b35565b506000908152600660205260409020546001600160a01b031690565b6000610c07826118bb565b9050806001600160a01b0316836001600160a01b03161415610c765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b35565b336001600160a01b0382161480610c925750610c92813361096e565b610d045760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b35565b610d0f8383836126ff565b505050565b610d0f838383612768565b6000546001600160a01b03163314610d675760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b60026009541415610dba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b35565b6002600955610dc881612af7565b506001600955565b6000610ddb83611931565b8210610e345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b35565b6000610e3f60015490565b905060008060005b83811015610ee9576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610e9a57805192505b876001600160a01b0316836001600160a01b03161415610ed65786841415610ec857509350610a5992505050565b83610ed281613c93565b9450505b5080610ee181613c93565b915050610e47565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b35565b6000546001600160a01b03163314610fa05760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b7f000000000000000000000000000000000000000000000000000000000000000081610fcb60015490565b610fd59190613b8b565b11156110335760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610b35565b61105d7f000000000000000000000000000000000000000000000000000000000000000082613cae565b156110bf5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610b35565b60006110eb7f000000000000000000000000000000000000000000000000000000000000000083613ba3565b905060005b81811015610d0f57611122337f0000000000000000000000000000000000000000000000000000000000000000612ce1565b8061112c81613c93565b9150506110f0565b6000546001600160a01b0316331461117c5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b604080516101008082018352732bc46e31a324ab9a208b3b0fb91958e390dc0797825273897c456868d4888c258528f8660b932804cb694860208084019190915273c0524078b6abc601158bfc328c9a2b64ee376e2383850152738fe4a152939ece65f1fc651e57b8aa84cfc137c26060808501919091527329d54f704a4253b5c3a8ae6cbdfdb0147211971360808086019190915273896babee76dbdf3f6d3b7470ad1e47e8c2016bdb60a08087019190915273e892c48b5cdd20f50dbfdf4a949c649aee9f24da60c0808801919091527324e21ae83ccb58ebae990cf1e014e062f6bb7b1960e08089019190915288519687018952600280885295870195909552600397860188905292850196909652600a90840152603c9483018590528201849052810192909252904760005b60088110156113635760006112c360016008613bfe565b82146112fb5760c88483600881106112dd576112dd613cee565b60200201516112ec9085613bb7565b6112f69190613ba3565b6112fd565b475b905084826008811061131157611311613cee565b60200201516001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505015801561134e573d6000803e3d6000fd5b5050808061135b90613c93565b9150506112ac565b50505050565b6000831580159061137957508215155b80156113855750814210155b949350505050565b610d0f8383836040518060200160405280600081525061209a565b3233146113f75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b600a54600160a01b900467ffffffffffffffff16806114585760405162461bcd60e51b815260206004820181905260248201527f436f6c6c65637465642073616c6520686173206e6f7420626567756e207965746044820152606401610b35565b336000908152600d60205260409020546114b45760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220636f6c6c6563746564206d696e74006044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000006114de60015490565b6114e9906001613b8b565b111561152c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000008261155733612516565b6115619190613b8b565b11156115af5760405162461bcd60e51b815260206004820181905260248201527f436f6c6c65637465642063616e206e6f74206d696e742074686973206d616e796044820152606401610b35565b336000908152600d602052604081208054916115ca83613c41565b91905055506115da336001612ce1565b610b6d81612cfb565b3233146116325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b600a5463ffffffff16801580159061164a5750804210155b6116965760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000000000826116c160015490565b6116cb9190613b8b565b11156117505760405162461bcd60e51b815260206004820152604860248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6064820152671d08185b5bdd5b9d60c21b608482015260a401610b35565b7f00000000000000000000000000000000000000000000000000000000000000008261177b33612516565b6117859190613b8b565b11156117d35760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610b35565b6000826117df83611cab565b6117e99190613bb7565b90506117f53384612ce1565b610d0f81612cfb565b600061180960015490565b82106118635760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b35565b5090565b6000546001600160a01b031633146118af5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b610d0f600e83836134d7565b60006118c682612d89565b5192915050565b6000546001600160a01b031633146119155760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b600a805463ffffffff191663ffffffff92909216919091179055565b60006001600160a01b03821661199d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b35565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314611a0a5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b611a146000612f41565b565b323314611a655760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b600a54600160601b900467ffffffffffffffff1680611ac65760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610b35565b336000908152600c6020526040902054611b225760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f722077686974656c697374206d696e74006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000000000611b4c60015490565b611b57906001613b8b565b1115611b9a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b35565b7f000000000000000000000000000000000000000000000000000000000000000082611bc533612516565b611bcf9190613b8b565b1115611c1d5760405162461bcd60e51b815260206004820152601f60248201527f417363656e6465642063616e206e6f74206d696e742074686973206d616e79006044820152606401610b35565b336000908152600c602052604081208054916115ca83613c41565b6000546001600160a01b03163314611c805760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b600b805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b600081421015611cc45750670a688906bd8b0000919050565b61a8c0611cd18342613bfe565b10611ce557506702c68af0bb140000919050565b6000610708611cf48442613bfe565b611cfe9190613ba3565b9050611d1166b1a2bc2ec5000082613bb7565b611d2390670a688906bd8b0000613bfe565b9392505050565b919050565b6040805180820190915260008082526020820152610a5982612d89565b606060038054610a6e90613c58565b6000546001600160a01b03163314611da35760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b6040805160e0810182526000815263ffffffff928316602082018190529483169181018290529282166060840181905267ffffffffffffffff968716608085018190529590961660a08401819052600b8054600160401b80820490951660c0909601869052600a80546bffffffffffffffffffffffff199081166401000000009099026bffffffff0000000000000000191698909817948602949094177fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b9099027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1698909817600160a01b90970296909617909155929094169091179202919091179055565b6001600160a01b038216331415611f095760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b35565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611fbd5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b805182511461201f5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610b35565b60005b8251811015610d0f5781818151811061203d5761203d613cee565b6020026020010151600c600085848151811061205b5761205b613cee565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061209290613c93565b915050612022565b6120a5848484612768565b6120b184848484612f9e565b6113635760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610b35565b6060612126826001541190565b6121985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374616e7420746f6b656e00000000000000000000000000000000006064820152608401610b35565b600f5460ff16156121f65760006121ad6130f7565b905060008151116121cd5760405180602001604052806000815250611d23565b80836040516020016121e0929190613a9a565b6040516020818303038152906040529392505050565b6121fe6130f7565b60405160200161220e9190613a6b565b6040516020818303038152906040529050919050565b3233146122735760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b6040805160e081018252600a5463ffffffff8082168352640100000000820481166020840152600160401b808304821694840185905267ffffffffffffffff600160601b840481166060860152600160a01b90930483166080850152600b5492831660a0850181905292041660c0830181905291928483146123455760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b6064820152608401610b35565b612350828483611369565b61239c5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000000000866123c760015490565b6123d19190613b8b565b11156124145760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000008661243f33612516565b6124499190613b8b565b11156124975760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610b35565b6124a13387612ce1565b6124b36124ae8784613bb7565b612cfb565b505050505050565b6000546001600160a01b031633146125035760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b600f805460ff1916911515919091179055565b6000610a5982613106565b6000546001600160a01b031633146125695760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b80518251146125cb5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610b35565b60005b8251811015610d0f578181815181106125e9576125e9613cee565b6020026020010151600d600085848151811061260757612607613cee565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061263e90613c93565b9150506125ce565b6000546001600160a01b0316331461268e5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b6001600160a01b0381166126f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b35565b6126fc81612f41565b50565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061277382612d89565b80519091506000906001600160a01b0316336001600160a01b031614806127aa57503361279f84610b71565b6001600160a01b0316145b806127bc575081516127bc903361096e565b9050806128315760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b35565b846001600160a01b031682600001516001600160a01b0316146128a55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b35565b6001600160a01b0384166129095760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b35565b61291960008484600001516126ff565b6001600160a01b038516600090815260056020526040812080546001929061294b9084906001600160801b0316613bd6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261299791859116613b60565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a1f846001613b8b565b6000818152600460205260409020549091506001600160a01b0316612ab157612a49816001541190565b15612ab15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b3565b60085481612b475760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b35565b60006001612b558484613b8b565b612b5f9190613bfe565b9050612b8c60017f0000000000000000000000000000000000000000000000000000000000000000613bfe565b811115612bc157612bbe60017f0000000000000000000000000000000000000000000000000000000000000000613bfe565b90505b612bcc816001541190565b612c275760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b35565b815b818111612ccd576000818152600460205260409020546001600160a01b0316612cbb576000612c5782612d89565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612cc581613c93565b915050612c29565b50612cd9816001613b8b565b600855505050565b610b6d8282604051806020016040528060008152506131b0565b80341015612d4b5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610b35565b803411156126fc57336108fc612d618334613bfe565b6040518115909202916000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b6040805180820190915260008082526020820152612da8826001541190565b612e075760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b35565b60007f00000000000000000000000000000000000000000000000000000000000000008310612e6857612e5a7f000000000000000000000000000000000000000000000000000000000000000084613bfe565b612e65906001613b8b565b90505b825b818110612ed2576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612ebf57949350505050565b5080612eca81613c41565b915050612e6a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610b35565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156130ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fe2903390899088908890600401613abc565b602060405180830381600087803b158015612ffc57600080fd5b505af192505050801561302c575060408051601f3d908101601f19168201909252613029918101906138c9565b60015b6130d2573d80801561305a576040519150601f19603f3d011682016040523d82523d6000602084013e61305f565b606091505b5080516130ca5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610b35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611385565b506001949350505050565b6060600e8054610a6e90613c58565b60006001600160a01b0382166131845760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610b35565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166132135760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b35565b61321e816001541190565b1561326b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000008311156132e65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b35565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613342908790613b60565b6001600160801b031681526020018583602001516133609190613b60565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156134cc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46134446000888488612f9e565b6134ac5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610b35565b816134b681613c93565b92505080806134c490613c93565b9150506133f7565b5060018190556124b3565b8280546134e390613c58565b90600052602060002090601f016020900481019282613505576000855561354b565b82601f1061351e5782800160ff1982351617855561354b565b8280016001018555821561354b579182015b8281111561354b578235825591602001919060010190613530565b506118639291505b808211156118635760008155600101613553565b80356001600160a01b0381168114611d2a57600080fd5b600082601f83011261358f57600080fd5b813560206135a461359f83613b3c565b613b0b565b80838252828201915082860187848660051b89010111156135c457600080fd5b60005b858110156135e3578135845292840192908401906001016135c7565b5090979650505050505050565b80358015158114611d2a57600080fd5b803563ffffffff81168114611d2a57600080fd5b803567ffffffffffffffff81168114611d2a57600080fd5b60006020828403121561363e57600080fd5b611d2382613567565b6000806040838503121561365a57600080fd5b61366383613567565b915061367160208401613567565b90509250929050565b60008060006060848603121561368f57600080fd5b61369884613567565b92506136a660208501613567565b9150604084013590509250925092565b600080600080608085870312156136cc57600080fd5b6136d585613567565b935060206136e4818701613567565b935060408601359250606086013567ffffffffffffffff8082111561370857600080fd5b818801915088601f83011261371c57600080fd5b81358181111561372e5761372e613d04565b613740601f8201601f19168501613b0b565b9150808252898482850101111561375657600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561378957600080fd5b61379283613567565b9150613671602084016135f0565b600080604083850312156137b357600080fd5b6137bc83613567565b946020939093013593505050565b600080604083850312156137dd57600080fd5b823567ffffffffffffffff808211156137f557600080fd5b818501915085601f83011261380957600080fd5b8135602061381961359f83613b3c565b8083825282820191508286018a848660051b890101111561383957600080fd5b600096505b848710156138635761384f81613567565b83526001969096019591830191830161383e565b509650508601359250508082111561387a57600080fd5b506138878582860161357e565b9150509250929050565b6000602082840312156138a357600080fd5b611d23826135f0565b6000602082840312156138be57600080fd5b8135611d2381613d1a565b6000602082840312156138db57600080fd5b8151611d2381613d1a565b600080602083850312156138f957600080fd5b823567ffffffffffffffff8082111561391157600080fd5b818501915085601f83011261392557600080fd5b81358181111561393457600080fd5b86602082850101111561394657600080fd5b60209290920196919550909350505050565b60006020828403121561396a57600080fd5b5035919050565b6000806040838503121561398457600080fd5b50508035926020909101359150565b6000806000606084860312156139a857600080fd5b505081359360208301359350604090920135919050565b6000602082840312156139d157600080fd5b611d2382613600565b600080600080600060a086880312156139f257600080fd5b6139fb86613614565b9450613a0960208701613614565b9350613a1760408701613600565b9250613a2560608701613600565b9150613a3360808701613600565b90509295509295909350565b60008151808452613a57816020860160208601613c15565b601f01601f19169290920160200192915050565b60008251613a7d818460208701613c15565b6a2434b23232b7173539b7b760a91b920191825250600b01919050565b60008351613aac818460208801613c15565b9190910191825250602001919050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613aee6080830184613a3f565b9695505050505050565b602081526000611d236020830184613a3f565b604051601f8201601f1916810167ffffffffffffffff81118282101715613b3457613b34613d04565b604052919050565b600067ffffffffffffffff821115613b5657613b56613d04565b5060051b60200190565b60006001600160801b03808316818516808303821115613b8257613b82613cc2565b01949350505050565b60008219821115613b9e57613b9e613cc2565b500190565b600082613bb257613bb2613cd8565b500490565b6000816000190483118215151615613bd157613bd1613cc2565b500290565b60006001600160801b0383811690831681811015613bf657613bf6613cc2565b039392505050565b600082821015613c1057613c10613cc2565b500390565b60005b83811015613c30578181015183820152602001613c18565b838111156113635750506000910152565b600081613c5057613c50613cc2565b506000190190565b600181811c90821680613c6c57607f821691505b60208210811415613c8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613ca757613ca7613cc2565b5060010190565b600082613cbd57613cbd613cd8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146126fc57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c29246348adfa9199186c8555af066554a6da68ef5400b24385ef4ff5eb195b564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000009060000000000000000000000000000000000000000000000000000000000000039

Deployed Bytecode

0x60806040526004361061031e5760003560e01c8063715018a6116101a5578063a22cb465116100ec578063cf3604dc11610095578063e985e9c51161006f578063e985e9c514610953578063f20425891461099c578063f2fde38b146109bc578063f8a987d8146109dc57600080fd5b8063cf3604dc146108fd578063d7224ba01461091d578063dc33e6811461093357600080fd5b8063c87b56dd116100c6578063c87b56dd146108ae578063caf8a6d1146108ce578063cb91d8b3146108ea57600080fd5b8063a22cb4651461084e578063ab5807001461086e578063b88d4fde1461088e57600080fd5b806390aa0b0f1161014e57806395d89b411161012857806395d89b41146107ec5780639b19251a146108015780639f984fd61461082e57600080fd5b806390aa0b0f146106d1578063917d009e1461077e5780639231ab2a1461079e57600080fd5b80638bc35c2f1161017f5780638bc35c2f1461065f5780638da5cb5b1461069357806390028083146106b157600080fd5b8063715018a61461061b5780637a1c4a5614610630578063868ff4a21461064c57600080fd5b806342842e0e1161026957806355f804b3116102125780636352211e116101ec5780636352211e146105bb5780636ebc5601146105db57806370a08231146105fb57600080fd5b806355f804b31461056a57806359f369fe1461058a5780635cae01d3146105a557600080fd5b80634f6ccce7116102435780634f6ccce714610503578063518302271461052357806352c9c2091461053d57600080fd5b806342842e0e146104bd57806343070e97146104dd5780634d3554c3146104f057600080fd5b806323b872dd116102cb578063375a069a116102a5578063375a069a146104685780633ccfd60b14610488578063422030ba1461049d57600080fd5b806323b872dd146104085780632d20fb60146104285780632f745c591461044857600080fd5b8063081812fc116102fc578063081812fc14610391578063095ea7b3146103c957806318160ddd146103e957600080fd5b806301ffc9a71461032357806306fdde0314610358578063077af4301461037a575b600080fd5b34801561032f57600080fd5b5061034361033e3660046138ac565b6109f2565b60405190151581526020015b60405180910390f35b34801561036457600080fd5b5061036d610a5f565b60405161034f9190613af8565b34801561038657600080fd5b5061038f610af1565b005b34801561039d57600080fd5b506103b16103ac366004613958565b610b71565b6040516001600160a01b03909116815260200161034f565b3480156103d557600080fd5b5061038f6103e43660046137a0565b610bfc565b3480156103f557600080fd5b506001545b60405190815260200161034f565b34801561041457600080fd5b5061038f61042336600461367a565b610d14565b34801561043457600080fd5b5061038f610443366004613958565b610d1f565b34801561045457600080fd5b506103fa6104633660046137a0565b610dd0565b34801561047457600080fd5b5061038f610483366004613958565b610f58565b34801561049457600080fd5b5061038f611134565b3480156104a957600080fd5b506103436104b8366004613993565b611369565b3480156104c957600080fd5b5061038f6104d836600461367a565b61138d565b61038f6104eb366004613958565b6113a8565b61038f6104fe366004613958565b6115e3565b34801561050f57600080fd5b506103fa61051e366004613958565b6117fe565b34801561052f57600080fd5b50600f546103439060ff1681565b34801561054957600080fd5b506103fa61055836600461362c565b600d6020526000908152604090205481565b34801561057657600080fd5b5061038f6105853660046138e6565b611867565b34801561059657600080fd5b506103fa66b1a2bc2ec5000081565b3480156105b157600080fd5b506103fa61070881565b3480156105c757600080fd5b506103b16105d6366004613958565b6118bb565b3480156105e757600080fd5b5061038f6105f63660046139bf565b6118cd565b34801561060757600080fd5b506103fa61061636600461362c565b611931565b34801561062757600080fd5b5061038f6119c2565b34801561063c57600080fd5b506103fa670a688906bd8b000081565b61038f61065a366004613958565b611a16565b34801561066b57600080fd5b506103fa7f000000000000000000000000000000000000000000000000000000000000000381565b34801561069f57600080fd5b506000546001600160a01b03166103b1565b3480156106bd57600080fd5b5061038f6106cc3660046139bf565b611c38565b3480156106dd57600080fd5b50600a54600b5461072f9163ffffffff808216926401000000008304821692600160401b80820484169367ffffffffffffffff600160601b8404811694600160a01b9094048116939081169290041687565b6040805163ffffffff988916815296881660208801529487169486019490945267ffffffffffffffff928316606086015290821660808501521660a083015290911660c082015260e00161034f565b34801561078a57600080fd5b506103fa610799366004613958565b611cab565b3480156107aa57600080fd5b506107be6107b9366004613958565b611d2f565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161034f565b3480156107f857600080fd5b5061036d611d4c565b34801561080d57600080fd5b506103fa61081c36600461362c565b600c6020526000908152604090205481565b34801561083a57600080fd5b5061038f6108493660046139da565b611d5b565b34801561085a57600080fd5b5061038f610869366004613776565b611eb0565b34801561087a57600080fd5b5061038f6108893660046137ca565b611f75565b34801561089a57600080fd5b5061038f6108a93660046136b6565b61209a565b3480156108ba57600080fd5b5061036d6108c9366004613958565b612119565b3480156108da57600080fd5b506103fa6702c68af0bb14000081565b61038f6108f8366004613971565b612224565b34801561090957600080fd5b5061038f610918366004613891565b6124bb565b34801561092957600080fd5b506103fa60085481565b34801561093f57600080fd5b506103fa61094e36600461362c565b612516565b34801561095f57600080fd5b5061034361096e366004613647565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109a857600080fd5b5061038f6109b73660046137ca565b612521565b3480156109c857600080fd5b5061038f6109d736600461362c565b612646565b3480156109e857600080fd5b506103fa61a8c081565b60006001600160e01b031982166380ac58cd60e01b1480610a2357506001600160e01b03198216635b5e139f60e01b145b80610a3e57506001600160e01b0319821663780e9d6360e01b145b80610a5957506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a6e90613c58565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a90613c58565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000546001600160a01b03163314610b3e5760405162461bcd60e51b81526020600482018190526024820152600080516020613d3183398151915260448201526064015b60405180910390fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b5050565b6000610b7e826001541190565b610be05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b35565b506000908152600660205260409020546001600160a01b031690565b6000610c07826118bb565b9050806001600160a01b0316836001600160a01b03161415610c765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b35565b336001600160a01b0382161480610c925750610c92813361096e565b610d045760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b35565b610d0f8383836126ff565b505050565b610d0f838383612768565b6000546001600160a01b03163314610d675760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b60026009541415610dba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b35565b6002600955610dc881612af7565b506001600955565b6000610ddb83611931565b8210610e345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b35565b6000610e3f60015490565b905060008060005b83811015610ee9576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610e9a57805192505b876001600160a01b0316836001600160a01b03161415610ed65786841415610ec857509350610a5992505050565b83610ed281613c93565b9450505b5080610ee181613c93565b915050610e47565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b35565b6000546001600160a01b03163314610fa05760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b7f000000000000000000000000000000000000000000000000000000000000003981610fcb60015490565b610fd59190613b8b565b11156110335760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610b35565b61105d7f000000000000000000000000000000000000000000000000000000000000000382613cae565b156110bf5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610b35565b60006110eb7f000000000000000000000000000000000000000000000000000000000000000383613ba3565b905060005b81811015610d0f57611122337f0000000000000000000000000000000000000000000000000000000000000003612ce1565b8061112c81613c93565b9150506110f0565b6000546001600160a01b0316331461117c5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b604080516101008082018352732bc46e31a324ab9a208b3b0fb91958e390dc0797825273897c456868d4888c258528f8660b932804cb694860208084019190915273c0524078b6abc601158bfc328c9a2b64ee376e2383850152738fe4a152939ece65f1fc651e57b8aa84cfc137c26060808501919091527329d54f704a4253b5c3a8ae6cbdfdb0147211971360808086019190915273896babee76dbdf3f6d3b7470ad1e47e8c2016bdb60a08087019190915273e892c48b5cdd20f50dbfdf4a949c649aee9f24da60c0808801919091527324e21ae83ccb58ebae990cf1e014e062f6bb7b1960e08089019190915288519687018952600280885295870195909552600397860188905292850196909652600a90840152603c9483018590528201849052810192909252904760005b60088110156113635760006112c360016008613bfe565b82146112fb5760c88483600881106112dd576112dd613cee565b60200201516112ec9085613bb7565b6112f69190613ba3565b6112fd565b475b905084826008811061131157611311613cee565b60200201516001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505015801561134e573d6000803e3d6000fd5b5050808061135b90613c93565b9150506112ac565b50505050565b6000831580159061137957508215155b80156113855750814210155b949350505050565b610d0f8383836040518060200160405280600081525061209a565b3233146113f75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b600a54600160a01b900467ffffffffffffffff16806114585760405162461bcd60e51b815260206004820181905260248201527f436f6c6c65637465642073616c6520686173206e6f7420626567756e207965746044820152606401610b35565b336000908152600d60205260409020546114b45760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220636f6c6c6563746564206d696e74006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000001e616114de60015490565b6114e9906001613b8b565b111561152c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000038261155733612516565b6115619190613b8b565b11156115af5760405162461bcd60e51b815260206004820181905260248201527f436f6c6c65637465642063616e206e6f74206d696e742074686973206d616e796044820152606401610b35565b336000908152600d602052604081208054916115ca83613c41565b91905055506115da336001612ce1565b610b6d81612cfb565b3233146116325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b600a5463ffffffff16801580159061164a5750804210155b6116965760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000000906826116c160015490565b6116cb9190613b8b565b11156117505760405162461bcd60e51b815260206004820152604860248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6064820152671d08185b5bdd5b9d60c21b608482015260a401610b35565b7f00000000000000000000000000000000000000000000000000000000000000038261177b33612516565b6117859190613b8b565b11156117d35760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610b35565b6000826117df83611cab565b6117e99190613bb7565b90506117f53384612ce1565b610d0f81612cfb565b600061180960015490565b82106118635760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b35565b5090565b6000546001600160a01b031633146118af5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b610d0f600e83836134d7565b60006118c682612d89565b5192915050565b6000546001600160a01b031633146119155760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b600a805463ffffffff191663ffffffff92909216919091179055565b60006001600160a01b03821661199d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b35565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314611a0a5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b611a146000612f41565b565b323314611a655760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b600a54600160601b900467ffffffffffffffff1680611ac65760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610b35565b336000908152600c6020526040902054611b225760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f722077686974656c697374206d696e74006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000001e61611b4c60015490565b611b57906001613b8b565b1115611b9a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b35565b7f000000000000000000000000000000000000000000000000000000000000000282611bc533612516565b611bcf9190613b8b565b1115611c1d5760405162461bcd60e51b815260206004820152601f60248201527f417363656e6465642063616e206e6f74206d696e742074686973206d616e79006044820152606401610b35565b336000908152600c602052604081208054916115ca83613c41565b6000546001600160a01b03163314611c805760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b600b805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b600081421015611cc45750670a688906bd8b0000919050565b61a8c0611cd18342613bfe565b10611ce557506702c68af0bb140000919050565b6000610708611cf48442613bfe565b611cfe9190613ba3565b9050611d1166b1a2bc2ec5000082613bb7565b611d2390670a688906bd8b0000613bfe565b9392505050565b919050565b6040805180820190915260008082526020820152610a5982612d89565b606060038054610a6e90613c58565b6000546001600160a01b03163314611da35760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b6040805160e0810182526000815263ffffffff928316602082018190529483169181018290529282166060840181905267ffffffffffffffff968716608085018190529590961660a08401819052600b8054600160401b80820490951660c0909601869052600a80546bffffffffffffffffffffffff199081166401000000009099026bffffffff0000000000000000191698909817948602949094177fffffffff00000000000000000000000000000000ffffffffffffffffffffffff16600160601b9099027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff1698909817600160a01b90970296909617909155929094169091179202919091179055565b6001600160a01b038216331415611f095760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b35565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611fbd5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b805182511461201f5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610b35565b60005b8251811015610d0f5781818151811061203d5761203d613cee565b6020026020010151600c600085848151811061205b5761205b613cee565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061209290613c93565b915050612022565b6120a5848484612768565b6120b184848484612f9e565b6113635760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610b35565b6060612126826001541190565b6121985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374616e7420746f6b656e00000000000000000000000000000000006064820152608401610b35565b600f5460ff16156121f65760006121ad6130f7565b905060008151116121cd5760405180602001604052806000815250611d23565b80836040516020016121e0929190613a9a565b6040516020818303038152906040529392505050565b6121fe6130f7565b60405160200161220e9190613a6b565b6040516020818303038152906040529050919050565b3233146122735760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b35565b6040805160e081018252600a5463ffffffff8082168352640100000000820481166020840152600160401b808304821694840185905267ffffffffffffffff600160601b840481166060860152600160a01b90930483166080850152600b5492831660a0850181905292041660c0830181905291928483146123455760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b6064820152608401610b35565b612350828483611369565b61239c5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610b35565b7f0000000000000000000000000000000000000000000000000000000000001e61866123c760015490565b6123d19190613b8b565b11156124145760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000038661243f33612516565b6124499190613b8b565b11156124975760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610b35565b6124a13387612ce1565b6124b36124ae8784613bb7565b612cfb565b505050505050565b6000546001600160a01b031633146125035760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b600f805460ff1916911515919091179055565b6000610a5982613106565b6000546001600160a01b031633146125695760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b80518251146125cb5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610b35565b60005b8251811015610d0f578181815181106125e9576125e9613cee565b6020026020010151600d600085848151811061260757612607613cee565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061263e90613c93565b9150506125ce565b6000546001600160a01b0316331461268e5760405162461bcd60e51b81526020600482018190526024820152600080516020613d318339815191526044820152606401610b35565b6001600160a01b0381166126f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b35565b6126fc81612f41565b50565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061277382612d89565b80519091506000906001600160a01b0316336001600160a01b031614806127aa57503361279f84610b71565b6001600160a01b0316145b806127bc575081516127bc903361096e565b9050806128315760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b35565b846001600160a01b031682600001516001600160a01b0316146128a55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b35565b6001600160a01b0384166129095760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b35565b61291960008484600001516126ff565b6001600160a01b038516600090815260056020526040812080546001929061294b9084906001600160801b0316613bd6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261299791859116613b60565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a1f846001613b8b565b6000818152600460205260409020549091506001600160a01b0316612ab157612a49816001541190565b15612ab15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b3565b60085481612b475760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b35565b60006001612b558484613b8b565b612b5f9190613bfe565b9050612b8c60017f0000000000000000000000000000000000000000000000000000000000001e61613bfe565b811115612bc157612bbe60017f0000000000000000000000000000000000000000000000000000000000001e61613bfe565b90505b612bcc816001541190565b612c275760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b35565b815b818111612ccd576000818152600460205260409020546001600160a01b0316612cbb576000612c5782612d89565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612cc581613c93565b915050612c29565b50612cd9816001613b8b565b600855505050565b610b6d8282604051806020016040528060008152506131b0565b80341015612d4b5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610b35565b803411156126fc57336108fc612d618334613bfe565b6040518115909202916000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b6040805180820190915260008082526020820152612da8826001541190565b612e075760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b35565b60007f00000000000000000000000000000000000000000000000000000000000000038310612e6857612e5a7f000000000000000000000000000000000000000000000000000000000000000384613bfe565b612e65906001613b8b565b90505b825b818110612ed2576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612ebf57949350505050565b5080612eca81613c41565b915050612e6a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610b35565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156130ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fe2903390899088908890600401613abc565b602060405180830381600087803b158015612ffc57600080fd5b505af192505050801561302c575060408051601f3d908101601f19168201909252613029918101906138c9565b60015b6130d2573d80801561305a576040519150601f19603f3d011682016040523d82523d6000602084013e61305f565b606091505b5080516130ca5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610b35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611385565b506001949350505050565b6060600e8054610a6e90613c58565b60006001600160a01b0382166131845760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610b35565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166132135760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b35565b61321e816001541190565b1561326b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b35565b7f00000000000000000000000000000000000000000000000000000000000000038311156132e65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b35565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613342908790613b60565b6001600160801b031681526020018583602001516133609190613b60565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156134cc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46134446000888488612f9e565b6134ac5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610b35565b816134b681613c93565b92505080806134c490613c93565b9150506133f7565b5060018190556124b3565b8280546134e390613c58565b90600052602060002090601f016020900481019282613505576000855561354b565b82601f1061351e5782800160ff1982351617855561354b565b8280016001018555821561354b579182015b8281111561354b578235825591602001919060010190613530565b506118639291505b808211156118635760008155600101613553565b80356001600160a01b0381168114611d2a57600080fd5b600082601f83011261358f57600080fd5b813560206135a461359f83613b3c565b613b0b565b80838252828201915082860187848660051b89010111156135c457600080fd5b60005b858110156135e3578135845292840192908401906001016135c7565b5090979650505050505050565b80358015158114611d2a57600080fd5b803563ffffffff81168114611d2a57600080fd5b803567ffffffffffffffff81168114611d2a57600080fd5b60006020828403121561363e57600080fd5b611d2382613567565b6000806040838503121561365a57600080fd5b61366383613567565b915061367160208401613567565b90509250929050565b60008060006060848603121561368f57600080fd5b61369884613567565b92506136a660208501613567565b9150604084013590509250925092565b600080600080608085870312156136cc57600080fd5b6136d585613567565b935060206136e4818701613567565b935060408601359250606086013567ffffffffffffffff8082111561370857600080fd5b818801915088601f83011261371c57600080fd5b81358181111561372e5761372e613d04565b613740601f8201601f19168501613b0b565b9150808252898482850101111561375657600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561378957600080fd5b61379283613567565b9150613671602084016135f0565b600080604083850312156137b357600080fd5b6137bc83613567565b946020939093013593505050565b600080604083850312156137dd57600080fd5b823567ffffffffffffffff808211156137f557600080fd5b818501915085601f83011261380957600080fd5b8135602061381961359f83613b3c565b8083825282820191508286018a848660051b890101111561383957600080fd5b600096505b848710156138635761384f81613567565b83526001969096019591830191830161383e565b509650508601359250508082111561387a57600080fd5b506138878582860161357e565b9150509250929050565b6000602082840312156138a357600080fd5b611d23826135f0565b6000602082840312156138be57600080fd5b8135611d2381613d1a565b6000602082840312156138db57600080fd5b8151611d2381613d1a565b600080602083850312156138f957600080fd5b823567ffffffffffffffff8082111561391157600080fd5b818501915085601f83011261392557600080fd5b81358181111561393457600080fd5b86602082850101111561394657600080fd5b60209290920196919550909350505050565b60006020828403121561396a57600080fd5b5035919050565b6000806040838503121561398457600080fd5b50508035926020909101359150565b6000806000606084860312156139a857600080fd5b505081359360208301359350604090920135919050565b6000602082840312156139d157600080fd5b611d2382613600565b600080600080600060a086880312156139f257600080fd5b6139fb86613614565b9450613a0960208701613614565b9350613a1760408701613600565b9250613a2560608701613600565b9150613a3360808701613600565b90509295509295909350565b60008151808452613a57816020860160208601613c15565b601f01601f19169290920160200192915050565b60008251613a7d818460208701613c15565b6a2434b23232b7173539b7b760a91b920191825250600b01919050565b60008351613aac818460208801613c15565b9190910191825250602001919050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613aee6080830184613a3f565b9695505050505050565b602081526000611d236020830184613a3f565b604051601f8201601f1916810167ffffffffffffffff81118282101715613b3457613b34613d04565b604052919050565b600067ffffffffffffffff821115613b5657613b56613d04565b5060051b60200190565b60006001600160801b03808316818516808303821115613b8257613b82613cc2565b01949350505050565b60008219821115613b9e57613b9e613cc2565b500190565b600082613bb257613bb2613cd8565b500490565b6000816000190483118215151615613bd157613bd1613cc2565b500290565b60006001600160801b0383811690831681811015613bf657613bf6613cc2565b039392505050565b600082821015613c1057613c10613cc2565b500390565b60005b83811015613c30578181015183820152602001613c18565b838111156113635750506000910152565b600081613c5057613c50613cc2565b506000190190565b600181811c90821680613c6c57607f821691505b60208210811415613c8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613ca757613ca7613cc2565b5060010190565b600082613cbd57613cbd613cd8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146126fc57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220c29246348adfa9199186c8555af066554a6da68ef5400b24385ef4ff5eb195b564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000009060000000000000000000000000000000000000000000000000000000000000039

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 3
Arg [1] : collectionSize_ (uint256): 7777
Arg [2] : collectedlistBatchSize_ (uint256): 3
Arg [3] : whitelistBatchSize_ (uint256): 2
Arg [4] : amountForAuctionAndDev_ (uint256): 2310
Arg [5] : amountForDevs_ (uint256): 57

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000906
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000039


Deployed Bytecode Sourcemap

42592:9793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27689:370;;;;;;;;;;-1:-1:-1;27689:370:0;;;;;:::i;:::-;;:::i;:::-;;;9575:14:1;;9568:22;9550:41;;9538:2;9523:18;27689:370:0;;;;;;;;29415:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50736:153::-;;;;;;;;;;;;;:::i;:::-;;30940:204;;;;;;;;;;-1:-1:-1;30940:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8827:55:1;;;8809:74;;8797:2;8782:18;30940:204:0;8663:226:1;30503:379:0;;;;;;;;;;-1:-1:-1;30503:379:0;;;;;:::i;:::-;;:::i;26250:94::-;;;;;;;;;;-1:-1:-1;26326:12:0;;26250:94;;;26355:25:1;;;26343:2;26328:18;26250:94:0;26209:177:1;31790:142:0;;;;;;;;;;-1:-1:-1;31790:142:0;;;;;:::i;:::-;;:::i;51998:118::-;;;;;;;;;;-1:-1:-1;51998:118:0;;;;;:::i;:::-;;:::i;26881:744::-;;;;;;;;;;-1:-1:-1;26881:744:0;;;;;:::i;:::-;;:::i;49456:442::-;;;;;;;;;;-1:-1:-1;49456:442:0;;;;;:::i;:::-;;:::i;50897:1095::-;;;;;;;;;;;;;:::i;46941:271::-;;;;;;;;;;-1:-1:-1;46941:271:0;;;;;:::i;:::-;;:::i;31995:157::-;;;;;;;;;;-1:-1:-1;31995:157:0;;;;;:::i;:::-;;:::i;45274:553::-;;;;;;:::i;:::-;;:::i;44029:693::-;;;;;;:::i;:::-;;:::i;26413:177::-;;;;;;;;;;-1:-1:-1;26413:177:0;;;;;:::i;:::-;;:::i;49959:28::-;;;;;;;;;;-1:-1:-1;49959:28:0;;;;;;;;43218:48;;;;;;;;;;-1:-1:-1;43218:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;50108:100;;;;;;;;;;-1:-1:-1;50108:100:0;;;;;:::i;:::-;;:::i;47469:58::-;;;;;;;;;;;;47517:10;47469:58;;47406;;;;;;;;;;;;47454:10;47406:58;;29238:118;;;;;;;;;;-1:-1:-1;29238:118:0;;;;;:::i;:::-;;:::i;48495:126::-;;;;;;;;;;-1:-1:-1;48495:126:0;;;;;:::i;:::-;;:::i;28115:211::-;;;;;;;;;;-1:-1:-1;28115:211:0;;;;;:::i;:::-;;:::i;41704:103::-;;;;;;;;;;;;;:::i;47218:56::-;;;;;;;;;;;;47264:10;47218:56;;44730:536;;;;;;:::i;:::-;;:::i;42649:48::-;;;;;;;;;;;;;;;41053:87;;;;;;;;;;-1:-1:-1;41099:7:0;41126:6;-1:-1:-1;;;;;41126:6:0;41053:87;;48627:100;;;;;;;;;;-1:-1:-1;48627:100:0;;;;;:::i;:::-;;:::i;43134:28::-;;;;;;;;;;-1:-1:-1;43134:28:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;43134:28:0;;;;;;;-1:-1:-1;;;43134:28:0;;;;;-1:-1:-1;;;43134:28:0;;;;;;;;;;;;;;;;;;;26702:10:1;26739:15;;;26721:34;;26791:15;;;26786:2;26771:18;;26764:43;26843:15;;;26823:18;;;26816:43;;;;26878:18;26932:15;;;26927:2;26912:18;;26905:43;26985:15;;;26979:3;26964:19;;26957:44;27038:15;27032:3;27017:19;;27010:44;27091:15;;;27085:3;27070:19;;27063:44;26679:3;26664:19;43134:28:0;26391:722:1;47536:480:0;;;;;;;;;;-1:-1:-1;47536:480:0;;;;;:::i;:::-;;:::i;52235:147::-;;;;;;;;;;-1:-1:-1;52235:147:0;;;;;:::i;:::-;;:::i;:::-;;;;26051:13:1;;-1:-1:-1;;;;;26047:62:1;26029:81;;26170:4;26158:17;;;26152:24;26178:18;26148:49;26126:20;;;26119:79;;;;26002:18;52235:147:0;25821:383:1;29570:98:0;;;;;;;;;;;;;:::i;43169:44::-;;;;;;;;;;-1:-1:-1;43169:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;48022:467;;;;;;;;;;-1:-1:-1;48022:467:0;;;;;:::i;:::-;;:::i;31208:274::-;;;;;;;;;;-1:-1:-1;31208:274:0;;;;;:::i;:::-;;:::i;48733:339::-;;;;;;;;;;-1:-1:-1;48733:339:0;;;;;:::i;:::-;;:::i;32215:311::-;;;;;;;;;;-1:-1:-1;32215:311:0;;;;;:::i;:::-;;:::i;50312:412::-;;;;;;;;;;-1:-1:-1;50312:412:0;;;;;:::i;:::-;;:::i;47279:53::-;;;;;;;;;;;;47323:9;47279:53;;45833:892;;;;;;:::i;:::-;;:::i;50214:90::-;;;;;;;;;;-1:-1:-1;50214:90:0;;;;;:::i;:::-;;:::i;36630:43::-;;;;;;;;;;;;;;;;52122:107;;;;;;;;;;-1:-1:-1;52122:107:0;;;;;:::i;:::-;;:::i;31545:186::-;;;;;;;;;;-1:-1:-1;31545:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31690:25:0;;;31667:4;31690:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31545:186;49078:347;;;;;;;;;;-1:-1:-1;49078:347:0;;;;;:::i;:::-;;:::i;41962:201::-;;;;;;;;;;-1:-1:-1;41962:201:0;;;;;:::i;:::-;;:::i;47337:64::-;;;;;;;;;;;;47390:11;47337:64;;27689:370;27816:4;-1:-1:-1;;;;;;27846:40:0;;-1:-1:-1;;;27846:40:0;;:99;;-1:-1:-1;;;;;;;27897:48:0;;-1:-1:-1;;;27897:48:0;27846:99;:160;;;-1:-1:-1;;;;;;;27956:50:0;;-1:-1:-1;;;27956:50:0;27846:160;:207;;;-1:-1:-1;;;;;;;;;;13472:40:0;;;28017:36;27832:221;27689:370;-1:-1:-1;;27689:370:0:o;29415:94::-;29469:13;29498:5;29491:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29415:94;:::o;50736:153::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;;;;;;;;;50844:37:::1;::::0;50812:21:::1;::::0;50852:10:::1;::::0;50844:37;::::1;;;::::0;50812:21;;50794:15:::1;50844:37:::0;50794:15;50844:37;50812:21;50852:10;50844:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50783:106;50736:153::o:0;30940:204::-;31008:7;31032:16;31040:7;32852:12;;-1:-1:-1;32842:22:0;32765:105;31032:16;31024:74;;;;-1:-1:-1;;;31024:74:0;;24797:2:1;31024:74:0;;;24779:21:1;24836:2;24816:18;;;24809:30;24875:34;24855:18;;;24848:62;-1:-1:-1;;;24926:18:1;;;24919:43;24979:19;;31024:74:0;24595:409:1;31024:74:0;-1:-1:-1;31114:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31114:24:0;;30940:204::o;30503:379::-;30572:13;30588:24;30604:7;30588:15;:24::i;:::-;30572:40;;30633:5;-1:-1:-1;;;;;30627:11:0;:2;-1:-1:-1;;;;;30627:11:0;;;30619:58;;;;-1:-1:-1;;;30619:58:0;;20025:2:1;30619:58:0;;;20007:21:1;20064:2;20044:18;;;20037:30;20103:34;20083:18;;;20076:62;-1:-1:-1;;;20154:18:1;;;20147:32;20196:19;;30619:58:0;19823:398:1;30619:58:0;23800:10;-1:-1:-1;;;;;30702:21:0;;;;:62;;-1:-1:-1;30727:37:0;30744:5;23800:10;31545:186;:::i;30727:37::-;30686:153;;;;-1:-1:-1;;;30686:153:0;;15091:2:1;30686:153:0;;;15073:21:1;15130:2;15110:18;;;15103:30;15169:34;15149:18;;;15142:62;15240:27;15220:18;;;15213:55;15285:19;;30686:153:0;14889:421:1;30686:153:0;30848:28;30857:2;30861:7;30870:5;30848:8;:28::i;:::-;30565:317;30503:379;;:::o;31790:142::-;31898:28;31908:4;31914:2;31918:7;31898:9;:28::i;51998:118::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;22094:1:::1;22692:7;;:19;;22684:63;;;::::0;-1:-1:-1;;;22684:63:0;;24021:2:1;22684:63:0::1;::::0;::::1;24003:21:1::0;24060:2;24040:18;;;24033:30;24099:33;24079:18;;;24072:61;24150:18;;22684:63:0::1;23819:355:1::0;22684:63:0::1;22094:1;22825:7;:18:::0;52082:28:::2;52101:8:::0;52082:18:::2;:28::i;:::-;-1:-1:-1::0;22050:1:0::1;23004:7;:22:::0;51998:118::o;26881:744::-;26990:7;27025:16;27035:5;27025:9;:16::i;:::-;27017:5;:24;27009:71;;;;-1:-1:-1;;;27009:71:0;;10028:2:1;27009:71:0;;;10010:21:1;10067:2;10047:18;;;10040:30;10106:34;10086:18;;;10079:62;-1:-1:-1;;;10157:18:1;;;10150:32;10199:19;;27009:71:0;9826:398:1;27009:71:0;27087:22;27112:13;26326:12;;;26250:94;27112:13;27087:38;;27132:19;27162:25;27212:9;27207:350;27231:14;27227:1;:18;27207:350;;;27261:31;27295:14;;;:11;:14;;;;;;;;;27261:48;;;;;;;;;-1:-1:-1;;;;;27261:48:0;;;;;-1:-1:-1;;;27261:48:0;;;;;;;;;;;;27322:28;27318:89;;27383:14;;;-1:-1:-1;27318:89:0;27440:5;-1:-1:-1;;;;;27419:26:0;:17;-1:-1:-1;;;;;27419:26:0;;27415:135;;;27477:5;27462:11;:20;27458:59;;;-1:-1:-1;27504:1:0;-1:-1:-1;27497:8:0;;-1:-1:-1;;;27497:8:0;27458:59;27527:13;;;;:::i;:::-;;;;27415:135;-1:-1:-1;27247:3:0;;;;:::i;:::-;;;;27207:350;;;-1:-1:-1;27563:56:0;;-1:-1:-1;;;27563:56:0;;23199:2:1;27563:56:0;;;23181:21:1;23238:2;23218:18;;;23211:30;23277:34;23257:18;;;23250:62;23348:16;23328:18;;;23321:44;23382:19;;27563:56:0;22997:410:1;49456:442:0;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;49561:13:::1;49549:8;49533:13;26326:12:::0;;;26250:94;49533:13:::1;:24;;;;:::i;:::-;:41;;49517:114;;;::::0;-1:-1:-1;;;49517:114:0;;22310:2:1;49517:114:0::1;::::0;::::1;22292:21:1::0;22349:2;22329:18;;;22322:30;22388:34;22368:18;;;22361:62;-1:-1:-1;;;22439:18:1;;;22432:37;22486:19;;49517:114:0::1;22108:403:1::0;49517:114:0::1;49654:23;49665:12;49654:8:::0;:23:::1;:::i;:::-;:28:::0;49638:106:::1;;;::::0;-1:-1:-1;;;49638:106:0;;11610:2:1;49638:106:0::1;::::0;::::1;11592:21:1::0;11649:2;11629:18;;;11622:30;11688:34;11668:18;;;11661:62;-1:-1:-1;;;11739:18:1;;;11732:42;11791:19;;49638:106:0::1;11408:408:1::0;49638:106:0::1;49751:17;49771:23;49782:12;49771:8:::0;:23:::1;:::i;:::-;49751:43;;49806:9;49801:92;49825:9;49821:1;:13;49801:92;;;49850:35;49860:10;49872:12;49850:9;:35::i;:::-;49836:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49801:92;;50897:1095:::0;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;50947:497:::1;::::0;;::::1;::::0;;::::1;::::0;;50992:42:::1;50947:497:::0;;51049:42:::1;50947:497;::::0;;::::1;::::0;;;;51106:42:::1;50947:497:::0;;;;51163:42:::1;50947:497:::0;;;;;;;;51220:42:::1;50947:497:::0;;;;;;;;51277:42:::1;50947:497:::0;;;;;;;;51334:42:::1;50947:497:::0;;;;;;;;51391:42:::1;50947:497:::0;;;;;;;;51457:242;;;;::::1;::::0;;51507:1:::1;51457:242:::0;;;;;::::1;::::0;;;;51557:1:::1;51457:242:::0;;;;;;;;;;;;;51607:2:::1;51457:242:::0;;;;51633:2:::1;51457:242:::0;;;;;;;;;;;;;;;;;50947:497;51730:21:::1;50947:27;51764:221;51788:16;51784:1;:20;51764:221;;;51826:14;51848:20;51867:1;51848:16;:20;:::i;:::-;51843:1;:25;:77;;51917:3;51905:6;51912:1;51905:9;;;;;;;:::i;:::-;;;;::::0;51895:19:::1;::::0;:7;:19:::1;:::i;:::-;:25;;;;:::i;:::-;51843:77;;;51871:21;51843:77;51826:94;;51943:9;51953:1;51943:12;;;;;;;:::i;:::-;;;;;-1:-1:-1::0;;;;;51935:30:0::1;:38;51966:6;51935:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51811:174;51806:3;;;;;:::i;:::-;;;;51764:221;;;;50936:1056;;;50897:1095::o:0;46941:271::-;47082:4;47109:19;;;;;:48;;-1:-1:-1;47139:18:0;;;47109:48;:97;;;;;47187:19;47168:15;:38;;47109:97;47095:111;46941:271;-1:-1:-1;;;;46941:271:0:o;31995:157::-;32107:39;32124:4;32130:2;32134:7;32107:39;;;;;;;;;;;;:16;:39::i;45274:553::-;43951:9;43964:10;43951:23;43943:66;;;;-1:-1:-1;;;43943:66:0;;14732:2:1;43943:66:0;;;14714:21:1;14771:2;14751:18;;;14744:30;14810:32;14790:18;;;14783:60;14860:18;;43943:66:0;14530:354:1;43943:66:0;45380:10:::1;:29:::0;-1:-1:-1;;;45380:29:0;::::1;;;::::0;45417:55:::1;;;::::0;-1:-1:-1;;;45417:55:0;;12023:2:1;45417:55:0::1;::::0;::::1;12005:21:1::0;;;12042:18;;;12035:30;12101:34;12081:18;;;12074:62;12153:18;;45417:55:0::1;11821:356:1::0;45417:55:0::1;45501:10;45515:1;45487:25:::0;;;:13:::1;:25;::::0;;;;;45479:73:::1;;;::::0;-1:-1:-1;;;45479:73:0;;18947:2:1;45479:73:0::1;::::0;::::1;18929:21:1::0;18986:2;18966:18;;;18959:30;19025:33;19005:18;;;18998:61;19076:18;;45479:73:0::1;18745:355:1::0;45479:73:0::1;45588:14;45567:13;26326:12:::0;;;26250:94;45567:13:::1;:17;::::0;45583:1:::1;45567:17;:::i;:::-;:35;;45559:66;;;::::0;-1:-1:-1;;;45559:66:0;;16282:2:1;45559:66:0::1;::::0;::::1;16264:21:1::0;16321:2;16301:18;;;16294:30;-1:-1:-1;;;16340:18:1;;;16333:48;16398:18;;45559:66:0::1;16080:342:1::0;45559:66:0::1;45679:15;45667:8;45640:24;45653:10;45640:12;:24::i;:::-;:35;;;;:::i;:::-;:54;;45632:98;;;::::0;-1:-1:-1;;;45632:98:0;;13965:2:1;45632:98:0::1;::::0;::::1;13947:21:1::0;;;13984:18;;;13977:30;14043:34;14023:18;;;14016:62;14095:18;;45632:98:0::1;13763:356:1::0;45632:98:0::1;45751:10;45737:25;::::0;;;:13:::1;:25;::::0;;;;:27;;;::::1;::::0;::::1;:::i;:::-;;;;;;45771:24;45781:10;45793:1;45771:9;:24::i;:::-;45802:19;45815:5;45802:12;:19::i;44029:693::-:0;43951:9;43964:10;43951:23;43943:66;;;;-1:-1:-1;;;43943:66:0;;14732:2:1;43943:66:0;;;14714:21:1;14771:2;14751:18;;;14744:30;14810:32;14790:18;;;14783:60;14860:18;;43943:66:0;14530:354:1;43943:66:0;44138:10:::1;:31:::0;::::1;;44193:19:::0;;;::::1;::::0;:56:::1;;;44235:14;44216:15;:33;;44193:56;44177:114;;;::::0;-1:-1:-1;;;44177:114:0;;13194:2:1;44177:114:0::1;::::0;::::1;13176:21:1::0;13233:2;13213:18;;;13206:30;13272:26;13252:18;;;13245:54;13316:18;;44177:114:0::1;12992:348:1::0;44177:114:0::1;44342:22;44330:8;44314:13;26326:12:::0;;;26250:94;44314:13:::1;:24;;;;:::i;:::-;:50;;44298:156;;;::::0;-1:-1:-1;;;44298:156:0;;22718:2:1;44298:156:0::1;::::0;::::1;22700:21:1::0;22757:2;22737:18;;;22730:30;22796:34;22776:18;;;22769:62;22867:34;22847:18;;;22840:62;-1:-1:-1;;;22918:19:1;;;22911:39;22967:19;;44298:156:0::1;22516:476:1::0;44298:156:0::1;44516:23;44504:8;44477:24;44490:10;44477:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44461:118;;;::::0;-1:-1:-1;;;44461:118:0;;21959:2:1;44461:118:0::1;::::0;::::1;21941:21:1::0;21998:2;21978:18;;;21971:30;22037:24;22017:18;;;22010:52;22079:18;;44461:118:0::1;21757:346:1::0;44461:118:0::1;44586:17;44640:8;44606:31;44622:14;44606:15;:31::i;:::-;:42;;;;:::i;:::-;44586:62;;44655:31;44665:10;44677:8;44655:9;:31::i;:::-;44693:23;44706:9;44693:12;:23::i;26413:177::-:0;26480:7;26512:13;26326:12;;;26250:94;26512:13;26504:5;:21;26496:69;;;;-1:-1:-1;;;26496:69:0;;12384:2:1;26496:69:0;;;12366:21:1;12423:2;12403:18;;;12396:30;12462:34;12442:18;;;12435:62;-1:-1:-1;;;12513:18:1;;;12506:33;12556:19;;26496:69:0;12182:399:1;26496:69:0;-1:-1:-1;26579:5:0;26413:177::o;50108:100::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;50179:23:::1;:13;50195:7:::0;;50179:23:::1;:::i;29238:118::-:0;29302:7;29325:20;29337:7;29325:11;:20::i;:::-;:25;;29238:118;-1:-1:-1;;29238:118:0:o;48495:126::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;48572:10:::1;:43:::0;;-1:-1:-1;;48572:43:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;48495:126::o;28115:211::-;28179:7;-1:-1:-1;;;;;28203:19:0;;28195:75;;;;-1:-1:-1;;;28195:75:0;;15870:2:1;28195:75:0;;;15852:21:1;15909:2;15889:18;;;15882:30;15948:34;15928:18;;;15921:62;-1:-1:-1;;;15999:18:1;;;15992:41;16050:19;;28195:75:0;15668:407:1;28195:75:0;-1:-1:-1;;;;;;28292:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28292:27:0;;28115:211::o;41704:103::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;41769:30:::1;41796:1;41769:18;:30::i;:::-;41704:103::o:0;44730:536::-;43951:9;43964:10;43951:23;43943:66;;;;-1:-1:-1;;;43943:66:0;;14732:2:1;43943:66:0;;;14714:21:1;14771:2;14751:18;;;14744:30;14810:32;14790:18;;;14783:60;14860:18;;43943:66:0;14530:354:1;43943:66:0;44832:10:::1;:25:::0;-1:-1:-1;;;44832:25:0;::::1;;;::::0;44865:55:::1;;;::::0;-1:-1:-1;;;44865:55:0;;10431:2:1;44865:55:0::1;::::0;::::1;10413:21:1::0;;;10450:18;;;10443:30;10509:34;10489:18;;;10482:62;10561:18;;44865:55:0::1;10229:356:1::0;44865:55:0::1;44945:10;44959:1;44935:21:::0;;;:9:::1;:21;::::0;;;;;44927:69:::1;;;::::0;-1:-1:-1;;;44927:69:0;;17813:2:1;44927:69:0::1;::::0;::::1;17795:21:1::0;17852:2;17832:18;;;17825:30;17891:33;17871:18;;;17864:61;17942:18;;44927:69:0::1;17611:355:1::0;44927:69:0::1;45032:14;45011:13;26326:12:::0;;;26250:94;45011:13:::1;:17;::::0;45027:1:::1;45011:17;:::i;:::-;:35;;45003:66;;;::::0;-1:-1:-1;;;45003:66:0;;16282:2:1;45003:66:0::1;::::0;::::1;16264:21:1::0;16321:2;16301:18;;;16294:30;-1:-1:-1;;;16340:18:1;;;16333:48;16398:18;;45003:66:0::1;16080:342:1::0;45003:66:0::1;45123:15;45111:8;45084:24;45097:10;45084:12;:24::i;:::-;:35;;;;:::i;:::-;:54;;45076:97;;;::::0;-1:-1:-1;;;45076:97:0;;19307:2:1;45076:97:0::1;::::0;::::1;19289:21:1::0;19346:2;19326:18;;;19319:30;19385:33;19365:18;;;19358:61;19436:18;;45076:97:0::1;19105:355:1::0;45076:97:0::1;45190:10;45180:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;48627:100::-:0;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;48691:24;:30;;::::1;::::0;;::::1;-1:-1:-1::0;;;48691:30:0::1;-1:-1:-1::0;;48691:30:0;;::::1;::::0;;;::::1;::::0;;48627:100::o;47536:480::-;47621:7;47662:14;47644:15;:32;47640:81;;;-1:-1:-1;47264:10:0;;47536:480;-1:-1:-1;47536:480:0:o;47640:81::-;47390:11;47731:32;47749:14;47731:15;:32;:::i;:::-;:62;47727:284;;-1:-1:-1;47323:9:0;;47536:480;-1:-1:-1;47536:480:0:o;47727:284::-;47851:13;47454:10;47868:32;47886:14;47868:15;:32;:::i;:::-;47867:67;;;;:::i;:::-;47851:83;-1:-1:-1;47973:29:0;47517:10;47851:83;47973:29;:::i;:::-;47950:53;;47264:10;47950:53;:::i;:::-;47943:60;47536:480;-1:-1:-1;;;47536:480:0:o;47727:284::-;47536:480;;;:::o;52235:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;52356:20:0;52368:7;52356:11;:20::i;29570:98::-;29626:13;29655:7;29648:14;;;;;:::i;48022:467::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;48280:203:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;48280:203:0;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;48452:24;;;-1:-1:-1;;;48452:24:0;;::::1;::::0;;::::1;48280:203:::0;;;;;;;48452:10:::1;48267:216:::0;;-1:-1:-1;;48267:216:0;;;;;;::::1;-1:-1:-1::0;;48267:216:0;;;;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;48267:216:0;;::::1;::::0;;;;;;-1:-1:-1;;;48267:216:0;;::::1;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;::::1;::::0;;48022:467::o;31208:274::-;-1:-1:-1;;;;;31299:24:0;;23800:10;31299:24;;31291:63;;;;-1:-1:-1;;;31291:63:0;;18173:2:1;31291:63:0;;;18155:21:1;18212:2;18192:18;;;18185:30;18251:28;18231:18;;;18224:56;18297:18;;31291:63:0;17971:350:1;31291:63:0;23800:10;31363:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31363:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31363:53:0;;;;;;;;;;31428:48;;9550:41:1;;;31363:42:0;;23800:10;31428:48;;9523:18:1;31428:48:0;;;;;;;31208:274;;:::o;48733:339::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;48886:8:::1;:15;48866:9;:16;:35;48850:109;;;::::0;-1:-1:-1;;;48850:109:0;;25614:2:1;48850:109:0::1;::::0;::::1;25596:21:1::0;25653:2;25633:18;;;25626:30;25692:34;25672:18;;;25665:62;-1:-1:-1;;;25743:18:1;;;25736:38;25791:19;;48850:109:0::1;25412:404:1::0;48850:109:0::1;48971:9;48966:101;48990:9;:16;48986:1;:20;48966:101;;;49048:8;49057:1;49048:11;;;;;;;;:::i;:::-;;;;;;;49022:9;:23;49032:9;49042:1;49032:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49022:23:0::1;-1:-1:-1::0;;;;;49022:23:0::1;;;;;;;;;;;;:37;;;;49008:3;;;;;:::i;:::-;;;;48966:101;;32215:311:::0;32352:28;32362:4;32368:2;32372:7;32352:9;:28::i;:::-;32403:48;32426:4;32432:2;32436:7;32445:5;32403:22;:48::i;:::-;32387:133;;;;-1:-1:-1;;;32387:133:0;;20428:2:1;32387:133:0;;;20410:21:1;20467:2;20447:18;;;20440:30;20506:34;20486:18;;;20479:62;-1:-1:-1;;;20557:18:1;;;20550:49;20616:19;;32387:133:0;20226:415:1;50312:412:0;50377:13;50407:16;50415:7;32852:12;;-1:-1:-1;32842:22:0;32765:105;50407:16;50399:76;;;;-1:-1:-1;;;50399:76:0;;17397:2:1;50399:76:0;;;17379:21:1;17436:2;17416:18;;;17409:30;17475:34;17455:18;;;17448:62;17546:17;17526:18;;;17519:45;17581:19;;50399:76:0;17195:411:1;50399:76:0;50488:8;;;;50484:235;;;50507:21;50531:10;:8;:10::i;:::-;50507:34;;50579:1;50561:7;50555:21;:25;:75;;;;;;;;;;;;;;;;;50607:7;50616;50590:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50548:82;50312:412;-1:-1:-1;;;50312:412:0:o;50484:235::-;50684:10;:8;:10::i;:::-;50667:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;50653:58;;50312:412;;;:::o;45833:892::-;43951:9;43964:10;43951:23;43943:66;;;;-1:-1:-1;;;43943:66:0;;14732:2:1;43943:66:0;;;14714:21:1;14771:2;14751:18;;;14744:30;14810:32;14790:18;;;14783:60;14860:18;;43943:66:0;14530:354:1;43943:66:0;45959:37:::1;::::0;;::::1;::::0;::::1;::::0;;45986:10:::1;45959:37:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;45959:37:0;;::::1;::::0;::::1;::::0;;;;;;::::1;-1:-1:-1::0;;;45959:37:0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45959:37:0;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;::::1;;::::0;;;;;;;;46207:36;;::::1;46191:107;;;::::0;-1:-1:-1;;;46191:107:0;;14326:2:1;46191:107:0::1;::::0;::::1;14308:21:1::0;14365:2;14345:18;;;14338:30;14404:34;14384:18;;;14377:62;-1:-1:-1;;;14455:18:1;;;14448:35;14500:19;;46191:107:0::1;14124:401:1::0;46191:107:0::1;46323:63;46338:11;46351:13;46366:19;46323:14;:63::i;:::-;46307:126;;;::::0;-1:-1:-1;;;46307:126:0;;19667:2:1;46307:126:0::1;::::0;::::1;19649:21:1::0;19706:2;19686:18;;;19679:30;19745:31;19725:18;;;19718:59;19794:18;;46307:126:0::1;19465:353:1::0;46307:126:0::1;46476:14;46464:8;46448:13;26326:12:::0;;;26250:94;46448:13:::1;:24;;;;:::i;:::-;:42;;46440:73;;;::::0;-1:-1:-1;;;46440:73:0;;16282:2:1;46440:73:0::1;::::0;::::1;16264:21:1::0;16321:2;16301:18;;;16294:30;-1:-1:-1;;;16340:18:1;;;16333:48;16398:18;;46440:73:0::1;16080:342:1::0;46440:73:0::1;46575:23;46563:8;46536:24;46549:10;46536:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;46520:118;;;::::0;-1:-1:-1;;;46520:118:0;;21959:2:1;46520:118:0::1;::::0;::::1;21941:21:1::0;21998:2;21978:18;;;21971:30;22037:24;22017:18;;;22010:52;22079:18;;46520:118:0::1;21757:346:1::0;46520:118:0::1;46645:31;46655:10;46667:8;46645:9;:31::i;:::-;46683:36;46696:22;46710:8:::0;46696:11;:22:::1;:::i;:::-;46683:12;:36::i;:::-;45952:773;;;;45833:892:::0;;:::o;50214:90::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;50278:8:::1;:20:::0;;-1:-1:-1;;50278:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50214:90::o;52122:107::-;52180:7;52203:20;52217:5;52203:13;:20::i;49078:347::-;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;49235:8:::1;:15;49215:9;:16;:35;49199:109;;;::::0;-1:-1:-1;;;49199:109:0;;25614:2:1;49199:109:0::1;::::0;::::1;25596:21:1::0;25653:2;25633:18;;;25626:30;25692:34;25672:18;;;25665:62;-1:-1:-1;;;25743:18:1;;;25736:38;25791:19;;49199:109:0::1;25412:404:1::0;49199:109:0::1;49320:9;49315:105;49339:9;:16;49335:1;:20;49315:105;;;49401:8;49410:1;49401:11;;;;;;;;:::i;:::-;;;;;;;49371:13;:27;49385:9;49395:1;49385:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49371:27:0::1;-1:-1:-1::0;;;;;49371:27:0::1;;;;;;;;;;;;:41;;;;49357:3;;;;;:::i;:::-;;;;49315:105;;41962:201:::0;41099:7;41126:6;-1:-1:-1;;;;;41126:6:0;23800:10;41273:23;41265:68;;;;-1:-1:-1;;;41265:68:0;;17036:2:1;41265:68:0;;;17018:21:1;;;17055:18;;;17048:30;-1:-1:-1;;;;;;;;;;;17094:18:1;;;17087:62;17166:18;;41265:68:0;16834:356:1;41265:68:0;-1:-1:-1;;;;;42051:22:0;::::1;42043:73;;;::::0;-1:-1:-1;;;42043:73:0;;10792:2:1;42043:73:0::1;::::0;::::1;10774:21:1::0;10831:2;10811:18;;;10804:30;10870:34;10850:18;;;10843:62;-1:-1:-1;;;10921:18:1;;;10914:36;10967:19;;42043:73:0::1;10590:402:1::0;42043:73:0::1;42127:28;42146:8;42127:18;:28::i;:::-;41962:201:::0;:::o;36452:172::-;36549:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;36549:29:0;-1:-1:-1;;;;;36549:29:0;;;;;;;;;36590:28;;36549:24;;36590:28;;;;;;;36452:172;;;:::o;34817:1529::-;34914:35;34952:20;34964:7;34952:11;:20::i;:::-;35023:18;;34914:58;;-1:-1:-1;34981:22:0;;-1:-1:-1;;;;;35007:34:0;23800:10;-1:-1:-1;;;;;35007:34:0;;:81;;;-1:-1:-1;23800:10:0;35052:20;35064:7;35052:11;:20::i;:::-;-1:-1:-1;;;;;35052:36:0;;35007:81;:142;;;-1:-1:-1;35116:18:0;;35099:50;;23800:10;31545:186;:::i;35099:50::-;34981:169;;35175:17;35159:101;;;;-1:-1:-1;;;35159:101:0;;18528:2:1;35159:101:0;;;18510:21:1;18567:2;18547:18;;;18540:30;18606:34;18586:18;;;18579:62;18677:20;18657:18;;;18650:48;18715:19;;35159:101:0;18326:414:1;35159:101:0;35307:4;-1:-1:-1;;;;;35285:26:0;:13;:18;;;-1:-1:-1;;;;;35285:26:0;;35269:98;;;;-1:-1:-1;;;35269:98:0;;16629:2:1;35269:98:0;;;16611:21:1;16668:2;16648:18;;;16641:30;16707:34;16687:18;;;16680:62;-1:-1:-1;;;16758:18:1;;;16751:36;16804:19;;35269:98:0;16427:402:1;35269:98:0;-1:-1:-1;;;;;35382:16:0;;35374:66;;;;-1:-1:-1;;;35374:66:0;;12788:2:1;35374:66:0;;;12770:21:1;12827:2;12807:18;;;12800:30;12866:34;12846:18;;;12839:62;-1:-1:-1;;;12917:18:1;;;12910:35;12962:19;;35374:66:0;12586:401:1;35374:66:0;35549:49;35566:1;35570:7;35579:13;:18;;;35549:8;:49::i;:::-;-1:-1:-1;;;;;35607:18:0;;;;;;:12;:18;;;;;:31;;35637:1;;35607:18;:31;;35637:1;;-1:-1:-1;;;;;35607:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35607:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35645:16:0;;-1:-1:-1;35645:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35645:16:0;;:29;;-1:-1:-1;;35645:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35645:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35704:43:0;;;;;;;;-1:-1:-1;;;;;35704:43:0;;;;;;35730:15;35704:43;;;;;;;;;-1:-1:-1;35681:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35681:66:0;-1:-1:-1;;;;;;35681:66:0;;;;;;;;;;;35997:11;35693:7;-1:-1:-1;35997:11:0;:::i;:::-;36060:1;36019:24;;;:11;:24;;;;;:29;35975:33;;-1:-1:-1;;;;;;36019:29:0;36015:236;;36077:20;36085:11;32852:12;;-1:-1:-1;32842:22:0;32765:105;36077:20;36073:171;;;36137:97;;;;;;;;36164:18;;-1:-1:-1;;;;;36137:97:0;;;;;;36195:28;;;;36137:97;;;;;;;;;;-1:-1:-1;36110:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36110:124:0;-1:-1:-1;;;;;;36110:124:0;;;;;;;;;;;;36073:171;36283:7;36279:2;-1:-1:-1;;;;;36264:27:0;36273:4;-1:-1:-1;;;;;36264:27:0;;;;;;;;;;;36298:42;50897:1095;36778:846;36868:24;;36907:12;36899:49;;;;-1:-1:-1;;;36899:49:0;;15517:2:1;36899:49:0;;;15499:21:1;15556:2;15536:18;;;15529:30;15595:26;15575:18;;;15568:54;15639:18;;36899:49:0;15315:348:1;36899:49:0;36955:16;37005:1;36974:28;36994:8;36974:17;:28;:::i;:::-;:32;;;;:::i;:::-;36955:51;-1:-1:-1;37028:18:0;37045:1;37028:14;:18;:::i;:::-;37017:8;:29;37013:81;;;37068:18;37085:1;37068:14;:18;:::i;:::-;37057:29;;37013:81;37209:17;37217:8;32852:12;;-1:-1:-1;32842:22:0;32765:105;37209:17;37201:68;;;;-1:-1:-1;;;37201:68:0;;23614:2:1;37201:68:0;;;23596:21:1;23653:2;23633:18;;;23626:30;23692:34;23672:18;;;23665:62;-1:-1:-1;;;23743:18:1;;;23736:36;23789:19;;37201:68:0;23412:402:1;37201:68:0;37293:17;37276:297;37317:8;37312:1;:13;37276:297;;37376:1;37345:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37345:19:0;37341:225;;37391:31;37425:14;37437:1;37425:11;:14::i;:::-;37467:89;;;;;;;;37494:14;;-1:-1:-1;;;;;37467:89:0;;;;;;37521:24;;;;37467:89;;;;;;;;;;-1:-1:-1;37450:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;37450:106:0;-1:-1:-1;;;;;;37450:106:0;;;;;;;;;;;;-1:-1:-1;37341:225:0;37327:3;;;;:::i;:::-;;;;37276:297;;;-1:-1:-1;37606:12:0;:8;37617:1;37606:12;:::i;:::-;37579:24;:39;-1:-1:-1;;;36778:846:0:o;32876:98::-;32941:27;32951:2;32955:8;32941:27;;;;;;;;;;;;:9;:27::i;46731:204::-;46804:5;46791:9;:18;;46783:53;;;;-1:-1:-1;;;46783:53:0;;20848:2:1;46783:53:0;;;20830:21:1;20887:2;20867:18;;;20860:30;20926:24;20906:18;;;20899:52;20968:18;;46783:53:0;20646:346:1;46783:53:0;46859:5;46847:9;:17;46843:87;;;46883:10;46875:47;46904:17;46916:5;46904:9;:17;:::i;:::-;46875:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28578:606;-1:-1:-1;;;;;;;;;;;;;;;;;28695:16:0;28703:7;32852:12;;-1:-1:-1;32842:22:0;32765:105;28695:16;28687:71;;;;-1:-1:-1;;;28687:71:0;;11199:2:1;28687:71:0;;;11181:21:1;11238:2;11218:18;;;11211:30;11277:34;11257:18;;;11250:62;-1:-1:-1;;;11328:18:1;;;11321:40;11378:19;;28687:71:0;10997:406:1;28687:71:0;28767:26;28815:12;28804:7;:23;28800:93;;28859:22;28869:12;28859:7;:22;:::i;:::-;:26;;28884:1;28859:26;:::i;:::-;28838:47;;28800:93;28921:7;28901:212;28938:18;28930:4;:26;28901:212;;28975:31;29009:17;;;:11;:17;;;;;;;;;28975:51;;;;;;;;;-1:-1:-1;;;;;28975:51:0;;;;;-1:-1:-1;;;28975:51:0;;;;;;;;;;;;29039:28;29035:71;;29087:9;28578:606;-1:-1:-1;;;;28578:606:0:o;29035:71::-;-1:-1:-1;28958:6:0;;;;:::i;:::-;;;;28901:212;;;-1:-1:-1;29121:57:0;;-1:-1:-1;;;29121:57:0;;24381:2:1;29121:57:0;;;24363:21:1;24420:2;24400:18;;;24393:30;24459:34;24439:18;;;24432:62;24530:17;24510:18;;;24503:45;24565:19;;29121:57:0;24179:411:1;42323:191:0;42397:16;42416:6;;-1:-1:-1;;;;;42433:17:0;;;-1:-1:-1;;42433:17:0;;;;;;42466:40;;42416:6;;;;;;;42466:40;;42397:16;42466:40;42386:128;42323:191;:::o;38167:690::-;38304:4;-1:-1:-1;;;;;38321:13:0;;3575:19;:23;38317:535;;38360:72;;-1:-1:-1;;;38360:72:0;;-1:-1:-1;;;;;38360:36:0;;;;;:72;;23800:10;;38411:4;;38417:7;;38426:5;;38360:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38360:72:0;;;;;;;;-1:-1:-1;;38360:72:0;;;;;;;;;;;;:::i;:::-;;;38347:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38591:13:0;;38587:215;;38624:61;;-1:-1:-1;;;38624:61:0;;20428:2:1;38624:61:0;;;20410:21:1;20467:2;20447:18;;;20440:30;20506:34;20486:18;;;20479:62;-1:-1:-1;;;20557:18:1;;;20550:49;20616:19;;38624:61:0;20226:415:1;38587:215:0;38770:6;38764:13;38755:6;38751:2;38747:15;38740:38;38347:464;-1:-1:-1;;;;;;38482:55:0;-1:-1:-1;;;38482:55:0;;-1:-1:-1;38475:62:0;;38317:535;-1:-1:-1;38840:4:0;38167:690;;;;;;:::o;49994:108::-;50054:13;50083;50076:20;;;;;:::i;28332:240::-;28393:7;-1:-1:-1;;;;;28425:19:0;;28409:102;;;;-1:-1:-1;;;28409:102:0;;13547:2:1;28409:102:0;;;13529:21:1;13586:2;13566:18;;;13559:30;13625:34;13605:18;;;13598:62;13696:19;13676:18;;;13669:47;13733:19;;28409:102:0;13345:413:1;28409:102:0;-1:-1:-1;;;;;;28533:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28533:32:0;;-1:-1:-1;;;;;28533:32:0;;28332:240::o;33313:1272::-;33441:12;;-1:-1:-1;;;;;33468:16:0;;33460:62;;;;-1:-1:-1;;;33460:62:0;;21557:2:1;33460:62:0;;;21539:21:1;21596:2;21576:18;;;21569:30;21635:34;21615:18;;;21608:62;-1:-1:-1;;;21686:18:1;;;21679:31;21727:19;;33460:62:0;21355:397:1;33460:62:0;33659:21;33667:12;32852;;-1:-1:-1;32842:22:0;32765:105;33659:21;33658:22;33650:64;;;;-1:-1:-1;;;33650:64:0;;21199:2:1;33650:64:0;;;21181:21:1;21238:2;21218:18;;;21211:30;21277:31;21257:18;;;21250:59;21326:18;;33650:64:0;20997:353:1;33650:64:0;33741:12;33729:8;:24;;33721:71;;;;-1:-1:-1;;;33721:71:0;;25211:2:1;33721:71:0;;;25193:21:1;25250:2;25230:18;;;25223:30;25289:34;25269:18;;;25262:62;-1:-1:-1;;;25340:18:1;;;25333:32;25382:19;;33721:71:0;25009:398:1;33721:71:0;-1:-1:-1;;;;;33904:16:0;;33871:30;33904:16;;;:12;:16;;;;;;;;;33871:49;;;;;;;;;-1:-1:-1;;;;;33871:49:0;;;;;-1:-1:-1;;;33871:49:0;;;;;;;;;;;33946:119;;;;;;;;33966:19;;33871:49;;33946:119;;;33966:39;;33996:8;;33966:39;:::i;:::-;-1:-1:-1;;;;;33946:119:0;;;;;34049:8;34014:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33946:119:0;;;;;;-1:-1:-1;;;;;33927:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33927:138:0;;;;;;;;;;;;34100:43;;;;;;;;;;;34126:15;34100:43;;;;;;;;34072:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34072:71:0;-1:-1:-1;;;;;;34072:71:0;;;;;;;;;;;;;;;;;;34084:12;;34196:281;34220:8;34216:1;:12;34196:281;;;34249:38;;34274:12;;-1:-1:-1;;;;;34249:38:0;;;34266:1;;34249:38;;34266:1;;34249:38;34314:59;34345:1;34349:2;34353:12;34367:5;34314:22;:59::i;:::-;34296:150;;;;-1:-1:-1;;;34296:150:0;;20428:2:1;34296:150:0;;;20410:21:1;20467:2;20447:18;;;20440:30;20506:34;20486:18;;;20479:62;-1:-1:-1;;;20557:18:1;;;20550:49;20616:19;;34296:150:0;20226:415:1;34296:150:0;34455:14;;;;:::i;:::-;;;;34230:3;;;;;:::i;:::-;;;;34196:281;;;-1:-1:-1;34485:12:0;:27;;;34519:60;50897:1095;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;215:673;269:5;322:3;315:4;307:6;303:17;299:27;289:55;;340:1;337;330:12;289:55;376:6;363:20;402:4;426:60;442:43;482:2;442:43;:::i;:::-;426:60;:::i;:::-;508:3;532:2;527:3;520:15;560:2;555:3;551:12;544:19;;595:2;587:6;583:15;647:3;642:2;636;633:1;629:10;621:6;617:23;613:32;610:41;607:61;;;664:1;661;654:12;607:61;686:1;696:163;710:2;707:1;704:9;696:163;;;767:17;;755:30;;805:12;;;;837;;;;728:1;721:9;696:163;;;-1:-1:-1;877:5:1;;215:673;-1:-1:-1;;;;;;;215:673:1:o;893:160::-;958:20;;1014:13;;1007:21;997:32;;987:60;;1043:1;1040;1033:12;1058:163;1125:20;;1185:10;1174:22;;1164:33;;1154:61;;1211:1;1208;1201:12;1226:171;1293:20;;1353:18;1342:30;;1332:41;;1322:69;;1387:1;1384;1377:12;1402:186;1461:6;1514:2;1502:9;1493:7;1489:23;1485:32;1482:52;;;1530:1;1527;1520:12;1482:52;1553:29;1572:9;1553:29;:::i;1593:260::-;1661:6;1669;1722:2;1710:9;1701:7;1697:23;1693:32;1690:52;;;1738:1;1735;1728:12;1690:52;1761:29;1780:9;1761:29;:::i;:::-;1751:39;;1809:38;1843:2;1832:9;1828:18;1809:38;:::i;:::-;1799:48;;1593:260;;;;;:::o;1858:328::-;1935:6;1943;1951;2004:2;1992:9;1983:7;1979:23;1975:32;1972:52;;;2020:1;2017;2010:12;1972:52;2043:29;2062:9;2043:29;:::i;:::-;2033:39;;2091:38;2125:2;2114:9;2110:18;2091:38;:::i;:::-;2081:48;;2176:2;2165:9;2161:18;2148:32;2138:42;;1858:328;;;;;:::o;2191:980::-;2286:6;2294;2302;2310;2363:3;2351:9;2342:7;2338:23;2334:33;2331:53;;;2380:1;2377;2370:12;2331:53;2403:29;2422:9;2403:29;:::i;:::-;2393:39;;2451:2;2472:38;2506:2;2495:9;2491:18;2472:38;:::i;:::-;2462:48;;2557:2;2546:9;2542:18;2529:32;2519:42;;2612:2;2601:9;2597:18;2584:32;2635:18;2676:2;2668:6;2665:14;2662:34;;;2692:1;2689;2682:12;2662:34;2730:6;2719:9;2715:22;2705:32;;2775:7;2768:4;2764:2;2760:13;2756:27;2746:55;;2797:1;2794;2787:12;2746:55;2833:2;2820:16;2855:2;2851;2848:10;2845:36;;;2861:18;;:::i;:::-;2903:53;2946:2;2927:13;;-1:-1:-1;;2923:27:1;2919:36;;2903:53;:::i;:::-;2890:66;;2979:2;2972:5;2965:17;3019:7;3014:2;3009;3005;3001:11;2997:20;2994:33;2991:53;;;3040:1;3037;3030:12;2991:53;3095:2;3090;3086;3082:11;3077:2;3070:5;3066:14;3053:45;3139:1;3134:2;3129;3122:5;3118:14;3114:23;3107:34;;3160:5;3150:15;;;;;2191:980;;;;;;;:::o;3176:254::-;3241:6;3249;3302:2;3290:9;3281:7;3277:23;3273:32;3270:52;;;3318:1;3315;3308:12;3270:52;3341:29;3360:9;3341:29;:::i;:::-;3331:39;;3389:35;3420:2;3409:9;3405:18;3389:35;:::i;3435:254::-;3503:6;3511;3564:2;3552:9;3543:7;3539:23;3535:32;3532:52;;;3580:1;3577;3570:12;3532:52;3603:29;3622:9;3603:29;:::i;:::-;3593:39;3679:2;3664:18;;;;3651:32;;-1:-1:-1;;;3435:254:1:o;3694:1157::-;3812:6;3820;3873:2;3861:9;3852:7;3848:23;3844:32;3841:52;;;3889:1;3886;3879:12;3841:52;3929:9;3916:23;3958:18;3999:2;3991:6;3988:14;3985:34;;;4015:1;4012;4005:12;3985:34;4053:6;4042:9;4038:22;4028:32;;4098:7;4091:4;4087:2;4083:13;4079:27;4069:55;;4120:1;4117;4110:12;4069:55;4156:2;4143:16;4178:4;4202:60;4218:43;4258:2;4218:43;:::i;4202:60::-;4284:3;4308:2;4303:3;4296:15;4336:2;4331:3;4327:12;4320:19;;4367:2;4363;4359:11;4415:7;4410:2;4404;4401:1;4397:10;4393:2;4389:19;4385:28;4382:41;4379:61;;;4436:1;4433;4426:12;4379:61;4458:1;4449:10;;4468:169;4482:2;4479:1;4476:9;4468:169;;;4539:23;4558:3;4539:23;:::i;:::-;4527:36;;4500:1;4493:9;;;;;4583:12;;;;4615;;4468:169;;;-1:-1:-1;4656:5:1;-1:-1:-1;;4699:18:1;;4686:32;;-1:-1:-1;;4730:16:1;;;4727:36;;;4759:1;4756;4749:12;4727:36;;4782:63;4837:7;4826:8;4815:9;4811:24;4782:63;:::i;:::-;4772:73;;;3694:1157;;;;;:::o;4856:180::-;4912:6;4965:2;4953:9;4944:7;4940:23;4936:32;4933:52;;;4981:1;4978;4971:12;4933:52;5004:26;5020:9;5004:26;:::i;5041:245::-;5099:6;5152:2;5140:9;5131:7;5127:23;5123:32;5120:52;;;5168:1;5165;5158:12;5120:52;5207:9;5194:23;5226:30;5250:5;5226:30;:::i;5291:249::-;5360:6;5413:2;5401:9;5392:7;5388:23;5384:32;5381:52;;;5429:1;5426;5419:12;5381:52;5461:9;5455:16;5480:30;5504:5;5480:30;:::i;5545:592::-;5616:6;5624;5677:2;5665:9;5656:7;5652:23;5648:32;5645:52;;;5693:1;5690;5683:12;5645:52;5733:9;5720:23;5762:18;5803:2;5795:6;5792:14;5789:34;;;5819:1;5816;5809:12;5789:34;5857:6;5846:9;5842:22;5832:32;;5902:7;5895:4;5891:2;5887:13;5883:27;5873:55;;5924:1;5921;5914:12;5873:55;5964:2;5951:16;5990:2;5982:6;5979:14;5976:34;;;6006:1;6003;5996:12;5976:34;6051:7;6046:2;6037:6;6033:2;6029:15;6025:24;6022:37;6019:57;;;6072:1;6069;6062:12;6019:57;6103:2;6095:11;;;;;6125:6;;-1:-1:-1;5545:592:1;;-1:-1:-1;;;;5545:592:1:o;6142:180::-;6201:6;6254:2;6242:9;6233:7;6229:23;6225:32;6222:52;;;6270:1;6267;6260:12;6222:52;-1:-1:-1;6293:23:1;;6142:180;-1:-1:-1;6142:180:1:o;6327:248::-;6395:6;6403;6456:2;6444:9;6435:7;6431:23;6427:32;6424:52;;;6472:1;6469;6462:12;6424:52;-1:-1:-1;;6495:23:1;;;6565:2;6550:18;;;6537:32;;-1:-1:-1;6327:248:1:o;6580:316::-;6657:6;6665;6673;6726:2;6714:9;6705:7;6701:23;6697:32;6694:52;;;6742:1;6739;6732:12;6694:52;-1:-1:-1;;6765:23:1;;;6835:2;6820:18;;6807:32;;-1:-1:-1;6886:2:1;6871:18;;;6858:32;;6580:316;-1:-1:-1;6580:316:1:o;6901:184::-;6959:6;7012:2;7000:9;6991:7;6987:23;6983:32;6980:52;;;7028:1;7025;7018:12;6980:52;7051:28;7069:9;7051:28;:::i;7090:474::-;7180:6;7188;7196;7204;7212;7265:3;7253:9;7244:7;7240:23;7236:33;7233:53;;;7282:1;7279;7272:12;7233:53;7305:28;7323:9;7305:28;:::i;:::-;7295:38;;7352:37;7385:2;7374:9;7370:18;7352:37;:::i;:::-;7342:47;;7408:37;7441:2;7430:9;7426:18;7408:37;:::i;:::-;7398:47;;7464:37;7497:2;7486:9;7482:18;7464:37;:::i;:::-;7454:47;;7520:38;7553:3;7542:9;7538:19;7520:38;:::i;:::-;7510:48;;7090:474;;;;;;;;:::o;7569:257::-;7610:3;7648:5;7642:12;7675:6;7670:3;7663:19;7691:63;7747:6;7740:4;7735:3;7731:14;7724:4;7717:5;7713:16;7691:63;:::i;:::-;7808:2;7787:15;-1:-1:-1;;7783:29:1;7774:39;;;;7815:4;7770:50;;7569:257;-1:-1:-1;;7569:257:1:o;7831:450::-;8063:3;8101:6;8095:13;8117:53;8163:6;8158:3;8151:4;8143:6;8139:17;8117:53;:::i;:::-;-1:-1:-1;;;8192:16:1;;8217:28;;;-1:-1:-1;8272:2:1;8261:14;;7831:450;-1:-1:-1;7831:450:1:o;8286:372::-;8445:3;8483:6;8477:13;8499:53;8545:6;8540:3;8533:4;8525:6;8521:17;8499:53;:::i;:::-;8574:16;;;;8599:21;;;-1:-1:-1;8647:4:1;8636:16;;8286:372;-1:-1:-1;8286:372:1:o;8894:511::-;9088:4;-1:-1:-1;;;;;9198:2:1;9190:6;9186:15;9175:9;9168:34;9250:2;9242:6;9238:15;9233:2;9222:9;9218:18;9211:43;;9290:6;9285:2;9274:9;9270:18;9263:34;9333:3;9328:2;9317:9;9313:18;9306:31;9354:45;9394:3;9383:9;9379:19;9371:6;9354:45;:::i;:::-;9346:53;8894:511;-1:-1:-1;;;;;;8894:511:1:o;9602:219::-;9751:2;9740:9;9733:21;9714:4;9771:44;9811:2;9800:9;9796:18;9788:6;9771:44;:::i;27118:275::-;27189:2;27183:9;27254:2;27235:13;;-1:-1:-1;;27231:27:1;27219:40;;27289:18;27274:34;;27310:22;;;27271:62;27268:88;;;27336:18;;:::i;:::-;27372:2;27365:22;27118:275;;-1:-1:-1;27118:275:1:o;27398:183::-;27458:4;27491:18;27483:6;27480:30;27477:56;;;27513:18;;:::i;:::-;-1:-1:-1;27558:1:1;27554:14;27570:4;27550:25;;27398:183::o;27586:253::-;27626:3;-1:-1:-1;;;;;27715:2:1;27712:1;27708:10;27745:2;27742:1;27738:10;27776:3;27772:2;27768:12;27763:3;27760:21;27757:47;;;27784:18;;:::i;:::-;27820:13;;27586:253;-1:-1:-1;;;;27586:253:1:o;27844:128::-;27884:3;27915:1;27911:6;27908:1;27905:13;27902:39;;;27921:18;;:::i;:::-;-1:-1:-1;27957:9:1;;27844:128::o;27977:120::-;28017:1;28043;28033:35;;28048:18;;:::i;:::-;-1:-1:-1;28082:9:1;;27977:120::o;28102:168::-;28142:7;28208:1;28204;28200:6;28196:14;28193:1;28190:21;28185:1;28178:9;28171:17;28167:45;28164:71;;;28215:18;;:::i;:::-;-1:-1:-1;28255:9:1;;28102:168::o;28275:246::-;28315:4;-1:-1:-1;;;;;28428:10:1;;;;28398;;28450:12;;;28447:38;;;28465:18;;:::i;:::-;28502:13;;28275:246;-1:-1:-1;;;28275:246:1:o;28526:125::-;28566:4;28594:1;28591;28588:8;28585:34;;;28599:18;;:::i;:::-;-1:-1:-1;28636:9:1;;28526:125::o;28656:258::-;28728:1;28738:113;28752:6;28749:1;28746:13;28738:113;;;28828:11;;;28822:18;28809:11;;;28802:39;28774:2;28767:10;28738:113;;;28869:6;28866:1;28863:13;28860:48;;;-1:-1:-1;;28904:1:1;28886:16;;28879:27;28656:258::o;28919:136::-;28958:3;28986:5;28976:39;;28995:18;;:::i;:::-;-1:-1:-1;;;29031:18:1;;28919:136::o;29060:380::-;29139:1;29135:12;;;;29182;;;29203:61;;29257:4;29249:6;29245:17;29235:27;;29203:61;29310:2;29302:6;29299:14;29279:18;29276:38;29273:161;;;29356:10;29351:3;29347:20;29344:1;29337:31;29391:4;29388:1;29381:15;29419:4;29416:1;29409:15;29273:161;;29060:380;;;:::o;29445:135::-;29484:3;-1:-1:-1;;29505:17:1;;29502:43;;;29525:18;;:::i;:::-;-1:-1:-1;29572:1:1;29561:13;;29445:135::o;29585:112::-;29617:1;29643;29633:35;;29648:18;;:::i;:::-;-1:-1:-1;29682:9:1;;29585:112::o;29702:127::-;29763:10;29758:3;29754:20;29751:1;29744:31;29794:4;29791:1;29784:15;29818:4;29815:1;29808:15;29834:127;29895:10;29890:3;29886:20;29883:1;29876:31;29926:4;29923:1;29916:15;29950:4;29947:1;29940:15;29966:127;30027:10;30022:3;30018:20;30015:1;30008:31;30058:4;30055:1;30048:15;30082:4;30079:1;30072:15;30098:127;30159:10;30154:3;30150:20;30147:1;30140:31;30190:4;30187:1;30180:15;30214:4;30211:1;30204:15;30230:131;-1:-1:-1;;;;;;30304:32:1;;30294:43;;30284:71;;30351:1;30348;30341:12

Swarm Source

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