ETH Price: $2,004.38 (+1.33%)

Token

DonkeyDAO (DONKEY)
 

Overview

Max Total Supply

590 DONKEY

Holders

15

Transfers

-
0 (0%)

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
DonkeyDAO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-01-29
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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/utils/Address.sol

// OpenZeppelin Contracts v4.4.1 (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/utils/Strings.sol

// OpenZeppelin Contracts v4.4.1 (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/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: 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: donkeydao.sol

pragma solidity ^0.8.0;



contract DonkeyDAO is Ownable, ERC721A {

    // constants
    uint256 constant MAX_ELEMENTS = 4444;
    uint256 constant MAX_ELEMENTS_ONE_TIME = 10;
    uint256 constant PUBLIC_PRICE = 0.04 ether;

    // state variable
    string public baseTokenURI = "ipfs://QmSztbLTUBYsxMWkuHzXeHen2DX5rgZjjdCnuVjeBgFKEC/";

    constructor(uint256 maxBatchSize_) ERC721A("DonkeyDAO", "DONKEY", maxBatchSize_) {}

    function mint(uint256 numberOfTokens) external payable {
        require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted');
        require(totalSupply() + numberOfTokens <= MAX_ELEMENTS, 'Purchase would exceed max supply');

        if(msg.sender != owner()) {
            require(numberOfTokens <= MAX_ELEMENTS_ONE_TIME, "Purchase exceeds max allowed");
            require(PUBLIC_PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');
        }

        _safeMint(msg.sender, numberOfTokens);
    }

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

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

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

}

Contract Security Audit

Contract ABI

API
[{"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":"numberOfTokens","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":[],"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"}]

60a0604052600060015560006008556040518060600160405280603681526020016200436060369139600990805190602001906200003f92919062000256565b503480156200004d57600080fd5b50604051620043963803806200439683398181016040528101906200007391906200031d565b6040518060400160405280600981526020017f446f6e6b657944414f00000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f444f4e4b455900000000000000000000000000000000000000000000000000008152508262000100620000f46200018a60201b60201c565b6200019260201b60201c565b6000811162000146576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013d90620003b1565b60405180910390fd5b82600290805190602001906200015e92919062000256565b5081600390805190602001906200017792919062000256565b508060808181525050505050506200046d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026490620003ee565b90600052602060002090601f016020900481019282620002885760008555620002d4565b82601f10620002a357805160ff1916838001178555620002d4565b82800160010185558215620002d4579182015b82811115620002d3578251825591602001919060010190620002b6565b5b509050620002e39190620002e7565b5090565b5b8082111562000302576000816000905550600101620002e8565b5090565b600081519050620003178162000453565b92915050565b6000602082840312156200033057600080fd5b6000620003408482850162000306565b91505092915050565b600062000358602783620003d3565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620003cc8162000349565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200040757607f821691505b602082108114156200041e576200041d62000424565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200045e81620003e4565b81146200046a57600080fd5b50565b608051613ec96200049760003960008181611c9101528181611cba01526123c60152613ec96000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610474578063c87b56dd1461049d578063d547cfb7146104da578063d7224ba014610505578063e985e9c514610530578063f2fde38b1461056d5761014b565b806370a0823114610385578063715018a6146103c25780638da5cb5b146103d957806395d89b4114610404578063a0712d681461042f578063a22cb4651461044b5761014b565b80632f745c59116101085780632f745c59146102725780633ccfd60b146102af57806342842e0e146102b95780634f6ccce7146102e257806355f804b31461031f5780636352211e146103485761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612b96565b610596565b6040516101849190613637565b60405180910390f35b34801561019957600080fd5b506101a26106e0565b6040516101af9190613652565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612c2d565b610772565b6040516101ec91906135d0565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612b5a565b6107f7565b005b34801561022a57600080fd5b50610233610910565b6040516102409190613974565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612a54565b61091a565b005b34801561027e57600080fd5b5061029960048036038101906102949190612b5a565b61092a565b6040516102a69190613974565b60405180910390f35b6102b7610b28565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612a54565b610be4565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612c2d565b610c04565b6040516103169190613974565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612be8565b610c57565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612c2d565b610ce9565b60405161037c91906135d0565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906129ef565b610cff565b6040516103b99190613974565b60405180910390f35b3480156103ce57600080fd5b506103d7610de8565b005b3480156103e557600080fd5b506103ee610e70565b6040516103fb91906135d0565b60405180910390f35b34801561041057600080fd5b50610419610e99565b6040516104269190613652565b60405180910390f35b61044960048036038101906104449190612c2d565b610f2b565b005b34801561045757600080fd5b50610472600480360381019061046d9190612b1e565b6110ae565b005b34801561048057600080fd5b5061049b60048036038101906104969190612aa3565b61122f565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612c2d565b61128b565b6040516104d19190613652565b60405180910390f35b3480156104e657600080fd5b506104ef611332565b6040516104fc9190613652565b60405180910390f35b34801561051157600080fd5b5061051a6113c0565b6040516105279190613974565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612a18565b6113c6565b6040516105649190613637565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f91906129ef565b61145a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d957506106d882611552565b5b9050919050565b6060600280546106ef90613cbe565b80601f016020809104026020016040519081016040528092919081815260200182805461071b90613cbe565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077d826115bc565b6107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390613934565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080282610ce9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90613834565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108926115ca565b73ffffffffffffffffffffffffffffffffffffffff1614806108c157506108c0816108bb6115ca565b6113c6565b5b610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790613734565b60405180910390fd5b61090b8383836115d2565b505050565b6000600154905090565b610925838383611684565b505050565b600061093583610cff565b8210610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90613674565b60405180910390fd5b6000610980610910565b905060008060005b83811015610ae6576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad25786841415610ac3578195505050505050610b22565b8380610ace90613cf0565b9450505b508080610ade90613cf0565b915050610988565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906138b4565b60405180910390fd5b92915050565b610b306115ca565b73ffffffffffffffffffffffffffffffffffffffff16610b4e610e70565b73ffffffffffffffffffffffffffffffffffffffff1614610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906137b4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610be257600080fd5b565b610bff8383836040518060200160405280600081525061122f565b505050565b6000610c0e610910565b8210610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c46906136d4565b60405180910390fd5b819050919050565b610c5f6115ca565b73ffffffffffffffffffffffffffffffffffffffff16610c7d610e70565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca906137b4565b60405180910390fd5b818160099190610ce49291906127f7565b505050565b6000610cf482611c3d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790613774565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610df06115ca565b73ffffffffffffffffffffffffffffffffffffffff16610e0e610e70565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906137b4565b60405180910390fd5b610e6e6000611e40565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ea890613cbe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed490613cbe565b8015610f215780601f10610ef657610100808354040283529160200191610f21565b820191906000526020600020905b815481529060010190602001808311610f0457829003601f168201915b5050505050905090565b61115c610f36610910565b10610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90613914565b60405180910390fd5b61115c81610f82610910565b610f8c9190613a79565b1115610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613754565b60405180910390fd5b610fd5610e70565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110a157600a81111561104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906138d4565b60405180910390fd5b3481668e1bc9bf04000061105f9190613b00565b11156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613714565b60405180910390fd5b5b6110ab3382611f04565b50565b6110b66115ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b906137f4565b60405180910390fd5b80600760006111316115ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111de6115ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112239190613637565b60405180910390a35050565b61123a848484611684565b61124684848484611f22565b611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613854565b60405180910390fd5b50505050565b6060611296826115bc565b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906137d4565b60405180910390fd5b60006112df6120b9565b905060008151116112ff576040518060200160405280600081525061132a565b806113098461214b565b60405160200161131a9291906135ac565b6040516020818303038152906040525b915050919050565b6009805461133f90613cbe565b80601f016020809104026020016040519081016040528092919081815260200182805461136b90613cbe565b80156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114626115ca565b73ffffffffffffffffffffffffffffffffffffffff16611480610e70565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd906137b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613694565b60405180910390fd5b61154f81611e40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061168f82611c3d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166116b66115ca565b73ffffffffffffffffffffffffffffffffffffffff16148061171257506116db6115ca565b73ffffffffffffffffffffffffffffffffffffffff166116fa84610772565b73ffffffffffffffffffffffffffffffffffffffff16145b8061172e575061172d82600001516117286115ca565b6113c6565b5b905080611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613814565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613794565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906136f4565b60405180910390fd5b61185f85858560016122f8565b61186f60008484600001516115d2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166118dd9190613b5a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119819190613a33565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611a879190613a79565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bcd57611afd816115bc565b15611bcc576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3586868660016122fe565b505050505050565b611c4561287d565b611c4e826115bc565b611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906136b4565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611cf15760017f000000000000000000000000000000000000000000000000000000000000000084611ce49190613b8e565b611cee9190613a79565b90505b60008390505b818110611dff576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611deb57809350505050611e3b565b508080611df790613c94565b915050611cf7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906138f4565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f1e828260405180602001604052806000815250612304565b5050565b6000611f438473ffffffffffffffffffffffffffffffffffffffff166127e4565b156120ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6c6115ca565b8786866040518563ffffffff1660e01b8152600401611f8e94939291906135eb565b602060405180830381600087803b158015611fa857600080fd5b505af1925050508015611fd957506040513d601f19601f82011682018060405250810190611fd69190612bbf565b60015b61205c573d8060008114612009576040519150601f19603f3d011682016040523d82523d6000602084013e61200e565b606091505b50600081511415612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90613854565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b1565b600190505b949350505050565b6060600980546120c890613cbe565b80601f01602080910402602001604051908101604052809291908181526020018280546120f490613cbe565b80156121415780601f1061211657610100808354040283529160200191612141565b820191906000526020600020905b81548152906001019060200180831161212457829003601f168201915b5050505050905090565b60606000821415612193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f3565b600082905060005b600082146121c55780806121ae90613cf0565b915050600a826121be9190613acf565b915061219b565b60008167ffffffffffffffff811115612207577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122395781602001600182028036833780820191505090505b5090505b600085146122ec576001826122529190613b8e565b9150600a856122619190613d39565b603061226d9190613a79565b60f81b8183815181106122a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e59190613acf565b945061223d565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613894565b60405180910390fd5b612384816115bc565b156123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb90613874565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90613954565b60405180910390fd5b61243460008583866122f8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125319190613a33565b6fffffffffffffffffffffffffffffffff1681526020018583602001516125589190613a33565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156127c757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127676000888488611f22565b6127a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279d90613854565b60405180910390fd5b81806127b190613cf0565b92505080806127bf90613cf0565b9150506126f6565b50806001819055506127dc60008785886122fe565b505050505050565b600080823b905060008111915050919050565b82805461280390613cbe565b90600052602060002090601f016020900481019282612825576000855561286c565b82601f1061283e57803560ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286b578235825591602001919060010190612850565b5b50905061287991906128b7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128d05760008160009055506001016128b8565b5090565b60006128e76128e2846139c0565b61398f565b9050828152602081018484840111156128ff57600080fd5b61290a848285613c52565b509392505050565b60008135905061292181613e37565b92915050565b60008135905061293681613e4e565b92915050565b60008135905061294b81613e65565b92915050565b60008151905061296081613e65565b92915050565b600082601f83011261297757600080fd5b81356129878482602086016128d4565b91505092915050565b60008083601f8401126129a257600080fd5b8235905067ffffffffffffffff8111156129bb57600080fd5b6020830191508360018202830111156129d357600080fd5b9250929050565b6000813590506129e981613e7c565b92915050565b600060208284031215612a0157600080fd5b6000612a0f84828501612912565b91505092915050565b60008060408385031215612a2b57600080fd5b6000612a3985828601612912565b9250506020612a4a85828601612912565b9150509250929050565b600080600060608486031215612a6957600080fd5b6000612a7786828701612912565b9350506020612a8886828701612912565b9250506040612a99868287016129da565b9150509250925092565b60008060008060808587031215612ab957600080fd5b6000612ac787828801612912565b9450506020612ad887828801612912565b9350506040612ae9878288016129da565b925050606085013567ffffffffffffffff811115612b0657600080fd5b612b1287828801612966565b91505092959194509250565b60008060408385031215612b3157600080fd5b6000612b3f85828601612912565b9250506020612b5085828601612927565b9150509250929050565b60008060408385031215612b6d57600080fd5b6000612b7b85828601612912565b9250506020612b8c858286016129da565b9150509250929050565b600060208284031215612ba857600080fd5b6000612bb68482850161293c565b91505092915050565b600060208284031215612bd157600080fd5b6000612bdf84828501612951565b91505092915050565b60008060208385031215612bfb57600080fd5b600083013567ffffffffffffffff811115612c1557600080fd5b612c2185828601612990565b92509250509250929050565b600060208284031215612c3f57600080fd5b6000612c4d848285016129da565b91505092915050565b612c5f81613bc2565b82525050565b612c6e81613bd4565b82525050565b6000612c7f826139f0565b612c898185613a06565b9350612c99818560208601613c61565b612ca281613e26565b840191505092915050565b6000612cb8826139fb565b612cc28185613a17565b9350612cd2818560208601613c61565b612cdb81613e26565b840191505092915050565b6000612cf1826139fb565b612cfb8185613a28565b9350612d0b818560208601613c61565b80840191505092915050565b6000612d24602283613a17565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d8a602683613a17565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612df0602a83613a17565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e56602383613a17565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ebc602583613a17565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f22601c83613a17565b91507f45544820616d6f756e74206973206e6f742073756666696369656e74000000006000830152602082019050919050565b6000612f62603983613a17565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000612fc8602083613a17565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b6000613008602b83613a17565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b600061306e602683613a17565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130d4602083613a17565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613114602f83613a17565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061317a601a83613a17565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006131ba603283613a17565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613220602283613a17565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613286603383613a17565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006132ec601d83613a17565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061332c602183613a17565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613392602e83613a17565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b60006133f8601c83613a17565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000613438602f83613a17565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061349e601b83613a17565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b60006134de602d83613a17565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613544602283613a17565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6135a681613c48565b82525050565b60006135b88285612ce6565b91506135c48284612ce6565b91508190509392505050565b60006020820190506135e56000830184612c56565b92915050565b60006080820190506136006000830187612c56565b61360d6020830186612c56565b61361a604083018561359d565b818103606083015261362c8184612c74565b905095945050505050565b600060208201905061364c6000830184612c65565b92915050565b6000602082019050818103600083015261366c8184612cad565b905092915050565b6000602082019050818103600083015261368d81612d17565b9050919050565b600060208201905081810360008301526136ad81612d7d565b9050919050565b600060208201905081810360008301526136cd81612de3565b9050919050565b600060208201905081810360008301526136ed81612e49565b9050919050565b6000602082019050818103600083015261370d81612eaf565b9050919050565b6000602082019050818103600083015261372d81612f15565b9050919050565b6000602082019050818103600083015261374d81612f55565b9050919050565b6000602082019050818103600083015261376d81612fbb565b9050919050565b6000602082019050818103600083015261378d81612ffb565b9050919050565b600060208201905081810360008301526137ad81613061565b9050919050565b600060208201905081810360008301526137cd816130c7565b9050919050565b600060208201905081810360008301526137ed81613107565b9050919050565b6000602082019050818103600083015261380d8161316d565b9050919050565b6000602082019050818103600083015261382d816131ad565b9050919050565b6000602082019050818103600083015261384d81613213565b9050919050565b6000602082019050818103600083015261386d81613279565b9050919050565b6000602082019050818103600083015261388d816132df565b9050919050565b600060208201905081810360008301526138ad8161331f565b9050919050565b600060208201905081810360008301526138cd81613385565b9050919050565b600060208201905081810360008301526138ed816133eb565b9050919050565b6000602082019050818103600083015261390d8161342b565b9050919050565b6000602082019050818103600083015261392d81613491565b9050919050565b6000602082019050818103600083015261394d816134d1565b9050919050565b6000602082019050818103600083015261396d81613537565b9050919050565b6000602082019050613989600083018461359d565b92915050565b6000604051905081810181811067ffffffffffffffff821117156139b6576139b5613df7565b5b8060405250919050565b600067ffffffffffffffff8211156139db576139da613df7565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3e82613c0c565b9150613a4983613c0c565b9250826fffffffffffffffffffffffffffffffff03821115613a6e57613a6d613d6a565b5b828201905092915050565b6000613a8482613c48565b9150613a8f83613c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac457613ac3613d6a565b5b828201905092915050565b6000613ada82613c48565b9150613ae583613c48565b925082613af557613af4613d99565b5b828204905092915050565b6000613b0b82613c48565b9150613b1683613c48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4f57613b4e613d6a565b5b828202905092915050565b6000613b6582613c0c565b9150613b7083613c0c565b925082821015613b8357613b82613d6a565b5b828203905092915050565b6000613b9982613c48565b9150613ba483613c48565b925082821015613bb757613bb6613d6a565b5b828203905092915050565b6000613bcd82613c28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c7f578082015181840152602081019050613c64565b83811115613c8e576000848401525b50505050565b6000613c9f82613c48565b91506000821415613cb357613cb2613d6a565b5b600182039050919050565b60006002820490506001821680613cd657607f821691505b60208210811415613cea57613ce9613dc8565b5b50919050565b6000613cfb82613c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d2e57613d2d613d6a565b5b600182019050919050565b6000613d4482613c48565b9150613d4f83613c48565b925082613d5f57613d5e613d99565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e4081613bc2565b8114613e4b57600080fd5b50565b613e5781613bd4565b8114613e6257600080fd5b50565b613e6e81613be0565b8114613e7957600080fd5b50565b613e8581613c48565b8114613e9057600080fd5b5056fea264697066735822122007801a89c671dabd2025ecb749538a8e3f0768f7b6297cee41d5c684a97eef2064736f6c63430008000033697066733a2f2f516d537a74624c5455425973784d576b75487a586548656e3244583572675a6a6a64436e75566a654267464b45432f000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610474578063c87b56dd1461049d578063d547cfb7146104da578063d7224ba014610505578063e985e9c514610530578063f2fde38b1461056d5761014b565b806370a0823114610385578063715018a6146103c25780638da5cb5b146103d957806395d89b4114610404578063a0712d681461042f578063a22cb4651461044b5761014b565b80632f745c59116101085780632f745c59146102725780633ccfd60b146102af57806342842e0e146102b95780634f6ccce7146102e257806355f804b31461031f5780636352211e146103485761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612b96565b610596565b6040516101849190613637565b60405180910390f35b34801561019957600080fd5b506101a26106e0565b6040516101af9190613652565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612c2d565b610772565b6040516101ec91906135d0565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612b5a565b6107f7565b005b34801561022a57600080fd5b50610233610910565b6040516102409190613974565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612a54565b61091a565b005b34801561027e57600080fd5b5061029960048036038101906102949190612b5a565b61092a565b6040516102a69190613974565b60405180910390f35b6102b7610b28565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612a54565b610be4565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612c2d565b610c04565b6040516103169190613974565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612be8565b610c57565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612c2d565b610ce9565b60405161037c91906135d0565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906129ef565b610cff565b6040516103b99190613974565b60405180910390f35b3480156103ce57600080fd5b506103d7610de8565b005b3480156103e557600080fd5b506103ee610e70565b6040516103fb91906135d0565b60405180910390f35b34801561041057600080fd5b50610419610e99565b6040516104269190613652565b60405180910390f35b61044960048036038101906104449190612c2d565b610f2b565b005b34801561045757600080fd5b50610472600480360381019061046d9190612b1e565b6110ae565b005b34801561048057600080fd5b5061049b60048036038101906104969190612aa3565b61122f565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612c2d565b61128b565b6040516104d19190613652565b60405180910390f35b3480156104e657600080fd5b506104ef611332565b6040516104fc9190613652565b60405180910390f35b34801561051157600080fd5b5061051a6113c0565b6040516105279190613974565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612a18565b6113c6565b6040516105649190613637565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f91906129ef565b61145a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d957506106d882611552565b5b9050919050565b6060600280546106ef90613cbe565b80601f016020809104026020016040519081016040528092919081815260200182805461071b90613cbe565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077d826115bc565b6107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390613934565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080282610ce9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90613834565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108926115ca565b73ffffffffffffffffffffffffffffffffffffffff1614806108c157506108c0816108bb6115ca565b6113c6565b5b610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790613734565b60405180910390fd5b61090b8383836115d2565b505050565b6000600154905090565b610925838383611684565b505050565b600061093583610cff565b8210610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90613674565b60405180910390fd5b6000610980610910565b905060008060005b83811015610ae6576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad25786841415610ac3578195505050505050610b22565b8380610ace90613cf0565b9450505b508080610ade90613cf0565b915050610988565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906138b4565b60405180910390fd5b92915050565b610b306115ca565b73ffffffffffffffffffffffffffffffffffffffff16610b4e610e70565b73ffffffffffffffffffffffffffffffffffffffff1614610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906137b4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610be257600080fd5b565b610bff8383836040518060200160405280600081525061122f565b505050565b6000610c0e610910565b8210610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c46906136d4565b60405180910390fd5b819050919050565b610c5f6115ca565b73ffffffffffffffffffffffffffffffffffffffff16610c7d610e70565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca906137b4565b60405180910390fd5b818160099190610ce49291906127f7565b505050565b6000610cf482611c3d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790613774565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610df06115ca565b73ffffffffffffffffffffffffffffffffffffffff16610e0e610e70565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906137b4565b60405180910390fd5b610e6e6000611e40565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ea890613cbe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed490613cbe565b8015610f215780601f10610ef657610100808354040283529160200191610f21565b820191906000526020600020905b815481529060010190602001808311610f0457829003601f168201915b5050505050905090565b61115c610f36610910565b10610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90613914565b60405180910390fd5b61115c81610f82610910565b610f8c9190613a79565b1115610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613754565b60405180910390fd5b610fd5610e70565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110a157600a81111561104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906138d4565b60405180910390fd5b3481668e1bc9bf04000061105f9190613b00565b11156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613714565b60405180910390fd5b5b6110ab3382611f04565b50565b6110b66115ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b906137f4565b60405180910390fd5b80600760006111316115ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111de6115ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112239190613637565b60405180910390a35050565b61123a848484611684565b61124684848484611f22565b611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613854565b60405180910390fd5b50505050565b6060611296826115bc565b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc906137d4565b60405180910390fd5b60006112df6120b9565b905060008151116112ff576040518060200160405280600081525061132a565b806113098461214b565b60405160200161131a9291906135ac565b6040516020818303038152906040525b915050919050565b6009805461133f90613cbe565b80601f016020809104026020016040519081016040528092919081815260200182805461136b90613cbe565b80156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114626115ca565b73ffffffffffffffffffffffffffffffffffffffff16611480610e70565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd906137b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613694565b60405180910390fd5b61154f81611e40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061168f82611c3d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166116b66115ca565b73ffffffffffffffffffffffffffffffffffffffff16148061171257506116db6115ca565b73ffffffffffffffffffffffffffffffffffffffff166116fa84610772565b73ffffffffffffffffffffffffffffffffffffffff16145b8061172e575061172d82600001516117286115ca565b6113c6565b5b905080611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613814565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613794565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906136f4565b60405180910390fd5b61185f85858560016122f8565b61186f60008484600001516115d2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166118dd9190613b5a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119819190613a33565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611a879190613a79565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bcd57611afd816115bc565b15611bcc576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3586868660016122fe565b505050505050565b611c4561287d565b611c4e826115bc565b611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906136b4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310611cf15760017f000000000000000000000000000000000000000000000000000000000000000a84611ce49190613b8e565b611cee9190613a79565b90505b60008390505b818110611dff576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611deb57809350505050611e3b565b508080611df790613c94565b915050611cf7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906138f4565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f1e828260405180602001604052806000815250612304565b5050565b6000611f438473ffffffffffffffffffffffffffffffffffffffff166127e4565b156120ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6c6115ca565b8786866040518563ffffffff1660e01b8152600401611f8e94939291906135eb565b602060405180830381600087803b158015611fa857600080fd5b505af1925050508015611fd957506040513d601f19601f82011682018060405250810190611fd69190612bbf565b60015b61205c573d8060008114612009576040519150601f19603f3d011682016040523d82523d6000602084013e61200e565b606091505b50600081511415612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90613854565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b1565b600190505b949350505050565b6060600980546120c890613cbe565b80601f01602080910402602001604051908101604052809291908181526020018280546120f490613cbe565b80156121415780601f1061211657610100808354040283529160200191612141565b820191906000526020600020905b81548152906001019060200180831161212457829003601f168201915b5050505050905090565b60606000821415612193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f3565b600082905060005b600082146121c55780806121ae90613cf0565b915050600a826121be9190613acf565b915061219b565b60008167ffffffffffffffff811115612207577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122395781602001600182028036833780820191505090505b5090505b600085146122ec576001826122529190613b8e565b9150600a856122619190613d39565b603061226d9190613a79565b60f81b8183815181106122a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e59190613acf565b945061223d565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613894565b60405180910390fd5b612384816115bc565b156123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb90613874565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90613954565b60405180910390fd5b61243460008583866122f8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125319190613a33565b6fffffffffffffffffffffffffffffffff1681526020018583602001516125589190613a33565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156127c757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127676000888488611f22565b6127a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279d90613854565b60405180910390fd5b81806127b190613cf0565b92505080806127bf90613cf0565b9150506126f6565b50806001819055506127dc60008785886122fe565b505050505050565b600080823b905060008111915050919050565b82805461280390613cbe565b90600052602060002090601f016020900481019282612825576000855561286c565b82601f1061283e57803560ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286b578235825591602001919060010190612850565b5b50905061287991906128b7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128d05760008160009055506001016128b8565b5090565b60006128e76128e2846139c0565b61398f565b9050828152602081018484840111156128ff57600080fd5b61290a848285613c52565b509392505050565b60008135905061292181613e37565b92915050565b60008135905061293681613e4e565b92915050565b60008135905061294b81613e65565b92915050565b60008151905061296081613e65565b92915050565b600082601f83011261297757600080fd5b81356129878482602086016128d4565b91505092915050565b60008083601f8401126129a257600080fd5b8235905067ffffffffffffffff8111156129bb57600080fd5b6020830191508360018202830111156129d357600080fd5b9250929050565b6000813590506129e981613e7c565b92915050565b600060208284031215612a0157600080fd5b6000612a0f84828501612912565b91505092915050565b60008060408385031215612a2b57600080fd5b6000612a3985828601612912565b9250506020612a4a85828601612912565b9150509250929050565b600080600060608486031215612a6957600080fd5b6000612a7786828701612912565b9350506020612a8886828701612912565b9250506040612a99868287016129da565b9150509250925092565b60008060008060808587031215612ab957600080fd5b6000612ac787828801612912565b9450506020612ad887828801612912565b9350506040612ae9878288016129da565b925050606085013567ffffffffffffffff811115612b0657600080fd5b612b1287828801612966565b91505092959194509250565b60008060408385031215612b3157600080fd5b6000612b3f85828601612912565b9250506020612b5085828601612927565b9150509250929050565b60008060408385031215612b6d57600080fd5b6000612b7b85828601612912565b9250506020612b8c858286016129da565b9150509250929050565b600060208284031215612ba857600080fd5b6000612bb68482850161293c565b91505092915050565b600060208284031215612bd157600080fd5b6000612bdf84828501612951565b91505092915050565b60008060208385031215612bfb57600080fd5b600083013567ffffffffffffffff811115612c1557600080fd5b612c2185828601612990565b92509250509250929050565b600060208284031215612c3f57600080fd5b6000612c4d848285016129da565b91505092915050565b612c5f81613bc2565b82525050565b612c6e81613bd4565b82525050565b6000612c7f826139f0565b612c898185613a06565b9350612c99818560208601613c61565b612ca281613e26565b840191505092915050565b6000612cb8826139fb565b612cc28185613a17565b9350612cd2818560208601613c61565b612cdb81613e26565b840191505092915050565b6000612cf1826139fb565b612cfb8185613a28565b9350612d0b818560208601613c61565b80840191505092915050565b6000612d24602283613a17565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d8a602683613a17565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612df0602a83613a17565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e56602383613a17565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ebc602583613a17565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f22601c83613a17565b91507f45544820616d6f756e74206973206e6f742073756666696369656e74000000006000830152602082019050919050565b6000612f62603983613a17565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000612fc8602083613a17565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b6000613008602b83613a17565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b600061306e602683613a17565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130d4602083613a17565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613114602f83613a17565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061317a601a83613a17565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006131ba603283613a17565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613220602283613a17565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613286603383613a17565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006132ec601d83613a17565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061332c602183613a17565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613392602e83613a17565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b60006133f8601c83613a17565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000613438602f83613a17565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061349e601b83613a17565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b60006134de602d83613a17565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613544602283613a17565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6135a681613c48565b82525050565b60006135b88285612ce6565b91506135c48284612ce6565b91508190509392505050565b60006020820190506135e56000830184612c56565b92915050565b60006080820190506136006000830187612c56565b61360d6020830186612c56565b61361a604083018561359d565b818103606083015261362c8184612c74565b905095945050505050565b600060208201905061364c6000830184612c65565b92915050565b6000602082019050818103600083015261366c8184612cad565b905092915050565b6000602082019050818103600083015261368d81612d17565b9050919050565b600060208201905081810360008301526136ad81612d7d565b9050919050565b600060208201905081810360008301526136cd81612de3565b9050919050565b600060208201905081810360008301526136ed81612e49565b9050919050565b6000602082019050818103600083015261370d81612eaf565b9050919050565b6000602082019050818103600083015261372d81612f15565b9050919050565b6000602082019050818103600083015261374d81612f55565b9050919050565b6000602082019050818103600083015261376d81612fbb565b9050919050565b6000602082019050818103600083015261378d81612ffb565b9050919050565b600060208201905081810360008301526137ad81613061565b9050919050565b600060208201905081810360008301526137cd816130c7565b9050919050565b600060208201905081810360008301526137ed81613107565b9050919050565b6000602082019050818103600083015261380d8161316d565b9050919050565b6000602082019050818103600083015261382d816131ad565b9050919050565b6000602082019050818103600083015261384d81613213565b9050919050565b6000602082019050818103600083015261386d81613279565b9050919050565b6000602082019050818103600083015261388d816132df565b9050919050565b600060208201905081810360008301526138ad8161331f565b9050919050565b600060208201905081810360008301526138cd81613385565b9050919050565b600060208201905081810360008301526138ed816133eb565b9050919050565b6000602082019050818103600083015261390d8161342b565b9050919050565b6000602082019050818103600083015261392d81613491565b9050919050565b6000602082019050818103600083015261394d816134d1565b9050919050565b6000602082019050818103600083015261396d81613537565b9050919050565b6000602082019050613989600083018461359d565b92915050565b6000604051905081810181811067ffffffffffffffff821117156139b6576139b5613df7565b5b8060405250919050565b600067ffffffffffffffff8211156139db576139da613df7565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a3e82613c0c565b9150613a4983613c0c565b9250826fffffffffffffffffffffffffffffffff03821115613a6e57613a6d613d6a565b5b828201905092915050565b6000613a8482613c48565b9150613a8f83613c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac457613ac3613d6a565b5b828201905092915050565b6000613ada82613c48565b9150613ae583613c48565b925082613af557613af4613d99565b5b828204905092915050565b6000613b0b82613c48565b9150613b1683613c48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4f57613b4e613d6a565b5b828202905092915050565b6000613b6582613c0c565b9150613b7083613c0c565b925082821015613b8357613b82613d6a565b5b828203905092915050565b6000613b9982613c48565b9150613ba483613c48565b925082821015613bb757613bb6613d6a565b5b828203905092915050565b6000613bcd82613c28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c7f578082015181840152602081019050613c64565b83811115613c8e576000848401525b50505050565b6000613c9f82613c48565b91506000821415613cb357613cb2613d6a565b5b600182039050919050565b60006002820490506001821680613cd657607f821691505b60208210811415613cea57613ce9613dc8565b5b50919050565b6000613cfb82613c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d2e57613d2d613d6a565b5b600182019050919050565b6000613d4482613c48565b9150613d4f83613c48565b925082613d5f57613d5e613d99565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e4081613bc2565b8114613e4b57600080fd5b50565b613e5781613bd4565b8114613e6257600080fd5b50565b613e6e81613be0565b8114613e7957600080fd5b50565b613e8581613c48565b8114613e9057600080fd5b5056fea264697066735822122007801a89c671dabd2025ecb749538a8e3f0768f7b6297cee41d5c684a97eef2064736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000000a

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

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


Deployed Bytecode Sourcemap

39101:1320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26828:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28554:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30079:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29642:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25392:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30929:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26020:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40064:120;;;:::i;:::-;;31134:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25555:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40313:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28377:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27254:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2635:103;;;;;;;;;;;;;:::i;:::-;;1984:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28709:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39519:537;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30347:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31354:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28870:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39334:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35685:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30684:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2893:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26828:370;26955:4;27000:25;26985:40;;;:11;:40;;;;:99;;;;27051:33;27036:48;;;:11;:48;;;;26985:99;:160;;;;27110:35;27095:50;;;:11;:50;;;;26985:160;:207;;;;27156:36;27180:11;27156:23;:36::i;:::-;26985:207;26971:221;;26828:370;;;:::o;28554:94::-;28608:13;28637:5;28630:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28554:94;:::o;30079:204::-;30147:7;30171:16;30179:7;30171;:16::i;:::-;30163:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30253:15;:24;30269:7;30253:24;;;;;;;;;;;;;;;;;;;;;30246:31;;30079:204;;;:::o;29642:379::-;29711:13;29727:24;29743:7;29727:15;:24::i;:::-;29711:40;;29772:5;29766:11;;:2;:11;;;;29758:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29857:5;29841:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29866:37;29883:5;29890:12;:10;:12::i;:::-;29866:16;:37::i;:::-;29841:62;29825:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;29987:28;29996:2;30000:7;30009:5;29987:8;:28::i;:::-;29642:379;;;:::o;25392:94::-;25445:7;25468:12;;25461:19;;25392:94;:::o;30929:142::-;31037:28;31047:4;31053:2;31057:7;31037:9;:28::i;:::-;30929:142;;;:::o;26020:744::-;26129:7;26164:16;26174:5;26164:9;:16::i;:::-;26156:5;:24;26148:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26226:22;26251:13;:11;:13::i;:::-;26226:38;;26271:19;26301:25;26351:9;26346:350;26370:14;26366:1;:18;26346:350;;;26400:31;26434:11;:14;26446:1;26434:14;;;;;;;;;;;26400:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26487:1;26461:28;;:9;:14;;;:28;;;26457:89;;26522:9;:14;;;26502:34;;26457:89;26579:5;26558:26;;:17;:26;;;26554:135;;;26616:5;26601:11;:20;26597:59;;;26643:1;26636:8;;;;;;;;;26597:59;26666:13;;;;;:::i;:::-;;;;26554:135;26346:350;26386:3;;;;;:::i;:::-;;;;26346:350;;;;26702:56;;;;;;;;;;:::i;:::-;;;;;;;;26020:744;;;;;:::o;40064:120::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40136:10:::1;40128:24;;:47;40153:21;40128:47;;;;;;;;;;;;;;;;;;;;;;;40120:56;;;::::0;::::1;;40064:120::o:0;31134:157::-;31246:39;31263:4;31269:2;31273:7;31246:39;;;;;;;;;;;;:16;:39::i;:::-;31134:157;;;:::o;25555:177::-;25622:7;25654:13;:11;:13::i;:::-;25646:5;:21;25638:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25721:5;25714:12;;25555:177;;;:::o;40313:103::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40401:7:::1;;40386:12;:22;;;;;;;:::i;:::-;;40313:103:::0;;:::o;28377:118::-;28441:7;28464:20;28476:7;28464:11;:20::i;:::-;:25;;;28457:32;;28377:118;;;:::o;27254:211::-;27318:7;27359:1;27342:19;;:5;:19;;;;27334:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27431:12;:19;27444:5;27431:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27423:36;;27416:43;;27254:211;;;:::o;2635:103::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2700:30:::1;2727:1;2700:18;:30::i;:::-;2635:103::o:0;1984:87::-;2030:7;2057:6;;;;;;;;;;;2050:13;;1984:87;:::o;28709:98::-;28765:13;28794:7;28787:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28709:98;:::o;39519:537::-;39199:4;39593:13;:11;:13::i;:::-;:28;39585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39199:4;39688:14;39672:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;;39664:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;39785:7;:5;:7::i;:::-;39771:21;;:10;:21;;;39768:231;;39251:2;39817:14;:39;;39809:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39945:9;39927:14;39292:10;39912:29;;;;:::i;:::-;:42;;39904:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;39768:231;40011:37;40021:10;40033:14;40011:9;:37::i;:::-;39519:537;:::o;30347:274::-;30450:12;:10;:12::i;:::-;30438:24;;:8;:24;;;;30430:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30547:8;30502:18;:32;30521:12;:10;:12::i;:::-;30502:32;;;;;;;;;;;;;;;:42;30535:8;30502:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30596:8;30567:48;;30582:12;:10;:12::i;:::-;30567:48;;;30606:8;30567:48;;;;;;:::i;:::-;;;;;;;;30347:274;;:::o;31354:311::-;31491:28;31501:4;31507:2;31511:7;31491:9;:28::i;:::-;31542:48;31565:4;31571:2;31575:7;31584:5;31542:22;:48::i;:::-;31526:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;31354:311;;;;:::o;28870:394::-;28968:13;29009:16;29017:7;29009;:16::i;:::-;28993:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29099:21;29123:10;:8;:10::i;:::-;29099:34;;29178:1;29160:7;29154:21;:25;:104;;;;;;;;;;;;;;;;;29215:7;29224:18;:7;:16;:18::i;:::-;29198:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29154:104;29140:118;;;28870:394;;;:::o;39334:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35685:43::-;;;;:::o;30684:186::-;30806:4;30829:18;:25;30848:5;30829:25;;;;;;;;;;;;;;;:35;30855:8;30829:35;;;;;;;;;;;;;;;;;;;;;;;;;30822:42;;30684:186;;;;:::o;2893:201::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3002:1:::1;2982:22;;:8;:22;;;;2974:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3058:28;3077:8;3058:18;:28::i;:::-;2893:201:::0;:::o;23272:157::-;23357:4;23396:25;23381:40;;;:11;:40;;;;23374:47;;23272:157;;;:::o;31904:105::-;31961:4;31991:12;;31981:7;:22;31974:29;;31904:105;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;35507:172::-;35631:2;35604:15;:24;35620:7;35604:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35665:7;35661:2;35645:28;;35654:5;35645:28;;;;;;;;;;;;35507:172;;;:::o;33872:1529::-;33969:35;34007:20;34019:7;34007:11;:20::i;:::-;33969:58;;34036:22;34078:13;:18;;;34062:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;34131:12;:10;:12::i;:::-;34107:36;;:20;34119:7;34107:11;:20::i;:::-;:36;;;34062:81;:142;;;;34154:50;34171:13;:18;;;34191:12;:10;:12::i;:::-;34154:16;:50::i;:::-;34062:142;34036:169;;34230:17;34214:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;34362:4;34340:26;;:13;:18;;;:26;;;34324:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;34451:1;34437:16;;:2;:16;;;;34429:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34504:43;34526:4;34532:2;34536:7;34545:1;34504:21;:43::i;:::-;34604:49;34621:1;34625:7;34634:13;:18;;;34604:8;:49::i;:::-;34692:1;34662:12;:18;34675:4;34662:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34728:1;34700:12;:16;34713:2;34700:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34759:43;;;;;;;;34774:2;34759:43;;;;;;34785:15;34759:43;;;;;34736:11;:20;34748:7;34736:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35030:19;35062:1;35052:7;:11;;;;:::i;:::-;35030:33;;35115:1;35074:43;;:11;:24;35086:11;35074:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35070:236;;;35132:20;35140:11;35132:7;:20::i;:::-;35128:171;;;35192:97;;;;;;;;35219:13;:18;;;35192:97;;;;;;35250:13;:28;;;35192:97;;;;;35165:11;:24;35177:11;35165:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35128:171;35070:236;35338:7;35334:2;35319:27;;35328:4;35319:27;;;;;;;;;;;;35353:42;35374:4;35380:2;35384:7;35393:1;35353:20;:42::i;:::-;33872:1529;;;;;;:::o;27717:606::-;27793:21;;:::i;:::-;27834:16;27842:7;27834;:16::i;:::-;27826:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27906:26;27954:12;27943:7;:23;27939:93;;28023:1;28008:12;27998:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;27977:47;;27939:93;28045:12;28060:7;28045:22;;28040:212;28077:18;28069:4;:26;28040:212;;28114:31;28148:11;:17;28160:4;28148:17;;;;;;;;;;;28114:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28204:1;28178:28;;:9;:14;;;:28;;;28174:71;;28226:9;28219:16;;;;;;;28174:71;28040:212;28097:6;;;;;:::i;:::-;;;;28040:212;;;;28260:57;;;;;;;;;;:::i;:::-;;;;;;;;27717:606;;;;:::o;3254:191::-;3328:16;3347:6;;;;;;;;;;;3328:25;;3373:8;3364:6;;:17;;;;;;;;;;;;;;;;;;3428:8;3397:40;;3418:8;3397:40;;;;;;;;;;;;3254:191;;:::o;32015:98::-;32080:27;32090:2;32094:8;32080:27;;;;;;;;;;;;:9;:27::i;:::-;32015:98;;:::o;37218:690::-;37355:4;37372:15;:2;:13;;;:15::i;:::-;37368:535;;;37427:2;37411:36;;;37448:12;:10;:12::i;:::-;37462:4;37468:7;37477:5;37411:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37398:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37659:1;37642:6;:13;:18;37638:215;;;37675:61;;;;;;;;;;:::i;:::-;;;;;;;;37638:215;37821:6;37815:13;37806:6;37802:2;37798:15;37791:38;37398:464;37543:45;;;37533:55;;;:6;:55;;;;37526:62;;;;;37368:535;37891:4;37884:11;;37218:690;;;;;;;:::o;40192:113::-;40252:13;40285:12;40278:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40192:113;:::o;20650:723::-;20706:13;20936:1;20927:5;:10;20923:53;;;20954:10;;;;;;;;;;;;;;;;;;;;;20923:53;20986:12;21001:5;20986:20;;21017:14;21042:78;21057:1;21049:4;:9;21042:78;;21075:8;;;;;:::i;:::-;;;;21106:2;21098:10;;;;;:::i;:::-;;;21042:78;;;21130:19;21162:6;21152:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21130:39;;21180:154;21196:1;21187:5;:10;21180:154;;21224:1;21214:11;;;;;:::i;:::-;;;21291:2;21283:5;:10;;;;:::i;:::-;21270:2;:24;;;;:::i;:::-;21257:39;;21240:6;21247;21240:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;21320:2;21311:11;;;;;:::i;:::-;;;21180:154;;;21358:6;21344:21;;;;;20650:723;;;;:::o;38370:141::-;;;;;:::o;38897:140::-;;;;;:::o;32368:1272::-;32473:20;32496:12;;32473:35;;32537:1;32523:16;;:2;:16;;;;32515:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32714:21;32722:12;32714:7;:21::i;:::-;32713:22;32705:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32796:12;32784:8;:24;;32776:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32856:61;32886:1;32890:2;32894:12;32908:8;32856:21;:61::i;:::-;32926:30;32959:12;:16;32972:2;32959:16;;;;;;;;;;;;;;;32926:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33001:119;;;;;;;;33051:8;33021:11;:19;;;:39;;;;:::i;:::-;33001:119;;;;;;33104:8;33069:11;:24;;;:44;;;;:::i;:::-;33001:119;;;;;32982:12;:16;32995:2;32982:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33155:43;;;;;;;;33170:2;33155:43;;;;;;33181:15;33155:43;;;;;33127:11;:25;33139:12;33127:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33207:20;33230:12;33207:35;;33256:9;33251:281;33275:8;33271:1;:12;33251:281;;;33329:12;33325:2;33304:38;;33321:1;33304:38;;;;;;;;;;;;33369:59;33400:1;33404:2;33408:12;33422:5;33369:22;:59::i;:::-;33351:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;33510:14;;;;;:::i;:::-;;;;33285:3;;;;;:::i;:::-;;;;33251:281;;;;33555:12;33540;:27;;;;33574:60;33603:1;33607:2;33611:12;33625:8;33574:20;:60::i;:::-;32368:1272;;;;;;:::o;12956:387::-;13016:4;13224:12;13291:7;13279:20;13271:28;;13334:1;13327:4;:8;13320:15;;;12956:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1233:352::-;;;1351:3;1344:4;1336:6;1332:17;1328:27;1318:2;;1369:1;1366;1359:12;1318:2;1405:6;1392:20;1382:30;;1435:18;1427:6;1424:30;1421:2;;;1467:1;1464;1457:12;1421:2;1504:4;1496:6;1492:17;1480:29;;1558:3;1550:4;1542:6;1538:17;1528:8;1524:32;1521:41;1518:2;;;1575:1;1572;1565:12;1518:2;1308:277;;;;;:::o;1591:139::-;;1675:6;1662:20;1653:29;;1691:33;1718:5;1691:33;:::i;:::-;1643:87;;;;:::o;1736:262::-;;1844:2;1832:9;1823:7;1819:23;1815:32;1812:2;;;1860:1;1857;1850:12;1812:2;1903:1;1928:53;1973:7;1964:6;1953:9;1949:22;1928:53;:::i;:::-;1918:63;;1874:117;1802:196;;;;:::o;2004:407::-;;;2129:2;2117:9;2108:7;2104:23;2100:32;2097:2;;;2145:1;2142;2135:12;2097:2;2188:1;2213:53;2258:7;2249:6;2238:9;2234:22;2213:53;:::i;:::-;2203:63;;2159:117;2315:2;2341:53;2386:7;2377:6;2366:9;2362:22;2341:53;:::i;:::-;2331:63;;2286:118;2087:324;;;;;:::o;2417:552::-;;;;2559:2;2547:9;2538:7;2534:23;2530:32;2527:2;;;2575:1;2572;2565:12;2527:2;2618:1;2643:53;2688:7;2679:6;2668:9;2664:22;2643:53;:::i;:::-;2633:63;;2589:117;2745:2;2771:53;2816:7;2807:6;2796:9;2792:22;2771:53;:::i;:::-;2761:63;;2716:118;2873:2;2899:53;2944:7;2935:6;2924:9;2920:22;2899:53;:::i;:::-;2889:63;;2844:118;2517:452;;;;;:::o;2975:809::-;;;;;3143:3;3131:9;3122:7;3118:23;3114:33;3111:2;;;3160:1;3157;3150:12;3111:2;3203:1;3228:53;3273:7;3264:6;3253:9;3249:22;3228:53;:::i;:::-;3218:63;;3174:117;3330:2;3356:53;3401:7;3392:6;3381:9;3377:22;3356:53;:::i;:::-;3346:63;;3301:118;3458:2;3484:53;3529:7;3520:6;3509:9;3505:22;3484:53;:::i;:::-;3474:63;;3429:118;3614:2;3603:9;3599:18;3586:32;3645:18;3637:6;3634:30;3631:2;;;3677:1;3674;3667:12;3631:2;3705:62;3759:7;3750:6;3739:9;3735:22;3705:62;:::i;:::-;3695:72;;3557:220;3101:683;;;;;;;:::o;3790:401::-;;;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;3971:1;3996:53;4041:7;4032:6;4021:9;4017:22;3996:53;:::i;:::-;3986:63;;3942:117;4098:2;4124:50;4166:7;4157:6;4146:9;4142:22;4124:50;:::i;:::-;4114:60;;4069:115;3870:321;;;;;:::o;4197:407::-;;;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4338:1;4335;4328:12;4290:2;4381:1;4406:53;4451:7;4442:6;4431:9;4427:22;4406:53;:::i;:::-;4396:63;;4352:117;4508:2;4534:53;4579:7;4570:6;4559:9;4555:22;4534:53;:::i;:::-;4524:63;;4479:118;4280:324;;;;;:::o;4610:260::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4733:1;4730;4723:12;4685:2;4776:1;4801:52;4845:7;4836:6;4825:9;4821:22;4801:52;:::i;:::-;4791:62;;4747:116;4675:195;;;;:::o;4876:282::-;;4994:2;4982:9;4973:7;4969:23;4965:32;4962:2;;;5010:1;5007;5000:12;4962:2;5053:1;5078:63;5133:7;5124:6;5113:9;5109:22;5078:63;:::i;:::-;5068:73;;5024:127;4952:206;;;;:::o;5164:395::-;;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5308:1;5305;5298:12;5260:2;5379:1;5368:9;5364:17;5351:31;5409:18;5401:6;5398:30;5395:2;;;5441:1;5438;5431:12;5395:2;5477:65;5534:7;5525:6;5514:9;5510:22;5477:65;:::i;:::-;5459:83;;;;5322:230;5250:309;;;;;:::o;5565:262::-;;5673:2;5661:9;5652:7;5648:23;5644:32;5641:2;;;5689:1;5686;5679:12;5641:2;5732:1;5757:53;5802:7;5793:6;5782:9;5778:22;5757:53;:::i;:::-;5747:63;;5703:117;5631:196;;;;:::o;5833:118::-;5920:24;5938:5;5920:24;:::i;:::-;5915:3;5908:37;5898:53;;:::o;5957:109::-;6038:21;6053:5;6038:21;:::i;:::-;6033:3;6026:34;6016:50;;:::o;6072:360::-;;6186:38;6218:5;6186:38;:::i;:::-;6240:70;6303:6;6298:3;6240:70;:::i;:::-;6233:77;;6319:52;6364:6;6359:3;6352:4;6345:5;6341:16;6319:52;:::i;:::-;6396:29;6418:6;6396:29;:::i;:::-;6391:3;6387:39;6380:46;;6162:270;;;;;:::o;6438:364::-;;6554:39;6587:5;6554:39;:::i;:::-;6609:71;6673:6;6668:3;6609:71;:::i;:::-;6602:78;;6689:52;6734:6;6729:3;6722:4;6715:5;6711:16;6689:52;:::i;:::-;6766:29;6788:6;6766:29;:::i;:::-;6761:3;6757:39;6750:46;;6530:272;;;;;:::o;6808:377::-;;6942:39;6975:5;6942:39;:::i;:::-;6997:89;7079:6;7074:3;6997:89;:::i;:::-;6990:96;;7095:52;7140:6;7135:3;7128:4;7121:5;7117:16;7095:52;:::i;:::-;7172:6;7167:3;7163:16;7156:23;;6918:267;;;;;:::o;7191:366::-;;7354:67;7418:2;7413:3;7354:67;:::i;:::-;7347:74;;7451:34;7447:1;7442:3;7438:11;7431:55;7517:4;7512:2;7507:3;7503:12;7496:26;7548:2;7543:3;7539:12;7532:19;;7337:220;;;:::o;7563:370::-;;7726:67;7790:2;7785:3;7726:67;:::i;:::-;7719:74;;7823:34;7819:1;7814:3;7810:11;7803:55;7889:8;7884:2;7879:3;7875:12;7868:30;7924:2;7919:3;7915:12;7908:19;;7709:224;;;:::o;7939:374::-;;8102:67;8166:2;8161:3;8102:67;:::i;:::-;8095:74;;8199:34;8195:1;8190:3;8186:11;8179:55;8265:12;8260:2;8255:3;8251:12;8244:34;8304:2;8299:3;8295:12;8288:19;;8085:228;;;:::o;8319:367::-;;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8579:34;8575:1;8570:3;8566:11;8559:55;8645:5;8640:2;8635:3;8631:12;8624:27;8677:2;8672:3;8668:12;8661:19;;8465:221;;;:::o;8692:369::-;;8855:67;8919:2;8914:3;8855:67;:::i;:::-;8848:74;;8952:34;8948:1;8943:3;8939:11;8932:55;9018:7;9013:2;9008:3;9004:12;8997:29;9052:2;9047:3;9043:12;9036:19;;8838:223;;;:::o;9067:326::-;;9230:67;9294:2;9289:3;9230:67;:::i;:::-;9223:74;;9327:30;9323:1;9318:3;9314:11;9307:51;9384:2;9379:3;9375:12;9368:19;;9213:180;;;:::o;9399:389::-;;9562:67;9626:2;9621:3;9562:67;:::i;:::-;9555:74;;9659:34;9655:1;9650:3;9646:11;9639:55;9725:27;9720:2;9715:3;9711:12;9704:49;9779:2;9774:3;9770:12;9763:19;;9545:243;;;:::o;9794:330::-;;9957:67;10021:2;10016:3;9957:67;:::i;:::-;9950:74;;10054:34;10050:1;10045:3;10041:11;10034:55;10115:2;10110:3;10106:12;10099:19;;9940:184;;;:::o;10130:375::-;;10293:67;10357:2;10352:3;10293:67;:::i;:::-;10286:74;;10390:34;10386:1;10381:3;10377:11;10370:55;10456:13;10451:2;10446:3;10442:12;10435:35;10496:2;10491:3;10487:12;10480:19;;10276:229;;;:::o;10511:370::-;;10674:67;10738:2;10733:3;10674:67;:::i;:::-;10667:74;;10771:34;10767:1;10762:3;10758:11;10751:55;10837:8;10832:2;10827:3;10823:12;10816:30;10872:2;10867:3;10863:12;10856:19;;10657:224;;;:::o;10887:330::-;;11050:67;11114:2;11109:3;11050:67;:::i;:::-;11043:74;;11147:34;11143:1;11138:3;11134:11;11127:55;11208:2;11203:3;11199:12;11192:19;;11033:184;;;:::o;11223:379::-;;11386:67;11450:2;11445:3;11386:67;:::i;:::-;11379:74;;11483:34;11479:1;11474:3;11470:11;11463:55;11549:17;11544:2;11539:3;11535:12;11528:39;11593:2;11588:3;11584:12;11577:19;;11369:233;;;:::o;11608:324::-;;11771:67;11835:2;11830:3;11771:67;:::i;:::-;11764:74;;11868:28;11864:1;11859:3;11855:11;11848:49;11923:2;11918:3;11914:12;11907:19;;11754:178;;;:::o;11938:382::-;;12101:67;12165:2;12160:3;12101:67;:::i;:::-;12094:74;;12198:34;12194:1;12189:3;12185:11;12178:55;12264:20;12259:2;12254:3;12250:12;12243:42;12311:2;12306:3;12302:12;12295:19;;12084:236;;;:::o;12326:366::-;;12489:67;12553:2;12548:3;12489:67;:::i;:::-;12482:74;;12586:34;12582:1;12577:3;12573:11;12566:55;12652:4;12647:2;12642:3;12638:12;12631:26;12683:2;12678:3;12674:12;12667:19;;12472:220;;;:::o;12698:383::-;;12861:67;12925:2;12920:3;12861:67;:::i;:::-;12854:74;;12958:34;12954:1;12949:3;12945:11;12938:55;13024:21;13019:2;13014:3;13010:12;13003:43;13072:2;13067:3;13063:12;13056:19;;12844:237;;;:::o;13087:327::-;;13250:67;13314:2;13309:3;13250:67;:::i;:::-;13243:74;;13347:31;13343:1;13338:3;13334:11;13327:52;13405:2;13400:3;13396:12;13389:19;;13233:181;;;:::o;13420:365::-;;13583:67;13647:2;13642:3;13583:67;:::i;:::-;13576:74;;13680:34;13676:1;13671:3;13667:11;13660:55;13746:3;13741:2;13736:3;13732:12;13725:25;13776:2;13771:3;13767:12;13760:19;;13566:219;;;:::o;13791:378::-;;13954:67;14018:2;14013:3;13954:67;:::i;:::-;13947:74;;14051:34;14047:1;14042:3;14038:11;14031:55;14117:16;14112:2;14107:3;14103:12;14096:38;14160:2;14155:3;14151:12;14144:19;;13937:232;;;:::o;14175:326::-;;14338:67;14402:2;14397:3;14338:67;:::i;:::-;14331:74;;14435:30;14431:1;14426:3;14422:11;14415:51;14492:2;14487:3;14483:12;14476:19;;14321:180;;;:::o;14507:379::-;;14670:67;14734:2;14729:3;14670:67;:::i;:::-;14663:74;;14767:34;14763:1;14758:3;14754:11;14747:55;14833:17;14828:2;14823:3;14819:12;14812:39;14877:2;14872:3;14868:12;14861:19;;14653:233;;;:::o;14892:325::-;;15055:67;15119:2;15114:3;15055:67;:::i;:::-;15048:74;;15152:29;15148:1;15143:3;15139:11;15132:50;15208:2;15203:3;15199:12;15192:19;;15038:179;;;:::o;15223:377::-;;15386:67;15450:2;15445:3;15386:67;:::i;:::-;15379:74;;15483:34;15479:1;15474:3;15470:11;15463:55;15549:15;15544:2;15539:3;15535:12;15528:37;15591:2;15586:3;15582:12;15575:19;;15369:231;;;:::o;15606:366::-;;15769:67;15833:2;15828:3;15769:67;:::i;:::-;15762:74;;15866:34;15862:1;15857:3;15853:11;15846:55;15932:4;15927:2;15922:3;15918:12;15911:26;15963:2;15958:3;15954:12;15947:19;;15752:220;;;:::o;15978:118::-;16065:24;16083:5;16065:24;:::i;:::-;16060:3;16053:37;16043:53;;:::o;16102:435::-;;16304:95;16395:3;16386:6;16304:95;:::i;:::-;16297:102;;16416:95;16507:3;16498:6;16416:95;:::i;:::-;16409:102;;16528:3;16521:10;;16286:251;;;;;:::o;16543:222::-;;16674:2;16663:9;16659:18;16651:26;;16687:71;16755:1;16744:9;16740:17;16731:6;16687:71;:::i;:::-;16641:124;;;;:::o;16771:640::-;;17004:3;16993:9;16989:19;16981:27;;17018:71;17086:1;17075:9;17071:17;17062:6;17018:71;:::i;:::-;17099:72;17167:2;17156:9;17152:18;17143:6;17099:72;:::i;:::-;17181;17249:2;17238:9;17234:18;17225:6;17181:72;:::i;:::-;17300:9;17294:4;17290:20;17285:2;17274:9;17270:18;17263:48;17328:76;17399:4;17390:6;17328:76;:::i;:::-;17320:84;;16971:440;;;;;;;:::o;17417:210::-;;17542:2;17531:9;17527:18;17519:26;;17555:65;17617:1;17606:9;17602:17;17593:6;17555:65;:::i;:::-;17509:118;;;;:::o;17633:313::-;;17784:2;17773:9;17769:18;17761:26;;17833:9;17827:4;17823:20;17819:1;17808:9;17804:17;17797:47;17861:78;17934:4;17925:6;17861:78;:::i;:::-;17853:86;;17751:195;;;;:::o;17952:419::-;;18156:2;18145:9;18141:18;18133:26;;18205:9;18199:4;18195:20;18191:1;18180:9;18176:17;18169:47;18233:131;18359:4;18233:131;:::i;:::-;18225:139;;18123:248;;;:::o;18377:419::-;;18581:2;18570:9;18566:18;18558:26;;18630:9;18624:4;18620:20;18616:1;18605:9;18601:17;18594:47;18658:131;18784:4;18658:131;:::i;:::-;18650:139;;18548:248;;;:::o;18802:419::-;;19006:2;18995:9;18991:18;18983:26;;19055:9;19049:4;19045:20;19041:1;19030:9;19026:17;19019:47;19083:131;19209:4;19083:131;:::i;:::-;19075:139;;18973:248;;;:::o;19227:419::-;;19431:2;19420:9;19416:18;19408:26;;19480:9;19474:4;19470:20;19466:1;19455:9;19451:17;19444:47;19508:131;19634:4;19508:131;:::i;:::-;19500:139;;19398:248;;;:::o;19652:419::-;;19856:2;19845:9;19841:18;19833:26;;19905:9;19899:4;19895:20;19891:1;19880:9;19876:17;19869:47;19933:131;20059:4;19933:131;:::i;:::-;19925:139;;19823:248;;;:::o;20077:419::-;;20281:2;20270:9;20266:18;20258:26;;20330:9;20324:4;20320:20;20316:1;20305:9;20301:17;20294:47;20358:131;20484:4;20358:131;:::i;:::-;20350:139;;20248:248;;;:::o;20502:419::-;;20706:2;20695:9;20691:18;20683:26;;20755:9;20749:4;20745:20;20741:1;20730:9;20726:17;20719:47;20783:131;20909:4;20783:131;:::i;:::-;20775:139;;20673:248;;;:::o;20927:419::-;;21131:2;21120:9;21116:18;21108:26;;21180:9;21174:4;21170:20;21166:1;21155:9;21151:17;21144:47;21208:131;21334:4;21208:131;:::i;:::-;21200:139;;21098:248;;;:::o;21352:419::-;;21556:2;21545:9;21541:18;21533:26;;21605:9;21599:4;21595:20;21591:1;21580:9;21576:17;21569:47;21633:131;21759:4;21633:131;:::i;:::-;21625:139;;21523:248;;;:::o;21777:419::-;;21981:2;21970:9;21966:18;21958:26;;22030:9;22024:4;22020:20;22016:1;22005:9;22001:17;21994:47;22058:131;22184:4;22058:131;:::i;:::-;22050:139;;21948:248;;;:::o;22202:419::-;;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22373:248;;;:::o;22627:419::-;;22831:2;22820:9;22816:18;22808:26;;22880:9;22874:4;22870:20;22866:1;22855:9;22851:17;22844:47;22908:131;23034:4;22908:131;:::i;:::-;22900:139;;22798:248;;;:::o;23052:419::-;;23256:2;23245:9;23241:18;23233:26;;23305:9;23299:4;23295:20;23291:1;23280:9;23276:17;23269:47;23333:131;23459:4;23333:131;:::i;:::-;23325:139;;23223:248;;;:::o;23477:419::-;;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:131;23884:4;23758:131;:::i;:::-;23750:139;;23648:248;;;:::o;23902:419::-;;24106:2;24095:9;24091:18;24083:26;;24155:9;24149:4;24145:20;24141:1;24130:9;24126:17;24119:47;24183:131;24309:4;24183:131;:::i;:::-;24175:139;;24073:248;;;:::o;24327:419::-;;24531:2;24520:9;24516:18;24508:26;;24580:9;24574:4;24570:20;24566:1;24555:9;24551:17;24544:47;24608:131;24734:4;24608:131;:::i;:::-;24600:139;;24498:248;;;:::o;24752:419::-;;24956:2;24945:9;24941:18;24933:26;;25005:9;24999:4;24995:20;24991:1;24980:9;24976:17;24969:47;25033:131;25159:4;25033:131;:::i;:::-;25025:139;;24923:248;;;:::o;25177:419::-;;25381:2;25370:9;25366:18;25358:26;;25430:9;25424:4;25420:20;25416:1;25405:9;25401:17;25394:47;25458:131;25584:4;25458:131;:::i;:::-;25450:139;;25348:248;;;:::o;25602:419::-;;25806:2;25795:9;25791:18;25783:26;;25855:9;25849:4;25845:20;25841:1;25830:9;25826:17;25819:47;25883:131;26009:4;25883:131;:::i;:::-;25875:139;;25773:248;;;:::o;26027:419::-;;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26198:248;;;:::o;26452:419::-;;26656:2;26645:9;26641:18;26633:26;;26705:9;26699:4;26695:20;26691:1;26680:9;26676:17;26669:47;26733:131;26859:4;26733:131;:::i;:::-;26725:139;;26623:248;;;:::o;26877:419::-;;27081:2;27070:9;27066:18;27058:26;;27130:9;27124:4;27120:20;27116:1;27105:9;27101:17;27094:47;27158:131;27284:4;27158:131;:::i;:::-;27150:139;;27048:248;;;:::o;27302:419::-;;27506:2;27495:9;27491:18;27483:26;;27555:9;27549:4;27545:20;27541:1;27530:9;27526:17;27519:47;27583:131;27709:4;27583:131;:::i;:::-;27575:139;;27473:248;;;:::o;27727:419::-;;27931:2;27920:9;27916:18;27908:26;;27980:9;27974:4;27970:20;27966:1;27955:9;27951:17;27944:47;28008:131;28134:4;28008:131;:::i;:::-;28000:139;;27898:248;;;:::o;28152:222::-;;28283:2;28272:9;28268:18;28260:26;;28296:71;28364:1;28353:9;28349:17;28340:6;28296:71;:::i;:::-;28250:124;;;;:::o;28380:283::-;;28446:2;28440:9;28430:19;;28488:4;28480:6;28476:17;28595:6;28583:10;28580:22;28559:18;28547:10;28544:34;28541:62;28538:2;;;28606:18;;:::i;:::-;28538:2;28646:10;28642:2;28635:22;28420:243;;;;:::o;28669:331::-;;28820:18;28812:6;28809:30;28806:2;;;28842:18;;:::i;:::-;28806:2;28927:4;28923:9;28916:4;28908:6;28904:17;28900:33;28892:41;;28988:4;28982;28978:15;28970:23;;28735:265;;;:::o;29006:98::-;;29091:5;29085:12;29075:22;;29064:40;;;:::o;29110:99::-;;29196:5;29190:12;29180:22;;29169:40;;;:::o;29215:168::-;;29332:6;29327:3;29320:19;29372:4;29367:3;29363:14;29348:29;;29310:73;;;;:::o;29389:169::-;;29507:6;29502:3;29495:19;29547:4;29542:3;29538:14;29523:29;;29485:73;;;;:::o;29564:148::-;;29703:3;29688:18;;29678:34;;;;:::o;29718:273::-;;29777:20;29795:1;29777:20;:::i;:::-;29772:25;;29811:20;29829:1;29811:20;:::i;:::-;29806:25;;29933:1;29897:34;29893:42;29890:1;29887:49;29884:2;;;29939:18;;:::i;:::-;29884:2;29983:1;29980;29976:9;29969:16;;29762:229;;;;:::o;29997:305::-;;30056:20;30074:1;30056:20;:::i;:::-;30051:25;;30090:20;30108:1;30090:20;:::i;:::-;30085:25;;30244:1;30176:66;30172:74;30169:1;30166:81;30163:2;;;30250:18;;:::i;:::-;30163:2;30294:1;30291;30287:9;30280:16;;30041:261;;;;:::o;30308:185::-;;30365:20;30383:1;30365:20;:::i;:::-;30360:25;;30399:20;30417:1;30399:20;:::i;:::-;30394:25;;30438:1;30428:2;;30443:18;;:::i;:::-;30428:2;30485:1;30482;30478:9;30473:14;;30350:143;;;;:::o;30499:348::-;;30562:20;30580:1;30562:20;:::i;:::-;30557:25;;30596:20;30614:1;30596:20;:::i;:::-;30591:25;;30784:1;30716:66;30712:74;30709:1;30706:81;30701:1;30694:9;30687:17;30683:105;30680:2;;;30791:18;;:::i;:::-;30680:2;30839:1;30836;30832:9;30821:20;;30547:300;;;;:::o;30853:191::-;;30913:20;30931:1;30913:20;:::i;:::-;30908:25;;30947:20;30965:1;30947:20;:::i;:::-;30942:25;;30986:1;30983;30980:8;30977:2;;;30991:18;;:::i;:::-;30977:2;31036:1;31033;31029:9;31021:17;;30898:146;;;;:::o;31050:191::-;;31110:20;31128:1;31110:20;:::i;:::-;31105:25;;31144:20;31162:1;31144:20;:::i;:::-;31139:25;;31183:1;31180;31177:8;31174:2;;;31188:18;;:::i;:::-;31174:2;31233:1;31230;31226:9;31218:17;;31095:146;;;;:::o;31247:96::-;;31313:24;31331:5;31313:24;:::i;:::-;31302:35;;31292:51;;;:::o;31349:90::-;;31426:5;31419:13;31412:21;31401:32;;31391:48;;;:::o;31445:149::-;;31521:66;31514:5;31510:78;31499:89;;31489:105;;;:::o;31600:118::-;;31677:34;31670:5;31666:46;31655:57;;31645:73;;;:::o;31724:126::-;;31801:42;31794:5;31790:54;31779:65;;31769:81;;;:::o;31856:77::-;;31922:5;31911:16;;31901:32;;;:::o;31939:154::-;32023:6;32018:3;32013;32000:30;32085:1;32076:6;32071:3;32067:16;32060:27;31990:103;;;:::o;32099:307::-;32167:1;32177:113;32191:6;32188:1;32185:13;32177:113;;;32276:1;32271:3;32267:11;32261:18;32257:1;32252:3;32248:11;32241:39;32213:2;32210:1;32206:10;32201:15;;32177:113;;;32308:6;32305:1;32302:13;32299:2;;;32388:1;32379:6;32374:3;32370:16;32363:27;32299:2;32148:258;;;;:::o;32412:171::-;;32474:24;32492:5;32474:24;:::i;:::-;32465:33;;32520:4;32513:5;32510:15;32507:2;;;32528:18;;:::i;:::-;32507:2;32575:1;32568:5;32564:13;32557:20;;32455:128;;;:::o;32589:320::-;;32670:1;32664:4;32660:12;32650:22;;32717:1;32711:4;32707:12;32738:18;32728:2;;32794:4;32786:6;32782:17;32772:27;;32728:2;32856;32848:6;32845:14;32825:18;32822:38;32819:2;;;32875:18;;:::i;:::-;32819:2;32640:269;;;;:::o;32915:233::-;;32977:24;32995:5;32977:24;:::i;:::-;32968:33;;33023:66;33016:5;33013:77;33010:2;;;33093:18;;:::i;:::-;33010:2;33140:1;33133:5;33129:13;33122:20;;32958:190;;;:::o;33154:176::-;;33203:20;33221:1;33203:20;:::i;:::-;33198:25;;33237:20;33255:1;33237:20;:::i;:::-;33232:25;;33276:1;33266:2;;33281:18;;:::i;:::-;33266:2;33322:1;33319;33315:9;33310:14;;33188:142;;;;:::o;33336:180::-;33384:77;33381:1;33374:88;33481:4;33478:1;33471:15;33505:4;33502:1;33495:15;33522:180;33570:77;33567:1;33560:88;33667:4;33664:1;33657:15;33691:4;33688:1;33681:15;33708:180;33756:77;33753:1;33746:88;33853:4;33850:1;33843:15;33877:4;33874:1;33867:15;33894:180;33942:77;33939:1;33932:88;34039:4;34036:1;34029:15;34063:4;34060:1;34053:15;34080:102;;34172:2;34168:7;34163:2;34156:5;34152:14;34148:28;34138:38;;34128:54;;;:::o;34188:122::-;34261:24;34279:5;34261:24;:::i;:::-;34254:5;34251:35;34241:2;;34300:1;34297;34290:12;34241:2;34231:79;:::o;34316:116::-;34386:21;34401:5;34386:21;:::i;:::-;34379:5;34376:32;34366:2;;34422:1;34419;34412:12;34366:2;34356:76;:::o;34438:120::-;34510:23;34527:5;34510:23;:::i;:::-;34503:5;34500:34;34490:2;;34548:1;34545;34538:12;34490:2;34480:78;:::o;34564:122::-;34637:24;34655:5;34637:24;:::i;:::-;34630:5;34627:35;34617:2;;34676:1;34673;34666:12;34617:2;34607:79;:::o

Swarm Source

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