ETH Price: $3,423.69 (+3.37%)

Token

BossBaes (BossBae)
 

Overview

Max Total Supply

595 BossBae

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zeroprofit.eth
Balance
10 BossBae
0xb2cba1d1cc8ffd812ec34d6ee91db4dd42302a15
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:
BossBaes

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal collectionSize;
  uint256 internal maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

   /**
   * @dev See maxBatchSize Functionality..
   */
  function changeMaxBatchSize(uint256 newBatch) public{
    maxBatchSize = newBatch;
  }

  function changeCollectionSize(uint256 newCollectionSize) public{
    collectionSize = newCollectionSize;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

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

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

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

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

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

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

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

contract BossBaes is Ownable, ERC721A, ReentrancyGuard {

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_
  ) ERC721A("BossBaes", "BossBae", maxBatchSize_, collectionSize_) {
    require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" );
  }
    
   uint256 pricePer = 0.02 ether;
   uint256 totalCost;
   address private constant MIKE = 0x94005dB80B82f59073ECaf3963610d77A7a2eA44;
   address private constant FUEGO = 0xB73754219A8203493F6B75CE38EaFc6B776490F4;
   address private constant CHICK = 0x42dE3e058A2f8d5fa5a993E5331382DDD64a5F1C;
   address private constant MIRO = 0x0A92d47Ce96218045372517599B26837feb779f9;

  function mintGiveaway(uint quantity) external onlyOwner {
      require(totalSupply() + quantity <= 4444, 'sold out');
      _safeMint(msg.sender, quantity);
  }

  function mint(uint256 quantity) external payable {
    require(quantity <= 10, 'Cant mint more than 10');
    if (totalSupply() > 555){
        totalCost = quantity * pricePer;
    }
    if (totalSupply() <= 555){
        totalCost = 0;
    }
    require(totalSupply() + quantity <= 4444, 'sold out');
    require(msg.value >= totalCost, 'Not enough Eth sent');
    _safeMint(msg.sender, quantity);
  }

  // // 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 withdrawAll() public onlyOwner {
      uint256 balance = address(this).balance;
      require(balance > 0, "Insufficent balance");
      _withdraw(MIKE, ((balance * 25) / 100));
      _withdraw(FUEGO, ((balance * 25) / 100));
      _withdraw(CHICK, ((balance * 25) / 100));
      _withdraw(MIRO, ((balance * 25) / 100));
      _withdraw(MIKE, address(this).balance);
  }

  function _withdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{ value: _amount }("");
      require(success, "Failed to widthdraw Ether");
  }  
  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":"amountForAuctionAndDev_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"changeCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBatch","type":"uint256"}],"name":"changeMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006001556000600a5566470de4df820000600c553480156200002657600080fd5b5060405162004ed838038062004ed883398181016040528101906200004c919062000394565b6040518060400160405280600881526020017f426f7373426165730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f426f7373426165000000000000000000000000000000000000000000000000008152508484620000da620000ce6200020160201b60201c565b6200020960201b60201c565b6000811162000120576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001179062000540565b60405180910390fd5b6000821162000166576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015d90620004fc565b60405180910390fd5b83600490805190602001906200017e929190620002cd565b50826005908051906020019062000197929190620002cd565b508160038190555080600281905550505050506001600b8190555081811115620001f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ef906200051e565b60405180910390fd5b505050620005fc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002db906200057d565b90600052602060002090601f016020900481019282620002ff57600085556200034b565b82601f106200031a57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034a5782518255916020019190600101906200032d565b5b5090506200035a91906200035e565b5090565b5b80821115620003795760008160009055506001016200035f565b5090565b6000815190506200038e81620005e2565b92915050565b600080600060608486031215620003aa57600080fd5b6000620003ba868287016200037d565b9350506020620003cd868287016200037d565b9250506040620003e0868287016200037d565b9150509250925092565b6000620003f960278362000562565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000461601d8362000562565b91507f6c617267657220636f6c6c656374696f6e2073697a65206e65656465640000006000830152602082019050919050565b6000620004a3602e8362000562565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b600060208201905081810360008301526200051781620003ea565b9050919050565b60006020820190508181036000830152620005398162000452565b9050919050565b600060208201905081810360008301526200055b8162000494565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200059657607f821691505b60208210811415620005ad57620005ac620005b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620005ed8162000573565b8114620005f957600080fd5b50565b6148cc806200060c6000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a0712d6811610095578063d7224ba011610064578063d7224ba01461063f578063dc33e6811461066a578063e985e9c5146106a7578063f2fde38b146106e4576101c2565b8063a0712d6814610594578063a22cb465146105b0578063b88d4fde146105d9578063c87b56dd14610602576101c2565b80638da5cb5b116100d15780638da5cb5b146104d85780639231ab2a1461050357806395d89b41146105405780639801b11c1461056b576101c2565b8063715018a6146104815780637af66cec14610498578063853828b6146104c1576101c2565b80632f745c591161016457806355f804b31161013e57806355f804b3146103b55780636352211e146103de5780636ebfd34d1461041b57806370a0823114610444576101c2565b80632f745c591461031257806342842e0e1461034f5780634f6ccce714610378576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632d20fb60146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906132b7565b61070d565b6040516101fb9190613f60565b60405180910390f35b34801561021057600080fd5b50610219610857565b6040516102269190613f7b565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061334e565b6108e9565b6040516102639190613ef9565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061327b565b61096e565b005b3480156102a157600080fd5b506102aa610a87565b6040516102b79190614358565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190613175565b610a91565b005b3480156102f557600080fd5b50610310600480360381019061030b919061334e565b610aa1565b005b34801561031e57600080fd5b506103396004803603810190610334919061327b565b610b7f565b6040516103469190614358565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613175565b610d7d565b005b34801561038457600080fd5b5061039f600480360381019061039a919061334e565b610d9d565b6040516103ac9190614358565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190613309565b610df0565b005b3480156103ea57600080fd5b506104056004803603810190610400919061334e565b610e82565b6040516104129190613ef9565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d919061334e565b610e98565b005b34801561045057600080fd5b5061046b60048036038101906104669190613110565b610ea2565b6040516104789190614358565b60405180910390f35b34801561048d57600080fd5b50610496610f8b565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061334e565b611013565b005b3480156104cd57600080fd5b506104d66110f3565b005b3480156104e457600080fd5b506104ed6112b0565b6040516104fa9190613ef9565b60405180910390f35b34801561050f57600080fd5b5061052a6004803603810190610525919061334e565b6112d9565b604051610537919061433d565b60405180910390f35b34801561054c57600080fd5b506105556112f1565b6040516105629190613f7b565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061334e565b611383565b005b6105ae60048036038101906105a9919061334e565b61138d565b005b3480156105bc57600080fd5b506105d760048036038101906105d2919061323f565b6114b9565b005b3480156105e557600080fd5b5061060060048036038101906105fb91906131c4565b61163a565b005b34801561060e57600080fd5b506106296004803603810190610624919061334e565b611696565b6040516106369190613f7b565b60405180910390f35b34801561064b57600080fd5b5061065461173d565b6040516106619190614358565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613110565b611743565b60405161069e9190614358565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613139565b611755565b6040516106db9190613f60565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613110565b6117e9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610850575061084f826118e1565b5b9050919050565b606060048054610866906146c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906146c1565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f48261194b565b610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a906142dd565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097982610e82565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e1906141dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a09611959565b73ffffffffffffffffffffffffffffffffffffffff161480610a385750610a3781610a32611959565b611755565b5b610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e9061409d565b60405180910390fd5b610a82838383611961565b505050565b6000600154905090565b610a9c838383611a13565b505050565b610aa9611959565b73ffffffffffffffffffffffffffffffffffffffff16610ac76112b0565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061413d565b60405180910390fd5b6002600b541415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a9061429d565b60405180910390fd5b6002600b81905550610b7481611fcc565b6001600b8190555050565b6000610b8a83610ea2565b8210610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613f9d565b60405180910390fd5b6000610bd5610a87565b905060008060005b83811015610d3b576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ccf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d275786841415610d18578195505050505050610d77565b8380610d23906146f3565b9450505b508080610d33906146f3565b915050610bdd565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e9061425d565b60405180910390fd5b92915050565b610d988383836040518060200160405280600081525061163a565b505050565b6000610da7610a87565b8210610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf9061401d565b60405180910390fd5b819050919050565b610df8611959565b73ffffffffffffffffffffffffffffffffffffffff16610e166112b0565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e639061413d565b60405180910390fd5b8181600e9190610e7d929190612f18565b505050565b6000610e8d8261221e565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906140dd565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f93611959565b73ffffffffffffffffffffffffffffffffffffffff16610fb16112b0565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061413d565b60405180910390fd5b61101160006123e5565b565b61101b611959565b73ffffffffffffffffffffffffffffffffffffffff166110396112b0565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110869061413d565b60405180910390fd5b61115c8161109b610a87565b6110a59190614468565b11156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd9061407d565b60405180910390fd5b6110f033826124a9565b50565b6110fb611959565b73ffffffffffffffffffffffffffffffffffffffff166111196112b0565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061413d565b60405180910390fd5b6000479050600081116111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae9061411d565b60405180910390fd5b6111ed7394005db80b82f59073ecaf3963610d77a7a2ea4460646019846111de91906144ef565b6111e891906144be565b6124c7565b61122373b73754219a8203493f6b75ce38eafc6b776490f4606460198461121491906144ef565b61121e91906144be565b6124c7565b6112597342de3e058a2f8d5fa5a993e5331382ddd64a5f1c606460198461124a91906144ef565b61125491906144be565b6124c7565b61128f730a92d47ce96218045372517599b26837feb779f9606460198461128091906144ef565b61128a91906144be565b6124c7565b6112ad7394005db80b82f59073ecaf3963610d77a7a2ea44476124c7565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e1612f9e565b6112ea8261221e565b9050919050565b606060058054611300906146c1565b80601f016020809104026020016040519081016040528092919081815260200182805461132c906146c1565b80156113795780601f1061134e57610100808354040283529160200191611379565b820191906000526020600020905b81548152906001019060200180831161135c57829003601f168201915b5050505050905090565b8060028190555050565b600a8111156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613fdd565b60405180910390fd5b61022b6113dc610a87565b11156113f757600c54816113f091906144ef565b600d819055505b61022b611402610a87565b11611410576000600d819055505b61115c8161141c610a87565b6114269190614468565b1115611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e9061407d565b60405180910390fd5b600d543410156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906142fd565b60405180910390fd5b6114b633826124a9565b50565b6114c1611959565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115269061417d565b60405180910390fd5b806009600061153c611959565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e9611959565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162e9190613f60565b60405180910390a35050565b611645848484611a13565b61165184848484612578565b611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906141fd565b60405180910390fd5b50505050565b60606116a18261194b565b6116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d79061415d565b60405180910390fd5b60006116ea61270f565b9050600081511161170a5760405180602001604052806000815250611735565b80611714846127a1565b604051602001611725929190613ec0565b6040516020818303038152906040525b915050919050565b600a5481565b600061174e8261294e565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f1611959565b73ffffffffffffffffffffffffffffffffffffffff1661180f6112b0565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c9061413d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613fbd565b60405180910390fd5b6118de816123e5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a1e8261221e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a45611959565b73ffffffffffffffffffffffffffffffffffffffff161480611aa15750611a6a611959565b73ffffffffffffffffffffffffffffffffffffffff16611a89846108e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611abd5750611abc8260000151611ab7611959565b611755565b5b905080611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af69061419d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906140fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061403d565b60405180910390fd5b611bee8585856001612a37565b611bfe6000848460000151611961565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c6c9190614549565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d109190614422565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611e169190614468565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5c57611e8c8161194b565b15611f5b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fc48686866001612a3d565b505050505050565b6000600a54905060008211612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d906140bd565b60405180910390fd5b6000600183836120269190614468565b612030919061457d565b90506001600254612041919061457d565b81111561205a576001600254612057919061457d565b90505b6120638161194b565b6120a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120999061427d565b60405180910390fd5b60008290505b81811161220557600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121f25760006121258261221e565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806121fd906146f3565b9150506120a8565b506001816122139190614468565b600a81905550505050565b612226612f9e565b61222f8261194b565b61226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590613ffd565b60405180910390fd5b6000600354831061229657600160035484612289919061457d565b6122939190614468565b90505b60008390505b8181106123a4576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612390578093505050506123e0565b50808061239c90614697565b91505061229c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d7906142bd565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124c3828260405180602001604052806000815250612a43565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516124ed90613ee4565b60006040518083038185875af1925050503d806000811461252a576040519150601f19603f3d011682016040523d82523d6000602084013e61252f565b606091505b5050905080612573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256a906141bd565b60405180910390fd5b505050565b60006125998473ffffffffffffffffffffffffffffffffffffffff16612f05565b15612702578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c2611959565b8786866040518563ffffffff1660e01b81526004016125e49493929190613f14565b602060405180830381600087803b1580156125fe57600080fd5b505af192505050801561262f57506040513d601f19601f8201168201806040525081019061262c91906132e0565b60015b6126b2573d806000811461265f576040519150601f19603f3d011682016040523d82523d6000602084013e612664565b606091505b506000815114156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a1906141fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612707565b600190505b949350505050565b6060600e805461271e906146c1565b80601f016020809104026020016040519081016040528092919081815260200182805461274a906146c1565b80156127975780601f1061276c57610100808354040283529160200191612797565b820191906000526020600020905b81548152906001019060200180831161277a57829003601f168201915b5050505050905090565b606060008214156127e9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612949565b600082905060005b6000821461281b578080612804906146f3565b915050600a8261281491906144be565b91506127f1565b60008167ffffffffffffffff81111561285d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561288f5781602001600182028036833780820191505090505b5090505b60008514612942576001826128a8919061457d565b9150600a856128b7919061473c565b60306128c39190614468565b60f81b8183815181106128ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561293b91906144be565b9450612893565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b69061405d565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab19061423d565b60405180910390fd5b612ac38161194b565b15612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa9061421d565b60405180910390fd5b600354831115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f9061431d565b60405180910390fd5b612b556000858386612a37565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c529190614422565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c799190614422565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ee857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e886000888488612578565b612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe906141fd565b60405180910390fd5b8180612ed2906146f3565b9250508080612ee0906146f3565b915050612e17565b5080600181905550612efd6000878588612a3d565b505050505050565b600080823b905060008111915050919050565b828054612f24906146c1565b90600052602060002090601f016020900481019282612f465760008555612f8d565b82601f10612f5f57803560ff1916838001178555612f8d565b82800160010185558215612f8d579182015b82811115612f8c578235825591602001919060010190612f71565b5b509050612f9a9190612fd8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ff1576000816000905550600101612fd9565b5090565b6000613008613003846143a4565b614373565b90508281526020810184848401111561302057600080fd5b61302b848285614655565b509392505050565b6000813590506130428161483a565b92915050565b60008135905061305781614851565b92915050565b60008135905061306c81614868565b92915050565b60008151905061308181614868565b92915050565b600082601f83011261309857600080fd5b81356130a8848260208601612ff5565b91505092915050565b60008083601f8401126130c357600080fd5b8235905067ffffffffffffffff8111156130dc57600080fd5b6020830191508360018202830111156130f457600080fd5b9250929050565b60008135905061310a8161487f565b92915050565b60006020828403121561312257600080fd5b600061313084828501613033565b91505092915050565b6000806040838503121561314c57600080fd5b600061315a85828601613033565b925050602061316b85828601613033565b9150509250929050565b60008060006060848603121561318a57600080fd5b600061319886828701613033565b93505060206131a986828701613033565b92505060406131ba868287016130fb565b9150509250925092565b600080600080608085870312156131da57600080fd5b60006131e887828801613033565b94505060206131f987828801613033565b935050604061320a878288016130fb565b925050606085013567ffffffffffffffff81111561322757600080fd5b61323387828801613087565b91505092959194509250565b6000806040838503121561325257600080fd5b600061326085828601613033565b925050602061327185828601613048565b9150509250929050565b6000806040838503121561328e57600080fd5b600061329c85828601613033565b92505060206132ad858286016130fb565b9150509250929050565b6000602082840312156132c957600080fd5b60006132d78482850161305d565b91505092915050565b6000602082840312156132f257600080fd5b600061330084828501613072565b91505092915050565b6000806020838503121561331c57600080fd5b600083013567ffffffffffffffff81111561333657600080fd5b613342858286016130b1565b92509250509250929050565b60006020828403121561336057600080fd5b600061336e848285016130fb565b91505092915050565b613380816145b1565b82525050565b61338f816145b1565b82525050565b61339e816145c3565b82525050565b60006133af826143d4565b6133b981856143ea565b93506133c9818560208601614664565b6133d281614829565b840191505092915050565b60006133e8826143df565b6133f28185614406565b9350613402818560208601614664565b61340b81614829565b840191505092915050565b6000613421826143df565b61342b8185614417565b935061343b818560208601614664565b80840191505092915050565b6000613454602283614406565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ba602683614406565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613520601683614406565b91507f43616e74206d696e74206d6f7265207468616e203130000000000000000000006000830152602082019050919050565b6000613560602a83614406565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006135c6602383614406565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061362c602583614406565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613692603183614406565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b60006136f8600883614406565b91507f736f6c64206f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613738603983614406565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061379e601883614406565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b60006137de602b83614406565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613844602683614406565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138aa601383614406565b91507f496e737566666963656e742062616c616e6365000000000000000000000000006000830152602082019050919050565b60006138ea602083614406565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061392a602f83614406565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613990601a83614406565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006139d0603283614406565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613a36601983614406565b91507f4661696c656420746f20776964746864726177204574686572000000000000006000830152602082019050919050565b6000613a76602283614406565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613adc6000836143fb565b9150600082019050919050565b6000613af6603383614406565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613b5c601d83614406565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613b9c602183614406565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c02602e83614406565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613c68602683614406565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cce601f83614406565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613d0e602f83614406565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d74602d83614406565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613dda601383614406565b91507f4e6f7420656e6f756768204574682073656e74000000000000000000000000006000830152602082019050919050565b6000613e1a602283614406565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b604082016000820151613e896000850182613377565b506020820151613e9c6020850182613eb1565b50505050565b613eab81614637565b82525050565b613eba81614641565b82525050565b6000613ecc8285613416565b9150613ed88284613416565b91508190509392505050565b6000613eef82613acf565b9150819050919050565b6000602082019050613f0e6000830184613386565b92915050565b6000608082019050613f296000830187613386565b613f366020830186613386565b613f436040830185613ea2565b8181036060830152613f5581846133a4565b905095945050505050565b6000602082019050613f756000830184613395565b92915050565b60006020820190508181036000830152613f9581846133dd565b905092915050565b60006020820190508181036000830152613fb681613447565b9050919050565b60006020820190508181036000830152613fd6816134ad565b9050919050565b60006020820190508181036000830152613ff681613513565b9050919050565b6000602082019050818103600083015261401681613553565b9050919050565b60006020820190508181036000830152614036816135b9565b9050919050565b600060208201905081810360008301526140568161361f565b9050919050565b6000602082019050818103600083015261407681613685565b9050919050565b60006020820190508181036000830152614096816136eb565b9050919050565b600060208201905081810360008301526140b68161372b565b9050919050565b600060208201905081810360008301526140d681613791565b9050919050565b600060208201905081810360008301526140f6816137d1565b9050919050565b6000602082019050818103600083015261411681613837565b9050919050565b600060208201905081810360008301526141368161389d565b9050919050565b60006020820190508181036000830152614156816138dd565b9050919050565b600060208201905081810360008301526141768161391d565b9050919050565b6000602082019050818103600083015261419681613983565b9050919050565b600060208201905081810360008301526141b6816139c3565b9050919050565b600060208201905081810360008301526141d681613a29565b9050919050565b600060208201905081810360008301526141f681613a69565b9050919050565b6000602082019050818103600083015261421681613ae9565b9050919050565b6000602082019050818103600083015261423681613b4f565b9050919050565b6000602082019050818103600083015261425681613b8f565b9050919050565b6000602082019050818103600083015261427681613bf5565b9050919050565b6000602082019050818103600083015261429681613c5b565b9050919050565b600060208201905081810360008301526142b681613cc1565b9050919050565b600060208201905081810360008301526142d681613d01565b9050919050565b600060208201905081810360008301526142f681613d67565b9050919050565b6000602082019050818103600083015261431681613dcd565b9050919050565b6000602082019050818103600083015261433681613e0d565b9050919050565b60006040820190506143526000830184613e73565b92915050565b600060208201905061436d6000830184613ea2565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561439a576143996147fa565b5b8060405250919050565b600067ffffffffffffffff8211156143bf576143be6147fa565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442d826145fb565b9150614438836145fb565b9250826fffffffffffffffffffffffffffffffff0382111561445d5761445c61476d565b5b828201905092915050565b600061447382614637565b915061447e83614637565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144b3576144b261476d565b5b828201905092915050565b60006144c982614637565b91506144d483614637565b9250826144e4576144e361479c565b5b828204905092915050565b60006144fa82614637565b915061450583614637565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453e5761453d61476d565b5b828202905092915050565b6000614554826145fb565b915061455f836145fb565b9250828210156145725761457161476d565b5b828203905092915050565b600061458882614637565b915061459383614637565b9250828210156145a6576145a561476d565b5b828203905092915050565b60006145bc82614617565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614682578082015181840152602081019050614667565b83811115614691576000848401525b50505050565b60006146a282614637565b915060008214156146b6576146b561476d565b5b600182039050919050565b600060028204905060018216806146d957607f821691505b602082108114156146ed576146ec6147cb565b5b50919050565b60006146fe82614637565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147315761473061476d565b5b600182019050919050565b600061474782614637565b915061475283614637565b9250826147625761476161479c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614843816145b1565b811461484e57600080fd5b50565b61485a816145c3565b811461486557600080fd5b50565b614871816145cf565b811461487c57600080fd5b50565b61488881614637565b811461489357600080fd5b5056fea264697066735822122032e1e04827d094334e9f76526806631a93cd8b90e75f7e78b112b463c1ba29cf64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a0712d6811610095578063d7224ba011610064578063d7224ba01461063f578063dc33e6811461066a578063e985e9c5146106a7578063f2fde38b146106e4576101c2565b8063a0712d6814610594578063a22cb465146105b0578063b88d4fde146105d9578063c87b56dd14610602576101c2565b80638da5cb5b116100d15780638da5cb5b146104d85780639231ab2a1461050357806395d89b41146105405780639801b11c1461056b576101c2565b8063715018a6146104815780637af66cec14610498578063853828b6146104c1576101c2565b80632f745c591161016457806355f804b31161013e57806355f804b3146103b55780636352211e146103de5780636ebfd34d1461041b57806370a0823114610444576101c2565b80632f745c591461031257806342842e0e1461034f5780634f6ccce714610378576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632d20fb60146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906132b7565b61070d565b6040516101fb9190613f60565b60405180910390f35b34801561021057600080fd5b50610219610857565b6040516102269190613f7b565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061334e565b6108e9565b6040516102639190613ef9565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061327b565b61096e565b005b3480156102a157600080fd5b506102aa610a87565b6040516102b79190614358565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190613175565b610a91565b005b3480156102f557600080fd5b50610310600480360381019061030b919061334e565b610aa1565b005b34801561031e57600080fd5b506103396004803603810190610334919061327b565b610b7f565b6040516103469190614358565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613175565b610d7d565b005b34801561038457600080fd5b5061039f600480360381019061039a919061334e565b610d9d565b6040516103ac9190614358565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190613309565b610df0565b005b3480156103ea57600080fd5b506104056004803603810190610400919061334e565b610e82565b6040516104129190613ef9565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d919061334e565b610e98565b005b34801561045057600080fd5b5061046b60048036038101906104669190613110565b610ea2565b6040516104789190614358565b60405180910390f35b34801561048d57600080fd5b50610496610f8b565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061334e565b611013565b005b3480156104cd57600080fd5b506104d66110f3565b005b3480156104e457600080fd5b506104ed6112b0565b6040516104fa9190613ef9565b60405180910390f35b34801561050f57600080fd5b5061052a6004803603810190610525919061334e565b6112d9565b604051610537919061433d565b60405180910390f35b34801561054c57600080fd5b506105556112f1565b6040516105629190613f7b565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061334e565b611383565b005b6105ae60048036038101906105a9919061334e565b61138d565b005b3480156105bc57600080fd5b506105d760048036038101906105d2919061323f565b6114b9565b005b3480156105e557600080fd5b5061060060048036038101906105fb91906131c4565b61163a565b005b34801561060e57600080fd5b506106296004803603810190610624919061334e565b611696565b6040516106369190613f7b565b60405180910390f35b34801561064b57600080fd5b5061065461173d565b6040516106619190614358565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613110565b611743565b60405161069e9190614358565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613139565b611755565b6040516106db9190613f60565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613110565b6117e9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610850575061084f826118e1565b5b9050919050565b606060048054610866906146c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906146c1565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f48261194b565b610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a906142dd565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097982610e82565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e1906141dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a09611959565b73ffffffffffffffffffffffffffffffffffffffff161480610a385750610a3781610a32611959565b611755565b5b610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e9061409d565b60405180910390fd5b610a82838383611961565b505050565b6000600154905090565b610a9c838383611a13565b505050565b610aa9611959565b73ffffffffffffffffffffffffffffffffffffffff16610ac76112b0565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061413d565b60405180910390fd5b6002600b541415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a9061429d565b60405180910390fd5b6002600b81905550610b7481611fcc565b6001600b8190555050565b6000610b8a83610ea2565b8210610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613f9d565b60405180910390fd5b6000610bd5610a87565b905060008060005b83811015610d3b576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ccf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d275786841415610d18578195505050505050610d77565b8380610d23906146f3565b9450505b508080610d33906146f3565b915050610bdd565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e9061425d565b60405180910390fd5b92915050565b610d988383836040518060200160405280600081525061163a565b505050565b6000610da7610a87565b8210610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf9061401d565b60405180910390fd5b819050919050565b610df8611959565b73ffffffffffffffffffffffffffffffffffffffff16610e166112b0565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e639061413d565b60405180910390fd5b8181600e9190610e7d929190612f18565b505050565b6000610e8d8261221e565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906140dd565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f93611959565b73ffffffffffffffffffffffffffffffffffffffff16610fb16112b0565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061413d565b60405180910390fd5b61101160006123e5565b565b61101b611959565b73ffffffffffffffffffffffffffffffffffffffff166110396112b0565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110869061413d565b60405180910390fd5b61115c8161109b610a87565b6110a59190614468565b11156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd9061407d565b60405180910390fd5b6110f033826124a9565b50565b6110fb611959565b73ffffffffffffffffffffffffffffffffffffffff166111196112b0565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061413d565b60405180910390fd5b6000479050600081116111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae9061411d565b60405180910390fd5b6111ed7394005db80b82f59073ecaf3963610d77a7a2ea4460646019846111de91906144ef565b6111e891906144be565b6124c7565b61122373b73754219a8203493f6b75ce38eafc6b776490f4606460198461121491906144ef565b61121e91906144be565b6124c7565b6112597342de3e058a2f8d5fa5a993e5331382ddd64a5f1c606460198461124a91906144ef565b61125491906144be565b6124c7565b61128f730a92d47ce96218045372517599b26837feb779f9606460198461128091906144ef565b61128a91906144be565b6124c7565b6112ad7394005db80b82f59073ecaf3963610d77a7a2ea44476124c7565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e1612f9e565b6112ea8261221e565b9050919050565b606060058054611300906146c1565b80601f016020809104026020016040519081016040528092919081815260200182805461132c906146c1565b80156113795780601f1061134e57610100808354040283529160200191611379565b820191906000526020600020905b81548152906001019060200180831161135c57829003601f168201915b5050505050905090565b8060028190555050565b600a8111156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613fdd565b60405180910390fd5b61022b6113dc610a87565b11156113f757600c54816113f091906144ef565b600d819055505b61022b611402610a87565b11611410576000600d819055505b61115c8161141c610a87565b6114269190614468565b1115611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e9061407d565b60405180910390fd5b600d543410156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906142fd565b60405180910390fd5b6114b633826124a9565b50565b6114c1611959565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115269061417d565b60405180910390fd5b806009600061153c611959565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e9611959565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162e9190613f60565b60405180910390a35050565b611645848484611a13565b61165184848484612578565b611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906141fd565b60405180910390fd5b50505050565b60606116a18261194b565b6116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d79061415d565b60405180910390fd5b60006116ea61270f565b9050600081511161170a5760405180602001604052806000815250611735565b80611714846127a1565b604051602001611725929190613ec0565b6040516020818303038152906040525b915050919050565b600a5481565b600061174e8261294e565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f1611959565b73ffffffffffffffffffffffffffffffffffffffff1661180f6112b0565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c9061413d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613fbd565b60405180910390fd5b6118de816123e5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a1e8261221e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a45611959565b73ffffffffffffffffffffffffffffffffffffffff161480611aa15750611a6a611959565b73ffffffffffffffffffffffffffffffffffffffff16611a89846108e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611abd5750611abc8260000151611ab7611959565b611755565b5b905080611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af69061419d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906140fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061403d565b60405180910390fd5b611bee8585856001612a37565b611bfe6000848460000151611961565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c6c9190614549565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d109190614422565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611e169190614468565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f5c57611e8c8161194b565b15611f5b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fc48686866001612a3d565b505050505050565b6000600a54905060008211612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d906140bd565b60405180910390fd5b6000600183836120269190614468565b612030919061457d565b90506001600254612041919061457d565b81111561205a576001600254612057919061457d565b90505b6120638161194b565b6120a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120999061427d565b60405180910390fd5b60008290505b81811161220557600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121f25760006121258261221e565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806121fd906146f3565b9150506120a8565b506001816122139190614468565b600a81905550505050565b612226612f9e565b61222f8261194b565b61226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590613ffd565b60405180910390fd5b6000600354831061229657600160035484612289919061457d565b6122939190614468565b90505b60008390505b8181106123a4576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612390578093505050506123e0565b50808061239c90614697565b91505061229c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d7906142bd565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124c3828260405180602001604052806000815250612a43565b5050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516124ed90613ee4565b60006040518083038185875af1925050503d806000811461252a576040519150601f19603f3d011682016040523d82523d6000602084013e61252f565b606091505b5050905080612573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256a906141bd565b60405180910390fd5b505050565b60006125998473ffffffffffffffffffffffffffffffffffffffff16612f05565b15612702578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c2611959565b8786866040518563ffffffff1660e01b81526004016125e49493929190613f14565b602060405180830381600087803b1580156125fe57600080fd5b505af192505050801561262f57506040513d601f19601f8201168201806040525081019061262c91906132e0565b60015b6126b2573d806000811461265f576040519150601f19603f3d011682016040523d82523d6000602084013e612664565b606091505b506000815114156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a1906141fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612707565b600190505b949350505050565b6060600e805461271e906146c1565b80601f016020809104026020016040519081016040528092919081815260200182805461274a906146c1565b80156127975780601f1061276c57610100808354040283529160200191612797565b820191906000526020600020905b81548152906001019060200180831161277a57829003601f168201915b5050505050905090565b606060008214156127e9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612949565b600082905060005b6000821461281b578080612804906146f3565b915050600a8261281491906144be565b91506127f1565b60008167ffffffffffffffff81111561285d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561288f5781602001600182028036833780820191505090505b5090505b60008514612942576001826128a8919061457d565b9150600a856128b7919061473c565b60306128c39190614468565b60f81b8183815181106128ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561293b91906144be565b9450612893565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b69061405d565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab19061423d565b60405180910390fd5b612ac38161194b565b15612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa9061421d565b60405180910390fd5b600354831115612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f9061431d565b60405180910390fd5b612b556000858386612a37565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612c529190614422565b6fffffffffffffffffffffffffffffffff168152602001858360200151612c799190614422565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ee857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e886000888488612578565b612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe906141fd565b60405180910390fd5b8180612ed2906146f3565b9250508080612ee0906146f3565b915050612e17565b5080600181905550612efd6000878588612a3d565b505050505050565b600080823b905060008111915050919050565b828054612f24906146c1565b90600052602060002090601f016020900481019282612f465760008555612f8d565b82601f10612f5f57803560ff1916838001178555612f8d565b82800160010185558215612f8d579182015b82811115612f8c578235825591602001919060010190612f71565b5b509050612f9a9190612fd8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ff1576000816000905550600101612fd9565b5090565b6000613008613003846143a4565b614373565b90508281526020810184848401111561302057600080fd5b61302b848285614655565b509392505050565b6000813590506130428161483a565b92915050565b60008135905061305781614851565b92915050565b60008135905061306c81614868565b92915050565b60008151905061308181614868565b92915050565b600082601f83011261309857600080fd5b81356130a8848260208601612ff5565b91505092915050565b60008083601f8401126130c357600080fd5b8235905067ffffffffffffffff8111156130dc57600080fd5b6020830191508360018202830111156130f457600080fd5b9250929050565b60008135905061310a8161487f565b92915050565b60006020828403121561312257600080fd5b600061313084828501613033565b91505092915050565b6000806040838503121561314c57600080fd5b600061315a85828601613033565b925050602061316b85828601613033565b9150509250929050565b60008060006060848603121561318a57600080fd5b600061319886828701613033565b93505060206131a986828701613033565b92505060406131ba868287016130fb565b9150509250925092565b600080600080608085870312156131da57600080fd5b60006131e887828801613033565b94505060206131f987828801613033565b935050604061320a878288016130fb565b925050606085013567ffffffffffffffff81111561322757600080fd5b61323387828801613087565b91505092959194509250565b6000806040838503121561325257600080fd5b600061326085828601613033565b925050602061327185828601613048565b9150509250929050565b6000806040838503121561328e57600080fd5b600061329c85828601613033565b92505060206132ad858286016130fb565b9150509250929050565b6000602082840312156132c957600080fd5b60006132d78482850161305d565b91505092915050565b6000602082840312156132f257600080fd5b600061330084828501613072565b91505092915050565b6000806020838503121561331c57600080fd5b600083013567ffffffffffffffff81111561333657600080fd5b613342858286016130b1565b92509250509250929050565b60006020828403121561336057600080fd5b600061336e848285016130fb565b91505092915050565b613380816145b1565b82525050565b61338f816145b1565b82525050565b61339e816145c3565b82525050565b60006133af826143d4565b6133b981856143ea565b93506133c9818560208601614664565b6133d281614829565b840191505092915050565b60006133e8826143df565b6133f28185614406565b9350613402818560208601614664565b61340b81614829565b840191505092915050565b6000613421826143df565b61342b8185614417565b935061343b818560208601614664565b80840191505092915050565b6000613454602283614406565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ba602683614406565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613520601683614406565b91507f43616e74206d696e74206d6f7265207468616e203130000000000000000000006000830152602082019050919050565b6000613560602a83614406565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006135c6602383614406565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061362c602583614406565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613692603183614406565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b60006136f8600883614406565b91507f736f6c64206f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613738603983614406565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061379e601883614406565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b60006137de602b83614406565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613844602683614406565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138aa601383614406565b91507f496e737566666963656e742062616c616e6365000000000000000000000000006000830152602082019050919050565b60006138ea602083614406565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061392a602f83614406565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613990601a83614406565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006139d0603283614406565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613a36601983614406565b91507f4661696c656420746f20776964746864726177204574686572000000000000006000830152602082019050919050565b6000613a76602283614406565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613adc6000836143fb565b9150600082019050919050565b6000613af6603383614406565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613b5c601d83614406565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613b9c602183614406565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c02602e83614406565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613c68602683614406565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cce601f83614406565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613d0e602f83614406565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d74602d83614406565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613dda601383614406565b91507f4e6f7420656e6f756768204574682073656e74000000000000000000000000006000830152602082019050919050565b6000613e1a602283614406565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b604082016000820151613e896000850182613377565b506020820151613e9c6020850182613eb1565b50505050565b613eab81614637565b82525050565b613eba81614641565b82525050565b6000613ecc8285613416565b9150613ed88284613416565b91508190509392505050565b6000613eef82613acf565b9150819050919050565b6000602082019050613f0e6000830184613386565b92915050565b6000608082019050613f296000830187613386565b613f366020830186613386565b613f436040830185613ea2565b8181036060830152613f5581846133a4565b905095945050505050565b6000602082019050613f756000830184613395565b92915050565b60006020820190508181036000830152613f9581846133dd565b905092915050565b60006020820190508181036000830152613fb681613447565b9050919050565b60006020820190508181036000830152613fd6816134ad565b9050919050565b60006020820190508181036000830152613ff681613513565b9050919050565b6000602082019050818103600083015261401681613553565b9050919050565b60006020820190508181036000830152614036816135b9565b9050919050565b600060208201905081810360008301526140568161361f565b9050919050565b6000602082019050818103600083015261407681613685565b9050919050565b60006020820190508181036000830152614096816136eb565b9050919050565b600060208201905081810360008301526140b68161372b565b9050919050565b600060208201905081810360008301526140d681613791565b9050919050565b600060208201905081810360008301526140f6816137d1565b9050919050565b6000602082019050818103600083015261411681613837565b9050919050565b600060208201905081810360008301526141368161389d565b9050919050565b60006020820190508181036000830152614156816138dd565b9050919050565b600060208201905081810360008301526141768161391d565b9050919050565b6000602082019050818103600083015261419681613983565b9050919050565b600060208201905081810360008301526141b6816139c3565b9050919050565b600060208201905081810360008301526141d681613a29565b9050919050565b600060208201905081810360008301526141f681613a69565b9050919050565b6000602082019050818103600083015261421681613ae9565b9050919050565b6000602082019050818103600083015261423681613b4f565b9050919050565b6000602082019050818103600083015261425681613b8f565b9050919050565b6000602082019050818103600083015261427681613bf5565b9050919050565b6000602082019050818103600083015261429681613c5b565b9050919050565b600060208201905081810360008301526142b681613cc1565b9050919050565b600060208201905081810360008301526142d681613d01565b9050919050565b600060208201905081810360008301526142f681613d67565b9050919050565b6000602082019050818103600083015261431681613dcd565b9050919050565b6000602082019050818103600083015261433681613e0d565b9050919050565b60006040820190506143526000830184613e73565b92915050565b600060208201905061436d6000830184613ea2565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561439a576143996147fa565b5b8060405250919050565b600067ffffffffffffffff8211156143bf576143be6147fa565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442d826145fb565b9150614438836145fb565b9250826fffffffffffffffffffffffffffffffff0382111561445d5761445c61476d565b5b828201905092915050565b600061447382614637565b915061447e83614637565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144b3576144b261476d565b5b828201905092915050565b60006144c982614637565b91506144d483614637565b9250826144e4576144e361479c565b5b828204905092915050565b60006144fa82614637565b915061450583614637565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453e5761453d61476d565b5b828202905092915050565b6000614554826145fb565b915061455f836145fb565b9250828210156145725761457161476d565b5b828203905092915050565b600061458882614637565b915061459383614637565b9250828210156145a6576145a561476d565b5b828203905092915050565b60006145bc82614617565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614682578082015181840152602081019050614667565b83811115614691576000848401525b50505050565b60006146a282614637565b915060008214156146b6576146b561476d565b5b600182039050919050565b600060028204905060018216806146d957607f821691505b602082108114156146ed576146ec6147cb565b5b50919050565b60006146fe82614637565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147315761473061476d565b5b600182019050919050565b600061474782614637565b915061475283614637565b9250826147625761476161479c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614843816145b1565b811461484e57600080fd5b50565b61485a816145c3565b811461486557600080fd5b50565b614871816145cf565b811461487c57600080fd5b50565b61488881614637565b811461489357600080fd5b5056fea264697066735822122032e1e04827d094334e9f76526806631a93cd8b90e75f7e78b112b463c1ba29cf64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 4444
Arg [2] : amountForAuctionAndDev_ (uint256): 0

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40700:2565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26009:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27735:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29260:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28823:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24570:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30110:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42878:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25201:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30315:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24733:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42188:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27558:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24298:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26435:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39883:103;;;;;;;;;;;;;:::i;:::-;;41428:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42294:387;;;;;;;;;;;;;:::i;:::-;;39232:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43115:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27890:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24392:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41598:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29528:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30535:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28051:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34950:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43002:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29865:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40141:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26009:370;26136:4;26181:25;26166:40;;;:11;:40;;;;:99;;;;26232:33;26217:48;;;:11;:48;;;;26166:99;:160;;;;26291:35;26276:50;;;:11;:50;;;;26166:160;:207;;;;26337:36;26361:11;26337:23;:36::i;:::-;26166:207;26152:221;;26009:370;;;:::o;27735:94::-;27789:13;27818:5;27811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27735:94;:::o;29260:204::-;29328:7;29352:16;29360:7;29352;:16::i;:::-;29344:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29434:15;:24;29450:7;29434:24;;;;;;;;;;;;;;;;;;;;;29427:31;;29260:204;;;:::o;28823:379::-;28892:13;28908:24;28924:7;28908:15;:24::i;:::-;28892:40;;28953:5;28947:11;;:2;:11;;;;28939:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29038:5;29022:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29047:37;29064:5;29071:12;:10;:12::i;:::-;29047:16;:37::i;:::-;29022:62;29006:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;29168:28;29177:2;29181:7;29190:5;29168:8;:28::i;:::-;28823:379;;;:::o;24570:94::-;24623:7;24646:12;;24639:19;;24570:94;:::o;30110:142::-;30218:28;30228:4;30234:2;30238:7;30218:9;:28::i;:::-;30110:142;;;:::o;42878:118::-;39463:12;:10;:12::i;:::-;39452:23;;:7;:5;:7::i;:::-;:23;;;39444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20385:1:::1;20983:7;;:19;;20975:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;20385:1;21116:7;:18;;;;42962:28:::2;42981:8;42962:18;:28::i;:::-;20341:1:::1;21295:7;:22;;;;42878:118:::0;:::o;25201:744::-;25310:7;25345:16;25355:5;25345:9;:16::i;:::-;25337:5;:24;25329:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25407:22;25432:13;:11;:13::i;:::-;25407:38;;25452:19;25482:25;25532:9;25527:350;25551:14;25547:1;:18;25527:350;;;25581:31;25615:11;:14;25627:1;25615:14;;;;;;;;;;;25581:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25668:1;25642:28;;:9;:14;;;:28;;;25638:89;;25703:9;:14;;;25683:34;;25638:89;25760:5;25739:26;;:17;:26;;;25735:135;;;25797:5;25782:11;:20;25778:59;;;25824:1;25817:8;;;;;;;;;25778:59;25847:13;;;;;:::i;:::-;;;;25735:135;25527:350;25567:3;;;;;:::i;:::-;;;;25527:350;;;;25883:56;;;;;;;;;;:::i;:::-;;;;;;;;25201:744;;;;;:::o;30315:157::-;30427:39;30444:4;30450:2;30454:7;30427:39;;;;;;;;;;;;:16;:39::i;:::-;30315:157;;;:::o;24733:177::-;24800:7;24832:13;:11;:13::i;:::-;24824:5;:21;24816:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;24899:5;24892:12;;24733:177;;;:::o;42188:100::-;39463:12;:10;:12::i;:::-;39452:23;;:7;:5;:7::i;:::-;:23;;;39444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42275:7:::1;;42259:13;:23;;;;;;;:::i;:::-;;42188:100:::0;;:::o;27558:118::-;27622:7;27645:20;27657:7;27645:11;:20::i;:::-;:25;;;27638:32;;27558:118;;;:::o;24298:88::-;24372:8;24357:12;:23;;;;24298:88;:::o;26435:211::-;26499:7;26540:1;26523:19;;:5;:19;;;;26515:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;26612:12;:19;26625:5;26612:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26604:36;;26597:43;;26435:211;;;:::o;39883:103::-;39463:12;:10;:12::i;:::-;39452:23;;:7;:5;:7::i;:::-;:23;;;39444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39948:30:::1;39975:1;39948:18;:30::i;:::-;39883:103::o:0;41428:164::-;39463:12;:10;:12::i;:::-;39452:23;;:7;:5;:7::i;:::-;:23;;;39444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41529:4:::1;41517:8;41501:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;41493:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;41555:31;41565:10;41577:8;41555:9;:31::i;:::-;41428:164:::0;:::o;42294:387::-;39463:12;:10;:12::i;:::-;39452:23;;:7;:5;:7::i;:::-;:23;;;39444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42343:15:::1;42361:21;42343:39;;42409:1;42399:7;:11;42391:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;42443:39;41137:42;42477:3;42471:2;42461:7;:12;;;;:::i;:::-;42460:20;;;;:::i;:::-;42443:9;:39::i;:::-;42491:40;41218:42;42526:3;42520:2;42510:7;:12;;;;:::i;:::-;42509:20;;;;:::i;:::-;42491:9;:40::i;:::-;42540;41299:42;42575:3;42569:2;42559:7;:12;;;;:::i;:::-;42558:20;;;;:::i;:::-;42540:9;:40::i;:::-;42589:39;41379:42;42623:3;42617:2;42607:7;:12;;;;:::i;:::-;42606:20;;;;:::i;:::-;42589:9;:39::i;:::-;42637:38;41137:42;42653:21;42637:9;:38::i;:::-;39523:1;42294:387::o:0;39232:87::-;39278:7;39305:6;;;;;;;;;;;39298:13;;39232:87;:::o;43115:147::-;43196:21;;:::i;:::-;43236:20;43248:7;43236:11;:20::i;:::-;43229:27;;43115:147;;;:::o;27890:98::-;27946:13;27975:7;27968:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27890:98;:::o;24392:110::-;24479:17;24462:14;:34;;;;24392:110;:::o;41598:413::-;41674:2;41662:8;:14;;41654:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;41730:3;41714:13;:11;:13::i;:::-;:19;41710:74;;;41768:8;;41757;:19;;;;:::i;:::-;41745:9;:31;;;;41710:74;41811:3;41794:13;:11;:13::i;:::-;:20;41790:57;;41838:1;41826:9;:13;;;;41790:57;41889:4;41877:8;41861:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;41853:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;41934:9;;41921;:22;;41913:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41974:31;41984:10;41996:8;41974:9;:31::i;:::-;41598:413;:::o;29528:274::-;29631:12;:10;:12::i;:::-;29619:24;;:8;:24;;;;29611:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29728:8;29683:18;:32;29702:12;:10;:12::i;:::-;29683:32;;;;;;;;;;;;;;;:42;29716:8;29683:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29777:8;29748:48;;29763:12;:10;:12::i;:::-;29748:48;;;29787:8;29748:48;;;;;;:::i;:::-;;;;;;;;29528:274;;:::o;30535:311::-;30672:28;30682:4;30688:2;30692:7;30672:9;:28::i;:::-;30723:48;30746:4;30752:2;30756:7;30765:5;30723:22;:48::i;:::-;30707:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;30535:311;;;;:::o;28051:394::-;28149:13;28190:16;28198:7;28190;:16::i;:::-;28174:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;28280:21;28304:10;:8;:10::i;:::-;28280:34;;28359:1;28341:7;28335:21;:25;:104;;;;;;;;;;;;;;;;;28396:7;28405:18;:7;:16;:18::i;:::-;28379:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28335:104;28321:118;;;28051:394;;;:::o;34950:43::-;;;;:::o;43002:107::-;43060:7;43083:20;43097:5;43083:13;:20::i;:::-;43076:27;;43002:107;;;:::o;29865:186::-;29987:4;30010:18;:25;30029:5;30010:25;;;;;;;;;;;;;;;:35;30036:8;30010:35;;;;;;;;;;;;;;;;;;;;;;;;;30003:42;;29865:186;;;;:::o;40141:201::-;39463:12;:10;:12::i;:::-;39452:23;;:7;:5;:7::i;:::-;:23;;;39444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40250:1:::1;40230:22;;:8;:22;;;;40222:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40306:28;40325:8;40306:18;:28::i;:::-;40141:201:::0;:::o;12367:157::-;12452:4;12491:25;12476:40;;;:11;:40;;;;12469:47;;12367:157;;;:::o;31085:105::-;31142:4;31172:12;;31162:7;:22;31155:29;;31085:105;;;:::o;21872:98::-;21925:7;21952:10;21945:17;;21872:98;:::o;34772:172::-;34896:2;34869:15;:24;34885:7;34869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34930:7;34926:2;34910:28;;34919:5;34910:28;;;;;;;;;;;;34772:172;;;:::o;33137:1529::-;33234:35;33272:20;33284:7;33272:11;:20::i;:::-;33234:58;;33301:22;33343:13;:18;;;33327:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;33396:12;:10;:12::i;:::-;33372:36;;:20;33384:7;33372:11;:20::i;:::-;:36;;;33327:81;:142;;;;33419:50;33436:13;:18;;;33456:12;:10;:12::i;:::-;33419:16;:50::i;:::-;33327:142;33301:169;;33495:17;33479:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;33627:4;33605:26;;:13;:18;;;:26;;;33589:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;33716:1;33702:16;;:2;:16;;;;33694:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33769:43;33791:4;33797:2;33801:7;33810:1;33769:21;:43::i;:::-;33869:49;33886:1;33890:7;33899:13;:18;;;33869:8;:49::i;:::-;33957:1;33927:12;:18;33940:4;33927:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33993:1;33965:12;:16;33978:2;33965:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34024:43;;;;;;;;34039:2;34024:43;;;;;;34050:15;34024:43;;;;;34001:11;:20;34013:7;34001:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34295:19;34327:1;34317:7;:11;;;;:::i;:::-;34295:33;;34380:1;34339:43;;:11;:24;34351:11;34339:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34335:236;;;34397:20;34405:11;34397:7;:20::i;:::-;34393:171;;;34457:97;;;;;;;;34484:13;:18;;;34457:97;;;;;;34515:13;:28;;;34457:97;;;;;34430:11;:24;34442:11;34430:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34393:171;34335:236;34603:7;34599:2;34584:27;;34593:4;34584:27;;;;;;;;;;;;34618:42;34639:4;34645:2;34649:7;34658:1;34618:20;:42::i;:::-;33137:1529;;;;;;:::o;35098:846::-;35160:25;35188:24;;35160:52;;35238:1;35227:8;:12;35219:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;35275:16;35325:1;35314:8;35294:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;35275:51;;35365:1;35348:14;;:18;;;;:::i;:::-;35337:8;:29;35333:81;;;35405:1;35388:14;;:18;;;;:::i;:::-;35377:29;;35333:81;35529:17;35537:8;35529:7;:17::i;:::-;35521:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35601:9;35613:17;35601:29;;35596:297;35637:8;35632:1;:13;35596:297;;35696:1;35665:33;;:11;:14;35677:1;35665:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;35661:225;;;35711:31;35745:14;35757:1;35745:11;:14::i;:::-;35711:48;;35787:89;;;;;;;;35814:9;:14;;;35787:89;;;;;;35841:9;:24;;;35787:89;;;;;35770:11;:14;35782:1;35770:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35661:225;;35647:3;;;;;:::i;:::-;;;;35596:297;;;;35937:1;35926:8;:12;;;;:::i;:::-;35899:24;:39;;;;35098:846;;;:::o;26898:606::-;26974:21;;:::i;:::-;27015:16;27023:7;27015;:16::i;:::-;27007:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27087:26;27135:12;;27124:7;:23;27120:93;;27204:1;27189:12;;27179:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;27158:47;;27120:93;27226:12;27241:7;27226:22;;27221:212;27258:18;27250:4;:26;27221:212;;27295:31;27329:11;:17;27341:4;27329:17;;;;;;;;;;;27295:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27385:1;27359:28;;:9;:14;;;:28;;;27355:71;;27407:9;27400:16;;;;;;;27355:71;27221:212;27278:6;;;;;:::i;:::-;;;;27221:212;;;;27441:57;;;;;;;;;;:::i;:::-;;;;;;;;26898:606;;;;:::o;40502:191::-;40576:16;40595:6;;;;;;;;;;;40576:25;;40621:8;40612:6;;:17;;;;;;;;;;;;;;;;;;40676:8;40645:40;;40666:8;40645:40;;;;;;;;;;;;40502:191;;:::o;31196:98::-;31261:27;31271:2;31275:8;31261:27;;;;;;;;;;;;:9;:27::i;:::-;31196:98;;:::o;42687:185::-;42759:12;42777:8;:13;;42799:7;42777:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42758:54;;;42829:7;42821:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;42687:185;;;:::o;36487:690::-;36624:4;36641:15;:2;:13;;;:15::i;:::-;36637:535;;;36696:2;36680:36;;;36717:12;:10;:12::i;:::-;36731:4;36737:7;36746:5;36680:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36667:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36928:1;36911:6;:13;:18;36907:215;;;36944:61;;;;;;;;;;:::i;:::-;;;;;;;;36907:215;37090:6;37084:13;37075:6;37071:2;37067:15;37060:38;36667:464;36812:45;;;36802:55;;;:6;:55;;;;36795:62;;;;;36637:535;37160:4;37153:11;;36487:690;;;;;;;:::o;42074:108::-;42134:13;42163;42156:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42074:108;:::o;286:723::-;342:13;572:1;563:5;:10;559:53;;;590:10;;;;;;;;;;;;;;;;;;;;;559:53;622:12;637:5;622:20;;653:14;678:78;693:1;685:4;:9;678:78;;711:8;;;;;:::i;:::-;;;;742:2;734:10;;;;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766:39;;816:154;832:1;823:5;:10;816:154;;860:1;850:11;;;;;:::i;:::-;;;927:2;919:5;:10;;;;:::i;:::-;906:2;:24;;;;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;956:2;947:11;;;;;:::i;:::-;;;816:154;;;994:6;980:21;;;;;286:723;;;;:::o;26652:240::-;26713:7;26762:1;26745:19;;:5;:19;;;;26729:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;26853:12;:19;26866:5;26853:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;26845:41;;26838:48;;26652:240;;;:::o;37639:141::-;;;;;:::o;38166:140::-;;;;;:::o;31633:1272::-;31738:20;31761:12;;31738:35;;31802:1;31788:16;;:2;:16;;;;31780:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31979:21;31987:12;31979:7;:21::i;:::-;31978:22;31970:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32061:12;;32049:8;:24;;32041:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32121:61;32151:1;32155:2;32159:12;32173:8;32121:21;:61::i;:::-;32191:30;32224:12;:16;32237:2;32224:16;;;;;;;;;;;;;;;32191:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32266:119;;;;;;;;32316:8;32286:11;:19;;;:39;;;;:::i;:::-;32266:119;;;;;;32369:8;32334:11;:24;;;:44;;;;:::i;:::-;32266:119;;;;;32247:12;:16;32260:2;32247:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:43;;;;;;;;32435:2;32420:43;;;;;;32446:15;32420:43;;;;;32392:11;:25;32404:12;32392:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32472:20;32495:12;32472:35;;32521:9;32516:281;32540:8;32536:1;:12;32516:281;;;32594:12;32590:2;32569:38;;32586:1;32569:38;;;;;;;;;;;;32634:59;32665:1;32669:2;32673:12;32687:5;32634:22;:59::i;:::-;32616:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;32775:14;;;;;:::i;:::-;;;;32550:3;;;;;:::i;:::-;;;;32516:281;;;;32820:12;32805;:27;;;;32839:60;32868:1;32872:2;32876:12;32890:8;32839:20;:60::i;:::-;31633:1272;;;;;;:::o;2726:387::-;2786:4;2994:12;3061:7;3049:20;3041:28;;3104:1;3097:4;:8;3090:15;;;2726:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1233:352::-;;;1351:3;1344:4;1336:6;1332:17;1328:27;1318:2;;1369:1;1366;1359:12;1318:2;1405:6;1392:20;1382:30;;1435:18;1427:6;1424:30;1421:2;;;1467:1;1464;1457:12;1421:2;1504:4;1496:6;1492:17;1480:29;;1558:3;1550:4;1542:6;1538:17;1528:8;1524:32;1521:41;1518:2;;;1575:1;1572;1565:12;1518:2;1308:277;;;;;:::o;1591:139::-;;1675:6;1662:20;1653:29;;1691:33;1718:5;1691:33;:::i;:::-;1643:87;;;;:::o;1736:262::-;;1844:2;1832:9;1823:7;1819:23;1815:32;1812:2;;;1860:1;1857;1850:12;1812:2;1903:1;1928:53;1973:7;1964:6;1953:9;1949:22;1928:53;:::i;:::-;1918:63;;1874:117;1802:196;;;;:::o;2004:407::-;;;2129:2;2117:9;2108:7;2104:23;2100:32;2097:2;;;2145:1;2142;2135:12;2097:2;2188:1;2213:53;2258:7;2249:6;2238:9;2234:22;2213:53;:::i;:::-;2203:63;;2159:117;2315:2;2341:53;2386:7;2377:6;2366:9;2362:22;2341:53;:::i;:::-;2331:63;;2286:118;2087:324;;;;;:::o;2417:552::-;;;;2559:2;2547:9;2538:7;2534:23;2530:32;2527:2;;;2575:1;2572;2565:12;2527:2;2618:1;2643:53;2688:7;2679:6;2668:9;2664:22;2643:53;:::i;:::-;2633:63;;2589:117;2745:2;2771:53;2816:7;2807:6;2796:9;2792:22;2771:53;:::i;:::-;2761:63;;2716:118;2873:2;2899:53;2944:7;2935:6;2924:9;2920:22;2899:53;:::i;:::-;2889:63;;2844:118;2517:452;;;;;:::o;2975:809::-;;;;;3143:3;3131:9;3122:7;3118:23;3114:33;3111:2;;;3160:1;3157;3150:12;3111:2;3203:1;3228:53;3273:7;3264:6;3253:9;3249:22;3228:53;:::i;:::-;3218:63;;3174:117;3330:2;3356:53;3401:7;3392:6;3381:9;3377:22;3356:53;:::i;:::-;3346:63;;3301:118;3458:2;3484:53;3529:7;3520:6;3509:9;3505:22;3484:53;:::i;:::-;3474:63;;3429:118;3614:2;3603:9;3599:18;3586:32;3645:18;3637:6;3634:30;3631:2;;;3677:1;3674;3667:12;3631:2;3705:62;3759:7;3750:6;3739:9;3735:22;3705:62;:::i;:::-;3695:72;;3557:220;3101:683;;;;;;;:::o;3790:401::-;;;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;3971:1;3996:53;4041:7;4032:6;4021:9;4017:22;3996:53;:::i;:::-;3986:63;;3942:117;4098:2;4124:50;4166:7;4157:6;4146:9;4142:22;4124:50;:::i;:::-;4114:60;;4069:115;3870:321;;;;;:::o;4197:407::-;;;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4338:1;4335;4328:12;4290:2;4381:1;4406:53;4451:7;4442:6;4431:9;4427:22;4406:53;:::i;:::-;4396:63;;4352:117;4508:2;4534:53;4579:7;4570:6;4559:9;4555:22;4534:53;:::i;:::-;4524:63;;4479:118;4280:324;;;;;:::o;4610:260::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4733:1;4730;4723:12;4685:2;4776:1;4801:52;4845:7;4836:6;4825:9;4821:22;4801:52;:::i;:::-;4791:62;;4747:116;4675:195;;;;:::o;4876:282::-;;4994:2;4982:9;4973:7;4969:23;4965:32;4962:2;;;5010:1;5007;5000:12;4962:2;5053:1;5078:63;5133:7;5124:6;5113:9;5109:22;5078:63;:::i;:::-;5068:73;;5024:127;4952:206;;;;:::o;5164:395::-;;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5308:1;5305;5298:12;5260:2;5379:1;5368:9;5364:17;5351:31;5409:18;5401:6;5398:30;5395:2;;;5441:1;5438;5431:12;5395:2;5477:65;5534:7;5525:6;5514:9;5510:22;5477:65;:::i;:::-;5459:83;;;;5322:230;5250:309;;;;;:::o;5565:262::-;;5673:2;5661:9;5652:7;5648:23;5644:32;5641:2;;;5689:1;5686;5679:12;5641:2;5732:1;5757:53;5802:7;5793:6;5782:9;5778:22;5757:53;:::i;:::-;5747:63;;5703:117;5631:196;;;;:::o;5833:108::-;5910:24;5928:5;5910:24;:::i;:::-;5905:3;5898:37;5888:53;;:::o;5947:118::-;6034:24;6052:5;6034:24;:::i;:::-;6029:3;6022:37;6012:53;;:::o;6071:109::-;6152:21;6167:5;6152:21;:::i;:::-;6147:3;6140:34;6130:50;;:::o;6186:360::-;;6300:38;6332:5;6300:38;:::i;:::-;6354:70;6417:6;6412:3;6354:70;:::i;:::-;6347:77;;6433:52;6478:6;6473:3;6466:4;6459:5;6455:16;6433:52;:::i;:::-;6510:29;6532:6;6510:29;:::i;:::-;6505:3;6501:39;6494:46;;6276:270;;;;;:::o;6552:364::-;;6668:39;6701:5;6668:39;:::i;:::-;6723:71;6787:6;6782:3;6723:71;:::i;:::-;6716:78;;6803:52;6848:6;6843:3;6836:4;6829:5;6825:16;6803:52;:::i;:::-;6880:29;6902:6;6880:29;:::i;:::-;6875:3;6871:39;6864:46;;6644:272;;;;;:::o;6922:377::-;;7056:39;7089:5;7056:39;:::i;:::-;7111:89;7193:6;7188:3;7111:89;:::i;:::-;7104:96;;7209:52;7254:6;7249:3;7242:4;7235:5;7231:16;7209:52;:::i;:::-;7286:6;7281:3;7277:16;7270:23;;7032:267;;;;;:::o;7305:366::-;;7468:67;7532:2;7527:3;7468:67;:::i;:::-;7461:74;;7565:34;7561:1;7556:3;7552:11;7545:55;7631:4;7626:2;7621:3;7617:12;7610:26;7662:2;7657:3;7653:12;7646:19;;7451:220;;;:::o;7677:370::-;;7840:67;7904:2;7899:3;7840:67;:::i;:::-;7833:74;;7937:34;7933:1;7928:3;7924:11;7917:55;8003:8;7998:2;7993:3;7989:12;7982:30;8038:2;8033:3;8029:12;8022:19;;7823:224;;;:::o;8053:320::-;;8216:67;8280:2;8275:3;8216:67;:::i;:::-;8209:74;;8313:24;8309:1;8304:3;8300:11;8293:45;8364:2;8359:3;8355:12;8348:19;;8199:174;;;:::o;8379:374::-;;8542:67;8606:2;8601:3;8542:67;:::i;:::-;8535:74;;8639:34;8635:1;8630:3;8626:11;8619:55;8705:12;8700:2;8695:3;8691:12;8684:34;8744:2;8739:3;8735:12;8728:19;;8525:228;;;:::o;8759:367::-;;8922:67;8986:2;8981:3;8922:67;:::i;:::-;8915:74;;9019:34;9015:1;9010:3;9006:11;8999:55;9085:5;9080:2;9075:3;9071:12;9064:27;9117:2;9112:3;9108:12;9101:19;;8905:221;;;:::o;9132:369::-;;9295:67;9359:2;9354:3;9295:67;:::i;:::-;9288:74;;9392:34;9388:1;9383:3;9379:11;9372:55;9458:7;9453:2;9448:3;9444:12;9437:29;9492:2;9487:3;9483:12;9476:19;;9278:223;;;:::o;9507:381::-;;9670:67;9734:2;9729:3;9670:67;:::i;:::-;9663:74;;9767:34;9763:1;9758:3;9754:11;9747:55;9833:19;9828:2;9823:3;9819:12;9812:41;9879:2;9874:3;9870:12;9863:19;;9653:235;;;:::o;9894:305::-;;10057:66;10121:1;10116:3;10057:66;:::i;:::-;10050:73;;10153:10;10149:1;10144:3;10140:11;10133:31;10190:2;10185:3;10181:12;10174:19;;10040:159;;;:::o;10205:389::-;;10368:67;10432:2;10427:3;10368:67;:::i;:::-;10361:74;;10465:34;10461:1;10456:3;10452:11;10445:55;10531:27;10526:2;10521:3;10517:12;10510:49;10585:2;10580:3;10576:12;10569:19;;10351:243;;;:::o;10600:322::-;;10763:67;10827:2;10822:3;10763:67;:::i;:::-;10756:74;;10860:26;10856:1;10851:3;10847:11;10840:47;10913:2;10908:3;10904:12;10897:19;;10746:176;;;:::o;10928:375::-;;11091:67;11155:2;11150:3;11091:67;:::i;:::-;11084:74;;11188:34;11184:1;11179:3;11175:11;11168:55;11254:13;11249:2;11244:3;11240:12;11233:35;11294:2;11289:3;11285:12;11278:19;;11074:229;;;:::o;11309:370::-;;11472:67;11536:2;11531:3;11472:67;:::i;:::-;11465:74;;11569:34;11565:1;11560:3;11556:11;11549:55;11635:8;11630:2;11625:3;11621:12;11614:30;11670:2;11665:3;11661:12;11654:19;;11455:224;;;:::o;11685:317::-;;11848:67;11912:2;11907:3;11848:67;:::i;:::-;11841:74;;11945:21;11941:1;11936:3;11932:11;11925:42;11993:2;11988:3;11984:12;11977:19;;11831:171;;;:::o;12008:330::-;;12171:67;12235:2;12230:3;12171:67;:::i;:::-;12164:74;;12268:34;12264:1;12259:3;12255:11;12248:55;12329:2;12324:3;12320:12;12313:19;;12154:184;;;:::o;12344:379::-;;12507:67;12571:2;12566:3;12507:67;:::i;:::-;12500:74;;12604:34;12600:1;12595:3;12591:11;12584:55;12670:17;12665:2;12660:3;12656:12;12649:39;12714:2;12709:3;12705:12;12698:19;;12490:233;;;:::o;12729:324::-;;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12989:28;12985:1;12980:3;12976:11;12969:49;13044:2;13039:3;13035:12;13028:19;;12875:178;;;:::o;13059:382::-;;13222:67;13286:2;13281:3;13222:67;:::i;:::-;13215:74;;13319:34;13315:1;13310:3;13306:11;13299:55;13385:20;13380:2;13375:3;13371:12;13364:42;13432:2;13427:3;13423:12;13416:19;;13205:236;;;:::o;13447:323::-;;13610:67;13674:2;13669:3;13610:67;:::i;:::-;13603:74;;13707:27;13703:1;13698:3;13694:11;13687:48;13761:2;13756:3;13752:12;13745:19;;13593:177;;;:::o;13776:366::-;;13939:67;14003:2;13998:3;13939:67;:::i;:::-;13932:74;;14036:34;14032:1;14027:3;14023:11;14016:55;14102:4;14097:2;14092:3;14088:12;14081:26;14133:2;14128:3;14124:12;14117:19;;13922:220;;;:::o;14148:297::-;;14328:83;14409:1;14404:3;14328:83;:::i;:::-;14321:90;;14437:1;14432:3;14428:11;14421:18;;14311:134;;;:::o;14451:383::-;;14614:67;14678:2;14673:3;14614:67;:::i;:::-;14607:74;;14711:34;14707:1;14702:3;14698:11;14691:55;14777:21;14772:2;14767:3;14763:12;14756:43;14825:2;14820:3;14816:12;14809:19;;14597:237;;;:::o;14840:327::-;;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15100:31;15096:1;15091:3;15087:11;15080:52;15158:2;15153:3;15149:12;15142:19;;14986:181;;;:::o;15173:365::-;;15336:67;15400:2;15395:3;15336:67;:::i;:::-;15329:74;;15433:34;15429:1;15424:3;15420:11;15413:55;15499:3;15494:2;15489:3;15485:12;15478:25;15529:2;15524:3;15520:12;15513:19;;15319:219;;;:::o;15544:378::-;;15707:67;15771:2;15766:3;15707:67;:::i;:::-;15700:74;;15804:34;15800:1;15795:3;15791:11;15784:55;15870:16;15865:2;15860:3;15856:12;15849:38;15913:2;15908:3;15904:12;15897:19;;15690:232;;;:::o;15928:370::-;;16091:67;16155:2;16150:3;16091:67;:::i;:::-;16084:74;;16188:34;16184:1;16179:3;16175:11;16168:55;16254:8;16249:2;16244:3;16240:12;16233:30;16289:2;16284:3;16280:12;16273:19;;16074:224;;;:::o;16304:329::-;;16467:67;16531:2;16526:3;16467:67;:::i;:::-;16460:74;;16564:33;16560:1;16555:3;16551:11;16544:54;16624:2;16619:3;16615:12;16608:19;;16450:183;;;:::o;16639:379::-;;16802:67;16866:2;16861:3;16802:67;:::i;:::-;16795:74;;16899:34;16895:1;16890:3;16886:11;16879:55;16965:17;16960:2;16955:3;16951:12;16944:39;17009:2;17004:3;17000:12;16993:19;;16785:233;;;:::o;17024:377::-;;17187:67;17251:2;17246:3;17187:67;:::i;:::-;17180:74;;17284:34;17280:1;17275:3;17271:11;17264:55;17350:15;17345:2;17340:3;17336:12;17329:37;17392:2;17387:3;17383:12;17376:19;;17170:231;;;:::o;17407:317::-;;17570:67;17634:2;17629:3;17570:67;:::i;:::-;17563:74;;17667:21;17663:1;17658:3;17654:11;17647:42;17715:2;17710:3;17706:12;17699:19;;17553:171;;;:::o;17730:366::-;;17893:67;17957:2;17952:3;17893:67;:::i;:::-;17886:74;;17990:34;17986:1;17981:3;17977:11;17970:55;18056:4;18051:2;18046:3;18042:12;18035:26;18087:2;18082:3;18078:12;18071:19;;17876:220;;;:::o;18172:527::-;18331:4;18326:3;18322:14;18418:4;18411:5;18407:16;18401:23;18437:63;18494:4;18489:3;18485:14;18471:12;18437:63;:::i;:::-;18346:164;18602:4;18595:5;18591:16;18585:23;18621:61;18676:4;18671:3;18667:14;18653:12;18621:61;:::i;:::-;18520:172;18300:399;;;:::o;18705:118::-;18792:24;18810:5;18792:24;:::i;:::-;18787:3;18780:37;18770:53;;:::o;18829:105::-;18904:23;18921:5;18904:23;:::i;:::-;18899:3;18892:36;18882:52;;:::o;18940:435::-;;19142:95;19233:3;19224:6;19142:95;:::i;:::-;19135:102;;19254:95;19345:3;19336:6;19254:95;:::i;:::-;19247:102;;19366:3;19359:10;;19124:251;;;;;:::o;19381:379::-;;19587:147;19730:3;19587:147;:::i;:::-;19580:154;;19751:3;19744:10;;19569:191;;;:::o;19766:222::-;;19897:2;19886:9;19882:18;19874:26;;19910:71;19978:1;19967:9;19963:17;19954:6;19910:71;:::i;:::-;19864:124;;;;:::o;19994:640::-;;20227:3;20216:9;20212:19;20204:27;;20241:71;20309:1;20298:9;20294:17;20285:6;20241:71;:::i;:::-;20322:72;20390:2;20379:9;20375:18;20366:6;20322:72;:::i;:::-;20404;20472:2;20461:9;20457:18;20448:6;20404:72;:::i;:::-;20523:9;20517:4;20513:20;20508:2;20497:9;20493:18;20486:48;20551:76;20622:4;20613:6;20551:76;:::i;:::-;20543:84;;20194:440;;;;;;;:::o;20640:210::-;;20765:2;20754:9;20750:18;20742:26;;20778:65;20840:1;20829:9;20825:17;20816:6;20778:65;:::i;:::-;20732:118;;;;:::o;20856:313::-;;21007:2;20996:9;20992:18;20984:26;;21056:9;21050:4;21046:20;21042:1;21031:9;21027:17;21020:47;21084:78;21157:4;21148:6;21084:78;:::i;:::-;21076:86;;20974:195;;;;:::o;21175:419::-;;21379:2;21368:9;21364:18;21356:26;;21428:9;21422:4;21418:20;21414:1;21403:9;21399:17;21392:47;21456:131;21582:4;21456:131;:::i;:::-;21448:139;;21346:248;;;:::o;21600:419::-;;21804:2;21793:9;21789:18;21781:26;;21853:9;21847:4;21843:20;21839:1;21828:9;21824:17;21817:47;21881:131;22007:4;21881:131;:::i;:::-;21873:139;;21771:248;;;:::o;22025:419::-;;22229:2;22218:9;22214:18;22206:26;;22278:9;22272:4;22268:20;22264:1;22253:9;22249:17;22242:47;22306:131;22432:4;22306:131;:::i;:::-;22298:139;;22196:248;;;:::o;22450:419::-;;22654:2;22643:9;22639:18;22631:26;;22703:9;22697:4;22693:20;22689:1;22678:9;22674:17;22667:47;22731:131;22857:4;22731:131;:::i;:::-;22723:139;;22621:248;;;:::o;22875:419::-;;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;23046:248;;;:::o;23300:419::-;;23504:2;23493:9;23489:18;23481:26;;23553:9;23547:4;23543:20;23539:1;23528:9;23524:17;23517:47;23581:131;23707:4;23581:131;:::i;:::-;23573:139;;23471:248;;;:::o;23725:419::-;;23929:2;23918:9;23914:18;23906:26;;23978:9;23972:4;23968:20;23964:1;23953:9;23949:17;23942:47;24006:131;24132:4;24006:131;:::i;:::-;23998:139;;23896:248;;;:::o;24150:419::-;;24354:2;24343:9;24339:18;24331:26;;24403:9;24397:4;24393:20;24389:1;24378:9;24374:17;24367:47;24431:131;24557:4;24431:131;:::i;:::-;24423:139;;24321:248;;;:::o;24575:419::-;;24779:2;24768:9;24764:18;24756:26;;24828:9;24822:4;24818:20;24814:1;24803:9;24799:17;24792:47;24856:131;24982:4;24856:131;:::i;:::-;24848:139;;24746:248;;;:::o;25000:419::-;;25204:2;25193:9;25189:18;25181:26;;25253:9;25247:4;25243:20;25239:1;25228:9;25224:17;25217:47;25281:131;25407:4;25281:131;:::i;:::-;25273:139;;25171:248;;;:::o;25425:419::-;;25629:2;25618:9;25614:18;25606:26;;25678:9;25672:4;25668:20;25664:1;25653:9;25649:17;25642:47;25706:131;25832:4;25706:131;:::i;:::-;25698:139;;25596:248;;;:::o;25850:419::-;;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;26021:248;;;:::o;26275:419::-;;26479:2;26468:9;26464:18;26456:26;;26528:9;26522:4;26518:20;26514:1;26503:9;26499:17;26492:47;26556:131;26682:4;26556:131;:::i;:::-;26548:139;;26446:248;;;:::o;26700:419::-;;26904:2;26893:9;26889:18;26881:26;;26953:9;26947:4;26943:20;26939:1;26928:9;26924:17;26917:47;26981:131;27107:4;26981:131;:::i;:::-;26973:139;;26871:248;;;:::o;27125:419::-;;27329:2;27318:9;27314:18;27306:26;;27378:9;27372:4;27368:20;27364:1;27353:9;27349:17;27342:47;27406:131;27532:4;27406:131;:::i;:::-;27398:139;;27296:248;;;:::o;27550:419::-;;27754:2;27743:9;27739:18;27731:26;;27803:9;27797:4;27793:20;27789:1;27778:9;27774:17;27767:47;27831:131;27957:4;27831:131;:::i;:::-;27823:139;;27721:248;;;:::o;27975:419::-;;28179:2;28168:9;28164:18;28156:26;;28228:9;28222:4;28218:20;28214:1;28203:9;28199:17;28192:47;28256:131;28382:4;28256:131;:::i;:::-;28248:139;;28146:248;;;:::o;28400:419::-;;28604:2;28593:9;28589:18;28581:26;;28653:9;28647:4;28643:20;28639:1;28628:9;28624:17;28617:47;28681:131;28807:4;28681:131;:::i;:::-;28673:139;;28571:248;;;:::o;28825:419::-;;29029:2;29018:9;29014:18;29006:26;;29078:9;29072:4;29068:20;29064:1;29053:9;29049:17;29042:47;29106:131;29232:4;29106:131;:::i;:::-;29098:139;;28996:248;;;:::o;29250:419::-;;29454:2;29443:9;29439:18;29431:26;;29503:9;29497:4;29493:20;29489:1;29478:9;29474:17;29467:47;29531:131;29657:4;29531:131;:::i;:::-;29523:139;;29421:248;;;:::o;29675:419::-;;29879:2;29868:9;29864:18;29856:26;;29928:9;29922:4;29918:20;29914:1;29903:9;29899:17;29892:47;29956:131;30082:4;29956:131;:::i;:::-;29948:139;;29846:248;;;:::o;30100:419::-;;30304:2;30293:9;30289:18;30281:26;;30353:9;30347:4;30343:20;30339:1;30328:9;30324:17;30317:47;30381:131;30507:4;30381:131;:::i;:::-;30373:139;;30271:248;;;:::o;30525:419::-;;30729:2;30718:9;30714:18;30706:26;;30778:9;30772:4;30768:20;30764:1;30753:9;30749:17;30742:47;30806:131;30932:4;30806:131;:::i;:::-;30798:139;;30696:248;;;:::o;30950:419::-;;31154:2;31143:9;31139:18;31131:26;;31203:9;31197:4;31193:20;31189:1;31178:9;31174:17;31167:47;31231:131;31357:4;31231:131;:::i;:::-;31223:139;;31121:248;;;:::o;31375:419::-;;31579:2;31568:9;31564:18;31556:26;;31628:9;31622:4;31618:20;31614:1;31603:9;31599:17;31592:47;31656:131;31782:4;31656:131;:::i;:::-;31648:139;;31546:248;;;:::o;31800:419::-;;32004:2;31993:9;31989:18;31981:26;;32053:9;32047:4;32043:20;32039:1;32028:9;32024:17;32017:47;32081:131;32207:4;32081:131;:::i;:::-;32073:139;;31971:248;;;:::o;32225:419::-;;32429:2;32418:9;32414:18;32406:26;;32478:9;32472:4;32468:20;32464:1;32453:9;32449:17;32442:47;32506:131;32632:4;32506:131;:::i;:::-;32498:139;;32396:248;;;:::o;32650:419::-;;32854:2;32843:9;32839:18;32831:26;;32903:9;32897:4;32893:20;32889:1;32878:9;32874:17;32867:47;32931:131;33057:4;32931:131;:::i;:::-;32923:139;;32821:248;;;:::o;33075:419::-;;33279:2;33268:9;33264:18;33256:26;;33328:9;33322:4;33318:20;33314:1;33303:9;33299:17;33292:47;33356:131;33482:4;33356:131;:::i;:::-;33348:139;;33246:248;;;:::o;33500:346::-;;33693:2;33682:9;33678:18;33670:26;;33706:133;33836:1;33825:9;33821:17;33812:6;33706:133;:::i;:::-;33660:186;;;;:::o;33852:222::-;;33983:2;33972:9;33968:18;33960:26;;33996:71;34064:1;34053:9;34049:17;34040:6;33996:71;:::i;:::-;33950:124;;;;:::o;34080:283::-;;34146:2;34140:9;34130:19;;34188:4;34180:6;34176:17;34295:6;34283:10;34280:22;34259:18;34247:10;34244:34;34241:62;34238:2;;;34306:18;;:::i;:::-;34238:2;34346:10;34342:2;34335:22;34120:243;;;;:::o;34369:331::-;;34520:18;34512:6;34509:30;34506:2;;;34542:18;;:::i;:::-;34506:2;34627:4;34623:9;34616:4;34608:6;34604:17;34600:33;34592:41;;34688:4;34682;34678:15;34670:23;;34435:265;;;:::o;34706:98::-;;34791:5;34785:12;34775:22;;34764:40;;;:::o;34810:99::-;;34896:5;34890:12;34880:22;;34869:40;;;:::o;34915:168::-;;35032:6;35027:3;35020:19;35072:4;35067:3;35063:14;35048:29;;35010:73;;;;:::o;35089:147::-;;35227:3;35212:18;;35202:34;;;;:::o;35242:169::-;;35360:6;35355:3;35348:19;35400:4;35395:3;35391:14;35376:29;;35338:73;;;;:::o;35417:148::-;;35556:3;35541:18;;35531:34;;;;:::o;35571:273::-;;35630:20;35648:1;35630:20;:::i;:::-;35625:25;;35664:20;35682:1;35664:20;:::i;:::-;35659:25;;35786:1;35750:34;35746:42;35743:1;35740:49;35737:2;;;35792:18;;:::i;:::-;35737:2;35836:1;35833;35829:9;35822:16;;35615:229;;;;:::o;35850:305::-;;35909:20;35927:1;35909:20;:::i;:::-;35904:25;;35943:20;35961:1;35943:20;:::i;:::-;35938:25;;36097:1;36029:66;36025:74;36022:1;36019:81;36016:2;;;36103:18;;:::i;:::-;36016:2;36147:1;36144;36140:9;36133:16;;35894:261;;;;:::o;36161:185::-;;36218:20;36236:1;36218:20;:::i;:::-;36213:25;;36252:20;36270:1;36252:20;:::i;:::-;36247:25;;36291:1;36281:2;;36296:18;;:::i;:::-;36281:2;36338:1;36335;36331:9;36326:14;;36203:143;;;;:::o;36352:348::-;;36415:20;36433:1;36415:20;:::i;:::-;36410:25;;36449:20;36467:1;36449:20;:::i;:::-;36444:25;;36637:1;36569:66;36565:74;36562:1;36559:81;36554:1;36547:9;36540:17;36536:105;36533:2;;;36644:18;;:::i;:::-;36533:2;36692:1;36689;36685:9;36674:20;;36400:300;;;;:::o;36706:191::-;;36766:20;36784:1;36766:20;:::i;:::-;36761:25;;36800:20;36818:1;36800:20;:::i;:::-;36795:25;;36839:1;36836;36833:8;36830:2;;;36844:18;;:::i;:::-;36830:2;36889:1;36886;36882:9;36874:17;;36751:146;;;;:::o;36903:191::-;;36963:20;36981:1;36963:20;:::i;:::-;36958:25;;36997:20;37015:1;36997:20;:::i;:::-;36992:25;;37036:1;37033;37030:8;37027:2;;;37041:18;;:::i;:::-;37027:2;37086:1;37083;37079:9;37071:17;;36948:146;;;;:::o;37100:96::-;;37166:24;37184:5;37166:24;:::i;:::-;37155:35;;37145:51;;;:::o;37202:90::-;;37279:5;37272:13;37265:21;37254:32;;37244:48;;;:::o;37298:149::-;;37374:66;37367:5;37363:78;37352:89;;37342:105;;;:::o;37453:118::-;;37530:34;37523:5;37519:46;37508:57;;37498:73;;;:::o;37577:126::-;;37654:42;37647:5;37643:54;37632:65;;37622:81;;;:::o;37709:77::-;;37775:5;37764:16;;37754:32;;;:::o;37792:101::-;;37868:18;37861:5;37857:30;37846:41;;37836:57;;;:::o;37899:154::-;37983:6;37978:3;37973;37960:30;38045:1;38036:6;38031:3;38027:16;38020:27;37950:103;;;:::o;38059:307::-;38127:1;38137:113;38151:6;38148:1;38145:13;38137:113;;;38236:1;38231:3;38227:11;38221:18;38217:1;38212:3;38208:11;38201:39;38173:2;38170:1;38166:10;38161:15;;38137:113;;;38268:6;38265:1;38262:13;38259:2;;;38348:1;38339:6;38334:3;38330:16;38323:27;38259:2;38108:258;;;;:::o;38372:171::-;;38434:24;38452:5;38434:24;:::i;:::-;38425:33;;38480:4;38473:5;38470:15;38467:2;;;38488:18;;:::i;:::-;38467:2;38535:1;38528:5;38524:13;38517:20;;38415:128;;;:::o;38549:320::-;;38630:1;38624:4;38620:12;38610:22;;38677:1;38671:4;38667:12;38698:18;38688:2;;38754:4;38746:6;38742:17;38732:27;;38688:2;38816;38808:6;38805:14;38785:18;38782:38;38779:2;;;38835:18;;:::i;:::-;38779:2;38600:269;;;;:::o;38875:233::-;;38937:24;38955:5;38937:24;:::i;:::-;38928:33;;38983:66;38976:5;38973:77;38970:2;;;39053:18;;:::i;:::-;38970:2;39100:1;39093:5;39089:13;39082:20;;38918:190;;;:::o;39114:176::-;;39163:20;39181:1;39163:20;:::i;:::-;39158:25;;39197:20;39215:1;39197:20;:::i;:::-;39192:25;;39236:1;39226:2;;39241:18;;:::i;:::-;39226:2;39282:1;39279;39275:9;39270:14;;39148:142;;;;:::o;39296:180::-;39344:77;39341:1;39334:88;39441:4;39438:1;39431:15;39465:4;39462:1;39455:15;39482:180;39530:77;39527:1;39520:88;39627:4;39624:1;39617:15;39651:4;39648:1;39641:15;39668:180;39716:77;39713:1;39706:88;39813:4;39810:1;39803:15;39837:4;39834:1;39827:15;39854:180;39902:77;39899:1;39892:88;39999:4;39996:1;39989:15;40023:4;40020:1;40013:15;40040:102;;40132:2;40128:7;40123:2;40116:5;40112:14;40108:28;40098:38;;40088:54;;;:::o;40148:122::-;40221:24;40239:5;40221:24;:::i;:::-;40214:5;40211:35;40201:2;;40260:1;40257;40250:12;40201:2;40191:79;:::o;40276:116::-;40346:21;40361:5;40346:21;:::i;:::-;40339:5;40336:32;40326:2;;40382:1;40379;40372:12;40326:2;40316:76;:::o;40398:120::-;40470:23;40487:5;40470:23;:::i;:::-;40463:5;40460:34;40450:2;;40508:1;40505;40498:12;40450:2;40440:78;:::o;40524:122::-;40597:24;40615:5;40597:24;:::i;:::-;40590:5;40587:35;40577:2;;40636:1;40633;40626:12;40577:2;40567:79;:::o

Swarm Source

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