ETH Price: $3,402.57 (-1.03%)
Gas: 10 Gwei

Token

Broman NFT (Broman NFT)
 

Overview

Max Total Supply

5,024 Broman NFT

Holders

1,827

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 Broman NFT
0x8e6804337f8d774ce3eb4d4c12bad9dfab2f56ad
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Broman

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: src/contracts/Context.sol



pragma solidity ^0.8.0;

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

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

// File: src/contracts/Ownable.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: src/contracts/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: src/contracts/IERC165.sol



pragma solidity ^0.8.0;

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

// File: src/contracts/IERC721.sol



pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: src/contracts/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: src/contracts/IERC721Metadata.sol



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: src/contracts/IERC721Enumerable.sol



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: src/contracts/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: src/contracts/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: src/contracts/ERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: src/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;
  }

  struct TokenTrackNum {
    uint trackNum;
  }

  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 from token ID to track number
  mapping(uint256 => TokenTrackNum) private _trackNum;  

  // 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(), ".json"))
        : "";

  }

  /**
   * @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, "");
  }

  function _safeBatchMint(address to, uint256 quantity) internal {
    _safeBatchMint(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);
  }

  function _safeBatchMint(
    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");

    _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 random get track numbers by minting quantity
   *
   * Requirements:
   *
   * - `quantity` how many ntfs be minted at once
   *
   */
  function _randomGetTrackNums(uint quantity) internal view returns (uint[] memory) {
    uint[] memory trackNums = new uint[](quantity);
    bytes32[] memory randVar = new bytes32[](quantity);

    // using random block info. to generate track number
    // these info. will be difference while every function call
    bytes32 randomHex = bytes32(uint256(uint160(tx.origin)) << 96);
    
    for (uint i = 1; i <= quantity; i++) {
      uint offset = i*4;
      uint index = i-1;

      randVar[index] = randomHex >> offset;

      uint randomNumber = uint(keccak256(abi.encodePacked(block.timestamp, randVar[index], msg.sender))) % 5;
      trackNums[index] = randomNumber + 1;
    }

    return trackNums;
  }

  /**
   * @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/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: src/contracts/Broman.sol



pragma solidity ^0.8.0;





contract Broman is Ownable, ERC721A, ReentrancyGuard {

  event Log(address indexed user, uint indexed value, uint256 indexed price);

  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  uint256 public immutable amountForSale;
  
  uint256 public constant MINT_PRICE_WL = 0 ether;
  uint256 public constant MINT_PRICE_PS = 0 ether;

  //to provide this as a bytes32 and not a string. 0x should be prepended
  bytes32 public merkleRoot = 0x1c5524118da897f3220c07d1185d0abfebb42c7f475b6d55cbe81306176d93d7;

  struct SaleConfig {
    uint32 privateSaleStartTimeWL;
    uint32 privateSaleEndTimeWL;
    uint32 publicSaleStartTime;
  }

  SaleConfig public saleConfig;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForSale_,
    uint256 amountForDevs_
  ) ERC721A("Broman NFT", "Broman NFT", maxBatchSize_, collectionSize_) {

    maxPerAddressDuringMint = maxBatchSize_;
    amountForSale = amountForSale_;
    amountForDevs = amountForDevs_;

    require(
      (amountForSale_ + amountForDevs_) <= collectionSize_,
      "larger collection size needed"
    );
  }

  /**
   * Private Sale : for whitelist users
   *
   * Requirements:
   * - `hexProof` generated from merkletree 
   * - `quantity` how many ntfs be minted at once
   *
   */
  function whitelistMint(bytes32[] calldata hexProof, uint256 quantity) external payable callerIsUser {
    uint256 _saleStartTime = uint256(saleConfig.privateSaleStartTimeWL);
    uint256 _saleEndTime = uint256(saleConfig.privateSaleEndTimeWL);

    require(
      _saleStartTime != 0 && block.timestamp >= _saleStartTime,
      "sale for whitelist users has not started yet"
    );

    require(
      _saleEndTime != 0 && block.timestamp <= _saleEndTime,
      "sale for whitelist users has been ended"
    );

    require(
      isWhitelistUser(hexProof, msg.sender),
      "Not in whitelist"
    );
    
    require(
      totalSupply() + quantity <= amountForSale,
      "WL mint : not enough remaining reserved for minting"
    );

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

    uint256 totalCost = MINT_PRICE_WL * quantity;

    emit Log(msg.sender, msg.value, totalCost);

    _safeMint(msg.sender, quantity);

    require(msg.value == totalCost, "Total cost is not right");
  }

  /**
   * Public Sale
   *
   * Requirements:
   * 
   * - `quantity` how many ntfs be minted at once
   *
   */

  function publicSaleMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    require(
      isPublicSaleOn(),
      "public sale has not begun yet"
    );

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

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

    uint256 totalCost = MINT_PRICE_PS * quantity;

    emit Log(msg.sender, msg.value, totalCost);

    _safeMint(msg.sender, quantity);

    require(msg.value == totalCost, "Total cost is not right");
  }

  function isPublicSaleOn() public view returns (bool) {
    SaleConfig memory config = saleConfig;

    return
      block.timestamp >= uint256(config.publicSaleStartTime);
  }

  /**
   * setup config
   * */
  function setupConfig(
    uint32 startTimestampWL, 
    uint32 endTimestampWL, 
    uint32 timestampPS
    ) external onlyOwner {

    saleConfig = SaleConfig(
      startTimestampWL,
      endTimestampWL,
      timestampPS
    );

  }

  /**
   * renew merkleRoot for latest whitelist
   * */
  function updateMerkleRoot(bytes32 latestMerkleRoot) external onlyOwner {
    merkleRoot = latestMerkleRoot;
  }

  
  function getSaleStartTimeWL() public view returns (uint32){
    return saleConfig.privateSaleStartTimeWL;
  }

  function getSaleEndTimeWL() public view returns (uint32){
    return saleConfig.privateSaleEndTimeWL;
  }

  function getSaleStartTimePS() public view returns (uint32){
    return saleConfig.publicSaleStartTime;
  }

  // For marketing usage
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    _safeBatchMint(msg.sender, quantity);
  }

  function isWhitelistUser(bytes32[] calldata merkleProof, address user) 
    public 
    view 
    returns (bool){

    bytes32 leaf = keccak256(abi.encodePacked(user));

    return MerkleProof.verify(merkleProof, merkleRoot, leaf);
  }

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

  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForSale_","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":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"price","type":"uint256"}],"name":"Log","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":"MINT_PRICE_PS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleEndTimeWL","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStartTimePS","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStartTimeWL","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"user","type":"address"}],"name":"isWhitelistUser","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"privateSaleStartTimeWL","type":"uint32"},{"internalType":"uint32","name":"privateSaleEndTimeWL","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"startTimestampWL","type":"uint32"},{"internalType":"uint32","name":"endTimestampWL","type":"uint32"},{"internalType":"uint32","name":"timestampPS","type":"uint32"}],"name":"setupConfig","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":"bytes32","name":"latestMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"hexProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610120604052600060018190556009557f1c5524118da897f3220c07d1185d0abfebb42c7f475b6d55cbe81306176d93d7600b553480156200004057600080fd5b50604051620038a7380380620038a7833981016040819052620000639162000292565b6040518060400160405280600a815260200169109c9bdb585b8813919560b21b8152506040518060400160405280600a815260200169109c9bdb585b8813919560b21b8152508585620000c5620000bf6200019860201b60201c565b6200019c565b60008111620000f15760405162461bcd60e51b8152600401620000e89062000346565b60405180910390fd5b60008211620001145760405162461bcd60e51b8152600401620000e890620002c8565b835162000129906002906020870190620001ec565b5082516200013f906003906020860190620001ec565b5060a09190915260805250506001600a5560c084905261010082905260e0819052826200016d828462000394565b11156200018e5760405162461bcd60e51b8152600401620000e8906200030f565b50505050620003f6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001fa90620003b9565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b60008060008060808587031215620002a8578384fd5b505082516020840151604085015160609095015191969095509092509050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252601d908201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604082015260600190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b60008219821115620003b457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003ce57607f821691505b60208210811415620003f057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161343462000473600039600081816109b301528181610f130152611257015260008181610cf501526114e4015260008181610a0501528181610f4a01526112a9015260008181611a9501528181611abf0152611eb00152600081816118eb015261191d01526134346000f3fe6080604052600436106102515760003560e01c80637622345f11610139578063aff290e7116100b6578063d7224ba01161007a578063d7224ba01461067f578063dc33e68114610694578063e985e9c5146106b4578063f2fde38b146106d4578063fbc38d22146104f3578063fbe1aa51146106f457610251565b8063aff290e7146105f7578063b3ab66b014610617578063b88d4fde1461062a578063c4aa1f6b1461064a578063c87b56dd1461065f57610251565b806390aa0b0f116100fd57806390aa0b0f1461055c5780639231ab2a1461058057806395d89b41146105ad578063a22cb465146105c2578063ac446002146105e257610251565b80637622345f146104f35780638473e55f1461050857806387a6b8131461051d5780638bc35c2f146105325780638da5cb5b1461054757610251565b80632f745c59116101d25780634783f0ef116101965780634783f0ef1461043e5780634f6ccce71461045e57806355f804b31461047e5780636352211e1461049e57806370a08231146104be578063715018a6146104de57610251565b80632f745c59146103a957806337235e56146103c9578063375a069a146103e95780633f5e47411461040957806342842e0e1461041e57610251565b806318160ddd1161021957806318160ddd1461031f57806323b872dd146103415780632904e6d9146103615780632d20fb60146103745780632eb4a7ab1461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db57806314a6d22f146102fd575b600080fd5b34801561026257600080fd5b506102766102713660046126f5565b610709565b60405161028391906128ae565b60405180910390f35b34801561029857600080fd5b506102a161076c565b60405161028391906128c2565b3480156102ba57600080fd5b506102ce6102c93660046126dd565b6107fe565b604051610283919061285d565b3480156102e757600080fd5b506102fb6102f636600461261a565b61084a565b005b34801561030957600080fd5b506103126108e3565b6040516102839190613213565b34801561032b57600080fd5b506103346108ef565b60405161028391906128b9565b34801561034d57600080fd5b506102fb61035c3660046124da565b6108f5565b6102fb61036f366004612694565b610900565b34801561038057600080fd5b506102fb61038f3660046126dd565b610ac5565b3480156103a057600080fd5b50610334610b3d565b3480156103b557600080fd5b506103346103c436600461261a565b610b43565b3480156103d557600080fd5b506102766103e4366004612643565b610c3e565b3480156103f557600080fd5b506102fb6104043660046126dd565b610cb4565b34801561041557600080fd5b50610276610d52565b34801561042a57600080fd5b506102fb6104393660046124da565b610d8c565b34801561044a57600080fd5b506102fb6104593660046126dd565b610da7565b34801561046a57600080fd5b506103346104793660046126dd565b610deb565b34801561048a57600080fd5b506102fb61049936600461272d565b610e17565b3480156104aa57600080fd5b506102ce6104b93660046126dd565b610e62565b3480156104ca57600080fd5b506103346104d936600461248e565b610e74565b3480156104ea57600080fd5b506102fb610ec1565b3480156104ff57600080fd5b50610334610f0c565b34801561051457600080fd5b50610334610f11565b34801561052957600080fd5b50610312610f35565b34801561053e57600080fd5b50610334610f48565b34801561055357600080fd5b506102ce610f6c565b34801561056857600080fd5b50610571610f7b565b60405161028393929190613224565b34801561058c57600080fd5b506105a061059b3660046126dd565b610f9e565b60405161028391906131ea565b3480156105b957600080fd5b506102a1610faf565b3480156105ce57600080fd5b506102fb6105dd3660046125e0565b610fbe565b3480156105ee57600080fd5b506102fb61108c565b34801561060357600080fd5b506102fb610612366004612799565b611169565b6102fb6106253660046126dd565b611212565b34801561063657600080fd5b506102fb610645366004612515565b611365565b34801561065657600080fd5b5061031261139e565b34801561066b57600080fd5b506102a161067a3660046126dd565b6113b2565b34801561068b57600080fd5b50610334611435565b3480156106a057600080fd5b506103346106af36600461248e565b61143b565b3480156106c057600080fd5b506102766106cf3660046124a8565b611446565b3480156106e057600080fd5b506102fb6106ef36600461248e565b611474565b34801561070057600080fd5b506103346114e2565b60006001600160e01b031982166380ac58cd60e01b148061073a57506001600160e01b03198216635b5e139f60e01b145b8061075557506001600160e01b0319821663780e9d6360e01b145b80610764575061076482611506565b90505b919050565b60606002805461077b9061333c565b80601f01602080910402602001604051908101604052809291908181526020018280546107a79061333c565b80156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b60006108098261151f565b61082e5760405162461bcd60e51b81526004016108259061315b565b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061085582610e62565b9050806001600160a01b0316836001600160a01b031614156108895760405162461bcd60e51b815260040161082590612e5c565b806001600160a01b031661089b611526565b6001600160a01b031614806108b757506108b7816106cf611526565b6108d35760405162461bcd60e51b815260040161082590612b28565b6108de83838361152a565b505050565b600c5463ffffffff1690565b60015490565b6108de838383611586565b32331461091f5760405162461bcd60e51b815260040161082590612ac7565b600c5463ffffffff8082169164010000000090041681158015906109435750814210155b61095f5760405162461bcd60e51b815260040161082590612d86565b801580159061096e5750804211155b61098a5760405162461bcd60e51b815260040161082590612a2f565b610995858533610c3e565b6109b15760405162461bcd60e51b815260040161082590612afe565b7f0000000000000000000000000000000000000000000000000000000000000000836109db6108ef565b6109e5919061326f565b1115610a035760405162461bcd60e51b815260040161082590612dd2565b7f000000000000000000000000000000000000000000000000000000000000000083610a2e3361143b565b610a38919061326f565b1115610a565760405162461bcd60e51b815260040161082590612f93565b6000610a62848261329b565b6040519091508190349033907f940f8524c5e5984c910d020c9c65918682bc7ed567dbc8d49277f0e787ee5f0090600090a4610a9e3385611890565b803414610abd5760405162461bcd60e51b815260040161082590613058565b505050505050565b610acd611526565b6001600160a01b0316610ade610f6c565b6001600160a01b031614610b045760405162461bcd60e51b815260040161082590612c79565b6002600a541415610b275760405162461bcd60e51b8152600401610825906130d5565b6002600a55610b35816118aa565b506001600a55565b600b5481565b6000610b4e83610e74565b8210610b6c5760405162461bcd60e51b8152600401610825906128d5565b6000610b766108ef565b905060008060005b83811015610c1f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610bd057805192505b876001600160a01b0316836001600160a01b03161415610c0c5786841415610bfe57509350610c3892505050565b83610c0881613377565b9450505b5080610c1781613377565b915050610b7e565b5060405162461bcd60e51b81526004016108259061300a565b92915050565b60008082604051602001610c5291906127fe565b604051602081830303815290604052805190602001209050610cab85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611a34565b95945050505050565b610cbc611526565b6001600160a01b0316610ccd610f6c565b6001600160a01b031614610cf35760405162461bcd60e51b815260040161082590612c79565b7f000000000000000000000000000000000000000000000000000000000000000081610d1d6108ef565b610d27919061326f565b1115610d455760405162461bcd60e51b815260040161082590612fc3565b610d4f3382611a4a565b50565b60408051606081018252600c5463ffffffff8082168352640100000000820481166020840152600160401b90910416910181905242101590565b6108de83838360405180602001604052806000815250611365565b610daf611526565b6001600160a01b0316610dc0610f6c565b6001600160a01b031614610de65760405162461bcd60e51b815260040161082590612c79565b600b55565b6000610df56108ef565b8210610e135760405162461bcd60e51b8152600401610825906129a7565b5090565b610e1f611526565b6001600160a01b0316610e30610f6c565b6001600160a01b031614610e565760405162461bcd60e51b815260040161082590612c79565b6108de600d838361236f565b6000610e6d82611a64565b5192915050565b60006001600160a01b038216610e9c5760405162461bcd60e51b815260040161082590612bbc565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b610ec9611526565b6001600160a01b0316610eda610f6c565b6001600160a01b031614610f005760405162461bcd60e51b815260040161082590612c79565b610f0a6000611b76565b565b600081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c54600160401b900463ffffffff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b600c5463ffffffff808216916401000000008104821691600160401b9091041683565b610fa66123ef565b61076482611a64565b60606003805461077b9061333c565b610fc6611526565b6001600160a01b0316826001600160a01b03161415610ff75760405162461bcd60e51b815260040161082590612cfd565b8060086000611004611526565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611048611526565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161108091906128ae565b60405180910390a35050565b611094611526565b6001600160a01b03166110a5610f6c565b6001600160a01b0316146110cb5760405162461bcd60e51b815260040161082590612c79565b6002600a5414156110ee5760405162461bcd60e51b8152600401610825906130d5565b6002600a55604051600090339047906111069061285a565b60006040518083038185875af1925050503d8060008114611143576040519150601f19603f3d011682016040523d82523d6000602084013e611148565b606091505b5050905080610b355760405162461bcd60e51b815260040161082590612e9e565b611171611526565b6001600160a01b0316611182610f6c565b6001600160a01b0316146111a85760405162461bcd60e51b815260040161082590612c79565b6040805160608101825263ffffffff94851680825293851660208201819052929094169301839052600c805463ffffffff191690921767ffffffff000000001916640100000000909102176bffffffff00000000000000001916600160401b909202919091179055565b3233146112315760405162461bcd60e51b815260040161082590612ac7565b611239610d52565b6112555760405162461bcd60e51b815260040161082590612e25565b7f00000000000000000000000000000000000000000000000000000000000000008161127f6108ef565b611289919061326f565b11156112a75760405162461bcd60e51b815260040161082590612c07565b7f0000000000000000000000000000000000000000000000000000000000000000816112d23361143b565b6112dc919061326f565b11156112fa5760405162461bcd60e51b815260040161082590612f93565b6000611306828261329b565b6040519091508190349033907f940f8524c5e5984c910d020c9c65918682bc7ed567dbc8d49277f0e787ee5f0090600090a46113423383611890565b8034146113615760405162461bcd60e51b815260040161082590613058565b5050565b611370848484611586565b61137c84848484611bc6565b6113985760405162461bcd60e51b815260040161082590612ec8565b50505050565b600c54640100000000900463ffffffff1690565b60606113bd8261151f565b6113d95760405162461bcd60e51b815260040161082590612cae565b60006113e3611ce2565b90506000815111611403576040518060200160405280600081525061142e565b8061140d84611cf1565b60405160200161141e92919061281b565b6040516020818303038152906040525b9392505050565b60095481565b600061076482611e0b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61147c611526565b6001600160a01b031661148d610f6c565b6001600160a01b0316146114b35760405162461bcd60e51b815260040161082590612c79565b6001600160a01b0381166114d95760405162461bcd60e51b815260040161082590612917565b610d4f81611b76565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061159182611a64565b9050600081600001516001600160a01b03166115ab611526565b6001600160a01b031614806115e057506115c3611526565b6001600160a01b03166115d5846107fe565b6001600160a01b0316145b806115f4575081516115f4906106cf611526565b9050806116135760405162461bcd60e51b815260040161082590612d34565b846001600160a01b031682600001516001600160a01b0316146116485760405162461bcd60e51b815260040161082590612c33565b6001600160a01b03841661166e5760405162461bcd60e51b8152600401610825906129ea565b61167b8585856001611398565b61168b600084846000015161152a565b6001600160a01b03851660009081526006602052604081208054600192906116bd9084906001600160801b03166132ba565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600660205260408120805460019450909261170991859116613244565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561179e84600161326f565b6000818152600460205260409020549091506001600160a01b0316611842576117c68161151f565b156118425760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610abd8686866001611398565b611361828260405180602001604052806000815250611e5f565b600954816118ca5760405162461bcd60e51b815260040161082590612b85565b600060016118d8848461326f565b6118e291906132e2565b905061190f60017f00000000000000000000000000000000000000000000000000000000000000006132e2565b8111156119445761194160017f00000000000000000000000000000000000000000000000000000000000000006132e2565b90505b61194d8161151f565b6119695760405162461bcd60e51b81526004016108259061308f565b815b818111611a20576000818152600460205260409020546001600160a01b0316611a0e57600061199982611a64565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b0390811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b80611a1881613377565b91505061196b565b50611a2c81600161326f565b600955505050565b600082611a4185846120c9565b14949350505050565b611361828260405180602001604052806000815250612143565b611a6c6123ef565b611a758261151f565b611a915760405162461bcd60e51b81526004016108259061295d565b60007f00000000000000000000000000000000000000000000000000000000000000008310611af257611ae47f0000000000000000000000000000000000000000000000000000000000000000846132e2565b611aef90600161326f565b90505b825b818110611b5d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611b4a579250610767915050565b5080611b5581613325565b915050611af4565b5060405162461bcd60e51b81526004016108259061310c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611bda846001600160a01b031661235a565b15611cd657836001600160a01b031663150b7a02611bf6611526565b8786866040518563ffffffff1660e01b8152600401611c189493929190612871565b602060405180830381600087803b158015611c3257600080fd5b505af1925050508015611c62575060408051601f3d908101601f19168201909252611c5f91810190612711565b60015b611cbc573d808015611c90576040519150601f19603f3d011682016040523d82523d6000602084013e611c95565b606091505b508051611cb45760405162461bcd60e51b815260040161082590612ec8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cda565b5060015b949350505050565b6060600d805461077b9061333c565b606081611d1657506040805180820190915260018152600360fc1b6020820152610767565b8160005b8115611d405780611d2a81613377565b9150611d399050600a83613287565b9150611d1a565b6000816001600160401b03811115611d6857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d92576020820181803683370190505b5090505b8415611cda57611da76001836132e2565b9150611db4600a86613392565b611dbf90603061326f565b60f81b818381518110611de257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e04600a86613287565b9450611d96565b60006001600160a01b038216611e335760405162461bcd60e51b815260040161082590612a76565b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611e885760405162461bcd60e51b815260040161082590612f52565b611e918161151f565b15611eae5760405162461bcd60e51b815260040161082590612f1b565b7f0000000000000000000000000000000000000000000000000000000000000000831115611eee5760405162461bcd60e51b8152600401610825906131a8565b611efb6000858386611398565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f57908790613244565b6001600160801b03168152602001858360200151611f759190613244565b6001600160801b039081169091526001600160a01b03808816600081815260066020908152604080832087518154988401518816600160801b029088166001600160801b03199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156120b65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461207a6000888488611bc6565b6120965760405162461bcd60e51b815260040161082590612ec8565b816120a081613377565b92505080806120ae90613377565b91505061202d565b506001819055610abd6000878588611398565b600081815b845181101561213b5760008582815181106120f957634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161211b576121148382612360565b9250612128565b6121258184612360565b92505b508061213381613377565b9150506120ce565b509392505050565b6001546001600160a01b03841661216c5760405162461bcd60e51b815260040161082590612f52565b6121758161151f565b156121925760405162461bcd60e51b815260040161082590612f1b565b61219f6000858386611398565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121fb908790613244565b6001600160801b031681526020018583602001516122199190613244565b6001600160801b039081169091526001600160a01b03808816600081815260066020908152604080832087518154988401518816600160801b029088166001600160801b03199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156120b65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461231e6000888488611bc6565b61233a5760405162461bcd60e51b815260040161082590612ec8565b8161234481613377565b925050808061235290613377565b9150506122d1565b3b151590565b60009182526020526040902090565b82805461237b9061333c565b90600052602060002090601f01602090048101928261239d57600085556123e3565b82601f106123b65782800160ff198235161785556123e3565b828001600101855582156123e3579182015b828111156123e35782358255916020019190600101906123c8565b50610e13929150612406565b604080518082019091526000808252602082015290565b5b80821115610e135760008155600101612407565b80356001600160a01b038116811461076757600080fd5b60008083601f840112612443578081fd5b5081356001600160401b03811115612459578182fd5b602083019150836020808302850101111561247357600080fd5b9250929050565b803563ffffffff8116811461076757600080fd5b60006020828403121561249f578081fd5b61142e8261241b565b600080604083850312156124ba578081fd5b6124c38361241b565b91506124d16020840161241b565b90509250929050565b6000806000606084860312156124ee578081fd5b6124f78461241b565b92506125056020850161241b565b9150604084013590509250925092565b6000806000806080858703121561252a578081fd5b6125338561241b565b9350602061254281870161241b565b93506040860135925060608601356001600160401b0380821115612564578384fd5b818801915088601f830112612577578384fd5b813581811115612589576125896133d2565b604051601f8201601f19168101850183811182821017156125ac576125ac6133d2565b60405281815283820185018b10156125c2578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156125f2578182fd5b6125fb8361241b565b91506020830135801515811461260f578182fd5b809150509250929050565b6000806040838503121561262c578182fd5b6126358361241b565b946020939093013593505050565b600080600060408486031215612657578283fd5b83356001600160401b0381111561266c578384fd5b61267886828701612432565b909450925061268b90506020850161241b565b90509250925092565b6000806000604084860312156126a8578283fd5b83356001600160401b038111156126bd578384fd5b6126c986828701612432565b909790965060209590950135949350505050565b6000602082840312156126ee578081fd5b5035919050565b600060208284031215612706578081fd5b813561142e816133e8565b600060208284031215612722578081fd5b815161142e816133e8565b6000806020838503121561273f578182fd5b82356001600160401b0380821115612755578384fd5b818501915085601f830112612768578384fd5b813581811115612776578485fd5b866020828501011115612787578485fd5b60209290920196919550909350505050565b6000806000606084860312156127ad578081fd5b6127b68461247a565b92506127c46020850161247a565b915061268b6040850161247a565b600081518084526127ea8160208601602086016132f9565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b6000835161282d8184602088016132f9565b8351908301906128418183602088016132f9565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a4908301846127d2565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261142e60208301846127d2565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526027908201527f73616c6520666f722077686974656c69737420757365727320686173206265656040820152661b88195b99195960ca1b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526010908201526f139bdd081a5b881dda1a5d195b1a5cdd60821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602c908201527f73616c6520666f722077686974656c69737420757365727320686173206e6f7460408201526b081cdd185c9d1959081e595d60a21b606082015260800190565b60208082526033908201527f574c206d696e74203a206e6f7420656e6f7567682072656d61696e696e6720726040820152726573657276656420666f72206d696e74696e6760681b606082015260800190565b6020808252601d908201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b60208082526027908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604082015266195d881b5a5b9d60ca1b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f546f74616c20636f7374206973206e6f74207269676874000000000000000000604082015260600190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b031681526020918201516001600160401b03169181019190915260400190565b63ffffffff91909116815260200190565b63ffffffff93841681529183166020830152909116604082015260600190565b60006001600160801b03808316818516808303821115613266576132666133a6565b01949350505050565b60008219821115613282576132826133a6565b500190565b600082613296576132966133bc565b500490565b60008160001904831182151516156132b5576132b56133a6565b500290565b60006001600160801b03838116908316818110156132da576132da6133a6565b039392505050565b6000828210156132f4576132f46133a6565b500390565b60005b838110156133145781810151838201526020016132fc565b838111156113985750506000910152565b600081613334576133346133a6565b506000190190565b60028104600182168061335057607f821691505b6020821081141561337157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561338b5761338b6133a6565b5060010190565b6000826133a1576133a16133bc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4f57600080fdfea26469706673582212208980b3573d90ecd1b20a10b2a6aa2b9f74d61b058f735f565e5c4cc2f30c15e964736f6c63430008000033000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000014e900000000000000000000000000000000000000000000000000000000000013a00000000000000000000000000000000000000000000000000000000000000149

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637622345f11610139578063aff290e7116100b6578063d7224ba01161007a578063d7224ba01461067f578063dc33e68114610694578063e985e9c5146106b4578063f2fde38b146106d4578063fbc38d22146104f3578063fbe1aa51146106f457610251565b8063aff290e7146105f7578063b3ab66b014610617578063b88d4fde1461062a578063c4aa1f6b1461064a578063c87b56dd1461065f57610251565b806390aa0b0f116100fd57806390aa0b0f1461055c5780639231ab2a1461058057806395d89b41146105ad578063a22cb465146105c2578063ac446002146105e257610251565b80637622345f146104f35780638473e55f1461050857806387a6b8131461051d5780638bc35c2f146105325780638da5cb5b1461054757610251565b80632f745c59116101d25780634783f0ef116101965780634783f0ef1461043e5780634f6ccce71461045e57806355f804b31461047e5780636352211e1461049e57806370a08231146104be578063715018a6146104de57610251565b80632f745c59146103a957806337235e56146103c9578063375a069a146103e95780633f5e47411461040957806342842e0e1461041e57610251565b806318160ddd1161021957806318160ddd1461031f57806323b872dd146103415780632904e6d9146103615780632d20fb60146103745780632eb4a7ab1461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db57806314a6d22f146102fd575b600080fd5b34801561026257600080fd5b506102766102713660046126f5565b610709565b60405161028391906128ae565b60405180910390f35b34801561029857600080fd5b506102a161076c565b60405161028391906128c2565b3480156102ba57600080fd5b506102ce6102c93660046126dd565b6107fe565b604051610283919061285d565b3480156102e757600080fd5b506102fb6102f636600461261a565b61084a565b005b34801561030957600080fd5b506103126108e3565b6040516102839190613213565b34801561032b57600080fd5b506103346108ef565b60405161028391906128b9565b34801561034d57600080fd5b506102fb61035c3660046124da565b6108f5565b6102fb61036f366004612694565b610900565b34801561038057600080fd5b506102fb61038f3660046126dd565b610ac5565b3480156103a057600080fd5b50610334610b3d565b3480156103b557600080fd5b506103346103c436600461261a565b610b43565b3480156103d557600080fd5b506102766103e4366004612643565b610c3e565b3480156103f557600080fd5b506102fb6104043660046126dd565b610cb4565b34801561041557600080fd5b50610276610d52565b34801561042a57600080fd5b506102fb6104393660046124da565b610d8c565b34801561044a57600080fd5b506102fb6104593660046126dd565b610da7565b34801561046a57600080fd5b506103346104793660046126dd565b610deb565b34801561048a57600080fd5b506102fb61049936600461272d565b610e17565b3480156104aa57600080fd5b506102ce6104b93660046126dd565b610e62565b3480156104ca57600080fd5b506103346104d936600461248e565b610e74565b3480156104ea57600080fd5b506102fb610ec1565b3480156104ff57600080fd5b50610334610f0c565b34801561051457600080fd5b50610334610f11565b34801561052957600080fd5b50610312610f35565b34801561053e57600080fd5b50610334610f48565b34801561055357600080fd5b506102ce610f6c565b34801561056857600080fd5b50610571610f7b565b60405161028393929190613224565b34801561058c57600080fd5b506105a061059b3660046126dd565b610f9e565b60405161028391906131ea565b3480156105b957600080fd5b506102a1610faf565b3480156105ce57600080fd5b506102fb6105dd3660046125e0565b610fbe565b3480156105ee57600080fd5b506102fb61108c565b34801561060357600080fd5b506102fb610612366004612799565b611169565b6102fb6106253660046126dd565b611212565b34801561063657600080fd5b506102fb610645366004612515565b611365565b34801561065657600080fd5b5061031261139e565b34801561066b57600080fd5b506102a161067a3660046126dd565b6113b2565b34801561068b57600080fd5b50610334611435565b3480156106a057600080fd5b506103346106af36600461248e565b61143b565b3480156106c057600080fd5b506102766106cf3660046124a8565b611446565b3480156106e057600080fd5b506102fb6106ef36600461248e565b611474565b34801561070057600080fd5b506103346114e2565b60006001600160e01b031982166380ac58cd60e01b148061073a57506001600160e01b03198216635b5e139f60e01b145b8061075557506001600160e01b0319821663780e9d6360e01b145b80610764575061076482611506565b90505b919050565b60606002805461077b9061333c565b80601f01602080910402602001604051908101604052809291908181526020018280546107a79061333c565b80156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b60006108098261151f565b61082e5760405162461bcd60e51b81526004016108259061315b565b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061085582610e62565b9050806001600160a01b0316836001600160a01b031614156108895760405162461bcd60e51b815260040161082590612e5c565b806001600160a01b031661089b611526565b6001600160a01b031614806108b757506108b7816106cf611526565b6108d35760405162461bcd60e51b815260040161082590612b28565b6108de83838361152a565b505050565b600c5463ffffffff1690565b60015490565b6108de838383611586565b32331461091f5760405162461bcd60e51b815260040161082590612ac7565b600c5463ffffffff8082169164010000000090041681158015906109435750814210155b61095f5760405162461bcd60e51b815260040161082590612d86565b801580159061096e5750804211155b61098a5760405162461bcd60e51b815260040161082590612a2f565b610995858533610c3e565b6109b15760405162461bcd60e51b815260040161082590612afe565b7f00000000000000000000000000000000000000000000000000000000000013a0836109db6108ef565b6109e5919061326f565b1115610a035760405162461bcd60e51b815260040161082590612dd2565b7f000000000000000000000000000000000000000000000000000000000000000183610a2e3361143b565b610a38919061326f565b1115610a565760405162461bcd60e51b815260040161082590612f93565b6000610a62848261329b565b6040519091508190349033907f940f8524c5e5984c910d020c9c65918682bc7ed567dbc8d49277f0e787ee5f0090600090a4610a9e3385611890565b803414610abd5760405162461bcd60e51b815260040161082590613058565b505050505050565b610acd611526565b6001600160a01b0316610ade610f6c565b6001600160a01b031614610b045760405162461bcd60e51b815260040161082590612c79565b6002600a541415610b275760405162461bcd60e51b8152600401610825906130d5565b6002600a55610b35816118aa565b506001600a55565b600b5481565b6000610b4e83610e74565b8210610b6c5760405162461bcd60e51b8152600401610825906128d5565b6000610b766108ef565b905060008060005b83811015610c1f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610bd057805192505b876001600160a01b0316836001600160a01b03161415610c0c5786841415610bfe57509350610c3892505050565b83610c0881613377565b9450505b5080610c1781613377565b915050610b7e565b5060405162461bcd60e51b81526004016108259061300a565b92915050565b60008082604051602001610c5291906127fe565b604051602081830303815290604052805190602001209050610cab85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611a34565b95945050505050565b610cbc611526565b6001600160a01b0316610ccd610f6c565b6001600160a01b031614610cf35760405162461bcd60e51b815260040161082590612c79565b7f000000000000000000000000000000000000000000000000000000000000014981610d1d6108ef565b610d27919061326f565b1115610d455760405162461bcd60e51b815260040161082590612fc3565b610d4f3382611a4a565b50565b60408051606081018252600c5463ffffffff8082168352640100000000820481166020840152600160401b90910416910181905242101590565b6108de83838360405180602001604052806000815250611365565b610daf611526565b6001600160a01b0316610dc0610f6c565b6001600160a01b031614610de65760405162461bcd60e51b815260040161082590612c79565b600b55565b6000610df56108ef565b8210610e135760405162461bcd60e51b8152600401610825906129a7565b5090565b610e1f611526565b6001600160a01b0316610e30610f6c565b6001600160a01b031614610e565760405162461bcd60e51b815260040161082590612c79565b6108de600d838361236f565b6000610e6d82611a64565b5192915050565b60006001600160a01b038216610e9c5760405162461bcd60e51b815260040161082590612bbc565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b610ec9611526565b6001600160a01b0316610eda610f6c565b6001600160a01b031614610f005760405162461bcd60e51b815260040161082590612c79565b610f0a6000611b76565b565b600081565b7f00000000000000000000000000000000000000000000000000000000000013a081565b600c54600160401b900463ffffffff1690565b7f000000000000000000000000000000000000000000000000000000000000000181565b6000546001600160a01b031690565b600c5463ffffffff808216916401000000008104821691600160401b9091041683565b610fa66123ef565b61076482611a64565b60606003805461077b9061333c565b610fc6611526565b6001600160a01b0316826001600160a01b03161415610ff75760405162461bcd60e51b815260040161082590612cfd565b8060086000611004611526565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611048611526565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161108091906128ae565b60405180910390a35050565b611094611526565b6001600160a01b03166110a5610f6c565b6001600160a01b0316146110cb5760405162461bcd60e51b815260040161082590612c79565b6002600a5414156110ee5760405162461bcd60e51b8152600401610825906130d5565b6002600a55604051600090339047906111069061285a565b60006040518083038185875af1925050503d8060008114611143576040519150601f19603f3d011682016040523d82523d6000602084013e611148565b606091505b5050905080610b355760405162461bcd60e51b815260040161082590612e9e565b611171611526565b6001600160a01b0316611182610f6c565b6001600160a01b0316146111a85760405162461bcd60e51b815260040161082590612c79565b6040805160608101825263ffffffff94851680825293851660208201819052929094169301839052600c805463ffffffff191690921767ffffffff000000001916640100000000909102176bffffffff00000000000000001916600160401b909202919091179055565b3233146112315760405162461bcd60e51b815260040161082590612ac7565b611239610d52565b6112555760405162461bcd60e51b815260040161082590612e25565b7f00000000000000000000000000000000000000000000000000000000000013a08161127f6108ef565b611289919061326f565b11156112a75760405162461bcd60e51b815260040161082590612c07565b7f0000000000000000000000000000000000000000000000000000000000000001816112d23361143b565b6112dc919061326f565b11156112fa5760405162461bcd60e51b815260040161082590612f93565b6000611306828261329b565b6040519091508190349033907f940f8524c5e5984c910d020c9c65918682bc7ed567dbc8d49277f0e787ee5f0090600090a46113423383611890565b8034146113615760405162461bcd60e51b815260040161082590613058565b5050565b611370848484611586565b61137c84848484611bc6565b6113985760405162461bcd60e51b815260040161082590612ec8565b50505050565b600c54640100000000900463ffffffff1690565b60606113bd8261151f565b6113d95760405162461bcd60e51b815260040161082590612cae565b60006113e3611ce2565b90506000815111611403576040518060200160405280600081525061142e565b8061140d84611cf1565b60405160200161141e92919061281b565b6040516020818303038152906040525b9392505050565b60095481565b600061076482611e0b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61147c611526565b6001600160a01b031661148d610f6c565b6001600160a01b0316146114b35760405162461bcd60e51b815260040161082590612c79565b6001600160a01b0381166114d95760405162461bcd60e51b815260040161082590612917565b610d4f81611b76565b7f000000000000000000000000000000000000000000000000000000000000014981565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061159182611a64565b9050600081600001516001600160a01b03166115ab611526565b6001600160a01b031614806115e057506115c3611526565b6001600160a01b03166115d5846107fe565b6001600160a01b0316145b806115f4575081516115f4906106cf611526565b9050806116135760405162461bcd60e51b815260040161082590612d34565b846001600160a01b031682600001516001600160a01b0316146116485760405162461bcd60e51b815260040161082590612c33565b6001600160a01b03841661166e5760405162461bcd60e51b8152600401610825906129ea565b61167b8585856001611398565b61168b600084846000015161152a565b6001600160a01b03851660009081526006602052604081208054600192906116bd9084906001600160801b03166132ba565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600660205260408120805460019450909261170991859116613244565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561179e84600161326f565b6000818152600460205260409020549091506001600160a01b0316611842576117c68161151f565b156118425760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610abd8686866001611398565b611361828260405180602001604052806000815250611e5f565b600954816118ca5760405162461bcd60e51b815260040161082590612b85565b600060016118d8848461326f565b6118e291906132e2565b905061190f60017f00000000000000000000000000000000000000000000000000000000000014e96132e2565b8111156119445761194160017f00000000000000000000000000000000000000000000000000000000000014e96132e2565b90505b61194d8161151f565b6119695760405162461bcd60e51b81526004016108259061308f565b815b818111611a20576000818152600460205260409020546001600160a01b0316611a0e57600061199982611a64565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b0390811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b80611a1881613377565b91505061196b565b50611a2c81600161326f565b600955505050565b600082611a4185846120c9565b14949350505050565b611361828260405180602001604052806000815250612143565b611a6c6123ef565b611a758261151f565b611a915760405162461bcd60e51b81526004016108259061295d565b60007f00000000000000000000000000000000000000000000000000000000000000018310611af257611ae47f0000000000000000000000000000000000000000000000000000000000000001846132e2565b611aef90600161326f565b90505b825b818110611b5d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611b4a579250610767915050565b5080611b5581613325565b915050611af4565b5060405162461bcd60e51b81526004016108259061310c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611bda846001600160a01b031661235a565b15611cd657836001600160a01b031663150b7a02611bf6611526565b8786866040518563ffffffff1660e01b8152600401611c189493929190612871565b602060405180830381600087803b158015611c3257600080fd5b505af1925050508015611c62575060408051601f3d908101601f19168201909252611c5f91810190612711565b60015b611cbc573d808015611c90576040519150601f19603f3d011682016040523d82523d6000602084013e611c95565b606091505b508051611cb45760405162461bcd60e51b815260040161082590612ec8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cda565b5060015b949350505050565b6060600d805461077b9061333c565b606081611d1657506040805180820190915260018152600360fc1b6020820152610767565b8160005b8115611d405780611d2a81613377565b9150611d399050600a83613287565b9150611d1a565b6000816001600160401b03811115611d6857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d92576020820181803683370190505b5090505b8415611cda57611da76001836132e2565b9150611db4600a86613392565b611dbf90603061326f565b60f81b818381518110611de257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e04600a86613287565b9450611d96565b60006001600160a01b038216611e335760405162461bcd60e51b815260040161082590612a76565b506001600160a01b0316600090815260066020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611e885760405162461bcd60e51b815260040161082590612f52565b611e918161151f565b15611eae5760405162461bcd60e51b815260040161082590612f1b565b7f0000000000000000000000000000000000000000000000000000000000000001831115611eee5760405162461bcd60e51b8152600401610825906131a8565b611efb6000858386611398565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f57908790613244565b6001600160801b03168152602001858360200151611f759190613244565b6001600160801b039081169091526001600160a01b03808816600081815260066020908152604080832087518154988401518816600160801b029088166001600160801b03199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156120b65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461207a6000888488611bc6565b6120965760405162461bcd60e51b815260040161082590612ec8565b816120a081613377565b92505080806120ae90613377565b91505061202d565b506001819055610abd6000878588611398565b600081815b845181101561213b5760008582815181106120f957634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161211b576121148382612360565b9250612128565b6121258184612360565b92505b508061213381613377565b9150506120ce565b509392505050565b6001546001600160a01b03841661216c5760405162461bcd60e51b815260040161082590612f52565b6121758161151f565b156121925760405162461bcd60e51b815260040161082590612f1b565b61219f6000858386611398565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121fb908790613244565b6001600160801b031681526020018583602001516122199190613244565b6001600160801b039081169091526001600160a01b03808816600081815260066020908152604080832087518154988401518816600160801b029088166001600160801b03199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156120b65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461231e6000888488611bc6565b61233a5760405162461bcd60e51b815260040161082590612ec8565b8161234481613377565b925050808061235290613377565b9150506122d1565b3b151590565b60009182526020526040902090565b82805461237b9061333c565b90600052602060002090601f01602090048101928261239d57600085556123e3565b82601f106123b65782800160ff198235161785556123e3565b828001600101855582156123e3579182015b828111156123e35782358255916020019190600101906123c8565b50610e13929150612406565b604080518082019091526000808252602082015290565b5b80821115610e135760008155600101612407565b80356001600160a01b038116811461076757600080fd5b60008083601f840112612443578081fd5b5081356001600160401b03811115612459578182fd5b602083019150836020808302850101111561247357600080fd5b9250929050565b803563ffffffff8116811461076757600080fd5b60006020828403121561249f578081fd5b61142e8261241b565b600080604083850312156124ba578081fd5b6124c38361241b565b91506124d16020840161241b565b90509250929050565b6000806000606084860312156124ee578081fd5b6124f78461241b565b92506125056020850161241b565b9150604084013590509250925092565b6000806000806080858703121561252a578081fd5b6125338561241b565b9350602061254281870161241b565b93506040860135925060608601356001600160401b0380821115612564578384fd5b818801915088601f830112612577578384fd5b813581811115612589576125896133d2565b604051601f8201601f19168101850183811182821017156125ac576125ac6133d2565b60405281815283820185018b10156125c2578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156125f2578182fd5b6125fb8361241b565b91506020830135801515811461260f578182fd5b809150509250929050565b6000806040838503121561262c578182fd5b6126358361241b565b946020939093013593505050565b600080600060408486031215612657578283fd5b83356001600160401b0381111561266c578384fd5b61267886828701612432565b909450925061268b90506020850161241b565b90509250925092565b6000806000604084860312156126a8578283fd5b83356001600160401b038111156126bd578384fd5b6126c986828701612432565b909790965060209590950135949350505050565b6000602082840312156126ee578081fd5b5035919050565b600060208284031215612706578081fd5b813561142e816133e8565b600060208284031215612722578081fd5b815161142e816133e8565b6000806020838503121561273f578182fd5b82356001600160401b0380821115612755578384fd5b818501915085601f830112612768578384fd5b813581811115612776578485fd5b866020828501011115612787578485fd5b60209290920196919550909350505050565b6000806000606084860312156127ad578081fd5b6127b68461247a565b92506127c46020850161247a565b915061268b6040850161247a565b600081518084526127ea8160208601602086016132f9565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b6000835161282d8184602088016132f9565b8351908301906128418183602088016132f9565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a4908301846127d2565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261142e60208301846127d2565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526027908201527f73616c6520666f722077686974656c69737420757365727320686173206265656040820152661b88195b99195960ca1b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526010908201526f139bdd081a5b881dda1a5d195b1a5cdd60821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602c908201527f73616c6520666f722077686974656c69737420757365727320686173206e6f7460408201526b081cdd185c9d1959081e595d60a21b606082015260800190565b60208082526033908201527f574c206d696e74203a206e6f7420656e6f7567682072656d61696e696e6720726040820152726573657276656420666f72206d696e74696e6760681b606082015260800190565b6020808252601d908201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b60208082526027908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604082015266195d881b5a5b9d60ca1b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f546f74616c20636f7374206973206e6f74207269676874000000000000000000604082015260600190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b031681526020918201516001600160401b03169181019190915260400190565b63ffffffff91909116815260200190565b63ffffffff93841681529183166020830152909116604082015260600190565b60006001600160801b03808316818516808303821115613266576132666133a6565b01949350505050565b60008219821115613282576132826133a6565b500190565b600082613296576132966133bc565b500490565b60008160001904831182151516156132b5576132b56133a6565b500290565b60006001600160801b03838116908316818110156132da576132da6133a6565b039392505050565b6000828210156132f4576132f46133a6565b500390565b60005b838110156133145781810151838201526020016132fc565b838111156113985750506000910152565b600081613334576133346133a6565b506000190190565b60028104600182168061335057607f821691505b6020821081141561337157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561338b5761338b6133a6565b5060010190565b6000826133a1576133a16133bc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4f57600080fdfea26469706673582212208980b3573d90ecd1b20a10b2a6aa2b9f74d61b058f735f565e5c4cc2f30c15e964736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000014e900000000000000000000000000000000000000000000000000000000000013a00000000000000000000000000000000000000000000000000000000000000149

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 1
Arg [1] : collectionSize_ (uint256): 5353
Arg [2] : amountForSale_ (uint256): 5024
Arg [3] : amountForDevs_ (uint256): 329

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 00000000000000000000000000000000000000000000000000000000000014e9
Arg [2] : 00000000000000000000000000000000000000000000000000000000000013a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000149


Deployed Bytecode Sourcemap

45717:5689:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28710:370;;;;;;;;;;-1:-1:-1;28710:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30438:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31974:204::-;;;;;;;;;;-1:-1:-1;31974:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31537:379::-;;;;;;;;;;-1:-1:-1;31537:379:0;;;;;:::i;:::-;;:::i;:::-;;49588:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27263:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32824:142::-;;;;;;;;;;-1:-1:-1;32824:142:0;;;;;:::i;:::-;;:::i;47094:1100::-;;;;;;:::i;:::-;;:::i;51018:118::-;;;;;;;;;;-1:-1:-1;51018:118:0;;;;;:::i;:::-;;:::i;46182:94::-;;;;;;;;;;;;;:::i;27894:752::-;;;;;;;;;;-1:-1:-1;27894:752:0;;;;;:::i;:::-;;:::i;50188:243::-;;;;;;;;;;-1:-1:-1;50188:243:0;;;;;:::i;:::-;;:::i;49958:224::-;;;;;;;;;;-1:-1:-1;49958:224:0;;;;;:::i;:::-;;:::i;48931:180::-;;;;;;;;;;;;;:::i;33029:157::-;;;;;;;;;;-1:-1:-1;33029:157:0;;;;;:::i;:::-;;:::i;49465:113::-;;;;;;;;;;-1:-1:-1;49465:113:0;;;;;:::i;:::-;;:::i;27426:177::-;;;;;;;;;;-1:-1:-1;27426:177:0;;;;;:::i;:::-;;:::i;50725:100::-;;;;;;;;;;-1:-1:-1;50725:100:0;;;;;:::i;:::-;;:::i;30260:119::-;;;;;;;;;;-1:-1:-1;30260:119:0;;;;;:::i;:::-;;:::i;29136:211::-;;;;;;;;;;-1:-1:-1;29136:211:0;;;;;:::i;:::-;;:::i;2452:94::-;;;;;;;;;;;;;:::i;46001:47::-;;;;;;;;;;;;;:::i;45954:38::-;;;;;;;;;;;;;:::i;49818:108::-;;;;;;;;;;;;;:::i;45858:48::-;;;;;;;;;;;;;:::i;1801:87::-;;;;;;;;;;;;;:::i;46416:28::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;51255:148::-;;;;;;;;;;-1:-1:-1;51255:148:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30593:98::-;;;;;;;;;;;;;:::i;32242:274::-;;;;;;;;;;-1:-1:-1;32242:274:0;;;;;:::i;:::-;;:::i;50831:181::-;;;;;;;;;;;;;:::i;49152:247::-;;;;;;;;;;-1:-1:-1;49152:247:0;;;;;:::i;:::-;;:::i;48324:601::-;;;;;;:::i;:::-;;:::i;33249:311::-;;;;;;;;;;-1:-1:-1;33249:311:0;;;;;:::i;:::-;;:::i;49705:107::-;;;;;;;;;;;;;:::i;30754:405::-;;;;;;;;;;-1:-1:-1;30754:405:0;;;;;:::i;:::-;;:::i;39888:43::-;;;;;;;;;;;;;:::i;51142:107::-;;;;;;;;;;-1:-1:-1;51142:107:0;;;;;:::i;:::-;;:::i;32579:186::-;;;;;;;;;;-1:-1:-1;32579:186:0;;;;;:::i;:::-;;:::i;2701:192::-;;;;;;;;;;-1:-1:-1;2701:192:0;;;;;:::i;:::-;;:::i;45911:38::-;;;;;;;;;;;;;:::i;28710:370::-;28837:4;-1:-1:-1;;;;;;28867:40:0;;-1:-1:-1;;;28867:40:0;;:99;;-1:-1:-1;;;;;;;28918:48:0;;-1:-1:-1;;;28918:48:0;28867:99;:160;;;-1:-1:-1;;;;;;;28977:50:0;;-1:-1:-1;;;28977:50:0;28867:160;:207;;;;29038:36;29062:11;29038:23;:36::i;:::-;28853:221;;28710:370;;;;:::o;30438:94::-;30492:13;30521:5;30514:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30438:94;:::o;31974:204::-;32042:7;32066:16;32074:7;32066;:16::i;:::-;32058:74;;;;-1:-1:-1;;;32058:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;32148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32148:24:0;;31974:204::o;31537:379::-;31606:13;31622:24;31638:7;31622:15;:24::i;:::-;31606:40;;31667:5;-1:-1:-1;;;;;31661:11:0;:2;-1:-1:-1;;;;;31661:11:0;;;31653:58;;;;-1:-1:-1;;;31653:58:0;;;;;;;:::i;:::-;31752:5;-1:-1:-1;;;;;31736:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;31736:21:0;;:62;;;;31761:37;31778:5;31785:12;:10;:12::i;31761:37::-;31720:153;;;;-1:-1:-1;;;31720:153:0;;;;;;;:::i;:::-;31882:28;31891:2;31895:7;31904:5;31882:8;:28::i;:::-;31537:379;;;:::o;49588:111::-;49660:10;:33;;;49588:111;:::o;27263:94::-;27339:12;;27263:94;:::o;32824:142::-;32932:28;32942:4;32948:2;32952:7;32932:9;:28::i;47094:1100::-;50476:9;50489:10;50476:23;50468:66;;;;-1:-1:-1;;;50468:66:0;;;;;;;:::i;:::-;47234:10:::1;:33:::0;::::1;::::0;;::::1;::::0;47306:31;;::::1;;47363:19:::0;;;::::1;::::0;:56:::1;;;47405:14;47386:15;:33;;47363:56;47347:134;;;;-1:-1:-1::0;;;47347:134:0::1;;;;;;;:::i;:::-;47506:17:::0;;;::::1;::::0;:52:::1;;;47546:12;47527:15;:31;;47506:52;47490:125;;;;-1:-1:-1::0;;;47490:125:0::1;;;;;;;:::i;:::-;47640:37;47656:8;;47666:10;47640:15;:37::i;:::-;47624:87;;;;-1:-1:-1::0;;;47624:87:0::1;;;;;;;:::i;:::-;47768:13;47756:8;47740:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;47724:126;;;;-1:-1:-1::0;;;47724:126:0::1;;;;;;;:::i;:::-;47914:23;47902:8;47875:24;47888:10;47875:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;47859:118;;;;-1:-1:-1::0;;;47859:118:0::1;;;;;;;:::i;:::-;47986:17;48006:24;48022:8:::0;47986:17;48006:24:::1;:::i;:::-;48044:37;::::0;47986:44;;-1:-1:-1;47986:44:0;;48060:9:::1;::::0;48048:10:::1;::::0;48044:37:::1;::::0;;;::::1;48090:31;48100:10;48112:8;48090:9;:31::i;:::-;48151:9;48138;:22;48130:58;;;;-1:-1:-1::0;;;48130:58:0::1;;;;;;;:::i;:::-;50541:1;;;47094:1100:::0;;;:::o;51018:118::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;4809:1:::1;5405:7;;:19;;5397:63;;;;-1:-1:-1::0;;;5397:63:0::1;;;;;;;:::i;:::-;4809:1;5538:7;:18:::0;51102:28:::2;51121:8:::0;51102:18:::2;:28::i;:::-;-1:-1:-1::0;4765:1:0::1;5717:7;:22:::0;51018:118::o;46182:94::-;;;;:::o;27894:752::-;28003:7;28038:16;28048:5;28038:9;:16::i;:::-;28030:5;:24;28022:71;;;;-1:-1:-1;;;28022:71:0;;;;;;;:::i;:::-;28100:22;28125:13;:11;:13::i;:::-;28100:38;;28145:19;28175:25;28227:9;28222:350;28246:14;28242:1;:18;28222:350;;;28276:31;28310:14;;;:11;:14;;;;;;;;;28276:48;;;;;;;;;-1:-1:-1;;;;;28276:48:0;;;;;-1:-1:-1;;;28276:48:0;;;-1:-1:-1;;;;;28276:48:0;;;;;;;;28337:28;28333:89;;28398:14;;;-1:-1:-1;28333:89:0;28455:5;-1:-1:-1;;;;;28434:26:0;:17;-1:-1:-1;;;;;28434:26:0;;28430:135;;;28492:5;28477:11;:20;28473:59;;;-1:-1:-1;28519:1:0;-1:-1:-1;28512:8:0;;-1:-1:-1;;;28512:8:0;28473:59;28542:13;;;;:::i;:::-;;;;28430:135;-1:-1:-1;28262:3:0;;;;:::i;:::-;;;;28222:350;;;;28584:56;;-1:-1:-1;;;28584:56:0;;;;;;;:::i;27894:752::-;;;;;:::o;50188:243::-;50298:4;50312:12;50354:4;50337:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;50327:33;;;;;;50312:48;;50376:49;50395:11;;50376:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50408:10:0;;;-1:-1:-1;50420:4:0;;-1:-1:-1;50376:18:0;:49::i;:::-;50369:56;50188:243;-1:-1:-1;;;;;50188:243:0:o;49958:224::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;50063:13:::1;50051:8;50035:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;50019:114;;;;-1:-1:-1::0;;;50019:114:0::1;;;;;;;:::i;:::-;50140:36;50155:10;50167:8;50140:14;:36::i;:::-;49958:224:::0;:::o;48931:180::-;48991:37;;;;;;;;49018:10;48991:37;;;;;;;;;;;;;;;;-1:-1:-1;;;48991:37:0;;;;;;;;;49051:15;:54;;48931:180;:::o;33029:157::-;33141:39;33158:4;33164:2;33168:7;33141:39;;;;;;;;;;;;:16;:39::i;49465:113::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;49543:10:::1;:29:::0;49465:113::o;27426:177::-;27493:7;27525:13;:11;:13::i;:::-;27517:5;:21;27509:69;;;;-1:-1:-1;;;27509:69:0;;;;;;;:::i;:::-;-1:-1:-1;27592:5:0;27426:177::o;50725:100::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;50796:23:::1;:13;50812:7:::0;;50796:23:::1;:::i;30260:119::-:0;30324:7;30347:21;30360:7;30347:12;:21::i;:::-;:26;;30260:119;-1:-1:-1;;30260:119:0:o;29136:211::-;29200:7;-1:-1:-1;;;;;29224:19:0;;29216:75;;;;-1:-1:-1;;;29216:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29313:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29313:27:0;;29136:211::o;2452:94::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;2517:21:::1;2535:1;2517:9;:21::i;:::-;2452:94::o:0;46001:47::-;46041:7;46001:47;:::o;45954:38::-;;;:::o;49818:108::-;49890:10;:30;-1:-1:-1;;;49890:30:0;;;;;49818:108::o;45858:48::-;;;:::o;1801:87::-;1847:7;1874:6;-1:-1:-1;;;;;1874:6:0;1801:87;:::o;46416:28::-;;;;;;;;;;;;;;-1:-1:-1;;;46416:28:0;;;;;:::o;51255:148::-;51336:21;;:::i;:::-;51376;51389:7;51376:12;:21::i;30593:98::-;30649:13;30678:7;30671:14;;;;;:::i;32242:274::-;32345:12;:10;:12::i;:::-;-1:-1:-1;;;;;32333:24:0;:8;-1:-1:-1;;;;;32333:24:0;;;32325:63;;;;-1:-1:-1;;;32325:63:0;;;;;;;:::i;:::-;32442:8;32397:18;:32;32416:12;:10;:12::i;:::-;-1:-1:-1;;;;;32397:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;32397:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;32397:53:0;;;;;;;;;;;32477:12;:10;:12::i;:::-;-1:-1:-1;;;;;32462:48:0;;32501:8;32462:48;;;;;;:::i;:::-;;;;;;;;32242:274;;:::o;50831:181::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;4809:1:::1;5405:7;;:19;;5397:63;;;;-1:-1:-1::0;;;5397:63:0::1;;;;;;;:::i;:::-;4809:1;5538:7;:18:::0;50914:49:::2;::::0;50896:12:::2;::::0;50914:10:::2;::::0;50937:21:::2;::::0;50914:49:::2;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50895:68;;;50978:7;50970:36;;;;-1:-1:-1::0;;;50970:36:0::2;;;;;;;:::i;49152:247::-:0;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;49306:85:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;49293:10:::1;:98:::0;;-1:-1:-1;;49293:98:0::1;::::0;;::::1;-1:-1:-1::0;;49293:98:0::1;::::0;;;::::1;;-1:-1:-1::0;;49293:98:0::1;-1:-1:-1::0;;;49293:98:0;;::::1;::::0;;;::::1;::::0;;49152:247::o;48324:601::-;50476:9;50489:10;50476:23;50468:66;;;;-1:-1:-1;;;50468:66:0;;;;;;;:::i;:::-;48437:16:::1;:14;:16::i;:::-;48421:79;;;;-1:-1:-1::0;;;48421:79:0::1;;;;;;;:::i;:::-;48545:13;48533:8;48517:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;48509:72;;;;-1:-1:-1::0;;;48509:72:0::1;;;;;;;:::i;:::-;48645:23;48633:8;48606:24;48619:10;48606:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;48590:118;;;;-1:-1:-1::0;;;48590:118:0::1;;;;;;;:::i;:::-;48717:17;48737:24;48753:8:::0;48717:17;48737:24:::1;:::i;:::-;48775:37;::::0;48717:44;;-1:-1:-1;48717:44:0;;48791:9:::1;::::0;48779:10:::1;::::0;48775:37:::1;::::0;;;::::1;48821:31;48831:10;48843:8;48821:9;:31::i;:::-;48882:9;48869;:22;48861:58;;;;-1:-1:-1::0;;;48861:58:0::1;;;;;;;:::i;:::-;50541:1;48324:601:::0;:::o;33249:311::-;33386:28;33396:4;33402:2;33406:7;33386:9;:28::i;:::-;33437:48;33460:4;33466:2;33470:7;33479:5;33437:22;:48::i;:::-;33421:133;;;;-1:-1:-1;;;33421:133:0;;;;;;;:::i;:::-;33249:311;;;;:::o;49705:107::-;49775:10;:31;;;;;;;49705:107::o;30754:405::-;30852:13;30893:16;30901:7;30893;:16::i;:::-;30877:97;;;;-1:-1:-1;;;30877:97:0;;;;;;;:::i;:::-;30983:21;31007:10;:8;:10::i;:::-;30983:34;;31062:1;31044:7;31038:21;:25;:113;;;;;;;;;;;;;;;;;31099:7;31108:18;:7;:16;:18::i;:::-;31082:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31038:113;31024:127;30754:405;-1:-1:-1;;;30754:405:0:o;39888:43::-;;;;:::o;51142:107::-;51200:7;51223:20;51237:5;51223:13;:20::i;32579:186::-;-1:-1:-1;;;;;32724:25:0;;;32701:4;32724:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32579:186::o;2701:192::-;2032:12;:10;:12::i;:::-;-1:-1:-1;;;;;2021:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2021:23:0;;2013:68;;;;-1:-1:-1;;;2013:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2790:22:0;::::1;2782:73;;;;-1:-1:-1::0;;;2782:73:0::1;;;;;;;:::i;:::-;2866:19;2876:8;2866:9;:19::i;45911:38::-:0;;;:::o;24624:157::-;-1:-1:-1;;;;;;24733:40:0;;-1:-1:-1;;;24733:40:0;24624:157;;;:::o;33799:105::-;33886:12;;-1:-1:-1;33876:22:0;33799:105::o;608:98::-;688:10;608:98;:::o;39710:172::-;39807:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39807:29:0;-1:-1:-1;;;;;39807:29:0;;;;;;;;;39848:28;;39807:24;;39848:28;;;;;;;39710:172;;;:::o;38074:1530::-;38171:35;38209:21;38222:7;38209:12;:21::i;:::-;38171:59;;38239:22;38281:13;:18;;;-1:-1:-1;;;;;38265:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;38265:34:0;;:81;;;;38334:12;:10;:12::i;:::-;-1:-1:-1;;;;;38310:36:0;:20;38322:7;38310:11;:20::i;:::-;-1:-1:-1;;;;;38310:36:0;;38265:81;:142;;;-1:-1:-1;38374:18:0;;38357:50;;38394:12;:10;:12::i;38357:50::-;38239:169;;38433:17;38417:101;;;;-1:-1:-1;;;38417:101:0;;;;;;;:::i;:::-;38565:4;-1:-1:-1;;;;;38543:26:0;:13;:18;;;-1:-1:-1;;;;;38543:26:0;;38527:98;;;;-1:-1:-1;;;38527:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38640:16:0;;38632:66;;;;-1:-1:-1;;;38632:66:0;;;;;;;:::i;:::-;38707:43;38729:4;38735:2;38739:7;38748:1;38707:21;:43::i;:::-;38807:49;38824:1;38828:7;38837:13;:18;;;38807:8;:49::i;:::-;-1:-1:-1;;;;;38865:18:0;;;;;;:12;:18;;;;;:31;;38895:1;;38865:18;:31;;38895:1;;-1:-1:-1;;;;;38865:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38865:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38903:16:0;;-1:-1:-1;38903:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38903:16:0;;:29;;-1:-1:-1;;38903:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38903:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38962:43:0;;;;;;;;-1:-1:-1;;;;;38962:43:0;;;;;-1:-1:-1;;;;;38988:15:0;38962:43;;;;;;;;;-1:-1:-1;38939:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38939:66:0;-1:-1:-1;;;;38939:66:0;;;;-1:-1:-1;;;;;;38939:66:0;;;;;;;;39255:11;38951:7;-1:-1:-1;39255:11:0;:::i;:::-;39318:1;39277:24;;;:11;:24;;;;;:29;39233:33;;-1:-1:-1;;;;;;39277:29:0;39273:236;;39335:20;39343:11;39335:7;:20::i;:::-;39331:171;;;39395:97;;;;;;;;39422:18;;-1:-1:-1;;;;;39395:97:0;;;;;;39453:28;;;;-1:-1:-1;;;;;39395:97:0;;;;;;;;;-1:-1:-1;39368:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;39368:124:0;;;;;;;;;-1:-1:-1;;;;39368:124:0;-1:-1:-1;;;39368:124:0;;;;;;;;;;;;;;39331:171;39541:7;39537:2;-1:-1:-1;;;;;39522:27:0;39531:4;-1:-1:-1;;;;;39522:27:0;;;;;;;;;;;39556:42;39577:4;39583:2;39587:7;39596:1;39556:20;:42::i;33910:98::-;33975:27;33985:2;33989:8;33975:27;;;;;;;;;;;;:9;:27::i;40036:847::-;40126:24;;40165:12;40157:49;;;;-1:-1:-1;;;40157:49:0;;;;;;;:::i;:::-;40213:16;40263:1;40232:28;40252:8;40232:17;:28;:::i;:::-;:32;;;;:::i;:::-;40213:51;-1:-1:-1;40286:18:0;40303:1;40286:14;:18;:::i;:::-;40275:8;:29;40271:81;;;40326:18;40343:1;40326:14;:18;:::i;:::-;40315:29;;40271:81;40467:17;40475:8;40467:7;:17::i;:::-;40459:68;;;;-1:-1:-1;;;40459:68:0;;;;;;;:::i;:::-;40551:17;40534:298;40575:8;40570:1;:13;40534:298;;40634:1;40603:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;40603:19:0;40599:226;;40649:31;40683:15;40696:1;40683:12;:15::i;:::-;40726:89;;;;;;;;40753:14;;-1:-1:-1;;;;;40726:89:0;;;;;;40780:24;;;;-1:-1:-1;;;;;40726:89:0;;;;;;;;;-1:-1:-1;40709:14:0;;;:11;:14;;;;;;;:106;;;;;;-1:-1:-1;;;;;;40709:106:0;;;;;;-1:-1:-1;;;;40709:106:0;-1:-1:-1;;;40709:106:0;;;;;;;;;;;;;;-1:-1:-1;40599:226:0;40585:3;;;;:::i;:::-;;;;40534:298;;;-1:-1:-1;40865:12:0;:8;40876:1;40865:12;:::i;:::-;40838:24;:39;-1:-1:-1;;;40036:847:0:o;44175:190::-;44300:4;44353;44324:25;44337:5;44344:4;44324:12;:25::i;:::-;:33;;44175:190;-1:-1:-1;;;;44175:190:0:o;34014:108::-;34084:32;34099:2;34103:8;34084:32;;;;;;;;;;;;:14;:32::i;29599:607::-;29676:21;;:::i;:::-;29717:16;29725:7;29717;:16::i;:::-;29709:71;;;;-1:-1:-1;;;29709:71:0;;;;;;;:::i;:::-;29789:26;29837:12;29826:7;:23;29822:93;;29881:22;29891:12;29881:7;:22;:::i;:::-;:26;;29906:1;29881:26;:::i;:::-;29860:47;;29822:93;29943:7;29923:212;29960:18;29952:4;:26;29923:212;;29997:31;30031:17;;;:11;:17;;;;;;;;;29997:51;;;;;;;;;-1:-1:-1;;;;;29997:51:0;;;;;-1:-1:-1;;;29997:51:0;;;-1:-1:-1;;;;;29997:51:0;;;;;;;;30061:28;30057:71;;30109:9;-1:-1:-1;30102:16:0;;-1:-1:-1;;30102:16:0;30057:71;-1:-1:-1;29980:6:0;;;;:::i;:::-;;;;29923:212;;;;30143:57;;-1:-1:-1;;;30143:57:0;;;;;;;:::i;2901:173::-;2957:16;2976:6;;-1:-1:-1;;;;;2993:17:0;;;-1:-1:-1;;;;;;2993:17:0;;;;;;3026:40;;2976:6;;;;;;;3026:40;;2957:16;3026:40;2901:173;;:::o;41426:690::-;41563:4;41580:15;:2;-1:-1:-1;;;;;41580:13:0;;:15::i;:::-;41576:535;;;41635:2;-1:-1:-1;;;;;41619:36:0;;41656:12;:10;:12::i;:::-;41670:4;41676:7;41685:5;41619:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41619:72:0;;;;;;;;-1:-1:-1;;41619:72:0;;;;;;;;;;;;:::i;:::-;;;41606:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41850:13:0;;41846:215;;41883:61;;-1:-1:-1;;;41883:61:0;;;;;;;:::i;41846:215::-;42029:6;42023:13;42014:6;42010:2;42006:15;41999:38;41606:464;-1:-1:-1;;;;;;41741:55:0;-1:-1:-1;;;41741:55:0;;-1:-1:-1;41734:62:0;;41576:535;-1:-1:-1;42099:4:0;41576:535;41426:690;;;;;;:::o;50611:108::-;50671:13;50700;50693:20;;;;;:::i;22099:723::-;22155:13;22376:10;22372:53;;-1:-1:-1;22403:10:0;;;;;;;;;;;;-1:-1:-1;;;22403:10:0;;;;;;22372:53;22450:5;22435:12;22491:78;22498:9;;22491:78;;22524:8;;;;:::i;:::-;;-1:-1:-1;22547:10:0;;-1:-1:-1;22555:2:0;22547:10;;:::i;:::-;;;22491:78;;;22579:19;22611:6;-1:-1:-1;;;;;22601:17:0;;;;;-1:-1:-1;;;22601:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22601:17:0;;22579:39;;22629:154;22636:10;;22629:154;;22663:11;22673:1;22663:11;;:::i;:::-;;-1:-1:-1;22732:10:0;22740:2;22732:5;:10;:::i;:::-;22719:24;;:2;:24;:::i;:::-;22706:39;;22689:6;22696;22689:14;;;;;;-1:-1:-1;;;22689:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22689:56:0;;;;;;;;-1:-1:-1;22760:11:0;22769:2;22760:11;;:::i;:::-;;;22629:154;;29353:240;29414:7;-1:-1:-1;;;;;29446:19:0;;29430:102;;;;-1:-1:-1;;;29430:102:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29554:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;29554:32:0;;-1:-1:-1;;;;;29554:32:0;;29353:240::o;34461:1278::-;34589:12;;-1:-1:-1;;;;;34616:16:0;;34608:62;;;;-1:-1:-1;;;34608:62:0;;;;;;;:::i;:::-;34809:21;34817:12;34809:7;:21::i;:::-;34808:22;34800:64;;;;-1:-1:-1;;;34800:64:0;;;;;;;:::i;:::-;34893:12;34881:8;:24;;34873:71;;;;-1:-1:-1;;;34873:71:0;;;;;;;:::i;:::-;34953:61;34983:1;34987:2;34991:12;35005:8;34953:21;:61::i;:::-;-1:-1:-1;;;;;35056:16:0;;35023:30;35056:16;;;:12;:16;;;;;;;;;35023:49;;;;;;;;;-1:-1:-1;;;;;35023:49:0;;;;;-1:-1:-1;;;35023:49:0;;;;;;;;;;;35100:119;;;;;;;;35120:19;;35023:49;;35100:119;;;35120:39;;35150:8;;35120:39;:::i;:::-;-1:-1:-1;;;;;35100:119:0;;;;;35203:8;35168:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35100:119:0;;;;;;-1:-1:-1;;;;;35081:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;35081:138:0;;;;-1:-1:-1;;;;;;35081:138:0;;;;;;;;;;;;;;;;;35254:43;;;;;;;;;;-1:-1:-1;;;;;35280:15:0;35254:43;;;;;;;;35226:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35226:71:0;-1:-1:-1;;;;35226:71:0;;;;-1:-1:-1;;;;;;35226:71:0;;;;;;;;;;;;;;;35238:12;;35350:281;35374:8;35370:1;:12;35350:281;;;35403:38;;35428:12;;-1:-1:-1;;;;;35403:38:0;;;35420:1;;35403:38;;35420:1;;35403:38;35468:59;35499:1;35503:2;35507:12;35521:5;35468:22;:59::i;:::-;35450:150;;;;-1:-1:-1;;;35450:150:0;;;;;;;:::i;:::-;35609:14;;;;:::i;:::-;;;;35384:3;;;;;:::i;:::-;;;;35350:281;;;-1:-1:-1;35639:12:0;:27;;;35673:60;35702:1;35706:2;35710:12;35724:8;35673:20;:60::i;44727:675::-;44810:7;44853:4;44810:7;44868:497;44892:5;:12;44888:1;:16;44868:497;;;44926:20;44949:5;44955:1;44949:8;;;;;;-1:-1:-1;;;44949:8:0;;;;;;;;;;;;;;;44926:31;;44992:12;44976;:28;44972:382;;45119:42;45134:12;45148;45119:14;:42::i;:::-;45104:57;;44972:382;;;45296:42;45311:12;45325;45296:14;:42::i;:::-;45281:57;;44972:382;-1:-1:-1;44906:3:0;;;;:::i;:::-;;;;44868:497;;;-1:-1:-1;45382:12:0;44727:675;-1:-1:-1;;;44727:675:0:o;35745:1203::-;35878:12;;-1:-1:-1;;;;;35905:16:0;;35897:62;;;;-1:-1:-1;;;35897:62:0;;;;;;;:::i;:::-;36098:21;36106:12;36098:7;:21::i;:::-;36097:22;36089:64;;;;-1:-1:-1;;;36089:64:0;;;;;;;:::i;:::-;36162:61;36192:1;36196:2;36200:12;36214:8;36162:21;:61::i;:::-;-1:-1:-1;;;;;36265:16:0;;36232:30;36265:16;;;:12;:16;;;;;;;;;36232:49;;;;;;;;;-1:-1:-1;;;;;36232:49:0;;;;;-1:-1:-1;;;36232:49:0;;;;;;;;;;;36309:119;;;;;;;;36329:19;;36232:49;;36309:119;;;36329:39;;36359:8;;36329:39;:::i;:::-;-1:-1:-1;;;;;36309:119:0;;;;;36412:8;36377:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36309:119:0;;;;;;-1:-1:-1;;;;;36290:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;36290:138:0;;;;-1:-1:-1;;;;;;36290:138:0;;;;;;;;;;;;;;;;;36463:43;;;;;;;;;;-1:-1:-1;;;;;36489:15:0;36463:43;;;;;;;;36435:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36435:71:0;-1:-1:-1;;;;36435:71:0;;;;-1:-1:-1;;;;;;36435:71:0;;;;;;;;;;;;;;;36447:12;;36559:281;36583:8;36579:1;:12;36559:281;;;36612:38;;36637:12;;-1:-1:-1;;;;;36612:38:0;;;36629:1;;36612:38;;36629:1;;36612:38;36677:59;36708:1;36712:2;36716:12;36730:5;36677:22;:59::i;:::-;36659:150;;;;-1:-1:-1;;;36659:150:0;;;;;;;:::i;:::-;36818:14;;;;:::i;:::-;;;;36593:3;;;;;:::i;:::-;;;;36559:281;;14690:387;15013:20;15061:8;;;14690:387::o;45410:224::-;45478:13;45528:15;;;45564:4;45557:15;45611:4;45595:21;;;45513:114::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:400;;;327:3;320:4;312:6;308:17;304:27;294:2;;350:6;342;335:22;294:2;-1:-1:-1;378:20:1;;-1:-1:-1;;;;;410:30:1;;407:2;;;460:8;450;443:26;407:2;504:4;496:6;492:17;480:29;;567:3;560:4;552;544:6;540:17;532:6;528:30;524:41;521:50;518:2;;;584:1;581;574:12;518:2;284:310;;;;;:::o;599:165::-;668:20;;728:10;717:22;;707:33;;697:2;;754:1;751;744:12;769:198;;881:2;869:9;860:7;856:23;852:32;849:2;;;902:6;894;887:22;849:2;930:31;951:9;930:31;:::i;972:274::-;;;1101:2;1089:9;1080:7;1076:23;1072:32;1069:2;;;1122:6;1114;1107:22;1069:2;1150:31;1171:9;1150:31;:::i;:::-;1140:41;;1200:40;1236:2;1225:9;1221:18;1200:40;:::i;:::-;1190:50;;1059:187;;;;;:::o;1251:342::-;;;;1397:2;1385:9;1376:7;1372:23;1368:32;1365:2;;;1418:6;1410;1403:22;1365:2;1446:31;1467:9;1446:31;:::i;:::-;1436:41;;1496:40;1532:2;1521:9;1517:18;1496:40;:::i;:::-;1486:50;;1583:2;1572:9;1568:18;1555:32;1545:42;;1355:238;;;;;:::o;1598:1178::-;;;;;1770:3;1758:9;1749:7;1745:23;1741:33;1738:2;;;1792:6;1784;1777:22;1738:2;1820:31;1841:9;1820:31;:::i;:::-;1810:41;;1870:2;1891:40;1927:2;1916:9;1912:18;1891:40;:::i;:::-;1881:50;;1978:2;1967:9;1963:18;1950:32;1940:42;;2033:2;2022:9;2018:18;2005:32;-1:-1:-1;;;;;2097:2:1;2089:6;2086:14;2083:2;;;2118:6;2110;2103:22;2083:2;2161:6;2150:9;2146:22;2136:32;;2206:7;2199:4;2195:2;2191:13;2187:27;2177:2;;2233:6;2225;2218:22;2177:2;2274;2261:16;2296:2;2292;2289:10;2286:2;;;2302:18;;:::i;:::-;2351:2;2345:9;2420:2;2401:13;;-1:-1:-1;;2397:27:1;2385:40;;2381:49;;2445:18;;;2465:22;;;2442:46;2439:2;;;2491:18;;:::i;:::-;2527:2;2520:22;2551:18;;;2588:11;;;2584:20;;2581:33;-1:-1:-1;2578:2:1;;;2632:6;2624;2617:22;2578:2;2693;2688;2684;2680:11;2675:2;2667:6;2663:15;2650:46;2716:15;;;2712:24;;;2705:40;;;;-1:-1:-1;1728:1048:1;;;;-1:-1:-1;1728:1048:1;;-1:-1:-1;;1728:1048:1:o;2781:369::-;;;2907:2;2895:9;2886:7;2882:23;2878:32;2875:2;;;2928:6;2920;2913:22;2875:2;2956:31;2977:9;2956:31;:::i;:::-;2946:41;;3037:2;3026:9;3022:18;3009:32;3084:5;3077:13;3070:21;3063:5;3060:32;3050:2;;3111:6;3103;3096:22;3050:2;3139:5;3129:15;;;2865:285;;;;;:::o;3155:266::-;;;3284:2;3272:9;3263:7;3259:23;3255:32;3252:2;;;3305:6;3297;3290:22;3252:2;3333:31;3354:9;3333:31;:::i;:::-;3323:41;3411:2;3396:18;;;;3383:32;;-1:-1:-1;;;3242:179:1:o;3426:539::-;;;;3590:2;3578:9;3569:7;3565:23;3561:32;3558:2;;;3611:6;3603;3596:22;3558:2;3656:9;3643:23;-1:-1:-1;;;;;3681:6:1;3678:30;3675:2;;;3726:6;3718;3711:22;3675:2;3770:76;3838:7;3829:6;3818:9;3814:22;3770:76;:::i;:::-;3865:8;;-1:-1:-1;3744:102:1;-1:-1:-1;3919:40:1;;-1:-1:-1;3955:2:1;3940:18;;3919:40;:::i;:::-;3909:50;;3548:417;;;;;:::o;3970:531::-;;;;4134:2;4122:9;4113:7;4109:23;4105:32;4102:2;;;4155:6;4147;4140:22;4102:2;4200:9;4187:23;-1:-1:-1;;;;;4225:6:1;4222:30;4219:2;;;4270:6;4262;4255:22;4219:2;4314:76;4382:7;4373:6;4362:9;4358:22;4314:76;:::i;:::-;4409:8;;4288:102;;-1:-1:-1;4491:2:1;4476:18;;;;4463:32;;4092:409;-1:-1:-1;;;;4092:409:1:o;4506:190::-;;4618:2;4606:9;4597:7;4593:23;4589:32;4586:2;;;4639:6;4631;4624:22;4586:2;-1:-1:-1;4667:23:1;;4576:120;-1:-1:-1;4576:120:1:o;4701:257::-;;4812:2;4800:9;4791:7;4787:23;4783:32;4780:2;;;4833:6;4825;4818:22;4780:2;4877:9;4864:23;4896:32;4922:5;4896:32;:::i;4963:261::-;;5085:2;5073:9;5064:7;5060:23;5056:32;5053:2;;;5106:6;5098;5091:22;5053:2;5143:9;5137:16;5162:32;5188:5;5162:32;:::i;5229:642::-;;;5361:2;5349:9;5340:7;5336:23;5332:32;5329:2;;;5382:6;5374;5367:22;5329:2;5427:9;5414:23;-1:-1:-1;;;;;5497:2:1;5489:6;5486:14;5483:2;;;5518:6;5510;5503:22;5483:2;5561:6;5550:9;5546:22;5536:32;;5606:7;5599:4;5595:2;5591:13;5587:27;5577:2;;5633:6;5625;5618:22;5577:2;5678;5665:16;5704:2;5696:6;5693:14;5690:2;;;5725:6;5717;5710:22;5690:2;5775:7;5770:2;5761:6;5757:2;5753:15;5749:24;5746:37;5743:2;;;5801:6;5793;5786:22;5743:2;5837;5829:11;;;;;5859:6;;-1:-1:-1;5319:552:1;;-1:-1:-1;;;;5319:552:1:o;6071:344::-;;;;6214:2;6202:9;6193:7;6189:23;6185:32;6182:2;;;6235:6;6227;6220:22;6182:2;6263:30;6283:9;6263:30;:::i;:::-;6253:40;;6312:39;6347:2;6336:9;6332:18;6312:39;:::i;:::-;6302:49;;6370:39;6405:2;6394:9;6390:18;6370:39;:::i;6420:259::-;;6501:5;6495:12;6528:6;6523:3;6516:19;6544:63;6600:6;6593:4;6588:3;6584:14;6577:4;6570:5;6566:16;6544:63;:::i;:::-;6661:2;6640:15;-1:-1:-1;;6636:29:1;6627:39;;;;6668:4;6623:50;;6471:208;-1:-1:-1;;6471:208:1:o;6684:229::-;6833:2;6829:15;;;;-1:-1:-1;;6825:53:1;6813:66;;6904:2;6895:12;;6803:110::o;6918:637::-;;7236:6;7230:13;7252:53;7298:6;7293:3;7286:4;7278:6;7274:17;7252:53;:::i;:::-;7368:13;;7327:16;;;;7390:57;7368:13;7327:16;7424:4;7412:17;;7390:57;:::i;:::-;-1:-1:-1;;;7469:20:1;;7498:22;;;7547:1;7536:13;;7206:349;-1:-1:-1;;;;7206:349:1:o;7560:205::-;7760:3;7751:14::o;7770:203::-;-1:-1:-1;;;;;7934:32:1;;;;7916:51;;7904:2;7889:18;;7871:102::o;7978:490::-;-1:-1:-1;;;;;8247:15:1;;;8229:34;;8299:15;;8294:2;8279:18;;8272:43;8346:2;8331:18;;8324:34;;;8394:3;8389:2;8374:18;;8367:31;;;7978:490;;8415:47;;8442:19;;8434:6;8415:47;:::i;:::-;8407:55;8181:287;-1:-1:-1;;;;;;8181:287:1:o;8473:187::-;8638:14;;8631:22;8613:41;;8601:2;8586:18;;8568:92::o;8665:177::-;8811:25;;;8799:2;8784:18;;8766:76::o;8847:221::-;;8996:2;8985:9;8978:21;9016:46;9058:2;9047:9;9043:18;9035:6;9016:46;:::i;9073:398::-;9275:2;9257:21;;;9314:2;9294:18;;;9287:30;9353:34;9348:2;9333:18;;9326:62;-1:-1:-1;;;9419:2:1;9404:18;;9397:32;9461:3;9446:19;;9247:224::o;9476:402::-;9678:2;9660:21;;;9717:2;9697:18;;;9690:30;9756:34;9751:2;9736:18;;9729:62;-1:-1:-1;;;9822:2:1;9807:18;;9800:36;9868:3;9853:19;;9650:228::o;9883:406::-;10085:2;10067:21;;;10124:2;10104:18;;;10097:30;10163:34;10158:2;10143:18;;10136:62;-1:-1:-1;;;10229:2:1;10214:18;;10207:40;10279:3;10264:19;;10057:232::o;10294:399::-;10496:2;10478:21;;;10535:2;10515:18;;;10508:30;10574:34;10569:2;10554:18;;10547:62;-1:-1:-1;;;10640:2:1;10625:18;;10618:33;10683:3;10668:19;;10468:225::o;10698:401::-;10900:2;10882:21;;;10939:2;10919:18;;;10912:30;10978:34;10973:2;10958:18;;10951:62;-1:-1:-1;;;11044:2:1;11029:18;;11022:35;11089:3;11074:19;;10872:227::o;11104:403::-;11306:2;11288:21;;;11345:2;11325:18;;;11318:30;11384:34;11379:2;11364:18;;11357:62;-1:-1:-1;;;11450:2:1;11435:18;;11428:37;11497:3;11482:19;;11278:229::o;11512:413::-;11714:2;11696:21;;;11753:2;11733:18;;;11726:30;11792:34;11787:2;11772:18;;11765:62;-1:-1:-1;;;11858:2:1;11843:18;;11836:47;11915:3;11900:19;;11686:239::o;11930:354::-;12132:2;12114:21;;;12171:2;12151:18;;;12144:30;12210:32;12205:2;12190:18;;12183:60;12275:2;12260:18;;12104:180::o;12289:340::-;12491:2;12473:21;;;12530:2;12510:18;;;12503:30;-1:-1:-1;;;12564:2:1;12549:18;;12542:46;12620:2;12605:18;;12463:166::o;12634:421::-;12836:2;12818:21;;;12875:2;12855:18;;;12848:30;12914:34;12909:2;12894:18;;12887:62;12985:27;12980:2;12965:18;;12958:55;13045:3;13030:19;;12808:247::o;13060:348::-;13262:2;13244:21;;;13301:2;13281:18;;;13274:30;13340:26;13335:2;13320:18;;13313:54;13399:2;13384:18;;13234:174::o;13413:407::-;13615:2;13597:21;;;13654:2;13634:18;;;13627:30;13693:34;13688:2;13673:18;;13666:62;-1:-1:-1;;;13759:2:1;13744:18;;13737:41;13810:3;13795:19;;13587:233::o;13825:342::-;14027:2;14009:21;;;14066:2;14046:18;;;14039:30;-1:-1:-1;;;14100:2:1;14085:18;;14078:48;14158:2;14143:18;;13999:168::o;14172:402::-;14374:2;14356:21;;;14413:2;14393:18;;;14386:30;14452:34;14447:2;14432:18;;14425:62;-1:-1:-1;;;14518:2:1;14503:18;;14496:36;14564:3;14549:19;;14346:228::o;14579:356::-;14781:2;14763:21;;;14800:18;;;14793:30;14859:34;14854:2;14839:18;;14832:62;14926:2;14911:18;;14753:182::o;14940:411::-;15142:2;15124:21;;;15181:2;15161:18;;;15154:30;15220:34;15215:2;15200:18;;15193:62;-1:-1:-1;;;15286:2:1;15271:18;;15264:45;15341:3;15326:19;;15114:237::o;15356:350::-;15558:2;15540:21;;;15597:2;15577:18;;;15570:30;15636:28;15631:2;15616:18;;15609:56;15697:2;15682:18;;15530:176::o;15711:414::-;15913:2;15895:21;;;15952:2;15932:18;;;15925:30;15991:34;15986:2;15971:18;;15964:62;-1:-1:-1;;;16057:2:1;16042:18;;16035:48;16115:3;16100:19;;15885:240::o;16130:408::-;16332:2;16314:21;;;16371:2;16351:18;;;16344:30;16410:34;16405:2;16390:18;;16383:62;-1:-1:-1;;;16476:2:1;16461:18;;16454:42;16528:3;16513:19;;16304:234::o;16543:415::-;16745:2;16727:21;;;16784:2;16764:18;;;16757:30;16823:34;16818:2;16803:18;;16796:62;-1:-1:-1;;;16889:2:1;16874:18;;16867:49;16948:3;16933:19;;16717:241::o;16963:353::-;17165:2;17147:21;;;17204:2;17184:18;;;17177:30;17243:31;17238:2;17223:18;;17216:59;17307:2;17292:18;;17137:179::o;17321:398::-;17523:2;17505:21;;;17562:2;17542:18;;;17535:30;17601:34;17596:2;17581:18;;17574:62;-1:-1:-1;;;17667:2:1;17652:18;;17645:32;17709:3;17694:19;;17495:224::o;17724:340::-;17926:2;17908:21;;;17965:2;17945:18;;;17938:30;-1:-1:-1;;;17999:2:1;17984:18;;17977:46;18055:2;18040:18;;17898:166::o;18069:415::-;18271:2;18253:21;;;18310:2;18290:18;;;18283:30;18349:34;18344:2;18329:18;;18322:62;-1:-1:-1;;;18415:2:1;18400:18;;18393:49;18474:3;18459:19;;18243:241::o;18489:353::-;18691:2;18673:21;;;18730:2;18710:18;;;18703:30;18769:31;18764:2;18749:18;;18742:59;18833:2;18818:18;;18663:179::o;18847:397::-;19049:2;19031:21;;;19088:2;19068:18;;;19061:30;19127:34;19122:2;19107:18;;19100:62;-1:-1:-1;;;19193:2:1;19178:18;;19171:31;19234:3;19219:19;;19021:223::o;19249:346::-;19451:2;19433:21;;;19490:2;19470:18;;;19463:30;-1:-1:-1;;;19524:2:1;19509:18;;19502:52;19586:2;19571:18;;19423:172::o;19600:403::-;19802:2;19784:21;;;19841:2;19821:18;;;19814:30;19880:34;19875:2;19860:18;;19853:62;-1:-1:-1;;;19946:2:1;19931:18;;19924:37;19993:3;19978:19;;19774:229::o;20008:410::-;20210:2;20192:21;;;20249:2;20229:18;;;20222:30;20288:34;20283:2;20268:18;;20261:62;-1:-1:-1;;;20354:2:1;20339:18;;20332:44;20408:3;20393:19;;20182:236::o;20423:347::-;20625:2;20607:21;;;20664:2;20644:18;;;20637:30;20703:25;20698:2;20683:18;;20676:53;20761:2;20746:18;;20597:173::o;20775:402::-;20977:2;20959:21;;;21016:2;20996:18;;;20989:30;21055:34;21050:2;21035:18;;21028:62;-1:-1:-1;;;21121:2:1;21106:18;;21099:36;21167:3;21152:19;;20949:228::o;21182:355::-;21384:2;21366:21;;;21423:2;21403:18;;;21396:30;21462:33;21457:2;21442:18;;21435:61;21528:2;21513:18;;21356:181::o;21542:411::-;21744:2;21726:21;;;21783:2;21763:18;;;21756:30;21822:34;21817:2;21802:18;;21795:62;-1:-1:-1;;;21888:2:1;21873:18;;21866:45;21943:3;21928:19;;21716:237::o;21958:409::-;22160:2;22142:21;;;22199:2;22179:18;;;22172:30;22238:34;22233:2;22218:18;;22211:62;-1:-1:-1;;;22304:2:1;22289:18;;22282:43;22357:3;22342:19;;22132:235::o;22372:398::-;22574:2;22556:21;;;22613:2;22593:18;;;22586:30;22652:34;22647:2;22632:18;;22625:62;-1:-1:-1;;;22718:2:1;22703:18;;22696:32;22760:3;22745:19;;22546:224::o;22775:360::-;23005:13;;-1:-1:-1;;;;;23001:39:1;22983:58;;23101:4;23089:17;;;23083:24;-1:-1:-1;;;;;23079:49:1;23057:20;;;23050:79;;;;22971:2;22956:18;;22938:197::o;23322:192::-;23496:10;23484:23;;;;23466:42;;23454:2;23439:18;;23421:93::o;23519:369::-;23725:10;23762:15;;;23744:34;;23814:15;;;23809:2;23794:18;;23787:43;23866:15;;;23861:2;23846:18;;23839:43;23703:2;23688:18;;23670:218::o;23893:253::-;;-1:-1:-1;;;;;24022:2:1;24019:1;24015:10;24052:2;24049:1;24045:10;24083:3;24079:2;24075:12;24070:3;24067:21;24064:2;;;24091:18;;:::i;:::-;24127:13;;23941:205;-1:-1:-1;;;;23941:205:1:o;24151:128::-;;24222:1;24218:6;24215:1;24212:13;24209:2;;;24228:18;;:::i;:::-;-1:-1:-1;24264:9:1;;24199:80::o;24284:120::-;;24350:1;24340:2;;24355:18;;:::i;:::-;-1:-1:-1;24389:9:1;;24330:74::o;24409:168::-;;24515:1;24511;24507:6;24503:14;24500:1;24497:21;24492:1;24485:9;24478:17;24474:45;24471:2;;;24522:18;;:::i;:::-;-1:-1:-1;24562:9:1;;24461:116::o;24582:246::-;;-1:-1:-1;;;;;24735:10:1;;;;24705;;24757:12;;;24754:2;;;24772:18;;:::i;:::-;24809:13;;24631:197;-1:-1:-1;;;24631:197:1:o;24833:125::-;;24901:1;24898;24895:8;24892:2;;;24906:18;;:::i;:::-;-1:-1:-1;24943:9:1;;24882:76::o;24963:258::-;25035:1;25045:113;25059:6;25056:1;25053:13;25045:113;;;25135:11;;;25129:18;25116:11;;;25109:39;25081:2;25074:10;25045:113;;;25176:6;25173:1;25170:13;25167:2;;;-1:-1:-1;;25211:1:1;25193:16;;25186:27;25016:205::o;25226:136::-;;25293:5;25283:2;;25302:18;;:::i;:::-;-1:-1:-1;;;25338:18:1;;25273:89::o;25367:380::-;25452:1;25442:12;;25499:1;25489:12;;;25510:2;;25564:4;25556:6;25552:17;25542:27;;25510:2;25617;25609:6;25606:14;25586:18;25583:38;25580:2;;;25663:10;25658:3;25654:20;25651:1;25644:31;25698:4;25695:1;25688:15;25726:4;25723:1;25716:15;25580:2;;25422:325;;;:::o;25752:135::-;;-1:-1:-1;;25812:17:1;;25809:2;;;25832:18;;:::i;:::-;-1:-1:-1;25879:1:1;25868:13;;25799:88::o;25892:112::-;;25950:1;25940:2;;25955:18;;:::i;:::-;-1:-1:-1;25989:9:1;;25930:74::o;26009:127::-;26070:10;26065:3;26061:20;26058:1;26051:31;26101:4;26098:1;26091:15;26125:4;26122:1;26115:15;26141:127;26202:10;26197:3;26193:20;26190:1;26183:31;26233:4;26230:1;26223:15;26257:4;26254:1;26247:15;26273:127;26334:10;26329:3;26325:20;26322:1;26315:31;26365:4;26362:1;26355:15;26389:4;26386:1;26379:15;26405:133;-1:-1:-1;;;;;;26481:32:1;;26471:43;;26461:2;;26528:1;26525;26518:12

Swarm Source

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