ETH Price: $2,582.63 (-2.82%)

Token

Bored Donkey Yacht Club (BDYC)
 

Overview

Max Total Supply

274 BDYC

Holders

90

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BDYC
0xcf8db9987906a4db337d12be3035fb212f874995
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:
BoredDonkeyYachtClub

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-12
*/

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


pragma solidity ^0.8.15;



contract BoredDonkeyYachtClub is Ownable, ERC721A {

    // constants
    uint256 constant MAX_ELEMENTS = 5555;
    uint256 constant MAX_ELEMENTS_TX = 20;
    uint256 constant MAX_FREE_PER_TX = 1;
    uint256 constant PUBLIC_PRICE = 0.005 ether;

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

    constructor(uint256 maxBatchSize_) ERC721A("Bored Donkey Yacht Club", "BDYC", maxBatchSize_) {}

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

        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"}]

60a06040526000600155600060085560405180606001604052806036815260200162004b016036913960099081620000389190620004d6565b506000600a60006101000a81548160ff0219169083151502179055503480156200006157600080fd5b5060405162004b3738038062004b378339818101604052810190620000879190620005f3565b6040518060400160405280601781526020017f426f72656420446f6e6b657920596163687420436c75620000000000000000008152506040518060400160405280600481526020017f42445943000000000000000000000000000000000000000000000000000000008152508262000114620001086200019060201b60201c565b6200019860201b60201c565b600081116200015a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015190620006ac565b60405180910390fd5b82600290816200016b9190620004d6565b5081600390816200017d9190620004d6565b50806080818152505050505050620006ce565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002de57607f821691505b602082108103620002f457620002f362000296565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200035e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031f565b6200036a86836200031f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b7620003b1620003ab8462000382565b6200038c565b62000382565b9050919050565b6000819050919050565b620003d38362000396565b620003eb620003e282620003be565b8484546200032c565b825550505050565b600090565b62000402620003f3565b6200040f818484620003c8565b505050565b5b8181101562000437576200042b600082620003f8565b60018101905062000415565b5050565b601f82111562000486576200045081620002fa565b6200045b846200030f565b810160208510156200046b578190505b620004836200047a856200030f565b83018262000414565b50505b505050565b600082821c905092915050565b6000620004ab600019846008026200048b565b1980831691505092915050565b6000620004c6838362000498565b9150826002028217905092915050565b620004e1826200025c565b67ffffffffffffffff811115620004fd57620004fc62000267565b5b620005098254620002c5565b620005168282856200043b565b600060209050601f8311600181146200054e576000841562000539578287015190505b620005458582620004b8565b865550620005b5565b601f1984166200055e86620002fa565b60005b82811015620005885784890151825560018201915060208501945060208101905062000561565b86831015620005a85784890151620005a4601f89168262000498565b8355505b6001600288020188555050505b505050505050565b600080fd5b620005cd8162000382565b8114620005d957600080fd5b50565b600081519050620005ed81620005c2565b92915050565b6000602082840312156200060c576200060b620005bd565b5b60006200061c84828501620005dc565b91505092915050565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200069460278362000625565b9150620006a18262000636565b604082019050919050565b60006020820190508181036000830152620006c78162000685565b9050919050565b608051614409620006f860003960008181611dde01528181611e0701526124b501526144096000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610564578063d7224ba01461058f578063e985e9c5146105ba578063f2fde38b146105f757610181565b8063a22cb465146104d5578063b88d4fde146104fe578063c87b56dd1461052757610181565b80636352211e146103d257806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e578063a0712d68146104b957610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780635c975abb146103a757610181565b806323b872dd146102a85780632f745c59146102d15780633ccfd60b1461030e57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061298c565b610620565b6040516101ba91906129d4565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612a1b565b61076a565b005b3480156101f857600080fd5b50610201610803565b60405161020e9190612ae1565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612b39565b610895565b60405161024b9190612ba7565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612bee565b61091a565b005b34801561028957600080fd5b50610292610a32565b60405161029f9190612c3d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612c58565b610a3c565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612bee565b610a4c565b6040516103059190612c3d565b60405180910390f35b610316610c48565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612c58565b610d04565b005b34801561034d57600080fd5b5061036860048036038101906103639190612b39565b610d24565b6040516103759190612c3d565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d10565b610d77565b005b3480156103b357600080fd5b506103bc610e09565b6040516103c991906129d4565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612b39565b610e1c565b6040516104069190612ba7565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612d5d565b610e32565b6040516104439190612c3d565b60405180910390f35b34801561045857600080fd5b50610461610f1a565b005b34801561046f57600080fd5b50610478610fa2565b6040516104859190612ba7565b60405180910390f35b34801561049a57600080fd5b506104a3610fcb565b6040516104b09190612ae1565b60405180910390f35b6104d360048036038101906104ce9190612b39565b61105d565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612d8a565b6111ff565b005b34801561050a57600080fd5b5061052560048036038101906105209190612efa565b61137f565b005b34801561053357600080fd5b5061054e60048036038101906105499190612b39565b6113db565b60405161055b9190612ae1565b60405180910390f35b34801561057057600080fd5b50610579611482565b6040516105869190612ae1565b60405180910390f35b34801561059b57600080fd5b506105a4611510565b6040516105b19190612c3d565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612f7d565b611516565b6040516105ee91906129d4565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612d5d565b6115aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107635750610762826116a1565b5b9050919050565b61077261170b565b73ffffffffffffffffffffffffffffffffffffffff16610790610fa2565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613009565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606002805461081290613058565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613058565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611713565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906130fb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610e1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061318d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b461170b565b73ffffffffffffffffffffffffffffffffffffffff1614806109e357506109e2816109dd61170b565b611516565b5b610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a199061321f565b60405180910390fd5b610a2d838383611721565b505050565b6000600154905090565b610a478383836117d3565b505050565b6000610a5783610e32565b8210610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906132b1565b60405180910390fd5b6000610aa2610a32565b905060008060005b83811015610c06576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf257868403610be3578195505050505050610c42565b8380610bee90613300565b9450505b508080610bfe90613300565b915050610aaa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906133ba565b60405180910390fd5b92915050565b610c5061170b565b73ffffffffffffffffffffffffffffffffffffffff16610c6e610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613009565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0257600080fd5b565b610d1f8383836040518060200160405280600081525061137f565b505050565b6000610d2e610a32565b8210610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061344c565b60405180910390fd5b819050919050565b610d7f61170b565b73ffffffffffffffffffffffffffffffffffffffff16610d9d610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613009565b60405180910390fd5b818160099182610e04929190613623565b505050565b600a60009054906101000a900460ff1681565b6000610e2782611d8a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613765565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f2261170b565b73ffffffffffffffffffffffffffffffffffffffff16610f40610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613009565b60405180910390fd5b610fa06000611f8d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fda90613058565b80601f016020809104026020016040519081016040528092919081815260200182805461100690613058565b80156110535780601f1061102857610100808354040283529160200191611053565b820191906000526020600020905b81548152906001019060200180831161103657829003601f168201915b5050505050905090565b6000611067610a32565b9050600082116110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906137d1565b60405180910390fd5b60148211156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e79061383d565b60405180910390fd5b600a60009054906101000a900460ff1615611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906138a9565b60405180910390fd5b6115b3828261114f91906138c9565b1115611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061396b565b60405180910390fd5b6611c37937e080006001836111a5919061398b565b6111af91906139bf565b3410156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613a65565b60405180910390fd5b6111fb3383612051565b5050565b61120761170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613ad1565b60405180910390fd5b806007600061128161170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e61170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137391906129d4565b60405180910390a35050565b61138a8484846117d3565b6113968484848461206f565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613b63565b60405180910390fd5b50505050565b60606113e682611713565b611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613bf5565b60405180910390fd5b600061142f6121f6565b9050600081511161144f576040518060200160405280600081525061147a565b8061145984612288565b60405160200161146a929190613c51565b6040516020818303038152906040525b915050919050565b6009805461148f90613058565b80601f01602080910402602001604051908101604052809291908181526020018280546114bb90613058565b80156115085780601f106114dd57610100808354040283529160200191611508565b820191906000526020600020905b8154815290600101906020018083116114eb57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b261170b565b73ffffffffffffffffffffffffffffffffffffffff166115d0610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613009565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613ce7565b60405180910390fd5b61169e81611f8d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117de82611d8a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180561170b565b73ffffffffffffffffffffffffffffffffffffffff161480611861575061182a61170b565b73ffffffffffffffffffffffffffffffffffffffff1661184984610895565b73ffffffffffffffffffffffffffffffffffffffff16145b8061187d575061187c826000015161187761170b565b611516565b5b9050806118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690613d79565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613e0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613e9d565b60405180910390fd5b6119ad85858560016123e8565b6119bd6000848460000151611721565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a2b9190613ed9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611acf9190613f0d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611bd591906138c9565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d1a57611c4a81611713565b15611d19576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8286868660016123ee565b505050505050565b611d926128e6565b611d9b82611713565b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613fc5565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611e3e5760017f000000000000000000000000000000000000000000000000000000000000000084611e31919061398b565b611e3b91906138c9565b90505b60008390505b818110611f4c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f3857809350505050611f88565b508080611f4490613fe5565b915050611e44565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90614080565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61206b8282604051806020016040528060008152506123f4565b5050565b60006120908473ffffffffffffffffffffffffffffffffffffffff166128d3565b156121e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b961170b565b8786866040518563ffffffff1660e01b81526004016120db94939291906140f5565b6020604051808303816000875af192505050801561211757506040513d601f19601f820116820180604052508101906121149190614156565b60015b612199573d8060008114612147576040519150601f19603f3d011682016040523d82523d6000602084013e61214c565b606091505b506000815103612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218890613b63565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121ee565b600190505b949350505050565b60606009805461220590613058565b80601f016020809104026020016040519081016040528092919081815260200182805461223190613058565b801561227e5780601f106122535761010080835404028352916020019161227e565b820191906000526020600020905b81548152906001019060200180831161226157829003601f168201915b5050505050905090565b6060600082036122cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123e3565b600082905060005b600082146123015780806122ea90613300565b915050600a826122fa91906141b2565b91506122d7565b60008167ffffffffffffffff81111561231d5761231c612dcf565b5b6040519080825280601f01601f19166020018201604052801561234f5781602001600182028036833780820191505090505b5090505b600085146123dc57600182612368919061398b565b9150600a8561237791906141e3565b603061238391906138c9565b60f81b81838151811061239957612398614214565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d591906141b2565b9450612353565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361246a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612461906142b5565b60405180910390fd5b61247381611713565b156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614321565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d906143b3565b60405180910390fd5b61252360008583866123e8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126209190613f0d565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126479190613f0d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128b657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612856600088848861206f565b612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613b63565b60405180910390fd5b81806128a090613300565b92505080806128ae90613300565b9150506127e5565b50806001819055506128cb60008785886123ee565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296981612934565b811461297457600080fd5b50565b60008135905061298681612960565b92915050565b6000602082840312156129a2576129a161292a565b5b60006129b084828501612977565b91505092915050565b60008115159050919050565b6129ce816129b9565b82525050565b60006020820190506129e960008301846129c5565b92915050565b6129f8816129b9565b8114612a0357600080fd5b50565b600081359050612a15816129ef565b92915050565b600060208284031215612a3157612a3061292a565b5b6000612a3f84828501612a06565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a82578082015181840152602081019050612a67565b83811115612a91576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ab382612a48565b612abd8185612a53565b9350612acd818560208601612a64565b612ad681612a97565b840191505092915050565b60006020820190508181036000830152612afb8184612aa8565b905092915050565b6000819050919050565b612b1681612b03565b8114612b2157600080fd5b50565b600081359050612b3381612b0d565b92915050565b600060208284031215612b4f57612b4e61292a565b5b6000612b5d84828501612b24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9182612b66565b9050919050565b612ba181612b86565b82525050565b6000602082019050612bbc6000830184612b98565b92915050565b612bcb81612b86565b8114612bd657600080fd5b50565b600081359050612be881612bc2565b92915050565b60008060408385031215612c0557612c0461292a565b5b6000612c1385828601612bd9565b9250506020612c2485828601612b24565b9150509250929050565b612c3781612b03565b82525050565b6000602082019050612c526000830184612c2e565b92915050565b600080600060608486031215612c7157612c7061292a565b5b6000612c7f86828701612bd9565b9350506020612c9086828701612bd9565b9250506040612ca186828701612b24565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612cd057612ccf612cab565b5b8235905067ffffffffffffffff811115612ced57612cec612cb0565b5b602083019150836001820283011115612d0957612d08612cb5565b5b9250929050565b60008060208385031215612d2757612d2661292a565b5b600083013567ffffffffffffffff811115612d4557612d4461292f565b5b612d5185828601612cba565b92509250509250929050565b600060208284031215612d7357612d7261292a565b5b6000612d8184828501612bd9565b91505092915050565b60008060408385031215612da157612da061292a565b5b6000612daf85828601612bd9565b9250506020612dc085828601612a06565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0782612a97565b810181811067ffffffffffffffff82111715612e2657612e25612dcf565b5b80604052505050565b6000612e39612920565b9050612e458282612dfe565b919050565b600067ffffffffffffffff821115612e6557612e64612dcf565b5b612e6e82612a97565b9050602081019050919050565b82818337600083830152505050565b6000612e9d612e9884612e4a565b612e2f565b905082815260208101848484011115612eb957612eb8612dca565b5b612ec4848285612e7b565b509392505050565b600082601f830112612ee157612ee0612cab565b5b8135612ef1848260208601612e8a565b91505092915050565b60008060008060808587031215612f1457612f1361292a565b5b6000612f2287828801612bd9565b9450506020612f3387828801612bd9565b9350506040612f4487828801612b24565b925050606085013567ffffffffffffffff811115612f6557612f6461292f565b5b612f7187828801612ecc565b91505092959194509250565b60008060408385031215612f9457612f9361292a565b5b6000612fa285828601612bd9565b9250506020612fb385828601612bd9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ff3602083612a53565b9150612ffe82612fbd565b602082019050919050565b6000602082019050818103600083015261302281612fe6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061307057607f821691505b60208210810361308357613082613029565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130e5602d83612a53565b91506130f082613089565b604082019050919050565b60006020820190508181036000830152613114816130d8565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613177602283612a53565b91506131828261311b565b604082019050919050565b600060208201905081810360008301526131a68161316a565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613209603983612a53565b9150613214826131ad565b604082019050919050565b60006020820190508181036000830152613238816131fc565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061329b602283612a53565b91506132a68261323f565b604082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061330b82612b03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361333d5761333c6132d1565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006133a4602e83612a53565b91506133af82613348565b604082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613436602383612a53565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261349c565b6134e3868361349c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352061351b61351684612b03565b6134fb565b612b03565b9050919050565b6000819050919050565b61353a83613505565b61354e61354682613527565b8484546134a9565b825550505050565b600090565b613563613556565b61356e818484613531565b505050565b5b818110156135925761358760008261355b565b600181019050613574565b5050565b601f8211156135d7576135a881613477565b6135b18461348c565b810160208510156135c0578190505b6135d46135cc8561348c565b830182613573565b50505b505050565b600082821c905092915050565b60006135fa600019846008026135dc565b1980831691505092915050565b600061361383836135e9565b9150826002028217905092915050565b61362d838361346c565b67ffffffffffffffff81111561364657613645612dcf565b5b6136508254613058565b61365b828285613596565b6000601f83116001811461368a5760008415613678578287013590505b6136828582613607565b8655506136ea565b601f19841661369886613477565b60005b828110156136c05784890135825560018201915060208501945060208101905061369b565b868310156136dd57848901356136d9601f8916826135e9565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061374f602b83612a53565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b60006137bb600a83612a53565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b6000613827601283612a53565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613893600683612a53565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b60006138d482612b03565b91506138df83612b03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613914576139136132d1565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613955601283612a53565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b600061399682612b03565b91506139a183612b03565b9250828210156139b4576139b36132d1565b5b828203905092915050565b60006139ca82612b03565b91506139d583612b03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d6132d1565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613a4f601683612a53565b9150613a5a82613a19565b602082019050919050565b60006020820190508181036000830152613a7e81613a42565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613abb601a83612a53565b9150613ac682613a85565b602082019050919050565b60006020820190508181036000830152613aea81613aae565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b4d603383612a53565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bdf602f83612a53565b9150613bea82613b83565b604082019050919050565b60006020820190508181036000830152613c0e81613bd2565b9050919050565b600081905092915050565b6000613c2b82612a48565b613c358185613c15565b9350613c45818560208601612a64565b80840191505092915050565b6000613c5d8285613c20565b9150613c698284613c20565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cd1602683612a53565b9150613cdc82613c75565b604082019050919050565b60006020820190508181036000830152613d0081613cc4565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613d63603283612a53565b9150613d6e82613d07565b604082019050919050565b60006020820190508181036000830152613d9281613d56565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613df5602683612a53565b9150613e0082613d99565b604082019050919050565b60006020820190508181036000830152613e2481613de8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e87602583612a53565b9150613e9282613e2b565b604082019050919050565b60006020820190508181036000830152613eb681613e7a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613ee482613ebd565b9150613eef83613ebd565b925082821015613f0257613f016132d1565b5b828203905092915050565b6000613f1882613ebd565b9150613f2383613ebd565b9250826fffffffffffffffffffffffffffffffff03821115613f4857613f476132d1565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613faf602a83612a53565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b6000613ff082612b03565b915060008203614003576140026132d1565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061406a602f83612a53565b91506140758261400e565b604082019050919050565b600060208201905081810360008301526140998161405d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140c7826140a0565b6140d181856140ab565b93506140e1818560208601612a64565b6140ea81612a97565b840191505092915050565b600060808201905061410a6000830187612b98565b6141176020830186612b98565b6141246040830185612c2e565b818103606083015261413681846140bc565b905095945050505050565b60008151905061415081612960565b92915050565b60006020828403121561416c5761416b61292a565b5b600061417a84828501614141565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141bd82612b03565b91506141c883612b03565b9250826141d8576141d7614183565b5b828204905092915050565b60006141ee82612b03565b91506141f983612b03565b92508261420957614208614183565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061429f602183612a53565b91506142aa82614243565b604082019050919050565b600060208201905081810360008301526142ce81614292565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061430b601d83612a53565b9150614316826142d5565b602082019050919050565b6000602082019050818103600083015261433a816142fe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061439d602283612a53565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b905091905056fea264697066735822122035172ee380ab21f6b7824d029aa3a69f32549e769ece00bffb7cb23660a0323b64736f6c634300080f0033697066733a2f2f516d544b5a6f4c55786f62346961636f4e464654584765446e775731547051344b5a5a6d6a72597a6468336442532f0000000000000000000000000000000000000000000000000000000000000014

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610564578063d7224ba01461058f578063e985e9c5146105ba578063f2fde38b146105f757610181565b8063a22cb465146104d5578063b88d4fde146104fe578063c87b56dd1461052757610181565b80636352211e146103d257806370a082311461040f578063715018a61461044c5780638da5cb5b1461046357806395d89b411461048e578063a0712d68146104b957610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780635c975abb146103a757610181565b806323b872dd146102a85780632f745c59146102d15780633ccfd60b1461030e57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061298c565b610620565b6040516101ba91906129d4565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612a1b565b61076a565b005b3480156101f857600080fd5b50610201610803565b60405161020e9190612ae1565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612b39565b610895565b60405161024b9190612ba7565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612bee565b61091a565b005b34801561028957600080fd5b50610292610a32565b60405161029f9190612c3d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612c58565b610a3c565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612bee565b610a4c565b6040516103059190612c3d565b60405180910390f35b610316610c48565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612c58565b610d04565b005b34801561034d57600080fd5b5061036860048036038101906103639190612b39565b610d24565b6040516103759190612c3d565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d10565b610d77565b005b3480156103b357600080fd5b506103bc610e09565b6040516103c991906129d4565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612b39565b610e1c565b6040516104069190612ba7565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612d5d565b610e32565b6040516104439190612c3d565b60405180910390f35b34801561045857600080fd5b50610461610f1a565b005b34801561046f57600080fd5b50610478610fa2565b6040516104859190612ba7565b60405180910390f35b34801561049a57600080fd5b506104a3610fcb565b6040516104b09190612ae1565b60405180910390f35b6104d360048036038101906104ce9190612b39565b61105d565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612d8a565b6111ff565b005b34801561050a57600080fd5b5061052560048036038101906105209190612efa565b61137f565b005b34801561053357600080fd5b5061054e60048036038101906105499190612b39565b6113db565b60405161055b9190612ae1565b60405180910390f35b34801561057057600080fd5b50610579611482565b6040516105869190612ae1565b60405180910390f35b34801561059b57600080fd5b506105a4611510565b6040516105b19190612c3d565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612f7d565b611516565b6040516105ee91906129d4565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190612d5d565b6115aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107635750610762826116a1565b5b9050919050565b61077261170b565b73ffffffffffffffffffffffffffffffffffffffff16610790610fa2565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90613009565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60606002805461081290613058565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613058565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611713565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906130fb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610e1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061318d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b461170b565b73ffffffffffffffffffffffffffffffffffffffff1614806109e357506109e2816109dd61170b565b611516565b5b610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a199061321f565b60405180910390fd5b610a2d838383611721565b505050565b6000600154905090565b610a478383836117d3565b505050565b6000610a5783610e32565b8210610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906132b1565b60405180910390fd5b6000610aa2610a32565b905060008060005b83811015610c06576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b9c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf257868403610be3578195505050505050610c42565b8380610bee90613300565b9450505b508080610bfe90613300565b915050610aaa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906133ba565b60405180910390fd5b92915050565b610c5061170b565b73ffffffffffffffffffffffffffffffffffffffff16610c6e610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613009565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0257600080fd5b565b610d1f8383836040518060200160405280600081525061137f565b505050565b6000610d2e610a32565b8210610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061344c565b60405180910390fd5b819050919050565b610d7f61170b565b73ffffffffffffffffffffffffffffffffffffffff16610d9d610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613009565b60405180910390fd5b818160099182610e04929190613623565b505050565b600a60009054906101000a900460ff1681565b6000610e2782611d8a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613765565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f2261170b565b73ffffffffffffffffffffffffffffffffffffffff16610f40610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613009565b60405180910390fd5b610fa06000611f8d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fda90613058565b80601f016020809104026020016040519081016040528092919081815260200182805461100690613058565b80156110535780601f1061102857610100808354040283529160200191611053565b820191906000526020600020905b81548152906001019060200180831161103657829003601f168201915b5050505050905090565b6000611067610a32565b9050600082116110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906137d1565b60405180910390fd5b60148211156110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e79061383d565b60405180910390fd5b600a60009054906101000a900460ff1615611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906138a9565b60405180910390fd5b6115b3828261114f91906138c9565b1115611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061396b565b60405180910390fd5b6611c37937e080006001836111a5919061398b565b6111af91906139bf565b3410156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613a65565b60405180910390fd5b6111fb3383612051565b5050565b61120761170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613ad1565b60405180910390fd5b806007600061128161170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132e61170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137391906129d4565b60405180910390a35050565b61138a8484846117d3565b6113968484848461206f565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613b63565b60405180910390fd5b50505050565b60606113e682611713565b611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613bf5565b60405180910390fd5b600061142f6121f6565b9050600081511161144f576040518060200160405280600081525061147a565b8061145984612288565b60405160200161146a929190613c51565b6040516020818303038152906040525b915050919050565b6009805461148f90613058565b80601f01602080910402602001604051908101604052809291908181526020018280546114bb90613058565b80156115085780601f106114dd57610100808354040283529160200191611508565b820191906000526020600020905b8154815290600101906020018083116114eb57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b261170b565b73ffffffffffffffffffffffffffffffffffffffff166115d0610fa2565b73ffffffffffffffffffffffffffffffffffffffff1614611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613009565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613ce7565b60405180910390fd5b61169e81611f8d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117de82611d8a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180561170b565b73ffffffffffffffffffffffffffffffffffffffff161480611861575061182a61170b565b73ffffffffffffffffffffffffffffffffffffffff1661184984610895565b73ffffffffffffffffffffffffffffffffffffffff16145b8061187d575061187c826000015161187761170b565b611516565b5b9050806118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690613d79565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613e0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613e9d565b60405180910390fd5b6119ad85858560016123e8565b6119bd6000848460000151611721565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a2b9190613ed9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611acf9190613f0d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611bd591906138c9565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d1a57611c4a81611713565b15611d19576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8286868660016123ee565b505050505050565b611d926128e6565b611d9b82611713565b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613fc5565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148310611e3e5760017f000000000000000000000000000000000000000000000000000000000000001484611e31919061398b565b611e3b91906138c9565b90505b60008390505b818110611f4c576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f3857809350505050611f88565b508080611f4490613fe5565b915050611e44565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90614080565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61206b8282604051806020016040528060008152506123f4565b5050565b60006120908473ffffffffffffffffffffffffffffffffffffffff166128d3565b156121e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b961170b565b8786866040518563ffffffff1660e01b81526004016120db94939291906140f5565b6020604051808303816000875af192505050801561211757506040513d601f19601f820116820180604052508101906121149190614156565b60015b612199573d8060008114612147576040519150601f19603f3d011682016040523d82523d6000602084013e61214c565b606091505b506000815103612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218890613b63565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121ee565b600190505b949350505050565b60606009805461220590613058565b80601f016020809104026020016040519081016040528092919081815260200182805461223190613058565b801561227e5780601f106122535761010080835404028352916020019161227e565b820191906000526020600020905b81548152906001019060200180831161226157829003601f168201915b5050505050905090565b6060600082036122cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123e3565b600082905060005b600082146123015780806122ea90613300565b915050600a826122fa91906141b2565b91506122d7565b60008167ffffffffffffffff81111561231d5761231c612dcf565b5b6040519080825280601f01601f19166020018201604052801561234f5781602001600182028036833780820191505090505b5090505b600085146123dc57600182612368919061398b565b9150600a8561237791906141e3565b603061238391906138c9565b60f81b81838151811061239957612398614214565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d591906141b2565b9450612353565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361246a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612461906142b5565b60405180910390fd5b61247381611713565b156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614321565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d906143b3565b60405180910390fd5b61252360008583866123e8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126209190613f0d565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126479190613f0d565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128b657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612856600088848861206f565b612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613b63565b60405180910390fd5b81806128a090613300565b92505080806128ae90613300565b9150506127e5565b50806001819055506128cb60008785886123ee565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296981612934565b811461297457600080fd5b50565b60008135905061298681612960565b92915050565b6000602082840312156129a2576129a161292a565b5b60006129b084828501612977565b91505092915050565b60008115159050919050565b6129ce816129b9565b82525050565b60006020820190506129e960008301846129c5565b92915050565b6129f8816129b9565b8114612a0357600080fd5b50565b600081359050612a15816129ef565b92915050565b600060208284031215612a3157612a3061292a565b5b6000612a3f84828501612a06565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a82578082015181840152602081019050612a67565b83811115612a91576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ab382612a48565b612abd8185612a53565b9350612acd818560208601612a64565b612ad681612a97565b840191505092915050565b60006020820190508181036000830152612afb8184612aa8565b905092915050565b6000819050919050565b612b1681612b03565b8114612b2157600080fd5b50565b600081359050612b3381612b0d565b92915050565b600060208284031215612b4f57612b4e61292a565b5b6000612b5d84828501612b24565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b9182612b66565b9050919050565b612ba181612b86565b82525050565b6000602082019050612bbc6000830184612b98565b92915050565b612bcb81612b86565b8114612bd657600080fd5b50565b600081359050612be881612bc2565b92915050565b60008060408385031215612c0557612c0461292a565b5b6000612c1385828601612bd9565b9250506020612c2485828601612b24565b9150509250929050565b612c3781612b03565b82525050565b6000602082019050612c526000830184612c2e565b92915050565b600080600060608486031215612c7157612c7061292a565b5b6000612c7f86828701612bd9565b9350506020612c9086828701612bd9565b9250506040612ca186828701612b24565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612cd057612ccf612cab565b5b8235905067ffffffffffffffff811115612ced57612cec612cb0565b5b602083019150836001820283011115612d0957612d08612cb5565b5b9250929050565b60008060208385031215612d2757612d2661292a565b5b600083013567ffffffffffffffff811115612d4557612d4461292f565b5b612d5185828601612cba565b92509250509250929050565b600060208284031215612d7357612d7261292a565b5b6000612d8184828501612bd9565b91505092915050565b60008060408385031215612da157612da061292a565b5b6000612daf85828601612bd9565b9250506020612dc085828601612a06565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0782612a97565b810181811067ffffffffffffffff82111715612e2657612e25612dcf565b5b80604052505050565b6000612e39612920565b9050612e458282612dfe565b919050565b600067ffffffffffffffff821115612e6557612e64612dcf565b5b612e6e82612a97565b9050602081019050919050565b82818337600083830152505050565b6000612e9d612e9884612e4a565b612e2f565b905082815260208101848484011115612eb957612eb8612dca565b5b612ec4848285612e7b565b509392505050565b600082601f830112612ee157612ee0612cab565b5b8135612ef1848260208601612e8a565b91505092915050565b60008060008060808587031215612f1457612f1361292a565b5b6000612f2287828801612bd9565b9450506020612f3387828801612bd9565b9350506040612f4487828801612b24565b925050606085013567ffffffffffffffff811115612f6557612f6461292f565b5b612f7187828801612ecc565b91505092959194509250565b60008060408385031215612f9457612f9361292a565b5b6000612fa285828601612bd9565b9250506020612fb385828601612bd9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ff3602083612a53565b9150612ffe82612fbd565b602082019050919050565b6000602082019050818103600083015261302281612fe6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061307057607f821691505b60208210810361308357613082613029565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130e5602d83612a53565b91506130f082613089565b604082019050919050565b60006020820190508181036000830152613114816130d8565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613177602283612a53565b91506131828261311b565b604082019050919050565b600060208201905081810360008301526131a68161316a565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613209603983612a53565b9150613214826131ad565b604082019050919050565b60006020820190508181036000830152613238816131fc565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061329b602283612a53565b91506132a68261323f565b604082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061330b82612b03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361333d5761333c6132d1565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006133a4602e83612a53565b91506133af82613348565b604082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613436602383612a53565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261349c565b6134e3868361349c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061352061351b61351684612b03565b6134fb565b612b03565b9050919050565b6000819050919050565b61353a83613505565b61354e61354682613527565b8484546134a9565b825550505050565b600090565b613563613556565b61356e818484613531565b505050565b5b818110156135925761358760008261355b565b600181019050613574565b5050565b601f8211156135d7576135a881613477565b6135b18461348c565b810160208510156135c0578190505b6135d46135cc8561348c565b830182613573565b50505b505050565b600082821c905092915050565b60006135fa600019846008026135dc565b1980831691505092915050565b600061361383836135e9565b9150826002028217905092915050565b61362d838361346c565b67ffffffffffffffff81111561364657613645612dcf565b5b6136508254613058565b61365b828285613596565b6000601f83116001811461368a5760008415613678578287013590505b6136828582613607565b8655506136ea565b601f19841661369886613477565b60005b828110156136c05784890135825560018201915060208501945060208101905061369b565b868310156136dd57848901356136d9601f8916826135e9565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061374f602b83612a53565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b60006137bb600a83612a53565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b6000613827601283612a53565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613893600683612a53565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b60006138d482612b03565b91506138df83612b03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613914576139136132d1565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613955601283612a53565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b600061399682612b03565b91506139a183612b03565b9250828210156139b4576139b36132d1565b5b828203905092915050565b60006139ca82612b03565b91506139d583612b03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d6132d1565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613a4f601683612a53565b9150613a5a82613a19565b602082019050919050565b60006020820190508181036000830152613a7e81613a42565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613abb601a83612a53565b9150613ac682613a85565b602082019050919050565b60006020820190508181036000830152613aea81613aae565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b4d603383612a53565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bdf602f83612a53565b9150613bea82613b83565b604082019050919050565b60006020820190508181036000830152613c0e81613bd2565b9050919050565b600081905092915050565b6000613c2b82612a48565b613c358185613c15565b9350613c45818560208601612a64565b80840191505092915050565b6000613c5d8285613c20565b9150613c698284613c20565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cd1602683612a53565b9150613cdc82613c75565b604082019050919050565b60006020820190508181036000830152613d0081613cc4565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613d63603283612a53565b9150613d6e82613d07565b604082019050919050565b60006020820190508181036000830152613d9281613d56565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613df5602683612a53565b9150613e0082613d99565b604082019050919050565b60006020820190508181036000830152613e2481613de8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e87602583612a53565b9150613e9282613e2b565b604082019050919050565b60006020820190508181036000830152613eb681613e7a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613ee482613ebd565b9150613eef83613ebd565b925082821015613f0257613f016132d1565b5b828203905092915050565b6000613f1882613ebd565b9150613f2383613ebd565b9250826fffffffffffffffffffffffffffffffff03821115613f4857613f476132d1565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613faf602a83612a53565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b6000613ff082612b03565b915060008203614003576140026132d1565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061406a602f83612a53565b91506140758261400e565b604082019050919050565b600060208201905081810360008301526140998161405d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140c7826140a0565b6140d181856140ab565b93506140e1818560208601612a64565b6140ea81612a97565b840191505092915050565b600060808201905061410a6000830187612b98565b6141176020830186612b98565b6141246040830185612c2e565b818103606083015261413681846140bc565b905095945050505050565b60008151905061415081612960565b92915050565b60006020828403121561416c5761416b61292a565b5b600061417a84828501614141565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141bd82612b03565b91506141c883612b03565b9250826141d8576141d7614183565b5b828204905092915050565b60006141ee82612b03565b91506141f983612b03565b92508261420957614208614183565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061429f602183612a53565b91506142aa82614243565b604082019050919050565b600060208201905081810360008301526142ce81614292565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061430b601d83612a53565b9150614316826142d5565b602082019050919050565b6000602082019050818103600083015261433a816142fe565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061439d602283612a53565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b905091905056fea264697066735822122035172ee380ab21f6b7824d029aa3a69f32549e769ece00bffb7cb23660a0323b64736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000014

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

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


Deployed Bytecode Sourcemap

38272:1428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23708:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39382: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;:::-;;;;;;;;39252:122;;;:::i;:::-;;28014:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22435:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39592:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38623:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25257:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24134:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37571:94;;;;;;;;;;;;;:::i;:::-;;36920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25589:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38761:483;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27227:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28234:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25750:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38531: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;39382:81::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39449:6:::1;39440;;:15;;;;;;;;;;;;;;;;;;39382: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;39252:122::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39326:10:::1;39318:24;;:47;39343:21;39318:47;;;;;;;;;;;;;;;;;;;;;;;39310:56;;;::::0;::::1;;39252: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;39592:105::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39682:7:::1;;39667:12;:22;;;;;;;:::i;:::-;;39592:105:::0;;:::o;38623: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;38761:483::-;38824:14;38841:13;:11;:13::i;:::-;38824:30;;38887:1;38873:11;:15;38865:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;38427:2;38921:11;:30;;38913:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;38993:6;;;;;;;;;;;38992:7;38984:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;38381:4;39040:11;39031:6;:20;;;;:::i;:::-;:36;;39023:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38511:11;38471:1;39122:11;:29;;;;:::i;:::-;39121:45;;;;:::i;:::-;39108:9;:58;;39100:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;39203:33;39213:10;39224:11;39203:9;:33::i;:::-;38813:431;38761:483;:::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;38531: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;39471:113::-;39531:13;39564:12;39557:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39471: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:160::-;25935:12;25931:1;25923:6;25919:14;25912:36;25795:160;:::o;25961:366::-;26103:3;26124:67;26188:2;26183:3;26124:67;:::i;:::-;26117:74;;26200:93;26289:3;26200:93;:::i;:::-;26318:2;26313:3;26309:12;26302:19;;25961:366;;;:::o;26333:419::-;26499:4;26537:2;26526:9;26522:18;26514:26;;26586:9;26580:4;26576:20;26572:1;26561:9;26557:17;26550:47;26614:131;26740:4;26614:131;:::i;:::-;26606:139;;26333:419;;;:::o;26758:168::-;26898:20;26894:1;26886:6;26882:14;26875:44;26758:168;:::o;26932:366::-;27074:3;27095:67;27159:2;27154:3;27095:67;:::i;:::-;27088:74;;27171:93;27260:3;27171:93;:::i;:::-;27289:2;27284:3;27280:12;27273:19;;26932:366;;;:::o;27304:419::-;27470:4;27508:2;27497:9;27493:18;27485:26;;27557:9;27551:4;27547:20;27543:1;27532:9;27528:17;27521:47;27585:131;27711:4;27585:131;:::i;:::-;27577:139;;27304:419;;;:::o;27729:156::-;27869:8;27865:1;27857:6;27853:14;27846:32;27729:156;:::o;27891:365::-;28033:3;28054:66;28118:1;28113:3;28054:66;:::i;:::-;28047:73;;28129:93;28218:3;28129:93;:::i;:::-;28247:2;28242:3;28238:12;28231:19;;27891:365;;;:::o;28262:419::-;28428:4;28466:2;28455:9;28451:18;28443:26;;28515:9;28509:4;28505:20;28501:1;28490:9;28486:17;28479:47;28543:131;28669:4;28543:131;:::i;:::-;28535:139;;28262:419;;;:::o;28687:305::-;28727:3;28746:20;28764:1;28746:20;:::i;:::-;28741:25;;28780:20;28798:1;28780:20;:::i;:::-;28775:25;;28934:1;28866:66;28862:74;28859:1;28856:81;28853:107;;;28940:18;;:::i;:::-;28853:107;28984:1;28981;28977:9;28970:16;;28687:305;;;;:::o;28998:168::-;29138:20;29134:1;29126:6;29122:14;29115:44;28998:168;:::o;29172:366::-;29314:3;29335:67;29399:2;29394:3;29335:67;:::i;:::-;29328:74;;29411:93;29500:3;29411:93;:::i;:::-;29529:2;29524:3;29520:12;29513:19;;29172:366;;;:::o;29544:419::-;29710:4;29748:2;29737:9;29733:18;29725:26;;29797:9;29791:4;29787:20;29783:1;29772:9;29768:17;29761:47;29825:131;29951:4;29825:131;:::i;:::-;29817:139;;29544:419;;;:::o;29969:191::-;30009:4;30029:20;30047:1;30029:20;:::i;:::-;30024:25;;30063:20;30081:1;30063:20;:::i;:::-;30058:25;;30102:1;30099;30096:8;30093:34;;;30107:18;;:::i;:::-;30093:34;30152:1;30149;30145:9;30137:17;;29969:191;;;;:::o;30166:348::-;30206:7;30229:20;30247:1;30229:20;:::i;:::-;30224:25;;30263:20;30281:1;30263:20;:::i;:::-;30258:25;;30451:1;30383:66;30379:74;30376:1;30373:81;30368:1;30361:9;30354:17;30350:105;30347:131;;;30458:18;;:::i;:::-;30347:131;30506:1;30503;30499:9;30488:20;;30166:348;;;;:::o;30520:172::-;30660:24;30656:1;30648:6;30644:14;30637:48;30520:172;:::o;30698:366::-;30840:3;30861:67;30925:2;30920:3;30861:67;:::i;:::-;30854:74;;30937:93;31026:3;30937:93;:::i;:::-;31055:2;31050:3;31046:12;31039:19;;30698:366;;;:::o;31070:419::-;31236:4;31274:2;31263:9;31259:18;31251:26;;31323:9;31317:4;31313:20;31309:1;31298:9;31294:17;31287:47;31351:131;31477:4;31351:131;:::i;:::-;31343:139;;31070:419;;;:::o;31495:176::-;31635:28;31631:1;31623:6;31619:14;31612:52;31495:176;:::o;31677:366::-;31819:3;31840:67;31904:2;31899:3;31840:67;:::i;:::-;31833:74;;31916:93;32005:3;31916:93;:::i;:::-;32034:2;32029:3;32025:12;32018:19;;31677:366;;;:::o;32049:419::-;32215:4;32253:2;32242:9;32238:18;32230:26;;32302:9;32296:4;32292:20;32288:1;32277:9;32273:17;32266:47;32330:131;32456:4;32330:131;:::i;:::-;32322:139;;32049:419;;;:::o;32474:238::-;32614:34;32610:1;32602:6;32598:14;32591:58;32683:21;32678:2;32670:6;32666:15;32659:46;32474:238;:::o;32718:366::-;32860:3;32881:67;32945:2;32940:3;32881:67;:::i;:::-;32874:74;;32957:93;33046:3;32957:93;:::i;:::-;33075:2;33070:3;33066:12;33059:19;;32718:366;;;:::o;33090:419::-;33256:4;33294:2;33283:9;33279:18;33271:26;;33343:9;33337:4;33333:20;33329:1;33318:9;33314:17;33307:47;33371:131;33497:4;33371:131;:::i;:::-;33363:139;;33090:419;;;:::o;33515:234::-;33655:34;33651:1;33643:6;33639:14;33632:58;33724:17;33719:2;33711:6;33707:15;33700:42;33515:234;:::o;33755:366::-;33897:3;33918:67;33982:2;33977:3;33918:67;:::i;:::-;33911:74;;33994:93;34083:3;33994:93;:::i;:::-;34112:2;34107:3;34103:12;34096:19;;33755:366;;;:::o;34127:419::-;34293:4;34331:2;34320:9;34316:18;34308:26;;34380:9;34374:4;34370:20;34366:1;34355:9;34351:17;34344:47;34408:131;34534:4;34408:131;:::i;:::-;34400:139;;34127:419;;;:::o;34552:148::-;34654:11;34691:3;34676:18;;34552:148;;;;:::o;34706:377::-;34812:3;34840:39;34873:5;34840:39;:::i;:::-;34895:89;34977:6;34972:3;34895:89;:::i;:::-;34888:96;;34993:52;35038:6;35033:3;35026:4;35019:5;35015:16;34993:52;:::i;:::-;35070:6;35065:3;35061:16;35054:23;;34816:267;34706:377;;;;:::o;35089:435::-;35269:3;35291:95;35382:3;35373:6;35291:95;:::i;:::-;35284:102;;35403:95;35494:3;35485:6;35403:95;:::i;:::-;35396:102;;35515:3;35508:10;;35089:435;;;;;:::o;35530:225::-;35670:34;35666:1;35658:6;35654:14;35647:58;35739:8;35734:2;35726:6;35722:15;35715:33;35530:225;:::o;35761:366::-;35903:3;35924:67;35988:2;35983:3;35924:67;:::i;:::-;35917:74;;36000:93;36089:3;36000:93;:::i;:::-;36118:2;36113:3;36109:12;36102:19;;35761:366;;;:::o;36133:419::-;36299:4;36337:2;36326:9;36322:18;36314:26;;36386:9;36380:4;36376:20;36372:1;36361:9;36357:17;36350:47;36414:131;36540:4;36414:131;:::i;:::-;36406:139;;36133:419;;;:::o;36558:237::-;36698:34;36694:1;36686:6;36682:14;36675:58;36767:20;36762:2;36754:6;36750:15;36743:45;36558:237;:::o;36801:366::-;36943:3;36964:67;37028:2;37023:3;36964:67;:::i;:::-;36957:74;;37040:93;37129:3;37040:93;:::i;:::-;37158:2;37153:3;37149:12;37142:19;;36801:366;;;:::o;37173:419::-;37339:4;37377:2;37366:9;37362:18;37354:26;;37426:9;37420:4;37416:20;37412:1;37401:9;37397:17;37390:47;37454:131;37580:4;37454:131;:::i;:::-;37446:139;;37173:419;;;:::o;37598:225::-;37738:34;37734:1;37726:6;37722:14;37715:58;37807:8;37802:2;37794:6;37790:15;37783:33;37598:225;:::o;37829:366::-;37971:3;37992:67;38056:2;38051:3;37992:67;:::i;:::-;37985:74;;38068:93;38157:3;38068:93;:::i;:::-;38186:2;38181:3;38177:12;38170:19;;37829:366;;;:::o;38201:419::-;38367:4;38405:2;38394:9;38390:18;38382:26;;38454:9;38448:4;38444:20;38440:1;38429:9;38425:17;38418:47;38482:131;38608:4;38482:131;:::i;:::-;38474:139;;38201:419;;;:::o;38626:224::-;38766:34;38762:1;38754:6;38750:14;38743:58;38835:7;38830:2;38822:6;38818:15;38811:32;38626:224;:::o;38856:366::-;38998:3;39019:67;39083:2;39078:3;39019:67;:::i;:::-;39012:74;;39095:93;39184:3;39095:93;:::i;:::-;39213:2;39208:3;39204:12;39197:19;;38856:366;;;:::o;39228:419::-;39394:4;39432:2;39421:9;39417:18;39409:26;;39481:9;39475:4;39471:20;39467:1;39456:9;39452:17;39445:47;39509:131;39635:4;39509:131;:::i;:::-;39501:139;;39228:419;;;:::o;39653:118::-;39690:7;39730:34;39723:5;39719:46;39708:57;;39653:118;;;:::o;39777:191::-;39817:4;39837:20;39855:1;39837:20;:::i;:::-;39832:25;;39871:20;39889:1;39871:20;:::i;:::-;39866:25;;39910:1;39907;39904:8;39901:34;;;39915:18;;:::i;:::-;39901:34;39960:1;39957;39953:9;39945:17;;39777:191;;;;:::o;39974:273::-;40014:3;40033:20;40051:1;40033:20;:::i;:::-;40028:25;;40067:20;40085:1;40067:20;:::i;:::-;40062:25;;40189:1;40153:34;40149:42;40146:1;40143:49;40140:75;;;40195:18;;:::i;:::-;40140:75;40239:1;40236;40232:9;40225:16;;39974:273;;;;:::o;40253:229::-;40393:34;40389:1;40381:6;40377:14;40370:58;40462:12;40457:2;40449:6;40445:15;40438:37;40253:229;:::o;40488:366::-;40630:3;40651:67;40715:2;40710:3;40651:67;:::i;:::-;40644:74;;40727:93;40816:3;40727:93;:::i;:::-;40845:2;40840:3;40836:12;40829:19;;40488:366;;;:::o;40860:419::-;41026:4;41064:2;41053:9;41049:18;41041:26;;41113:9;41107:4;41103:20;41099:1;41088:9;41084:17;41077:47;41141:131;41267:4;41141:131;:::i;:::-;41133:139;;40860:419;;;:::o;41285:171::-;41324:3;41347:24;41365:5;41347:24;:::i;:::-;41338:33;;41393:4;41386:5;41383:15;41380:41;;41401:18;;:::i;:::-;41380:41;41448:1;41441:5;41437:13;41430:20;;41285:171;;;:::o;41462:234::-;41602:34;41598:1;41590:6;41586:14;41579:58;41671:17;41666:2;41658:6;41654:15;41647:42;41462:234;:::o;41702:366::-;41844:3;41865:67;41929:2;41924:3;41865:67;:::i;:::-;41858:74;;41941:93;42030:3;41941:93;:::i;:::-;42059:2;42054:3;42050:12;42043:19;;41702:366;;;:::o;42074:419::-;42240:4;42278:2;42267:9;42263:18;42255:26;;42327:9;42321:4;42317:20;42313:1;42302:9;42298:17;42291:47;42355:131;42481:4;42355:131;:::i;:::-;42347:139;;42074:419;;;:::o;42499:98::-;42550:6;42584:5;42578:12;42568:22;;42499:98;;;:::o;42603:168::-;42686:11;42720:6;42715:3;42708:19;42760:4;42755:3;42751:14;42736:29;;42603:168;;;;:::o;42777:360::-;42863:3;42891:38;42923:5;42891:38;:::i;:::-;42945:70;43008:6;43003:3;42945:70;:::i;:::-;42938:77;;43024:52;43069:6;43064:3;43057:4;43050:5;43046:16;43024:52;:::i;:::-;43101:29;43123:6;43101:29;:::i;:::-;43096:3;43092:39;43085:46;;42867:270;42777:360;;;;:::o;43143:640::-;43338:4;43376:3;43365:9;43361:19;43353:27;;43390:71;43458:1;43447:9;43443:17;43434:6;43390:71;:::i;:::-;43471:72;43539:2;43528:9;43524:18;43515:6;43471:72;:::i;:::-;43553;43621:2;43610:9;43606:18;43597:6;43553:72;:::i;:::-;43672:9;43666:4;43662:20;43657:2;43646:9;43642:18;43635:48;43700:76;43771:4;43762:6;43700:76;:::i;:::-;43692:84;;43143:640;;;;;;;:::o;43789:141::-;43845:5;43876:6;43870:13;43861:22;;43892:32;43918:5;43892:32;:::i;:::-;43789:141;;;;:::o;43936:349::-;44005:6;44054:2;44042:9;44033:7;44029:23;44025:32;44022:119;;;44060:79;;:::i;:::-;44022:119;44180:1;44205:63;44260:7;44251:6;44240:9;44236:22;44205:63;:::i;:::-;44195:73;;44151:127;43936:349;;;;:::o;44291:180::-;44339:77;44336:1;44329:88;44436:4;44433:1;44426:15;44460:4;44457:1;44450:15;44477:185;44517:1;44534:20;44552:1;44534:20;:::i;:::-;44529:25;;44568:20;44586:1;44568:20;:::i;:::-;44563:25;;44607:1;44597:35;;44612:18;;:::i;:::-;44597:35;44654:1;44651;44647:9;44642:14;;44477:185;;;;:::o;44668:176::-;44700:1;44717:20;44735:1;44717:20;:::i;:::-;44712:25;;44751:20;44769:1;44751:20;:::i;:::-;44746:25;;44790:1;44780:35;;44795:18;;:::i;:::-;44780:35;44836:1;44833;44829:9;44824:14;;44668:176;;;;:::o;44850:180::-;44898:77;44895:1;44888:88;44995:4;44992:1;44985:15;45019:4;45016:1;45009:15;45036:220;45176:34;45172:1;45164:6;45160:14;45153:58;45245:3;45240:2;45232:6;45228:15;45221:28;45036:220;:::o;45262:366::-;45404:3;45425:67;45489:2;45484:3;45425:67;:::i;:::-;45418:74;;45501:93;45590:3;45501:93;:::i;:::-;45619:2;45614:3;45610:12;45603:19;;45262:366;;;:::o;45634:419::-;45800:4;45838:2;45827:9;45823:18;45815:26;;45887:9;45881:4;45877:20;45873:1;45862:9;45858:17;45851:47;45915:131;46041:4;45915:131;:::i;:::-;45907:139;;45634:419;;;:::o;46059:179::-;46199:31;46195:1;46187:6;46183:14;46176:55;46059:179;:::o;46244:366::-;46386:3;46407:67;46471:2;46466:3;46407:67;:::i;:::-;46400:74;;46483:93;46572:3;46483:93;:::i;:::-;46601:2;46596:3;46592:12;46585:19;;46244:366;;;:::o;46616:419::-;46782:4;46820:2;46809:9;46805:18;46797:26;;46869:9;46863:4;46859:20;46855:1;46844:9;46840:17;46833:47;46897:131;47023:4;46897:131;:::i;:::-;46889:139;;46616:419;;;:::o;47041:221::-;47181:34;47177:1;47169:6;47165:14;47158:58;47250:4;47245:2;47237:6;47233:15;47226:29;47041:221;:::o;47268:366::-;47410:3;47431:67;47495:2;47490:3;47431:67;:::i;:::-;47424:74;;47507:93;47596:3;47507:93;:::i;:::-;47625:2;47620:3;47616:12;47609:19;;47268:366;;;:::o;47640:419::-;47806:4;47844:2;47833:9;47829:18;47821:26;;47893:9;47887:4;47883:20;47879:1;47868:9;47864:17;47857:47;47921:131;48047:4;47921:131;:::i;:::-;47913:139;;47640:419;;;:::o

Swarm Source

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