ETH Price: $2,512.77 (-0.48%)

Token

A Seed Grows (SEED)
 

Overview

Max Total Supply

500 SEED

Holders

272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SEED
0x8e0170af8f4082fe0fa6fae91ebefa76d754e286
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:
Seed

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). 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:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Seed.sol


pragma solidity ^0.8.15;



contract Seed is Ownable, ERC721A {

    // constants
    uint256 constant MAX_ELEMENTS = 500;
    uint256 constant MAX_ELEMENTS_TX = 5;
    uint256 constant MAX_FREE_PER_TX = 1;
    uint256 constant PUBLIC_PRICE = 0.02 ether;

    string public baseTokenURI = "ipfs://QmNND924QZiG8A2FADs4m5uB58FGEa32xJuFfKsjmkEWXY/";
    bool public paused = false;

    constructor(uint256 maxBatchSize_) ERC721A("A Seed Grows", "SEED", maxBatchSize_) {}

    function mint(uint256 _mintAmount) external payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0,"No zero mints");
        require(_mintAmount <= MAX_ELEMENTS_TX,"Exceeds max per tx");
        require(!paused, "Sale has not started!");

        require(supply + _mintAmount <= MAX_ELEMENTS,"Exceeds max supply");
        require(msg.value >= (_mintAmount - MAX_FREE_PER_TX)* PUBLIC_PRICE,"Invalid funds provided");
        _safeMint(msg.sender,_mintAmount);
    }

    function withdraw() external payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040526000600155600060085560405180606001604052806036815260200162004b016036913960099081620000389190620004d6565b506000600a60006101000a81548160ff0219169083151502179055503480156200006157600080fd5b5060405162004b3738038062004b378339818101604052810190620000879190620005f3565b6040518060400160405280600c81526020017f4120536565642047726f777300000000000000000000000000000000000000008152506040518060400160405280600481526020017f53454544000000000000000000000000000000000000000000000000000000008152508262000114620001086200019060201b60201c565b6200019860201b60201c565b600081116200015a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015190620006ac565b60405180910390fd5b82600290816200016b9190620004d6565b5081600390816200017d9190620004d6565b50806080818152505050505050620006ce565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002de57607f821691505b602082108103620002f457620002f362000296565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200035e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031f565b6200036a86836200031f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b7620003b1620003ab8462000382565b6200038c565b62000382565b9050919050565b6000819050919050565b620003d38362000396565b620003eb620003e282620003be565b8484546200032c565b825550505050565b600090565b62000402620003f3565b6200040f818484620003c8565b505050565b5b8181101562000437576200042b600082620003f8565b60018101905062000415565b5050565b601f82111562000486576200045081620002fa565b6200045b846200030f565b810160208510156200046b578190505b620004836200047a856200030f565b83018262000414565b50505b505050565b600082821c905092915050565b6000620004ab600019846008026200048b565b1980831691505092915050565b6000620004c6838362000498565b9150826002028217905092915050565b620004e1826200025c565b67ffffffffffffffff811115620004fd57620004fc62000267565b5b620005098254620002c5565b620005168282856200043b565b600060209050601f8311600181146200054e576000841562000539578287015190505b620005458582620004b8565b865550620005b5565b601f1984166200055e86620002fa565b60005b82811015620005885784890151825560018201915060208501945060208101905062000561565b86831015620005a85784890151620005a4601f89168262000498565b8355505b6001600288020188555050505b505050505050565b600080fd5b620005cd8162000382565b8114620005d957600080fd5b50565b600081519050620005ed81620005c2565b92915050565b6000602082840312156200060c576200060b620005bd565b5b60006200061c84828501620005dc565b91505092915050565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200069460278362000625565b9150620006a18262000636565b604082019050919050565b60006020820190508181036000830152620006c78162000685565b9050919050565b608051614409620006f860003960008181611dde01528181611e0701526124b501526144096000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610564578063d7224ba01461058f578063e985e9c5146105ba578063f2fde38b146105f757610181565b8063a22cb465146104d5578063b88d4fde146104fe578063c87b56dd1461052757610181565b80636352211e146103d257806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e578063a0712d68146104b957610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780635c975abb146103a757610181565b806323b872dd146102a85780632f745c59146102d15780633ccfd60b1461030e57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061298c565b610620565b6040516101ba91906129d4565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612a1b565b61076a565b005b3480156101f857600080fd5b50610201610803565b60405161020e9190612ae1565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612b39565b610895565b60405161024b9190612ba7565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612bee565b61091a565b005b34801561028957600080fd5b50610292610a32565b60405161029f9190612c3d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612c58565b610a3c565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612bee565b610a4c565b6040516103059190612c3d565b60405180910390f35b610316610c48565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612c58565b610d04565b005b34801561034d57600080fd5b5061036860048036038101906103639190612b39565b610d24565b6040516103759190612c3d565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d10565b610d77565b005b3480156103b357600080fd5b506103bc610e09565b6040516103c991906129d4565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612b39565b610e1c565b6040516104069190612ba7565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612d5d565b610e32565b6040516104439190612c3d565b60405180910390f35b34801561045857600080fd5b50610461610f1a565b005b34801561046f57600080fd5b50610478610fa2565b6040516104859190612ba7565b60405180910390f35b34801561049a57600080fd5b506104a3610fcb565b6040516104b09190612ae1565b60405180910390f35b6104d360048036038101906104ce9190612b39565b61105d565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612d8a565b6111ff565b005b34801561050a57600080fd5b5061052560048036038101906105209190612efa565b61137f565b005b34801561053357600080fd5b5061054e60048036038101906105499190612b39565b6113db565b60405161055b9190612ae1565b60405180910390f35b34801561057057600080fd5b50610579611482565b6040516105869190612ae1565b60405180910390f35b34801561059b57600080fd5b506105a4611510565b6040516105b19190612c3d565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612f7d565b611516565b6040516105ee91906129d4565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612d5d565b6115aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107635750610762826116a1565b5b9050919050565b61077261170b565b73ffffffffffffffffffffffffffffffffffffffff16610790610fa2565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613009565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606002805461081290613058565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613058565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611713565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906130fb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610e1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061318d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b461170b565b73ffffffffffffffffffffffffffffffffffffffff1614806109e357506109e2816109dd61170b565b611516565b5b610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a199061321f565b60405180910390fd5b610a2d838383611721565b505050565b6000600154905090565b610a478383836117d3565b505050565b6000610a5783610e32565b8210610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906132b1565b60405180910390fd5b6000610aa2610a32565b905060008060005b83811015610c06576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf257868403610be3578195505050505050610c42565b8380610bee90613300565b9450505b508080610bfe90613300565b915050610aaa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906133ba565b60405180910390fd5b92915050565b610c5061170b565b73ffffffffffffffffffffffffffffffffffffffff16610c6e610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613009565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0257600080fd5b565b610d1f8383836040518060200160405280600081525061137f565b505050565b6000610d2e610a32565b8210610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061344c565b60405180910390fd5b819050919050565b610d7f61170b565b73ffffffffffffffffffffffffffffffffffffffff16610d9d610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613009565b60405180910390fd5b818160099182610e04929190613623565b505050565b600a60009054906101000a900460ff1681565b6000610e2782611d8a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613765565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f2261170b565b73ffffffffffffffffffffffffffffffffffffffff16610f40610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613009565b60405180910390fd5b610fa06000611f8d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fda90613058565b80601f016020809104026020016040519081016040528092919081815260200182805461100690613058565b80156110535780601f1061102857610100808354040283529160200191611053565b820191906000526020600020905b81548152906001019060200180831161103657829003601f168201915b5050505050905090565b6000611067610a32565b9050600082116110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906137d1565b60405180910390fd5b60058211156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e79061383d565b60405180910390fd5b600a60009054906101000a900460ff1615611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906138a9565b60405180910390fd5b6101f4828261114f91906138c9565b1115611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061396b565b60405180910390fd5b66470de4df8200006001836111a5919061398b565b6111af91906139bf565b3410156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613a65565b60405180910390fd5b6111fb3383612051565b5050565b61120761170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613ad1565b60405180910390fd5b806007600061128161170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e61170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137391906129d4565b60405180910390a35050565b61138a8484846117d3565b6113968484848461206f565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613b63565b60405180910390fd5b50505050565b60606113e682611713565b611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613bf5565b60405180910390fd5b600061142f6121f6565b9050600081511161144f576040518060200160405280600081525061147a565b8061145984612288565b60405160200161146a929190613c51565b6040516020818303038152906040525b915050919050565b6009805461148f90613058565b80601f01602080910402602001604051908101604052809291908181526020018280546114bb90613058565b80156115085780601f106114dd57610100808354040283529160200191611508565b820191906000526020600020905b8154815290600101906020018083116114eb57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b261170b565b73ffffffffffffffffffffffffffffffffffffffff166115d0610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613009565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613ce7565b60405180910390fd5b61169e81611f8d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117de82611d8a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180561170b565b73ffffffffffffffffffffffffffffffffffffffff161480611861575061182a61170b565b73ffffffffffffffffffffffffffffffffffffffff1661184984610895565b73ffffffffffffffffffffffffffffffffffffffff16145b8061187d575061187c826000015161187761170b565b611516565b5b9050806118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690613d79565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613e0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613e9d565b60405180910390fd5b6119ad85858560016123e8565b6119bd6000848460000151611721565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a2b9190613ed9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611acf9190613f0d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611bd591906138c9565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d1a57611c4a81611713565b15611d19576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8286868660016123ee565b505050505050565b611d926128e6565b611d9b82611713565b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613fc5565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611e3e5760017f000000000000000000000000000000000000000000000000000000000000000084611e31919061398b565b611e3b91906138c9565b90505b60008390505b818110611f4c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f3857809350505050611f88565b508080611f4490613fe5565b915050611e44565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90614080565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61206b8282604051806020016040528060008152506123f4565b5050565b60006120908473ffffffffffffffffffffffffffffffffffffffff166128d3565b156121e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b961170b565b8786866040518563ffffffff1660e01b81526004016120db94939291906140f5565b6020604051808303816000875af192505050801561211757506040513d601f19601f820116820180604052508101906121149190614156565b60015b612199573d8060008114612147576040519150601f19603f3d011682016040523d82523d6000602084013e61214c565b606091505b506000815103612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218890613b63565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121ee565b600190505b949350505050565b60606009805461220590613058565b80601f016020809104026020016040519081016040528092919081815260200182805461223190613058565b801561227e5780601f106122535761010080835404028352916020019161227e565b820191906000526020600020905b81548152906001019060200180831161226157829003601f168201915b5050505050905090565b6060600082036122cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123e3565b600082905060005b600082146123015780806122ea90613300565b915050600a826122fa91906141b2565b91506122d7565b60008167ffffffffffffffff81111561231d5761231c612dcf565b5b6040519080825280601f01601f19166020018201604052801561234f5781602001600182028036833780820191505090505b5090505b600085146123dc57600182612368919061398b565b9150600a8561237791906141e3565b603061238391906138c9565b60f81b81838151811061239957612398614214565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d591906141b2565b9450612353565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361246a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612461906142b5565b60405180910390fd5b61247381611713565b156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614321565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d906143b3565b60405180910390fd5b61252360008583866123e8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126209190613f0d565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126479190613f0d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128b657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612856600088848861206f565b612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613b63565b60405180910390fd5b81806128a090613300565b92505080806128ae90613300565b9150506127e5565b50806001819055506128cb60008785886123ee565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296981612934565b811461297457600080fd5b50565b60008135905061298681612960565b92915050565b6000602082840312156129a2576129a161292a565b5b60006129b084828501612977565b91505092915050565b60008115159050919050565b6129ce816129b9565b82525050565b60006020820190506129e960008301846129c5565b92915050565b6129f8816129b9565b8114612a0357600080fd5b50565b600081359050612a15816129ef565b92915050565b600060208284031215612a3157612a3061292a565b5b6000612a3f84828501612a06565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a82578082015181840152602081019050612a67565b83811115612a91576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ab382612a48565b612abd8185612a53565b9350612acd818560208601612a64565b612ad681612a97565b840191505092915050565b60006020820190508181036000830152612afb8184612aa8565b905092915050565b6000819050919050565b612b1681612b03565b8114612b2157600080fd5b50565b600081359050612b3381612b0d565b92915050565b600060208284031215612b4f57612b4e61292a565b5b6000612b5d84828501612b24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9182612b66565b9050919050565b612ba181612b86565b82525050565b6000602082019050612bbc6000830184612b98565b92915050565b612bcb81612b86565b8114612bd657600080fd5b50565b600081359050612be881612bc2565b92915050565b60008060408385031215612c0557612c0461292a565b5b6000612c1385828601612bd9565b9250506020612c2485828601612b24565b9150509250929050565b612c3781612b03565b82525050565b6000602082019050612c526000830184612c2e565b92915050565b600080600060608486031215612c7157612c7061292a565b5b6000612c7f86828701612bd9565b9350506020612c9086828701612bd9565b9250506040612ca186828701612b24565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612cd057612ccf612cab565b5b8235905067ffffffffffffffff811115612ced57612cec612cb0565b5b602083019150836001820283011115612d0957612d08612cb5565b5b9250929050565b60008060208385031215612d2757612d2661292a565b5b600083013567ffffffffffffffff811115612d4557612d4461292f565b5b612d5185828601612cba565b92509250509250929050565b600060208284031215612d7357612d7261292a565b5b6000612d8184828501612bd9565b91505092915050565b60008060408385031215612da157612da061292a565b5b6000612daf85828601612bd9565b9250506020612dc085828601612a06565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0782612a97565b810181811067ffffffffffffffff82111715612e2657612e25612dcf565b5b80604052505050565b6000612e39612920565b9050612e458282612dfe565b919050565b600067ffffffffffffffff821115612e6557612e64612dcf565b5b612e6e82612a97565b9050602081019050919050565b82818337600083830152505050565b6000612e9d612e9884612e4a565b612e2f565b905082815260208101848484011115612eb957612eb8612dca565b5b612ec4848285612e7b565b509392505050565b600082601f830112612ee157612ee0612cab565b5b8135612ef1848260208601612e8a565b91505092915050565b60008060008060808587031215612f1457612f1361292a565b5b6000612f2287828801612bd9565b9450506020612f3387828801612bd9565b9350506040612f4487828801612b24565b925050606085013567ffffffffffffffff811115612f6557612f6461292f565b5b612f7187828801612ecc565b91505092959194509250565b60008060408385031215612f9457612f9361292a565b5b6000612fa285828601612bd9565b9250506020612fb385828601612bd9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ff3602083612a53565b9150612ffe82612fbd565b602082019050919050565b6000602082019050818103600083015261302281612fe6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061307057607f821691505b60208210810361308357613082613029565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130e5602d83612a53565b91506130f082613089565b604082019050919050565b60006020820190508181036000830152613114816130d8565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613177602283612a53565b91506131828261311b565b604082019050919050565b600060208201905081810360008301526131a68161316a565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613209603983612a53565b9150613214826131ad565b604082019050919050565b60006020820190508181036000830152613238816131fc565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061329b602283612a53565b91506132a68261323f565b604082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061330b82612b03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361333d5761333c6132d1565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006133a4602e83612a53565b91506133af82613348565b604082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613436602383612a53565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261349c565b6134e3868361349c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352061351b61351684612b03565b6134fb565b612b03565b9050919050565b6000819050919050565b61353a83613505565b61354e61354682613527565b8484546134a9565b825550505050565b600090565b613563613556565b61356e818484613531565b505050565b5b818110156135925761358760008261355b565b600181019050613574565b5050565b601f8211156135d7576135a881613477565b6135b18461348c565b810160208510156135c0578190505b6135d46135cc8561348c565b830182613573565b50505b505050565b600082821c905092915050565b60006135fa600019846008026135dc565b1980831691505092915050565b600061361383836135e9565b9150826002028217905092915050565b61362d838361346c565b67ffffffffffffffff81111561364657613645612dcf565b5b6136508254613058565b61365b828285613596565b6000601f83116001811461368a5760008415613678578287013590505b6136828582613607565b8655506136ea565b601f19841661369886613477565b60005b828110156136c05784890135825560018201915060208501945060208101905061369b565b868310156136dd57848901356136d9601f8916826135e9565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061374f602b83612a53565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4e6f207a65726f206d696e747300000000000000000000000000000000000000600082015250565b60006137bb600d83612a53565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b6000613827601283612a53565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f53616c6520686173206e6f742073746172746564210000000000000000000000600082015250565b6000613893601583612a53565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b60006138d482612b03565b91506138df83612b03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613914576139136132d1565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613955601283612a53565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b600061399682612b03565b91506139a183612b03565b9250828210156139b4576139b36132d1565b5b828203905092915050565b60006139ca82612b03565b91506139d583612b03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d6132d1565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613a4f601683612a53565b9150613a5a82613a19565b602082019050919050565b60006020820190508181036000830152613a7e81613a42565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613abb601a83612a53565b9150613ac682613a85565b602082019050919050565b60006020820190508181036000830152613aea81613aae565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b4d603383612a53565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bdf602f83612a53565b9150613bea82613b83565b604082019050919050565b60006020820190508181036000830152613c0e81613bd2565b9050919050565b600081905092915050565b6000613c2b82612a48565b613c358185613c15565b9350613c45818560208601612a64565b80840191505092915050565b6000613c5d8285613c20565b9150613c698284613c20565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cd1602683612a53565b9150613cdc82613c75565b604082019050919050565b60006020820190508181036000830152613d0081613cc4565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613d63603283612a53565b9150613d6e82613d07565b604082019050919050565b60006020820190508181036000830152613d9281613d56565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613df5602683612a53565b9150613e0082613d99565b604082019050919050565b60006020820190508181036000830152613e2481613de8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e87602583612a53565b9150613e9282613e2b565b604082019050919050565b60006020820190508181036000830152613eb681613e7a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613ee482613ebd565b9150613eef83613ebd565b925082821015613f0257613f016132d1565b5b828203905092915050565b6000613f1882613ebd565b9150613f2383613ebd565b9250826fffffffffffffffffffffffffffffffff03821115613f4857613f476132d1565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613faf602a83612a53565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b6000613ff082612b03565b915060008203614003576140026132d1565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061406a602f83612a53565b91506140758261400e565b604082019050919050565b600060208201905081810360008301526140998161405d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140c7826140a0565b6140d181856140ab565b93506140e1818560208601612a64565b6140ea81612a97565b840191505092915050565b600060808201905061410a6000830187612b98565b6141176020830186612b98565b6141246040830185612c2e565b818103606083015261413681846140bc565b905095945050505050565b60008151905061415081612960565b92915050565b60006020828403121561416c5761416b61292a565b5b600061417a84828501614141565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141bd82612b03565b91506141c883612b03565b9250826141d8576141d7614183565b5b828204905092915050565b60006141ee82612b03565b91506141f983612b03565b92508261420957614208614183565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061429f602183612a53565b91506142aa82614243565b604082019050919050565b600060208201905081810360008301526142ce81614292565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061430b601d83612a53565b9150614316826142d5565b602082019050919050565b6000602082019050818103600083015261433a816142fe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061439d602283612a53565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b905091905056fea264697066735822122057ec36756a99180603774a5937124d9be4c317d163a58ce5708b39a27d2bae0164736f6c634300080f0033697066733a2f2f516d4e4e44393234515a694738413246414473346d3575423538464745613332784a7546664b736a6d6b455758592f0000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610564578063d7224ba01461058f578063e985e9c5146105ba578063f2fde38b146105f757610181565b8063a22cb465146104d5578063b88d4fde146104fe578063c87b56dd1461052757610181565b80636352211e146103d257806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e578063a0712d68146104b957610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780635c975abb146103a757610181565b806323b872dd146102a85780632f745c59146102d15780633ccfd60b1461030e57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061298c565b610620565b6040516101ba91906129d4565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612a1b565b61076a565b005b3480156101f857600080fd5b50610201610803565b60405161020e9190612ae1565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612b39565b610895565b60405161024b9190612ba7565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612bee565b61091a565b005b34801561028957600080fd5b50610292610a32565b60405161029f9190612c3d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612c58565b610a3c565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612bee565b610a4c565b6040516103059190612c3d565b60405180910390f35b610316610c48565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612c58565b610d04565b005b34801561034d57600080fd5b5061036860048036038101906103639190612b39565b610d24565b6040516103759190612c3d565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d10565b610d77565b005b3480156103b357600080fd5b506103bc610e09565b6040516103c991906129d4565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612b39565b610e1c565b6040516104069190612ba7565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612d5d565b610e32565b6040516104439190612c3d565b60405180910390f35b34801561045857600080fd5b50610461610f1a565b005b34801561046f57600080fd5b50610478610fa2565b6040516104859190612ba7565b60405180910390f35b34801561049a57600080fd5b506104a3610fcb565b6040516104b09190612ae1565b60405180910390f35b6104d360048036038101906104ce9190612b39565b61105d565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612d8a565b6111ff565b005b34801561050a57600080fd5b5061052560048036038101906105209190612efa565b61137f565b005b34801561053357600080fd5b5061054e60048036038101906105499190612b39565b6113db565b60405161055b9190612ae1565b60405180910390f35b34801561057057600080fd5b50610579611482565b6040516105869190612ae1565b60405180910390f35b34801561059b57600080fd5b506105a4611510565b6040516105b19190612c3d565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612f7d565b611516565b6040516105ee91906129d4565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612d5d565b6115aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107635750610762826116a1565b5b9050919050565b61077261170b565b73ffffffffffffffffffffffffffffffffffffffff16610790610fa2565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613009565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606002805461081290613058565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613058565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611713565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906130fb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610e1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061318d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b461170b565b73ffffffffffffffffffffffffffffffffffffffff1614806109e357506109e2816109dd61170b565b611516565b5b610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a199061321f565b60405180910390fd5b610a2d838383611721565b505050565b6000600154905090565b610a478383836117d3565b505050565b6000610a5783610e32565b8210610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906132b1565b60405180910390fd5b6000610aa2610a32565b905060008060005b83811015610c06576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf257868403610be3578195505050505050610c42565b8380610bee90613300565b9450505b508080610bfe90613300565b915050610aaa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906133ba565b60405180910390fd5b92915050565b610c5061170b565b73ffffffffffffffffffffffffffffffffffffffff16610c6e610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613009565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0257600080fd5b565b610d1f8383836040518060200160405280600081525061137f565b505050565b6000610d2e610a32565b8210610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061344c565b60405180910390fd5b819050919050565b610d7f61170b565b73ffffffffffffffffffffffffffffffffffffffff16610d9d610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613009565b60405180910390fd5b818160099182610e04929190613623565b505050565b600a60009054906101000a900460ff1681565b6000610e2782611d8a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613765565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f2261170b565b73ffffffffffffffffffffffffffffffffffffffff16610f40610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613009565b60405180910390fd5b610fa06000611f8d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fda90613058565b80601f016020809104026020016040519081016040528092919081815260200182805461100690613058565b80156110535780601f1061102857610100808354040283529160200191611053565b820191906000526020600020905b81548152906001019060200180831161103657829003601f168201915b5050505050905090565b6000611067610a32565b9050600082116110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906137d1565b60405180910390fd5b60058211156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e79061383d565b60405180910390fd5b600a60009054906101000a900460ff1615611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906138a9565b60405180910390fd5b6101f4828261114f91906138c9565b1115611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061396b565b60405180910390fd5b66470de4df8200006001836111a5919061398b565b6111af91906139bf565b3410156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613a65565b60405180910390fd5b6111fb3383612051565b5050565b61120761170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613ad1565b60405180910390fd5b806007600061128161170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e61170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137391906129d4565b60405180910390a35050565b61138a8484846117d3565b6113968484848461206f565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613b63565b60405180910390fd5b50505050565b60606113e682611713565b611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613bf5565b60405180910390fd5b600061142f6121f6565b9050600081511161144f576040518060200160405280600081525061147a565b8061145984612288565b60405160200161146a929190613c51565b6040516020818303038152906040525b915050919050565b6009805461148f90613058565b80601f01602080910402602001604051908101604052809291908181526020018280546114bb90613058565b80156115085780601f106114dd57610100808354040283529160200191611508565b820191906000526020600020905b8154815290600101906020018083116114eb57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b261170b565b73ffffffffffffffffffffffffffffffffffffffff166115d0610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613009565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613ce7565b60405180910390fd5b61169e81611f8d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117de82611d8a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180561170b565b73ffffffffffffffffffffffffffffffffffffffff161480611861575061182a61170b565b73ffffffffffffffffffffffffffffffffffffffff1661184984610895565b73ffffffffffffffffffffffffffffffffffffffff16145b8061187d575061187c826000015161187761170b565b611516565b5b9050806118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690613d79565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613e0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613e9d565b60405180910390fd5b6119ad85858560016123e8565b6119bd6000848460000151611721565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a2b9190613ed9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611acf9190613f0d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611bd591906138c9565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d1a57611c4a81611713565b15611d19576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8286868660016123ee565b505050505050565b611d926128e6565b611d9b82611713565b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613fc5565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000058310611e3e5760017f000000000000000000000000000000000000000000000000000000000000000584611e31919061398b565b611e3b91906138c9565b90505b60008390505b818110611f4c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f3857809350505050611f88565b508080611f4490613fe5565b915050611e44565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90614080565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61206b8282604051806020016040528060008152506123f4565b5050565b60006120908473ffffffffffffffffffffffffffffffffffffffff166128d3565b156121e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b961170b565b8786866040518563ffffffff1660e01b81526004016120db94939291906140f5565b6020604051808303816000875af192505050801561211757506040513d601f19601f820116820180604052508101906121149190614156565b60015b612199573d8060008114612147576040519150601f19603f3d011682016040523d82523d6000602084013e61214c565b606091505b506000815103612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218890613b63565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121ee565b600190505b949350505050565b60606009805461220590613058565b80601f016020809104026020016040519081016040528092919081815260200182805461223190613058565b801561227e5780601f106122535761010080835404028352916020019161227e565b820191906000526020600020905b81548152906001019060200180831161226157829003601f168201915b5050505050905090565b6060600082036122cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123e3565b600082905060005b600082146123015780806122ea90613300565b915050600a826122fa91906141b2565b91506122d7565b60008167ffffffffffffffff81111561231d5761231c612dcf565b5b6040519080825280601f01601f19166020018201604052801561234f5781602001600182028036833780820191505090505b5090505b600085146123dc57600182612368919061398b565b9150600a8561237791906141e3565b603061238391906138c9565b60f81b81838151811061239957612398614214565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d591906141b2565b9450612353565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361246a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612461906142b5565b60405180910390fd5b61247381611713565b156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614321565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000005831115612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d906143b3565b60405180910390fd5b61252360008583866123e8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126209190613f0d565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126479190613f0d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128b657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612856600088848861206f565b612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613b63565b60405180910390fd5b81806128a090613300565b92505080806128ae90613300565b9150506127e5565b50806001819055506128cb60008785886123ee565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296981612934565b811461297457600080fd5b50565b60008135905061298681612960565b92915050565b6000602082840312156129a2576129a161292a565b5b60006129b084828501612977565b91505092915050565b60008115159050919050565b6129ce816129b9565b82525050565b60006020820190506129e960008301846129c5565b92915050565b6129f8816129b9565b8114612a0357600080fd5b50565b600081359050612a15816129ef565b92915050565b600060208284031215612a3157612a3061292a565b5b6000612a3f84828501612a06565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a82578082015181840152602081019050612a67565b83811115612a91576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ab382612a48565b612abd8185612a53565b9350612acd818560208601612a64565b612ad681612a97565b840191505092915050565b60006020820190508181036000830152612afb8184612aa8565b905092915050565b6000819050919050565b612b1681612b03565b8114612b2157600080fd5b50565b600081359050612b3381612b0d565b92915050565b600060208284031215612b4f57612b4e61292a565b5b6000612b5d84828501612b24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9182612b66565b9050919050565b612ba181612b86565b82525050565b6000602082019050612bbc6000830184612b98565b92915050565b612bcb81612b86565b8114612bd657600080fd5b50565b600081359050612be881612bc2565b92915050565b60008060408385031215612c0557612c0461292a565b5b6000612c1385828601612bd9565b9250506020612c2485828601612b24565b9150509250929050565b612c3781612b03565b82525050565b6000602082019050612c526000830184612c2e565b92915050565b600080600060608486031215612c7157612c7061292a565b5b6000612c7f86828701612bd9565b9350506020612c9086828701612bd9565b9250506040612ca186828701612b24565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612cd057612ccf612cab565b5b8235905067ffffffffffffffff811115612ced57612cec612cb0565b5b602083019150836001820283011115612d0957612d08612cb5565b5b9250929050565b60008060208385031215612d2757612d2661292a565b5b600083013567ffffffffffffffff811115612d4557612d4461292f565b5b612d5185828601612cba565b92509250509250929050565b600060208284031215612d7357612d7261292a565b5b6000612d8184828501612bd9565b91505092915050565b60008060408385031215612da157612da061292a565b5b6000612daf85828601612bd9565b9250506020612dc085828601612a06565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0782612a97565b810181811067ffffffffffffffff82111715612e2657612e25612dcf565b5b80604052505050565b6000612e39612920565b9050612e458282612dfe565b919050565b600067ffffffffffffffff821115612e6557612e64612dcf565b5b612e6e82612a97565b9050602081019050919050565b82818337600083830152505050565b6000612e9d612e9884612e4a565b612e2f565b905082815260208101848484011115612eb957612eb8612dca565b5b612ec4848285612e7b565b509392505050565b600082601f830112612ee157612ee0612cab565b5b8135612ef1848260208601612e8a565b91505092915050565b60008060008060808587031215612f1457612f1361292a565b5b6000612f2287828801612bd9565b9450506020612f3387828801612bd9565b9350506040612f4487828801612b24565b925050606085013567ffffffffffffffff811115612f6557612f6461292f565b5b612f7187828801612ecc565b91505092959194509250565b60008060408385031215612f9457612f9361292a565b5b6000612fa285828601612bd9565b9250506020612fb385828601612bd9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ff3602083612a53565b9150612ffe82612fbd565b602082019050919050565b6000602082019050818103600083015261302281612fe6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061307057607f821691505b60208210810361308357613082613029565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130e5602d83612a53565b91506130f082613089565b604082019050919050565b60006020820190508181036000830152613114816130d8565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613177602283612a53565b91506131828261311b565b604082019050919050565b600060208201905081810360008301526131a68161316a565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613209603983612a53565b9150613214826131ad565b604082019050919050565b60006020820190508181036000830152613238816131fc565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061329b602283612a53565b91506132a68261323f565b604082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061330b82612b03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361333d5761333c6132d1565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006133a4602e83612a53565b91506133af82613348565b604082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613436602383612a53565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261349c565b6134e3868361349c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352061351b61351684612b03565b6134fb565b612b03565b9050919050565b6000819050919050565b61353a83613505565b61354e61354682613527565b8484546134a9565b825550505050565b600090565b613563613556565b61356e818484613531565b505050565b5b818110156135925761358760008261355b565b600181019050613574565b5050565b601f8211156135d7576135a881613477565b6135b18461348c565b810160208510156135c0578190505b6135d46135cc8561348c565b830182613573565b50505b505050565b600082821c905092915050565b60006135fa600019846008026135dc565b1980831691505092915050565b600061361383836135e9565b9150826002028217905092915050565b61362d838361346c565b67ffffffffffffffff81111561364657613645612dcf565b5b6136508254613058565b61365b828285613596565b6000601f83116001811461368a5760008415613678578287013590505b6136828582613607565b8655506136ea565b601f19841661369886613477565b60005b828110156136c05784890135825560018201915060208501945060208101905061369b565b868310156136dd57848901356136d9601f8916826135e9565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061374f602b83612a53565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4e6f207a65726f206d696e747300000000000000000000000000000000000000600082015250565b60006137bb600d83612a53565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b6000613827601283612a53565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f53616c6520686173206e6f742073746172746564210000000000000000000000600082015250565b6000613893601583612a53565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b60006138d482612b03565b91506138df83612b03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613914576139136132d1565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613955601283612a53565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b600061399682612b03565b91506139a183612b03565b9250828210156139b4576139b36132d1565b5b828203905092915050565b60006139ca82612b03565b91506139d583612b03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d6132d1565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613a4f601683612a53565b9150613a5a82613a19565b602082019050919050565b60006020820190508181036000830152613a7e81613a42565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613abb601a83612a53565b9150613ac682613a85565b602082019050919050565b60006020820190508181036000830152613aea81613aae565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b4d603383612a53565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bdf602f83612a53565b9150613bea82613b83565b604082019050919050565b60006020820190508181036000830152613c0e81613bd2565b9050919050565b600081905092915050565b6000613c2b82612a48565b613c358185613c15565b9350613c45818560208601612a64565b80840191505092915050565b6000613c5d8285613c20565b9150613c698284613c20565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cd1602683612a53565b9150613cdc82613c75565b604082019050919050565b60006020820190508181036000830152613d0081613cc4565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613d63603283612a53565b9150613d6e82613d07565b604082019050919050565b60006020820190508181036000830152613d9281613d56565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613df5602683612a53565b9150613e0082613d99565b604082019050919050565b60006020820190508181036000830152613e2481613de8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e87602583612a53565b9150613e9282613e2b565b604082019050919050565b60006020820190508181036000830152613eb681613e7a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613ee482613ebd565b9150613eef83613ebd565b925082821015613f0257613f016132d1565b5b828203905092915050565b6000613f1882613ebd565b9150613f2383613ebd565b9250826fffffffffffffffffffffffffffffffff03821115613f4857613f476132d1565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613faf602a83612a53565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b6000613ff082612b03565b915060008203614003576140026132d1565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061406a602f83612a53565b91506140758261400e565b604082019050919050565b600060208201905081810360008301526140998161405d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140c7826140a0565b6140d181856140ab565b93506140e1818560208601612a64565b6140ea81612a97565b840191505092915050565b600060808201905061410a6000830187612b98565b6141176020830186612b98565b6141246040830185612c2e565b818103606083015261413681846140bc565b905095945050505050565b60008151905061415081612960565b92915050565b60006020828403121561416c5761416b61292a565b5b600061417a84828501614141565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141bd82612b03565b91506141c883612b03565b9250826141d8576141d7614183565b5b828204905092915050565b60006141ee82612b03565b91506141f983612b03565b92508261420957614208614183565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061429f602183612a53565b91506142aa82614243565b604082019050919050565b600060208201905081810360008301526142ce81614292565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061430b601d83612a53565b9150614316826142d5565b602082019050919050565b6000602082019050818103600083015261433a816142fe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061439d602283612a53565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b905091905056fea264697066735822122057ec36756a99180603774a5937124d9be4c317d163a58ce5708b39a27d2bae0164736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005


Deployed Bytecode Sourcemap

38265:1416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23708:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39363:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25434:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26959:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26522:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22272:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27809:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22900:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39233:122;;;:::i;:::-;;28014:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22435:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39573:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38597:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25257:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24134:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37571:94;;;;;;;;;;;;;:::i;:::-;;36920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25589:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38724:501;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27227:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28234:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25750:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38505:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32565:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27564:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37820:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23708:370;23835:4;23880:25;23865:40;;;:11;:40;;;;:99;;;;23931:33;23916:48;;;:11;:48;;;;23865:99;:160;;;;23990:35;23975:50;;;:11;:50;;;;23865:160;:207;;;;24036:36;24060:11;24036:23;:36::i;:::-;23865:207;23851:221;;23708:370;;;:::o;39363:81::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39430:6:::1;39421;;:15;;;;;;;;;;;;;;;;;;39363:81:::0;:::o;25434:94::-;25488:13;25517:5;25510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25434:94;:::o;26959:204::-;27027:7;27051:16;27059:7;27051;:16::i;:::-;27043:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27133:15;:24;27149:7;27133:24;;;;;;;;;;;;;;;;;;;;;27126:31;;26959:204;;;:::o;26522:379::-;26591:13;26607:24;26623:7;26607:15;:24::i;:::-;26591:40;;26652:5;26646:11;;:2;:11;;;26638:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26737:5;26721:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26746:37;26763:5;26770:12;:10;:12::i;:::-;26746:16;:37::i;:::-;26721:62;26705:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;26867:28;26876:2;26880:7;26889:5;26867:8;:28::i;:::-;26584:317;26522:379;;:::o;22272:94::-;22325:7;22348:12;;22341:19;;22272:94;:::o;27809:142::-;27917:28;27927:4;27933:2;27937:7;27917:9;:28::i;:::-;27809:142;;;:::o;22900:744::-;23009:7;23044:16;23054:5;23044:9;:16::i;:::-;23036:5;:24;23028:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23106:22;23131:13;:11;:13::i;:::-;23106:38;;23151:19;23181:25;23231:9;23226:350;23250:14;23246:1;:18;23226:350;;;23280:31;23314:11;:14;23326:1;23314:14;;;;;;;;;;;23280:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23367:1;23341:28;;:9;:14;;;:28;;;23337:89;;23402:9;:14;;;23382:34;;23337:89;23459:5;23438:26;;:17;:26;;;23434:135;;23496:5;23481:11;:20;23477:59;;23523:1;23516:8;;;;;;;;;23477:59;23546:13;;;;;:::i;:::-;;;;23434:135;23271:305;23266:3;;;;;:::i;:::-;;;;23226:350;;;;23582:56;;;;;;;;;;:::i;:::-;;;;;;;;22900:744;;;;;:::o;39233:122::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39307:10:::1;39299:24;;:47;39324:21;39299:47;;;;;;;;;;;;;;;;;;;;;;;39291:56;;;::::0;::::1;;39233:122::o:0;28014:157::-;28126:39;28143:4;28149:2;28153:7;28126:39;;;;;;;;;;;;:16;:39::i;:::-;28014:157;;;:::o;22435:177::-;22502:7;22534:13;:11;:13::i;:::-;22526:5;:21;22518:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22601:5;22594:12;;22435:177;;;:::o;39573:105::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39663:7:::1;;39648:12;:22;;;;;;;:::i;:::-;;39573:105:::0;;:::o;38597:26::-;;;;;;;;;;;;;:::o;25257:118::-;25321:7;25344:20;25356:7;25344:11;:20::i;:::-;:25;;;25337:32;;25257:118;;;:::o;24134:211::-;24198:7;24239:1;24222:19;;:5;:19;;;24214:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;24311:12;:19;24324:5;24311:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24303:36;;24296:43;;24134:211;;;:::o;37571:94::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37636:21:::1;37654:1;37636:9;:21::i;:::-;37571:94::o:0;36920:87::-;36966:7;36993:6;;;;;;;;;;;36986:13;;36920:87;:::o;25589:98::-;25645:13;25674:7;25667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25589:98;:::o;38724:501::-;38787:14;38804:13;:11;:13::i;:::-;38787:30;;38850:1;38836:11;:15;38828:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;38403:1;38887:11;:30;;38879:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;38959:6;;;;;;;;;;;38958:7;38950:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;38358:3;39021:11;39012:6;:20;;;;:::i;:::-;:36;;39004:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38486:10;38446:1;39103:11;:29;;;;:::i;:::-;39102:45;;;;:::i;:::-;39089:9;:58;;39081:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;39184:33;39194:10;39205:11;39184:9;:33::i;:::-;38776:449;38724:501;:::o;27227:274::-;27330:12;:10;:12::i;:::-;27318:24;;:8;:24;;;27310:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27427:8;27382:18;:32;27401:12;:10;:12::i;:::-;27382:32;;;;;;;;;;;;;;;:42;27415:8;27382:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27476:8;27447:48;;27462:12;:10;:12::i;:::-;27447:48;;;27486:8;27447:48;;;;;;:::i;:::-;;;;;;;;27227:274;;:::o;28234:311::-;28371:28;28381:4;28387:2;28391:7;28371:9;:28::i;:::-;28422:48;28445:4;28451:2;28455:7;28464:5;28422:22;:48::i;:::-;28406:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;28234:311;;;;:::o;25750:394::-;25848:13;25889:16;25897:7;25889;:16::i;:::-;25873:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;25979:21;26003:10;:8;:10::i;:::-;25979:34;;26058:1;26040:7;26034:21;:25;:104;;;;;;;;;;;;;;;;;26095:7;26104:18;:7;:16;:18::i;:::-;26078:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26034:104;26020:118;;;25750:394;;;:::o;38505:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32565:43::-;;;;:::o;27564:186::-;27686:4;27709:18;:25;27728:5;27709:25;;;;;;;;;;;;;;;:35;27735:8;27709:35;;;;;;;;;;;;;;;;;;;;;;;;;27702:42;;27564:186;;;;:::o;37820:192::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37929:1:::1;37909:22;;:8;:22;;::::0;37901:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37985:19;37995:8;37985:9;:19::i;:::-;37820:192:::0;:::o;12776:157::-;12861:4;12900:25;12885:40;;;:11;:40;;;;12878:47;;12776:157;;;:::o;20090:98::-;20143:7;20170:10;20163:17;;20090:98;:::o;28784:105::-;28841:4;28871:12;;28861:7;:22;28854:29;;28784:105;;;:::o;32387:172::-;32511:2;32484:15;:24;32500:7;32484:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32545:7;32541:2;32525:28;;32534:5;32525:28;;;;;;;;;;;;32387:172;;;:::o;30752:1529::-;30849:35;30887:20;30899:7;30887:11;:20::i;:::-;30849:58;;30916:22;30958:13;:18;;;30942:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31011:12;:10;:12::i;:::-;30987:36;;:20;30999:7;30987:11;:20::i;:::-;:36;;;30942:81;:142;;;;31034:50;31051:13;:18;;;31071:12;:10;:12::i;:::-;31034:16;:50::i;:::-;30942:142;30916:169;;31110:17;31094:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31242:4;31220:26;;:13;:18;;;:26;;;31204:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;31331:1;31317:16;;:2;:16;;;31309:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31384:43;31406:4;31412:2;31416:7;31425:1;31384:21;:43::i;:::-;31484:49;31501:1;31505:7;31514:13;:18;;;31484:8;:49::i;:::-;31572:1;31542:12;:18;31555:4;31542:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31608:1;31580:12;:16;31593:2;31580:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31639:43;;;;;;;;31654:2;31639:43;;;;;;31665:15;31639:43;;;;;31616:11;:20;31628:7;31616:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31910:19;31942:1;31932:7;:11;;;;:::i;:::-;31910:33;;31995:1;31954:43;;:11;:24;31966:11;31954:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31950:236;;32012:20;32020:11;32012:7;:20::i;:::-;32008:171;;;32072:97;;;;;;;;32099:13;:18;;;32072:97;;;;;;32130:13;:28;;;32072:97;;;;;32045:11;:24;32057:11;32045:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32008:171;31950:236;32218:7;32214:2;32199:27;;32208:4;32199:27;;;;;;;;;;;;32233:42;32254:4;32260:2;32264:7;32273:1;32233:20;:42::i;:::-;30842:1439;;;30752:1529;;;:::o;24597:606::-;24673:21;;:::i;:::-;24714:16;24722:7;24714;:16::i;:::-;24706:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24786:26;24834:12;24823:7;:23;24819:93;;24903:1;24888:12;24878:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;24857:47;;24819:93;24925:12;24940:7;24925:22;;24920:212;24957:18;24949:4;:26;24920:212;;24994:31;25028:11;:17;25040:4;25028:17;;;;;;;;;;;24994:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25084:1;25058:28;;:9;:14;;;:28;;;25054:71;;25106:9;25099:16;;;;;;;25054:71;24985:147;24977:6;;;;;:::i;:::-;;;;24920:212;;;;25140:57;;;;;;;;;;:::i;:::-;;;;;;;;24597:606;;;;:::o;38020:173::-;38076:16;38095:6;;;;;;;;;;;38076:25;;38121:8;38112:6;;:17;;;;;;;;;;;;;;;;;;38176:8;38145:40;;38166:8;38145:40;;;;;;;;;;;;38065:128;38020:173;:::o;28895:98::-;28960:27;28970:2;28974:8;28960:27;;;;;;;;;;;;:9;:27::i;:::-;28895:98;;:::o;34098:690::-;34235:4;34252:15;:2;:13;;;:15::i;:::-;34248:535;;;34307:2;34291:36;;;34328:12;:10;:12::i;:::-;34342:4;34348:7;34357:5;34291:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34278:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34539:1;34522:6;:13;:18;34518:215;;34555:61;;;;;;;;;;:::i;:::-;;;;;;;;34518:215;34701:6;34695:13;34686:6;34682:2;34678:15;34671:38;34278:464;34423:45;;;34413:55;;;:6;:55;;;;34406:62;;;;;34248:535;34771:4;34764:11;;34098:690;;;;;;;:::o;39452:113::-;39512:13;39545:12;39538:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39452:113;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;35250:141::-;;;;;:::o;35777:140::-;;;;;:::o;29248:1272::-;29353:20;29376:12;;29353:35;;29417:1;29403:16;;:2;:16;;;29395:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29594:21;29602:12;29594:7;:21::i;:::-;29593:22;29585:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29676:12;29664:8;:24;;29656:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29736:61;29766:1;29770:2;29774:12;29788:8;29736:21;:61::i;:::-;29806:30;29839:12;:16;29852:2;29839:16;;;;;;;;;;;;;;;29806:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29881:119;;;;;;;;29931:8;29901:11;:19;;;:39;;;;:::i;:::-;29881:119;;;;;;29984:8;29949:11;:24;;;:44;;;;:::i;:::-;29881:119;;;;;29862:12;:16;29875:2;29862:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30035:43;;;;;;;;30050:2;30035:43;;;;;;30061:15;30035:43;;;;;30007:11;:25;30019:12;30007:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30087:20;30110:12;30087:35;;30136:9;30131:281;30155:8;30151:1;:12;30131:281;;;30209:12;30205:2;30184:38;;30201:1;30184:38;;;;;;;;;;;;30249:59;30280:1;30284:2;30288:12;30302:5;30249:22;:59::i;:::-;30231:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;30390:14;;;;;:::i;:::-;;;;30165:3;;;;;:::i;:::-;;;;30131:281;;;;30435:12;30420;:27;;;;30454:60;30483:1;30487:2;30491:12;30505:8;30454:20;:60::i;:::-;29346:1174;;;29248:1272;;;:::o;2836:387::-;2896:4;3104:12;3171:7;3159:20;3151:28;;3214:1;3207:4;:8;3200:15;;;2836:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:117;6860:1;6857;6850:12;6888:553;6946:8;6956:6;7006:3;6999:4;6991:6;6987:17;6983:27;6973:122;;7014:79;;:::i;:::-;6973:122;7127:6;7114:20;7104:30;;7157:18;7149:6;7146:30;7143:117;;;7179:79;;:::i;:::-;7143:117;7293:4;7285:6;7281:17;7269:29;;7347:3;7339:4;7331:6;7327:17;7317:8;7313:32;7310:41;7307:128;;;7354:79;;:::i;:::-;7307:128;6888:553;;;;;:::o;7447:529::-;7518:6;7526;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7729:1;7718:9;7714:17;7701:31;7759:18;7751:6;7748:30;7745:117;;;7781:79;;:::i;:::-;7745:117;7894:65;7951:7;7942:6;7931:9;7927:22;7894:65;:::i;:::-;7876:83;;;;7672:297;7447:529;;;;;:::o;7982:329::-;8041:6;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;7982:329;;;;:::o;8317:468::-;8382:6;8390;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8692:2;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8663:115;8317:468;;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11717:474::-;11785:6;11793;11842:2;11830:9;11821:7;11817:23;11813:32;11810:119;;;11848:79;;:::i;:::-;11810:119;11968:1;11993:53;12038:7;12029:6;12018:9;12014:22;11993:53;:::i;:::-;11983:63;;11939:117;12095:2;12121:53;12166:7;12157:6;12146:9;12142:22;12121:53;:::i;:::-;12111:63;;12066:118;11717:474;;;;;:::o;12197:182::-;12337:34;12333:1;12325:6;12321:14;12314:58;12197:182;:::o;12385:366::-;12527:3;12548:67;12612:2;12607:3;12548:67;:::i;:::-;12541:74;;12624:93;12713:3;12624:93;:::i;:::-;12742:2;12737:3;12733:12;12726:19;;12385:366;;;:::o;12757:419::-;12923:4;12961:2;12950:9;12946:18;12938:26;;13010:9;13004:4;13000:20;12996:1;12985:9;12981:17;12974:47;13038:131;13164:4;13038:131;:::i;:::-;13030:139;;12757:419;;;:::o;13182:180::-;13230:77;13227:1;13220:88;13327:4;13324:1;13317:15;13351:4;13348:1;13341:15;13368:320;13412:6;13449:1;13443:4;13439:12;13429:22;;13496:1;13490:4;13486:12;13517:18;13507:81;;13573:4;13565:6;13561:17;13551:27;;13507:81;13635:2;13627:6;13624:14;13604:18;13601:38;13598:84;;13654:18;;:::i;:::-;13598:84;13419:269;13368:320;;;:::o;13694:232::-;13834:34;13830:1;13822:6;13818:14;13811:58;13903:15;13898:2;13890:6;13886:15;13879:40;13694:232;:::o;13932:366::-;14074:3;14095:67;14159:2;14154:3;14095:67;:::i;:::-;14088:74;;14171:93;14260:3;14171:93;:::i;:::-;14289:2;14284:3;14280:12;14273:19;;13932:366;;;:::o;14304:419::-;14470:4;14508:2;14497:9;14493:18;14485:26;;14557:9;14551:4;14547:20;14543:1;14532:9;14528:17;14521:47;14585:131;14711:4;14585:131;:::i;:::-;14577:139;;14304:419;;;:::o;14729:221::-;14869:34;14865:1;14857:6;14853:14;14846:58;14938:4;14933:2;14925:6;14921:15;14914:29;14729:221;:::o;14956:366::-;15098:3;15119:67;15183:2;15178:3;15119:67;:::i;:::-;15112:74;;15195:93;15284:3;15195:93;:::i;:::-;15313:2;15308:3;15304:12;15297:19;;14956:366;;;:::o;15328:419::-;15494:4;15532:2;15521:9;15517:18;15509:26;;15581:9;15575:4;15571:20;15567:1;15556:9;15552:17;15545:47;15609:131;15735:4;15609:131;:::i;:::-;15601:139;;15328:419;;;:::o;15753:244::-;15893:34;15889:1;15881:6;15877:14;15870:58;15962:27;15957:2;15949:6;15945:15;15938:52;15753:244;:::o;16003:366::-;16145:3;16166:67;16230:2;16225:3;16166:67;:::i;:::-;16159:74;;16242:93;16331:3;16242:93;:::i;:::-;16360:2;16355:3;16351:12;16344:19;;16003:366;;;:::o;16375:419::-;16541:4;16579:2;16568:9;16564:18;16556:26;;16628:9;16622:4;16618:20;16614:1;16603:9;16599:17;16592:47;16656:131;16782:4;16656:131;:::i;:::-;16648:139;;16375:419;;;:::o;16800:221::-;16940:34;16936:1;16928:6;16924:14;16917:58;17009:4;17004:2;16996:6;16992:15;16985:29;16800:221;:::o;17027:366::-;17169:3;17190:67;17254:2;17249:3;17190:67;:::i;:::-;17183:74;;17266:93;17355:3;17266:93;:::i;:::-;17384:2;17379:3;17375:12;17368:19;;17027:366;;;:::o;17399:419::-;17565:4;17603:2;17592:9;17588:18;17580:26;;17652:9;17646:4;17642:20;17638:1;17627:9;17623:17;17616:47;17680:131;17806:4;17680:131;:::i;:::-;17672:139;;17399:419;;;:::o;17824:180::-;17872:77;17869:1;17862:88;17969:4;17966:1;17959:15;17993:4;17990:1;17983:15;18010:233;18049:3;18072:24;18090:5;18072:24;:::i;:::-;18063:33;;18118:66;18111:5;18108:77;18105:103;;18188:18;;:::i;:::-;18105:103;18235:1;18228:5;18224:13;18217:20;;18010:233;;;:::o;18249:::-;18389:34;18385:1;18377:6;18373:14;18366:58;18458:16;18453:2;18445:6;18441:15;18434:41;18249:233;:::o;18488:366::-;18630:3;18651:67;18715:2;18710:3;18651:67;:::i;:::-;18644:74;;18727:93;18816:3;18727:93;:::i;:::-;18845:2;18840:3;18836:12;18829:19;;18488:366;;;:::o;18860:419::-;19026:4;19064:2;19053:9;19049:18;19041:26;;19113:9;19107:4;19103:20;19099:1;19088:9;19084:17;19077:47;19141:131;19267:4;19141:131;:::i;:::-;19133:139;;18860:419;;;:::o;19285:222::-;19425:34;19421:1;19413:6;19409:14;19402:58;19494:5;19489:2;19481:6;19477:15;19470:30;19285:222;:::o;19513:366::-;19655:3;19676:67;19740:2;19735:3;19676:67;:::i;:::-;19669:74;;19752:93;19841:3;19752:93;:::i;:::-;19870:2;19865:3;19861:12;19854:19;;19513:366;;;:::o;19885:419::-;20051:4;20089:2;20078:9;20074:18;20066:26;;20138:9;20132:4;20128:20;20124:1;20113:9;20109:17;20102:47;20166:131;20292:4;20166:131;:::i;:::-;20158:139;;19885:419;;;:::o;20310:97::-;20369:6;20397:3;20387:13;;20310:97;;;;:::o;20413:141::-;20462:4;20485:3;20477:11;;20508:3;20505:1;20498:14;20542:4;20539:1;20529:18;20521:26;;20413:141;;;:::o;20560:93::-;20597:6;20644:2;20639;20632:5;20628:14;20624:23;20614:33;;20560:93;;;:::o;20659:107::-;20703:8;20753:5;20747:4;20743:16;20722:37;;20659:107;;;;:::o;20772:393::-;20841:6;20891:1;20879:10;20875:18;20914:97;20944:66;20933:9;20914:97;:::i;:::-;21032:39;21062:8;21051:9;21032:39;:::i;:::-;21020:51;;21104:4;21100:9;21093:5;21089:21;21080:30;;21153:4;21143:8;21139:19;21132:5;21129:30;21119:40;;20848:317;;20772:393;;;;;:::o;21171:60::-;21199:3;21220:5;21213:12;;21171:60;;;:::o;21237:142::-;21287:9;21320:53;21338:34;21347:24;21365:5;21347:24;:::i;:::-;21338:34;:::i;:::-;21320:53;:::i;:::-;21307:66;;21237:142;;;:::o;21385:75::-;21428:3;21449:5;21442:12;;21385:75;;;:::o;21466:269::-;21576:39;21607:7;21576:39;:::i;:::-;21637:91;21686:41;21710:16;21686:41;:::i;:::-;21678:6;21671:4;21665:11;21637:91;:::i;:::-;21631:4;21624:105;21542:193;21466:269;;;:::o;21741:73::-;21786:3;21741:73;:::o;21820:189::-;21897:32;;:::i;:::-;21938:65;21996:6;21988;21982:4;21938:65;:::i;:::-;21873:136;21820:189;;:::o;22015:186::-;22075:120;22092:3;22085:5;22082:14;22075:120;;;22146:39;22183:1;22176:5;22146:39;:::i;:::-;22119:1;22112:5;22108:13;22099:22;;22075:120;;;22015:186;;:::o;22207:543::-;22308:2;22303:3;22300:11;22297:446;;;22342:38;22374:5;22342:38;:::i;:::-;22426:29;22444:10;22426:29;:::i;:::-;22416:8;22412:44;22609:2;22597:10;22594:18;22591:49;;;22630:8;22615:23;;22591:49;22653:80;22709:22;22727:3;22709:22;:::i;:::-;22699:8;22695:37;22682:11;22653:80;:::i;:::-;22312:431;;22297:446;22207:543;;;:::o;22756:117::-;22810:8;22860:5;22854:4;22850:16;22829:37;;22756:117;;;;:::o;22879:169::-;22923:6;22956:51;23004:1;23000:6;22992:5;22989:1;22985:13;22956:51;:::i;:::-;22952:56;23037:4;23031;23027:15;23017:25;;22930:118;22879:169;;;;:::o;23053:295::-;23129:4;23275:29;23300:3;23294:4;23275:29;:::i;:::-;23267:37;;23337:3;23334:1;23330:11;23324:4;23321:21;23313:29;;23053:295;;;;:::o;23353:1403::-;23477:44;23517:3;23512;23477:44;:::i;:::-;23586:18;23578:6;23575:30;23572:56;;;23608:18;;:::i;:::-;23572:56;23652:38;23684:4;23678:11;23652:38;:::i;:::-;23737:67;23797:6;23789;23783:4;23737:67;:::i;:::-;23831:1;23860:2;23852:6;23849:14;23877:1;23872:632;;;;24548:1;24565:6;24562:84;;;24621:9;24616:3;24612:19;24599:33;24590:42;;24562:84;24672:67;24732:6;24725:5;24672:67;:::i;:::-;24666:4;24659:81;24521:229;23842:908;;23872:632;23924:4;23920:9;23912:6;23908:22;23958:37;23990:4;23958:37;:::i;:::-;24017:1;24031:215;24045:7;24042:1;24039:14;24031:215;;;24131:9;24126:3;24122:19;24109:33;24101:6;24094:49;24182:1;24174:6;24170:14;24160:24;;24229:2;24218:9;24214:18;24201:31;;24068:4;24065:1;24061:12;24056:17;;24031:215;;;24274:6;24265:7;24262:19;24259:186;;;24339:9;24334:3;24330:19;24317:33;24382:48;24424:4;24416:6;24412:17;24401:9;24382:48;:::i;:::-;24374:6;24367:64;24282:163;24259:186;24491:1;24487;24479:6;24475:14;24471:22;24465:4;24458:36;23879:625;;;23842:908;;23452:1304;;;23353:1403;;;:::o;24762:230::-;24902:34;24898:1;24890:6;24886:14;24879:58;24971:13;24966:2;24958:6;24954:15;24947:38;24762:230;:::o;24998:366::-;25140:3;25161:67;25225:2;25220:3;25161:67;:::i;:::-;25154:74;;25237:93;25326:3;25237:93;:::i;:::-;25355:2;25350:3;25346:12;25339:19;;24998:366;;;:::o;25370:419::-;25536:4;25574:2;25563:9;25559:18;25551:26;;25623:9;25617:4;25613:20;25609:1;25598:9;25594:17;25587:47;25651:131;25777:4;25651:131;:::i;:::-;25643:139;;25370:419;;;:::o;25795:163::-;25935:15;25931:1;25923:6;25919:14;25912:39;25795:163;:::o;25964:366::-;26106:3;26127:67;26191:2;26186:3;26127:67;:::i;:::-;26120:74;;26203:93;26292:3;26203:93;:::i;:::-;26321:2;26316:3;26312:12;26305:19;;25964:366;;;:::o;26336:419::-;26502:4;26540:2;26529:9;26525:18;26517:26;;26589:9;26583:4;26579:20;26575:1;26564:9;26560:17;26553:47;26617:131;26743:4;26617:131;:::i;:::-;26609:139;;26336:419;;;:::o;26761:168::-;26901:20;26897:1;26889:6;26885:14;26878:44;26761:168;:::o;26935:366::-;27077:3;27098:67;27162:2;27157:3;27098:67;:::i;:::-;27091:74;;27174:93;27263:3;27174:93;:::i;:::-;27292:2;27287:3;27283:12;27276:19;;26935:366;;;:::o;27307:419::-;27473:4;27511:2;27500:9;27496:18;27488:26;;27560:9;27554:4;27550:20;27546:1;27535:9;27531:17;27524:47;27588:131;27714:4;27588:131;:::i;:::-;27580:139;;27307:419;;;:::o;27732:171::-;27872:23;27868:1;27860:6;27856:14;27849:47;27732:171;:::o;27909:366::-;28051:3;28072:67;28136:2;28131:3;28072:67;:::i;:::-;28065:74;;28148:93;28237:3;28148:93;:::i;:::-;28266:2;28261:3;28257:12;28250:19;;27909:366;;;:::o;28281:419::-;28447:4;28485:2;28474:9;28470:18;28462:26;;28534:9;28528:4;28524:20;28520:1;28509:9;28505:17;28498:47;28562:131;28688:4;28562:131;:::i;:::-;28554:139;;28281:419;;;:::o;28706:305::-;28746:3;28765:20;28783:1;28765:20;:::i;:::-;28760:25;;28799:20;28817:1;28799:20;:::i;:::-;28794:25;;28953:1;28885:66;28881:74;28878:1;28875:81;28872:107;;;28959:18;;:::i;:::-;28872:107;29003:1;29000;28996:9;28989:16;;28706:305;;;;:::o;29017:168::-;29157:20;29153:1;29145:6;29141:14;29134:44;29017:168;:::o;29191:366::-;29333:3;29354:67;29418:2;29413:3;29354:67;:::i;:::-;29347:74;;29430:93;29519:3;29430:93;:::i;:::-;29548:2;29543:3;29539:12;29532:19;;29191:366;;;:::o;29563:419::-;29729:4;29767:2;29756:9;29752:18;29744:26;;29816:9;29810:4;29806:20;29802:1;29791:9;29787:17;29780:47;29844:131;29970:4;29844:131;:::i;:::-;29836:139;;29563:419;;;:::o;29988:191::-;30028:4;30048:20;30066:1;30048:20;:::i;:::-;30043:25;;30082:20;30100:1;30082:20;:::i;:::-;30077:25;;30121:1;30118;30115:8;30112:34;;;30126:18;;:::i;:::-;30112:34;30171:1;30168;30164:9;30156:17;;29988:191;;;;:::o;30185:348::-;30225:7;30248:20;30266:1;30248:20;:::i;:::-;30243:25;;30282:20;30300:1;30282:20;:::i;:::-;30277:25;;30470:1;30402:66;30398:74;30395:1;30392:81;30387:1;30380:9;30373:17;30369:105;30366:131;;;30477:18;;:::i;:::-;30366:131;30525:1;30522;30518:9;30507:20;;30185:348;;;;:::o;30539:172::-;30679:24;30675:1;30667:6;30663:14;30656:48;30539:172;:::o;30717:366::-;30859:3;30880:67;30944:2;30939:3;30880:67;:::i;:::-;30873:74;;30956:93;31045:3;30956:93;:::i;:::-;31074:2;31069:3;31065:12;31058:19;;30717:366;;;:::o;31089:419::-;31255:4;31293:2;31282:9;31278:18;31270:26;;31342:9;31336:4;31332:20;31328:1;31317:9;31313:17;31306:47;31370:131;31496:4;31370:131;:::i;:::-;31362:139;;31089:419;;;:::o;31514:176::-;31654:28;31650:1;31642:6;31638:14;31631:52;31514:176;:::o;31696:366::-;31838:3;31859:67;31923:2;31918:3;31859:67;:::i;:::-;31852:74;;31935:93;32024:3;31935:93;:::i;:::-;32053:2;32048:3;32044:12;32037:19;;31696:366;;;:::o;32068:419::-;32234:4;32272:2;32261:9;32257:18;32249:26;;32321:9;32315:4;32311:20;32307:1;32296:9;32292:17;32285:47;32349:131;32475:4;32349:131;:::i;:::-;32341:139;;32068:419;;;:::o;32493:238::-;32633:34;32629:1;32621:6;32617:14;32610:58;32702:21;32697:2;32689:6;32685:15;32678:46;32493:238;:::o;32737:366::-;32879:3;32900:67;32964:2;32959:3;32900:67;:::i;:::-;32893:74;;32976:93;33065:3;32976:93;:::i;:::-;33094:2;33089:3;33085:12;33078:19;;32737:366;;;:::o;33109:419::-;33275:4;33313:2;33302:9;33298:18;33290:26;;33362:9;33356:4;33352:20;33348:1;33337:9;33333:17;33326:47;33390:131;33516:4;33390:131;:::i;:::-;33382:139;;33109:419;;;:::o;33534:234::-;33674:34;33670:1;33662:6;33658:14;33651:58;33743:17;33738:2;33730:6;33726:15;33719:42;33534:234;:::o;33774:366::-;33916:3;33937:67;34001:2;33996:3;33937:67;:::i;:::-;33930:74;;34013:93;34102:3;34013:93;:::i;:::-;34131:2;34126:3;34122:12;34115:19;;33774:366;;;:::o;34146:419::-;34312:4;34350:2;34339:9;34335:18;34327:26;;34399:9;34393:4;34389:20;34385:1;34374:9;34370:17;34363:47;34427:131;34553:4;34427:131;:::i;:::-;34419:139;;34146:419;;;:::o;34571:148::-;34673:11;34710:3;34695:18;;34571:148;;;;:::o;34725:377::-;34831:3;34859:39;34892:5;34859:39;:::i;:::-;34914:89;34996:6;34991:3;34914:89;:::i;:::-;34907:96;;35012:52;35057:6;35052:3;35045:4;35038:5;35034:16;35012:52;:::i;:::-;35089:6;35084:3;35080:16;35073:23;;34835:267;34725:377;;;;:::o;35108:435::-;35288:3;35310:95;35401:3;35392:6;35310:95;:::i;:::-;35303:102;;35422:95;35513:3;35504:6;35422:95;:::i;:::-;35415:102;;35534:3;35527:10;;35108:435;;;;;:::o;35549:225::-;35689:34;35685:1;35677:6;35673:14;35666:58;35758:8;35753:2;35745:6;35741:15;35734:33;35549:225;:::o;35780:366::-;35922:3;35943:67;36007:2;36002:3;35943:67;:::i;:::-;35936:74;;36019:93;36108:3;36019:93;:::i;:::-;36137:2;36132:3;36128:12;36121:19;;35780:366;;;:::o;36152:419::-;36318:4;36356:2;36345:9;36341:18;36333:26;;36405:9;36399:4;36395:20;36391:1;36380:9;36376:17;36369:47;36433:131;36559:4;36433:131;:::i;:::-;36425:139;;36152:419;;;:::o;36577:237::-;36717:34;36713:1;36705:6;36701:14;36694:58;36786:20;36781:2;36773:6;36769:15;36762:45;36577:237;:::o;36820:366::-;36962:3;36983:67;37047:2;37042:3;36983:67;:::i;:::-;36976:74;;37059:93;37148:3;37059:93;:::i;:::-;37177:2;37172:3;37168:12;37161:19;;36820:366;;;:::o;37192:419::-;37358:4;37396:2;37385:9;37381:18;37373:26;;37445:9;37439:4;37435:20;37431:1;37420:9;37416:17;37409:47;37473:131;37599:4;37473:131;:::i;:::-;37465:139;;37192:419;;;:::o;37617:225::-;37757:34;37753:1;37745:6;37741:14;37734:58;37826:8;37821:2;37813:6;37809:15;37802:33;37617:225;:::o;37848:366::-;37990:3;38011:67;38075:2;38070:3;38011:67;:::i;:::-;38004:74;;38087:93;38176:3;38087:93;:::i;:::-;38205:2;38200:3;38196:12;38189:19;;37848:366;;;:::o;38220:419::-;38386:4;38424:2;38413:9;38409:18;38401:26;;38473:9;38467:4;38463:20;38459:1;38448:9;38444:17;38437:47;38501:131;38627:4;38501:131;:::i;:::-;38493:139;;38220:419;;;:::o;38645:224::-;38785:34;38781:1;38773:6;38769:14;38762:58;38854:7;38849:2;38841:6;38837:15;38830:32;38645:224;:::o;38875:366::-;39017:3;39038:67;39102:2;39097:3;39038:67;:::i;:::-;39031:74;;39114:93;39203:3;39114:93;:::i;:::-;39232:2;39227:3;39223:12;39216:19;;38875:366;;;:::o;39247:419::-;39413:4;39451:2;39440:9;39436:18;39428:26;;39500:9;39494:4;39490:20;39486:1;39475:9;39471:17;39464:47;39528:131;39654:4;39528:131;:::i;:::-;39520:139;;39247:419;;;:::o;39672:118::-;39709:7;39749:34;39742:5;39738:46;39727:57;;39672:118;;;:::o;39796:191::-;39836:4;39856:20;39874:1;39856:20;:::i;:::-;39851:25;;39890:20;39908:1;39890:20;:::i;:::-;39885:25;;39929:1;39926;39923:8;39920:34;;;39934:18;;:::i;:::-;39920:34;39979:1;39976;39972:9;39964:17;;39796:191;;;;:::o;39993:273::-;40033:3;40052:20;40070:1;40052:20;:::i;:::-;40047:25;;40086:20;40104:1;40086:20;:::i;:::-;40081:25;;40208:1;40172:34;40168:42;40165:1;40162:49;40159:75;;;40214:18;;:::i;:::-;40159:75;40258:1;40255;40251:9;40244:16;;39993:273;;;;:::o;40272:229::-;40412:34;40408:1;40400:6;40396:14;40389:58;40481:12;40476:2;40468:6;40464:15;40457:37;40272:229;:::o;40507:366::-;40649:3;40670:67;40734:2;40729:3;40670:67;:::i;:::-;40663:74;;40746:93;40835:3;40746:93;:::i;:::-;40864:2;40859:3;40855:12;40848:19;;40507:366;;;:::o;40879:419::-;41045:4;41083:2;41072:9;41068:18;41060:26;;41132:9;41126:4;41122:20;41118:1;41107:9;41103:17;41096:47;41160:131;41286:4;41160:131;:::i;:::-;41152:139;;40879:419;;;:::o;41304:171::-;41343:3;41366:24;41384:5;41366:24;:::i;:::-;41357:33;;41412:4;41405:5;41402:15;41399:41;;41420:18;;:::i;:::-;41399:41;41467:1;41460:5;41456:13;41449:20;;41304:171;;;:::o;41481:234::-;41621:34;41617:1;41609:6;41605:14;41598:58;41690:17;41685:2;41677:6;41673:15;41666:42;41481:234;:::o;41721:366::-;41863:3;41884:67;41948:2;41943:3;41884:67;:::i;:::-;41877:74;;41960:93;42049:3;41960:93;:::i;:::-;42078:2;42073:3;42069:12;42062:19;;41721:366;;;:::o;42093:419::-;42259:4;42297:2;42286:9;42282:18;42274:26;;42346:9;42340:4;42336:20;42332:1;42321:9;42317:17;42310:47;42374:131;42500:4;42374:131;:::i;:::-;42366:139;;42093:419;;;:::o;42518:98::-;42569:6;42603:5;42597:12;42587:22;;42518:98;;;:::o;42622:168::-;42705:11;42739:6;42734:3;42727:19;42779:4;42774:3;42770:14;42755:29;;42622:168;;;;:::o;42796:360::-;42882:3;42910:38;42942:5;42910:38;:::i;:::-;42964:70;43027:6;43022:3;42964:70;:::i;:::-;42957:77;;43043:52;43088:6;43083:3;43076:4;43069:5;43065:16;43043:52;:::i;:::-;43120:29;43142:6;43120:29;:::i;:::-;43115:3;43111:39;43104:46;;42886:270;42796:360;;;;:::o;43162:640::-;43357:4;43395:3;43384:9;43380:19;43372:27;;43409:71;43477:1;43466:9;43462:17;43453:6;43409:71;:::i;:::-;43490:72;43558:2;43547:9;43543:18;43534:6;43490:72;:::i;:::-;43572;43640:2;43629:9;43625:18;43616:6;43572:72;:::i;:::-;43691:9;43685:4;43681:20;43676:2;43665:9;43661:18;43654:48;43719:76;43790:4;43781:6;43719:76;:::i;:::-;43711:84;;43162:640;;;;;;;:::o;43808:141::-;43864:5;43895:6;43889:13;43880:22;;43911:32;43937:5;43911:32;:::i;:::-;43808:141;;;;:::o;43955:349::-;44024:6;44073:2;44061:9;44052:7;44048:23;44044:32;44041:119;;;44079:79;;:::i;:::-;44041:119;44199:1;44224:63;44279:7;44270:6;44259:9;44255:22;44224:63;:::i;:::-;44214:73;;44170:127;43955:349;;;;:::o;44310:180::-;44358:77;44355:1;44348:88;44455:4;44452:1;44445:15;44479:4;44476:1;44469:15;44496:185;44536:1;44553:20;44571:1;44553:20;:::i;:::-;44548:25;;44587:20;44605:1;44587:20;:::i;:::-;44582:25;;44626:1;44616:35;;44631:18;;:::i;:::-;44616:35;44673:1;44670;44666:9;44661:14;;44496:185;;;;:::o;44687:176::-;44719:1;44736:20;44754:1;44736:20;:::i;:::-;44731:25;;44770:20;44788:1;44770:20;:::i;:::-;44765:25;;44809:1;44799:35;;44814:18;;:::i;:::-;44799:35;44855:1;44852;44848:9;44843:14;;44687:176;;;;:::o;44869:180::-;44917:77;44914:1;44907:88;45014:4;45011:1;45004:15;45038:4;45035:1;45028:15;45055:220;45195:34;45191:1;45183:6;45179:14;45172:58;45264:3;45259:2;45251:6;45247:15;45240:28;45055:220;:::o;45281:366::-;45423:3;45444:67;45508:2;45503:3;45444:67;:::i;:::-;45437:74;;45520:93;45609:3;45520:93;:::i;:::-;45638:2;45633:3;45629:12;45622:19;;45281:366;;;:::o;45653:419::-;45819:4;45857:2;45846:9;45842:18;45834:26;;45906:9;45900:4;45896:20;45892:1;45881:9;45877:17;45870:47;45934:131;46060:4;45934:131;:::i;:::-;45926:139;;45653:419;;;:::o;46078:179::-;46218:31;46214:1;46206:6;46202:14;46195:55;46078:179;:::o;46263:366::-;46405:3;46426:67;46490:2;46485:3;46426:67;:::i;:::-;46419:74;;46502:93;46591:3;46502:93;:::i;:::-;46620:2;46615:3;46611:12;46604:19;;46263:366;;;:::o;46635:419::-;46801:4;46839:2;46828:9;46824:18;46816:26;;46888:9;46882:4;46878:20;46874:1;46863:9;46859:17;46852:47;46916:131;47042:4;46916:131;:::i;:::-;46908:139;;46635:419;;;:::o;47060:221::-;47200:34;47196:1;47188:6;47184:14;47177:58;47269:4;47264:2;47256:6;47252:15;47245:29;47060:221;:::o;47287:366::-;47429:3;47450:67;47514:2;47509:3;47450:67;:::i;:::-;47443:74;;47526:93;47615:3;47526:93;:::i;:::-;47644:2;47639:3;47635:12;47628:19;;47287:366;;;:::o;47659:419::-;47825:4;47863:2;47852:9;47848:18;47840:26;;47912:9;47906:4;47902:20;47898:1;47887:9;47883:17;47876:47;47940:131;48066:4;47940:131;:::i;:::-;47932:139;;47659:419;;;:::o

Swarm Source

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