ETH Price: $3,481.87 (+2.17%)
Gas: 8 Gwei

Token

vVv Season 1 (VVVS1)
 

Overview

Max Total Supply

5,000 VVVS1

Holders

236

Market

Volume (24H)

0.1011 ETH

Min Price (24H)

$352.02 @ 0.101100 ETH

Max Price (24H)

$352.02 @ 0.101100 ETH
Balance
1 VVVS1
0x77e2e00aef1699dfd9fde2b8f6d60fd7f009de09
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

vVv is an NFT collection on Opensea that focus on, dolphins, sharks and whales.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
vVvSeason1

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT

                                                                                                                                                                                                           
                                                                                                                                                                                                           

//             __     __                    ______                                                             __   
//            /  |   /  |                  /      \                                                          _/  |  
//  __     __ $$ |   $$ | __     __       /$$$$$$  |  ______    ______    _______   ______   _______        / $$ |  
// /  \   /  |$$ |   $$ |/  \   /  |      $$ \__$$/  /      \  /      \  /       | /      \ /       \       $$$$ |  
// $$  \ /$$/ $$  \ /$$/ $$  \ /$$/       $$      \ /$$$$$$  | $$$$$$  |/$$$$$$$/ /$$$$$$  |$$$$$$$  |        $$ |  
//  $$  /$$/   $$  /$$/   $$  /$$/         $$$$$$  |$$    $$ | /    $$ |$$      \ $$ |  $$ |$$ |  $$ |        $$ |  
//   $$ $$/     $$ $$/     $$ $$/         /  \__$$ |$$$$$$$$/ /$$$$$$$ | $$$$$$  |$$ \__$$ |$$ |  $$ |       _$$ |_ 
//    $$$/       $$$/       $$$/          $$    $$/ $$       |$$    $$ |/     $$/ $$    $$/ $$ |  $$ |      / $$   |
//     $/         $/         $/            $$$$$$/   $$$$$$$/  $$$$$$$/ $$$$$$$/   $$$$$$/  $$/   $$/       $$$$$$/ 

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;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

contract vVvSeason1 is Ownable, ERC721A {
  
  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("vVv Season 1", "VVVS1", maxBatchSize_, collectionSize_) {
  }

  function freeMint(uint256 quantity) public onlyOwner {
    require(
      totalSupply() + quantity <= collectionSize,
      "quantity is too many"
    );
      _safeMint(msg.sender, quantity);
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60c0604052600060015560006008553480156200001b57600080fd5b506040516200421b3803806200421b83398181016040528101906200004191906200033c565b6040518060400160405280600c81526020017f76567620536561736f6e203100000000000000000000000000000000000000008152506040518060400160405280600581526020017f56565653310000000000000000000000000000000000000000000000000000008152508383620000cf620000c3620001a960201b60201c565b620001b160201b60201c565b6000811162000115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010c906200046f565b60405180910390fd5b600082116200015b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000152906200044d565b60405180910390fd5b83600290805190602001906200017392919062000275565b5082600390805190602001906200018c92919062000275565b508160a0818152505080608081815250505050505050506200052b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028390620004ac565b90600052602060002090601f016020900481019282620002a75760008555620002f3565b82601f10620002c257805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f2578251825591602001919060010190620002d5565b5b50905062000302919062000306565b5090565b5b808211156200032157600081600090555060010162000307565b5090565b600081519050620003368162000511565b92915050565b600080604083850312156200035057600080fd5b6000620003608582860162000325565b9250506020620003738582860162000325565b9150509250929050565b60006200038c60278362000491565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620003f4602e8362000491565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b6000602082019050818103600083015262000468816200037d565b9050919050565b600060208201905081810360008301526200048a81620003e5565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004c557607f821691505b60208210811415620004dc57620004db620004e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200051c81620004a2565b81146200052857600080fd5b50565b60805160a051613cbc6200055f60003960008181611a1301528181611a3c015261223101526000610d590152613cbc6000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146103d7578063c87b56dd146103f3578063d7224ba014610423578063dc33e68114610441578063e985e9c514610471578063f2fde38b146104a157610158565b8063715018a6146103295780637c928fe9146103335780638da5cb5b1461034f5780639231ab2a1461036d57806395d89b411461039d578063a22cb465146103bb57610158565b80632f745c59116101155780632f745c591461023157806342842e0e146102615780634f6ccce71461027d57806355f804b3146102ad5780636352211e146102c957806370a08231146102f957610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806318160ddd146101f757806323b872dd14610215575b600080fd5b61017760048036038101906101729190612a01565b6104bd565b6040516101849190613495565b60405180910390f35b610195610607565b6040516101a291906134b0565b60405180910390f35b6101c560048036038101906101c09190612a98565b610699565b6040516101d2919061342e565b60405180910390f35b6101f560048036038101906101f091906129c5565b61071e565b005b6101ff610837565b60405161020c91906137ad565b60405180910390f35b61022f600480360381019061022a91906128bf565b610841565b005b61024b600480360381019061024691906129c5565b610851565b60405161025891906137ad565b60405180910390f35b61027b600480360381019061027691906128bf565b610a4f565b005b61029760048036038101906102929190612a98565b610a6f565b6040516102a491906137ad565b60405180910390f35b6102c760048036038101906102c29190612a53565b610ac2565b005b6102e360048036038101906102de9190612a98565b610b54565b6040516102f0919061342e565b60405180910390f35b610313600480360381019061030e919061285a565b610b6a565b60405161032091906137ad565b60405180910390f35b610331610c53565b005b61034d60048036038101906103489190612a98565b610cdb565b005b610357610dd9565b604051610364919061342e565b60405180910390f35b61038760048036038101906103829190612a98565b610e02565b6040516103949190613792565b60405180910390f35b6103a5610e1a565b6040516103b291906134b0565b60405180910390f35b6103d560048036038101906103d09190612989565b610eac565b005b6103f160048036038101906103ec919061290e565b61102d565b005b61040d60048036038101906104089190612a98565b611089565b60405161041a91906134b0565b60405180910390f35b61042b611130565b60405161043891906137ad565b60405180910390f35b61045b6004803603810190610456919061285a565b611136565b60405161046891906137ad565b60405180910390f35b61048b60048036038101906104869190612883565b611148565b6040516104989190613495565b60405180910390f35b6104bb60048036038101906104b6919061285a565b6111dc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060057506105ff826112d4565b5b9050919050565b60606002805461061690613ab1565b80601f016020809104026020016040519081016040528092919081815260200182805461064290613ab1565b801561068f5780601f106106645761010080835404028352916020019161068f565b820191906000526020600020905b81548152906001019060200180831161067257829003601f168201915b5050505050905090565b60006106a48261133e565b6106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da90613752565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072982610b54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561079a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079190613692565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107b961134c565b73ffffffffffffffffffffffffffffffffffffffff1614806107e857506107e7816107e261134c565b611148565b5b610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e906135b2565b60405180910390fd5b610832838383611354565b505050565b6000600154905090565b61084c838383611406565b505050565b600061085c83610b6a565b821061089d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610894906134d2565b60405180910390fd5b60006108a7610837565b905060008060005b83811015610a0d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146109a157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f957868414156109ea578195505050505050610a49565b83806109f590613ae3565b9450505b508080610a0590613ae3565b9150506108af565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090613712565b60405180910390fd5b92915050565b610a6a8383836040518060200160405280600081525061102d565b505050565b6000610a79610837565b8210610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613552565b60405180910390fd5b819050919050565b610aca61134c565b73ffffffffffffffffffffffffffffffffffffffff16610ae8610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590613612565b60405180910390fd5b818160099190610b4f929190612662565b505050565b6000610b5f826119bf565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd2906135d2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610c5b61134c565b73ffffffffffffffffffffffffffffffffffffffff16610c79610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613612565b60405180910390fd5b610cd96000611bc2565b565b610ce361134c565b73ffffffffffffffffffffffffffffffffffffffff16610d01610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90613612565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610d81610837565b610d8b91906138b2565b1115610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc3906134f2565b60405180910390fd5b610dd63382611c86565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e0a6126e8565b610e13826119bf565b9050919050565b606060038054610e2990613ab1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5590613ab1565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b5050505050905090565b610eb461134c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613652565b60405180910390fd5b8060076000610f2f61134c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fdc61134c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110219190613495565b60405180910390a35050565b611038848484611406565b61104484848484611ca4565b611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906136b2565b60405180910390fd5b50505050565b60606110948261133e565b6110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613632565b60405180910390fd5b60006110dd611e3b565b905060008151116110fd5760405180602001604052806000815250611128565b8061110784611ecd565b60405160200161111892919061340a565b6040516020818303038152906040525b915050919050565b60085481565b60006111418261207a565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111e461134c565b73ffffffffffffffffffffffffffffffffffffffff16611202610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90613612565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90613512565b60405180910390fd5b6112d181611bc2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611411826119bf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661143861134c565b73ffffffffffffffffffffffffffffffffffffffff161480611494575061145d61134c565b73ffffffffffffffffffffffffffffffffffffffff1661147c84610699565b73ffffffffffffffffffffffffffffffffffffffff16145b806114b057506114af82600001516114aa61134c565b611148565b5b9050806114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990613672565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906135f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613572565b60405180910390fd5b6115e18585856001612163565b6115f16000848460000151611354565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661165f9190613939565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611703919061386c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461180991906138b2565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561194f5761187f8161133e565b1561194e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119b78686866001612169565b505050505050565b6119c76126e8565b6119d08261133e565b611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690613532565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611a735760017f000000000000000000000000000000000000000000000000000000000000000084611a66919061396d565b611a7091906138b2565b90505b60008390505b818110611b81576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b6d57809350505050611bbd565b508080611b7990613a87565b915050611a79565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490613732565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ca082826040518060200160405280600081525061216f565b5050565b6000611cc58473ffffffffffffffffffffffffffffffffffffffff1661264f565b15611e2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cee61134c565b8786866040518563ffffffff1660e01b8152600401611d109493929190613449565b602060405180830381600087803b158015611d2a57600080fd5b505af1925050508015611d5b57506040513d601f19601f82011682018060405250810190611d589190612a2a565b60015b611dde573d8060008114611d8b576040519150601f19603f3d011682016040523d82523d6000602084013e611d90565b606091505b50600081511415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd906136b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e33565b600190505b949350505050565b606060098054611e4a90613ab1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7690613ab1565b8015611ec35780601f10611e9857610100808354040283529160200191611ec3565b820191906000526020600020905b815481529060010190602001808311611ea657829003601f168201915b5050505050905090565b60606000821415611f15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612075565b600082905060005b60008214611f47578080611f3090613ae3565b915050600a82611f409190613908565b9150611f1d565b60008167ffffffffffffffff811115611f89577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fbb5781602001600182028036833780820191505090505b5090505b6000851461206e57600182611fd4919061396d565b9150600a85611fe39190613b2c565b6030611fef91906138b2565b60f81b81838151811061202b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120679190613908565b9450611fbf565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290613592565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906136f2565b60405180910390fd5b6121ef8161133e565b1561222f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612226906136d2565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990613772565b60405180910390fd5b61229f6000858386612163565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161239c919061386c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516123c3919061386c565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561263257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125d26000888488611ca4565b612611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612608906136b2565b60405180910390fd5b818061261c90613ae3565b925050808061262a90613ae3565b915050612561565b50806001819055506126476000878588612169565b505050505050565b600080823b905060008111915050919050565b82805461266e90613ab1565b90600052602060002090601f01602090048101928261269057600085556126d7565b82601f106126a957803560ff19168380011785556126d7565b828001600101855582156126d7579182015b828111156126d65782358255916020019190600101906126bb565b5b5090506126e49190612722565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561273b576000816000905550600101612723565b5090565b600061275261274d846137f9565b6137c8565b90508281526020810184848401111561276a57600080fd5b612775848285613a45565b509392505050565b60008135905061278c81613c2a565b92915050565b6000813590506127a181613c41565b92915050565b6000813590506127b681613c58565b92915050565b6000815190506127cb81613c58565b92915050565b600082601f8301126127e257600080fd5b81356127f284826020860161273f565b91505092915050565b60008083601f84011261280d57600080fd5b8235905067ffffffffffffffff81111561282657600080fd5b60208301915083600182028301111561283e57600080fd5b9250929050565b60008135905061285481613c6f565b92915050565b60006020828403121561286c57600080fd5b600061287a8482850161277d565b91505092915050565b6000806040838503121561289657600080fd5b60006128a48582860161277d565b92505060206128b58582860161277d565b9150509250929050565b6000806000606084860312156128d457600080fd5b60006128e28682870161277d565b93505060206128f38682870161277d565b925050604061290486828701612845565b9150509250925092565b6000806000806080858703121561292457600080fd5b60006129328782880161277d565b94505060206129438782880161277d565b935050604061295487828801612845565b925050606085013567ffffffffffffffff81111561297157600080fd5b61297d878288016127d1565b91505092959194509250565b6000806040838503121561299c57600080fd5b60006129aa8582860161277d565b92505060206129bb85828601612792565b9150509250929050565b600080604083850312156129d857600080fd5b60006129e68582860161277d565b92505060206129f785828601612845565b9150509250929050565b600060208284031215612a1357600080fd5b6000612a21848285016127a7565b91505092915050565b600060208284031215612a3c57600080fd5b6000612a4a848285016127bc565b91505092915050565b60008060208385031215612a6657600080fd5b600083013567ffffffffffffffff811115612a8057600080fd5b612a8c858286016127fb565b92509250509250929050565b600060208284031215612aaa57600080fd5b6000612ab884828501612845565b91505092915050565b612aca816139a1565b82525050565b612ad9816139a1565b82525050565b612ae8816139b3565b82525050565b6000612af982613829565b612b03818561383f565b9350612b13818560208601613a54565b612b1c81613c19565b840191505092915050565b6000612b3282613834565b612b3c8185613850565b9350612b4c818560208601613a54565b612b5581613c19565b840191505092915050565b6000612b6b82613834565b612b758185613861565b9350612b85818560208601613a54565b80840191505092915050565b6000612b9e602283613850565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c04601483613850565b91507f7175616e7469747920697320746f6f206d616e790000000000000000000000006000830152602082019050919050565b6000612c44602683613850565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612caa602a83613850565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d10602383613850565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d76602583613850565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ddc603183613850565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000612e42603983613850565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000612ea8602b83613850565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000612f0e602683613850565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f74602083613850565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612fb4602f83613850565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061301a601a83613850565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b600061305a603283613850565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006130c0602283613850565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613126603383613850565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600061318c601d83613850565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006131cc602183613850565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613232602e83613850565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613298602f83613850565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006132fe602d83613850565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613364602283613850565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6040820160008201516133d36000850182612ac1565b5060208201516133e660208501826133fb565b50505050565b6133f581613a27565b82525050565b61340481613a31565b82525050565b60006134168285612b60565b91506134228284612b60565b91508190509392505050565b60006020820190506134436000830184612ad0565b92915050565b600060808201905061345e6000830187612ad0565b61346b6020830186612ad0565b61347860408301856133ec565b818103606083015261348a8184612aee565b905095945050505050565b60006020820190506134aa6000830184612adf565b92915050565b600060208201905081810360008301526134ca8184612b27565b905092915050565b600060208201905081810360008301526134eb81612b91565b9050919050565b6000602082019050818103600083015261350b81612bf7565b9050919050565b6000602082019050818103600083015261352b81612c37565b9050919050565b6000602082019050818103600083015261354b81612c9d565b9050919050565b6000602082019050818103600083015261356b81612d03565b9050919050565b6000602082019050818103600083015261358b81612d69565b9050919050565b600060208201905081810360008301526135ab81612dcf565b9050919050565b600060208201905081810360008301526135cb81612e35565b9050919050565b600060208201905081810360008301526135eb81612e9b565b9050919050565b6000602082019050818103600083015261360b81612f01565b9050919050565b6000602082019050818103600083015261362b81612f67565b9050919050565b6000602082019050818103600083015261364b81612fa7565b9050919050565b6000602082019050818103600083015261366b8161300d565b9050919050565b6000602082019050818103600083015261368b8161304d565b9050919050565b600060208201905081810360008301526136ab816130b3565b9050919050565b600060208201905081810360008301526136cb81613119565b9050919050565b600060208201905081810360008301526136eb8161317f565b9050919050565b6000602082019050818103600083015261370b816131bf565b9050919050565b6000602082019050818103600083015261372b81613225565b9050919050565b6000602082019050818103600083015261374b8161328b565b9050919050565b6000602082019050818103600083015261376b816132f1565b9050919050565b6000602082019050818103600083015261378b81613357565b9050919050565b60006040820190506137a760008301846133bd565b92915050565b60006020820190506137c260008301846133ec565b92915050565b6000604051905081810181811067ffffffffffffffff821117156137ef576137ee613bea565b5b8060405250919050565b600067ffffffffffffffff82111561381457613813613bea565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613877826139eb565b9150613882836139eb565b9250826fffffffffffffffffffffffffffffffff038211156138a7576138a6613b5d565b5b828201905092915050565b60006138bd82613a27565b91506138c883613a27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138fd576138fc613b5d565b5b828201905092915050565b600061391382613a27565b915061391e83613a27565b92508261392e5761392d613b8c565b5b828204905092915050565b6000613944826139eb565b915061394f836139eb565b92508282101561396257613961613b5d565b5b828203905092915050565b600061397882613a27565b915061398383613a27565b92508282101561399657613995613b5d565b5b828203905092915050565b60006139ac82613a07565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a72578082015181840152602081019050613a57565b83811115613a81576000848401525b50505050565b6000613a9282613a27565b91506000821415613aa657613aa5613b5d565b5b600182039050919050565b60006002820490506001821680613ac957607f821691505b60208210811415613add57613adc613bbb565b5b50919050565b6000613aee82613a27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2157613b20613b5d565b5b600182019050919050565b6000613b3782613a27565b9150613b4283613a27565b925082613b5257613b51613b8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613c33816139a1565b8114613c3e57600080fd5b50565b613c4a816139b3565b8114613c5557600080fd5b50565b613c61816139bf565b8114613c6c57600080fd5b50565b613c7881613a27565b8114613c8357600080fd5b5056fea2646970667358221220ad014bf7d5d15b3d465280a02cce756b5443dc4479ee1688ef0083685321673064736f6c6343000800003300000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146103d7578063c87b56dd146103f3578063d7224ba014610423578063dc33e68114610441578063e985e9c514610471578063f2fde38b146104a157610158565b8063715018a6146103295780637c928fe9146103335780638da5cb5b1461034f5780639231ab2a1461036d57806395d89b411461039d578063a22cb465146103bb57610158565b80632f745c59116101155780632f745c591461023157806342842e0e146102615780634f6ccce71461027d57806355f804b3146102ad5780636352211e146102c957806370a08231146102f957610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806318160ddd146101f757806323b872dd14610215575b600080fd5b61017760048036038101906101729190612a01565b6104bd565b6040516101849190613495565b60405180910390f35b610195610607565b6040516101a291906134b0565b60405180910390f35b6101c560048036038101906101c09190612a98565b610699565b6040516101d2919061342e565b60405180910390f35b6101f560048036038101906101f091906129c5565b61071e565b005b6101ff610837565b60405161020c91906137ad565b60405180910390f35b61022f600480360381019061022a91906128bf565b610841565b005b61024b600480360381019061024691906129c5565b610851565b60405161025891906137ad565b60405180910390f35b61027b600480360381019061027691906128bf565b610a4f565b005b61029760048036038101906102929190612a98565b610a6f565b6040516102a491906137ad565b60405180910390f35b6102c760048036038101906102c29190612a53565b610ac2565b005b6102e360048036038101906102de9190612a98565b610b54565b6040516102f0919061342e565b60405180910390f35b610313600480360381019061030e919061285a565b610b6a565b60405161032091906137ad565b60405180910390f35b610331610c53565b005b61034d60048036038101906103489190612a98565b610cdb565b005b610357610dd9565b604051610364919061342e565b60405180910390f35b61038760048036038101906103829190612a98565b610e02565b6040516103949190613792565b60405180910390f35b6103a5610e1a565b6040516103b291906134b0565b60405180910390f35b6103d560048036038101906103d09190612989565b610eac565b005b6103f160048036038101906103ec919061290e565b61102d565b005b61040d60048036038101906104089190612a98565b611089565b60405161041a91906134b0565b60405180910390f35b61042b611130565b60405161043891906137ad565b60405180910390f35b61045b6004803603810190610456919061285a565b611136565b60405161046891906137ad565b60405180910390f35b61048b60048036038101906104869190612883565b611148565b6040516104989190613495565b60405180910390f35b6104bb60048036038101906104b6919061285a565b6111dc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060057506105ff826112d4565b5b9050919050565b60606002805461061690613ab1565b80601f016020809104026020016040519081016040528092919081815260200182805461064290613ab1565b801561068f5780601f106106645761010080835404028352916020019161068f565b820191906000526020600020905b81548152906001019060200180831161067257829003601f168201915b5050505050905090565b60006106a48261133e565b6106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da90613752565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072982610b54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561079a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079190613692565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107b961134c565b73ffffffffffffffffffffffffffffffffffffffff1614806107e857506107e7816107e261134c565b611148565b5b610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e906135b2565b60405180910390fd5b610832838383611354565b505050565b6000600154905090565b61084c838383611406565b505050565b600061085c83610b6a565b821061089d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610894906134d2565b60405180910390fd5b60006108a7610837565b905060008060005b83811015610a0d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146109a157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f957868414156109ea578195505050505050610a49565b83806109f590613ae3565b9450505b508080610a0590613ae3565b9150506108af565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090613712565b60405180910390fd5b92915050565b610a6a8383836040518060200160405280600081525061102d565b505050565b6000610a79610837565b8210610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613552565b60405180910390fd5b819050919050565b610aca61134c565b73ffffffffffffffffffffffffffffffffffffffff16610ae8610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590613612565b60405180910390fd5b818160099190610b4f929190612662565b505050565b6000610b5f826119bf565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd2906135d2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610c5b61134c565b73ffffffffffffffffffffffffffffffffffffffff16610c79610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613612565b60405180910390fd5b610cd96000611bc2565b565b610ce361134c565b73ffffffffffffffffffffffffffffffffffffffff16610d01610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90613612565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138881610d81610837565b610d8b91906138b2565b1115610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc3906134f2565b60405180910390fd5b610dd63382611c86565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e0a6126e8565b610e13826119bf565b9050919050565b606060038054610e2990613ab1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5590613ab1565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b5050505050905090565b610eb461134c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613652565b60405180910390fd5b8060076000610f2f61134c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fdc61134c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110219190613495565b60405180910390a35050565b611038848484611406565b61104484848484611ca4565b611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906136b2565b60405180910390fd5b50505050565b60606110948261133e565b6110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613632565b60405180910390fd5b60006110dd611e3b565b905060008151116110fd5760405180602001604052806000815250611128565b8061110784611ecd565b60405160200161111892919061340a565b6040516020818303038152906040525b915050919050565b60085481565b60006111418261207a565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111e461134c565b73ffffffffffffffffffffffffffffffffffffffff16611202610dd9565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90613612565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90613512565b60405180910390fd5b6112d181611bc2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611411826119bf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661143861134c565b73ffffffffffffffffffffffffffffffffffffffff161480611494575061145d61134c565b73ffffffffffffffffffffffffffffffffffffffff1661147c84610699565b73ffffffffffffffffffffffffffffffffffffffff16145b806114b057506114af82600001516114aa61134c565b611148565b5b9050806114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990613672565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906135f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613572565b60405180910390fd5b6115e18585856001612163565b6115f16000848460000151611354565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661165f9190613939565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611703919061386c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461180991906138b2565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561194f5761187f8161133e565b1561194e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119b78686866001612169565b505050505050565b6119c76126e8565b6119d08261133e565b611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690613532565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000013888310611a735760017f000000000000000000000000000000000000000000000000000000000000138884611a66919061396d565b611a7091906138b2565b90505b60008390505b818110611b81576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b6d57809350505050611bbd565b508080611b7990613a87565b915050611a79565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490613732565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ca082826040518060200160405280600081525061216f565b5050565b6000611cc58473ffffffffffffffffffffffffffffffffffffffff1661264f565b15611e2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cee61134c565b8786866040518563ffffffff1660e01b8152600401611d109493929190613449565b602060405180830381600087803b158015611d2a57600080fd5b505af1925050508015611d5b57506040513d601f19601f82011682018060405250810190611d589190612a2a565b60015b611dde573d8060008114611d8b576040519150601f19603f3d011682016040523d82523d6000602084013e611d90565b606091505b50600081511415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd906136b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e33565b600190505b949350505050565b606060098054611e4a90613ab1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7690613ab1565b8015611ec35780601f10611e9857610100808354040283529160200191611ec3565b820191906000526020600020905b815481529060010190602001808311611ea657829003601f168201915b5050505050905090565b60606000821415611f15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612075565b600082905060005b60008214611f47578080611f3090613ae3565b915050600a82611f409190613908565b9150611f1d565b60008167ffffffffffffffff811115611f89577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fbb5781602001600182028036833780820191505090505b5090505b6000851461206e57600182611fd4919061396d565b9150600a85611fe39190613b2c565b6030611fef91906138b2565b60f81b81838151811061202b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120679190613908565b9450611fbf565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290613592565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906136f2565b60405180910390fd5b6121ef8161133e565b1561222f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612226906136d2565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001388831115612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228990613772565b60405180910390fd5b61229f6000858386612163565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161239c919061386c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516123c3919061386c565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561263257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125d26000888488611ca4565b612611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612608906136b2565b60405180910390fd5b818061261c90613ae3565b925050808061262a90613ae3565b915050612561565b50806001819055506126476000878588612169565b505050505050565b600080823b905060008111915050919050565b82805461266e90613ab1565b90600052602060002090601f01602090048101928261269057600085556126d7565b82601f106126a957803560ff19168380011785556126d7565b828001600101855582156126d7579182015b828111156126d65782358255916020019190600101906126bb565b5b5090506126e49190612722565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561273b576000816000905550600101612723565b5090565b600061275261274d846137f9565b6137c8565b90508281526020810184848401111561276a57600080fd5b612775848285613a45565b509392505050565b60008135905061278c81613c2a565b92915050565b6000813590506127a181613c41565b92915050565b6000813590506127b681613c58565b92915050565b6000815190506127cb81613c58565b92915050565b600082601f8301126127e257600080fd5b81356127f284826020860161273f565b91505092915050565b60008083601f84011261280d57600080fd5b8235905067ffffffffffffffff81111561282657600080fd5b60208301915083600182028301111561283e57600080fd5b9250929050565b60008135905061285481613c6f565b92915050565b60006020828403121561286c57600080fd5b600061287a8482850161277d565b91505092915050565b6000806040838503121561289657600080fd5b60006128a48582860161277d565b92505060206128b58582860161277d565b9150509250929050565b6000806000606084860312156128d457600080fd5b60006128e28682870161277d565b93505060206128f38682870161277d565b925050604061290486828701612845565b9150509250925092565b6000806000806080858703121561292457600080fd5b60006129328782880161277d565b94505060206129438782880161277d565b935050604061295487828801612845565b925050606085013567ffffffffffffffff81111561297157600080fd5b61297d878288016127d1565b91505092959194509250565b6000806040838503121561299c57600080fd5b60006129aa8582860161277d565b92505060206129bb85828601612792565b9150509250929050565b600080604083850312156129d857600080fd5b60006129e68582860161277d565b92505060206129f785828601612845565b9150509250929050565b600060208284031215612a1357600080fd5b6000612a21848285016127a7565b91505092915050565b600060208284031215612a3c57600080fd5b6000612a4a848285016127bc565b91505092915050565b60008060208385031215612a6657600080fd5b600083013567ffffffffffffffff811115612a8057600080fd5b612a8c858286016127fb565b92509250509250929050565b600060208284031215612aaa57600080fd5b6000612ab884828501612845565b91505092915050565b612aca816139a1565b82525050565b612ad9816139a1565b82525050565b612ae8816139b3565b82525050565b6000612af982613829565b612b03818561383f565b9350612b13818560208601613a54565b612b1c81613c19565b840191505092915050565b6000612b3282613834565b612b3c8185613850565b9350612b4c818560208601613a54565b612b5581613c19565b840191505092915050565b6000612b6b82613834565b612b758185613861565b9350612b85818560208601613a54565b80840191505092915050565b6000612b9e602283613850565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c04601483613850565b91507f7175616e7469747920697320746f6f206d616e790000000000000000000000006000830152602082019050919050565b6000612c44602683613850565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612caa602a83613850565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d10602383613850565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d76602583613850565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ddc603183613850565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000612e42603983613850565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000612ea8602b83613850565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000612f0e602683613850565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f74602083613850565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612fb4602f83613850565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061301a601a83613850565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b600061305a603283613850565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006130c0602283613850565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613126603383613850565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600061318c601d83613850565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006131cc602183613850565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613232602e83613850565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613298602f83613850565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006132fe602d83613850565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613364602283613850565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6040820160008201516133d36000850182612ac1565b5060208201516133e660208501826133fb565b50505050565b6133f581613a27565b82525050565b61340481613a31565b82525050565b60006134168285612b60565b91506134228284612b60565b91508190509392505050565b60006020820190506134436000830184612ad0565b92915050565b600060808201905061345e6000830187612ad0565b61346b6020830186612ad0565b61347860408301856133ec565b818103606083015261348a8184612aee565b905095945050505050565b60006020820190506134aa6000830184612adf565b92915050565b600060208201905081810360008301526134ca8184612b27565b905092915050565b600060208201905081810360008301526134eb81612b91565b9050919050565b6000602082019050818103600083015261350b81612bf7565b9050919050565b6000602082019050818103600083015261352b81612c37565b9050919050565b6000602082019050818103600083015261354b81612c9d565b9050919050565b6000602082019050818103600083015261356b81612d03565b9050919050565b6000602082019050818103600083015261358b81612d69565b9050919050565b600060208201905081810360008301526135ab81612dcf565b9050919050565b600060208201905081810360008301526135cb81612e35565b9050919050565b600060208201905081810360008301526135eb81612e9b565b9050919050565b6000602082019050818103600083015261360b81612f01565b9050919050565b6000602082019050818103600083015261362b81612f67565b9050919050565b6000602082019050818103600083015261364b81612fa7565b9050919050565b6000602082019050818103600083015261366b8161300d565b9050919050565b6000602082019050818103600083015261368b8161304d565b9050919050565b600060208201905081810360008301526136ab816130b3565b9050919050565b600060208201905081810360008301526136cb81613119565b9050919050565b600060208201905081810360008301526136eb8161317f565b9050919050565b6000602082019050818103600083015261370b816131bf565b9050919050565b6000602082019050818103600083015261372b81613225565b9050919050565b6000602082019050818103600083015261374b8161328b565b9050919050565b6000602082019050818103600083015261376b816132f1565b9050919050565b6000602082019050818103600083015261378b81613357565b9050919050565b60006040820190506137a760008301846133bd565b92915050565b60006020820190506137c260008301846133ec565b92915050565b6000604051905081810181811067ffffffffffffffff821117156137ef576137ee613bea565b5b8060405250919050565b600067ffffffffffffffff82111561381457613813613bea565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613877826139eb565b9150613882836139eb565b9250826fffffffffffffffffffffffffffffffff038211156138a7576138a6613b5d565b5b828201905092915050565b60006138bd82613a27565b91506138c883613a27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138fd576138fc613b5d565b5b828201905092915050565b600061391382613a27565b915061391e83613a27565b92508261392e5761392d613b8c565b5b828204905092915050565b6000613944826139eb565b915061394f836139eb565b92508282101561396257613961613b5d565b5b828203905092915050565b600061397882613a27565b915061398383613a27565b92508282101561399657613995613b5d565b5b828203905092915050565b60006139ac82613a07565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a72578082015181840152602081019050613a57565b83811115613a81576000848401525b50505050565b6000613a9282613a27565b91506000821415613aa657613aa5613b5d565b5b600182039050919050565b60006002820490506001821680613ac957607f821691505b60208210811415613add57613adc613bbb565b5b50919050565b6000613aee82613a27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2157613b20613b5d565b5b600182019050919050565b6000613b3782613a27565b9150613b4283613a27565b925082613b5257613b51613b8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613c33816139a1565b8114613c3e57600080fd5b50565b613c4a816139b3565b8114613c5557600080fd5b50565b613c61816139bf565b8114613c6c57600080fd5b50565b613c7881613a27565b8114613c8357600080fd5b5056fea2646970667358221220ad014bf7d5d15b3d465280a02cce756b5443dc4479ee1688ef0083685321673064736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5000
Arg [1] : collectionSize_ (uint256): 5000

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


Deployed Bytecode Sourcemap

38945:949:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24631:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26357:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27882:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27445:379;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23192:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28732:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23823:744;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28937:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23355:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39525:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26180:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25057:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3994:94;;;:::i;:::-;;39146:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3343:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39744:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26512:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28150:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29157:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26673:394;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33572:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39631:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28487:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4243:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24631:370;24758:4;24803:25;24788:40;;;:11;:40;;;;:99;;;;24854:33;24839:48;;;:11;:48;;;;24788:99;:160;;;;24913:35;24898:50;;;:11;:50;;;;24788:160;:207;;;;24959:36;24983:11;24959:23;:36::i;:::-;24788:207;24774:221;;24631:370;;;:::o;26357:94::-;26411:13;26440:5;26433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26357:94;:::o;27882:204::-;27950:7;27974:16;27982:7;27974;:16::i;:::-;27966:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28056:15;:24;28072:7;28056:24;;;;;;;;;;;;;;;;;;;;;28049:31;;27882:204;;;:::o;27445:379::-;27514:13;27530:24;27546:7;27530:15;:24::i;:::-;27514:40;;27575:5;27569:11;;:2;:11;;;;27561:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27660:5;27644:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27669:37;27686:5;27693:12;:10;:12::i;:::-;27669:16;:37::i;:::-;27644:62;27628:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27790:28;27799:2;27803:7;27812:5;27790:8;:28::i;:::-;27445:379;;;:::o;23192:94::-;23245:7;23268:12;;23261:19;;23192:94;:::o;28732:142::-;28840:28;28850:4;28856:2;28860:7;28840:9;:28::i;:::-;28732:142;;;:::o;23823:744::-;23932:7;23967:16;23977:5;23967:9;:16::i;:::-;23959:5;:24;23951:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24029:22;24054:13;:11;:13::i;:::-;24029:38;;24074:19;24104:25;24154:9;24149:350;24173:14;24169:1;:18;24149:350;;;24203:31;24237:11;:14;24249:1;24237:14;;;;;;;;;;;24203:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24290:1;24264:28;;:9;:14;;;:28;;;24260:89;;24325:9;:14;;;24305:34;;24260:89;24382:5;24361:26;;:17;:26;;;24357:135;;;24419:5;24404:11;:20;24400:59;;;24446:1;24439:8;;;;;;;;;24400:59;24469:13;;;;;:::i;:::-;;;;24357:135;24149:350;24189:3;;;;;:::i;:::-;;;;24149:350;;;;24505:56;;;;;;;;;;:::i;:::-;;;;;;;;23823:744;;;;;:::o;28937:157::-;29049:39;29066:4;29072:2;29076:7;29049:39;;;;;;;;;;;;:16;:39::i;:::-;28937:157;;;:::o;23355:177::-;23422:7;23454:13;:11;:13::i;:::-;23446:5;:21;23438:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23521:5;23514:12;;23355:177;;;:::o;39525:100::-;3574:12;:10;:12::i;:::-;3563:23;;:7;:5;:7::i;:::-;:23;;;3555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39612:7:::1;;39596:13;:23;;;;;;;:::i;:::-;;39525:100:::0;;:::o;26180:118::-;26244:7;26267:20;26279:7;26267:11;:20::i;:::-;:25;;;26260:32;;26180:118;;;:::o;25057:211::-;25121:7;25162:1;25145:19;;:5;:19;;;;25137:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25234:12;:19;25247:5;25234:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25226:36;;25219:43;;25057:211;;;:::o;3994:94::-;3574:12;:10;:12::i;:::-;3563:23;;:7;:5;:7::i;:::-;:23;;;3555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4059:21:::1;4077:1;4059:9;:21::i;:::-;3994:94::o:0;39146:202::-;3574:12;:10;:12::i;:::-;3563:23;;:7;:5;:7::i;:::-;:23;;;3555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39250:14:::1;39238:8;39222:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;39206:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39311:31;39321:10;39333:8;39311:9;:31::i;:::-;39146:202:::0;:::o;3343:87::-;3389:7;3416:6;;;;;;;;;;;3409:13;;3343:87;:::o;39744:147::-;39825:21;;:::i;:::-;39865:20;39877:7;39865:11;:20::i;:::-;39858:27;;39744:147;;;:::o;26512:98::-;26568:13;26597:7;26590:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26512:98;:::o;28150:274::-;28253:12;:10;:12::i;:::-;28241:24;;:8;:24;;;;28233:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28350:8;28305:18;:32;28324:12;:10;:12::i;:::-;28305:32;;;;;;;;;;;;;;;:42;28338:8;28305:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28399:8;28370:48;;28385:12;:10;:12::i;:::-;28370:48;;;28409:8;28370:48;;;;;;:::i;:::-;;;;;;;;28150:274;;:::o;29157:311::-;29294:28;29304:4;29310:2;29314:7;29294:9;:28::i;:::-;29345:48;29368:4;29374:2;29378:7;29387:5;29345:22;:48::i;:::-;29329:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29157:311;;;;:::o;26673:394::-;26771:13;26812:16;26820:7;26812;:16::i;:::-;26796:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;26902:21;26926:10;:8;:10::i;:::-;26902:34;;26981:1;26963:7;26957:21;:25;:104;;;;;;;;;;;;;;;;;27018:7;27027:18;:7;:16;:18::i;:::-;27001:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26957:104;26943:118;;;26673:394;;;:::o;33572:43::-;;;;:::o;39631:107::-;39689:7;39712:20;39726:5;39712:13;:20::i;:::-;39705:27;;39631:107;;;:::o;28487:186::-;28609:4;28632:18;:25;28651:5;28632:25;;;;;;;;;;;;;;;:35;28658:8;28632:35;;;;;;;;;;;;;;;;;;;;;;;;;28625:42;;28487:186;;;;:::o;4243:192::-;3574:12;:10;:12::i;:::-;3563:23;;:7;:5;:7::i;:::-;:23;;;3555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4352:1:::1;4332:22;;:8;:22;;;;4324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4408:19;4418:8;4408:9;:19::i;:::-;4243:192:::0;:::o;20793:157::-;20878:4;20917:25;20902:40;;;:11;:40;;;;20895:47;;20793:157;;;:::o;29707:105::-;29764:4;29794:12;;29784:7;:22;29777:29;;29707:105;;;:::o;2219:98::-;2272:7;2299:10;2292:17;;2219:98;:::o;33394:172::-;33518:2;33491:15;:24;33507:7;33491:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33552:7;33548:2;33532:28;;33541:5;33532:28;;;;;;;;;;;;33394:172;;;:::o;31759:1529::-;31856:35;31894:20;31906:7;31894:11;:20::i;:::-;31856:58;;31923:22;31965:13;:18;;;31949:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32018:12;:10;:12::i;:::-;31994:36;;:20;32006:7;31994:11;:20::i;:::-;:36;;;31949:81;:142;;;;32041:50;32058:13;:18;;;32078:12;:10;:12::i;:::-;32041:16;:50::i;:::-;31949:142;31923:169;;32117:17;32101:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32249:4;32227:26;;:13;:18;;;:26;;;32211:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32338:1;32324:16;;:2;:16;;;;32316:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32391:43;32413:4;32419:2;32423:7;32432:1;32391:21;:43::i;:::-;32491:49;32508:1;32512:7;32521:13;:18;;;32491:8;:49::i;:::-;32579:1;32549:12;:18;32562:4;32549:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32615:1;32587:12;:16;32600:2;32587:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32646:43;;;;;;;;32661:2;32646:43;;;;;;32672:15;32646:43;;;;;32623:11;:20;32635:7;32623:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32917:19;32949:1;32939:7;:11;;;;:::i;:::-;32917:33;;33002:1;32961:43;;:11;:24;32973:11;32961:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32957:236;;;33019:20;33027:11;33019:7;:20::i;:::-;33015:171;;;33079:97;;;;;;;;33106:13;:18;;;33079:97;;;;;;33137:13;:28;;;33079:97;;;;;33052:11;:24;33064:11;33052:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33015:171;32957:236;33225:7;33221:2;33206:27;;33215:4;33206:27;;;;;;;;;;;;33240:42;33261:4;33267:2;33271:7;33280:1;33240:20;:42::i;:::-;31759:1529;;;;;;:::o;25520:606::-;25596:21;;:::i;:::-;25637:16;25645:7;25637;:16::i;:::-;25629:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25709:26;25757:12;25746:7;:23;25742:93;;25826:1;25811:12;25801:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25780:47;;25742:93;25848:12;25863:7;25848:22;;25843:212;25880:18;25872:4;:26;25843:212;;25917:31;25951:11;:17;25963:4;25951:17;;;;;;;;;;;25917:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26007:1;25981:28;;:9;:14;;;:28;;;25977:71;;26029:9;26022:16;;;;;;;25977:71;25843:212;25900:6;;;;;:::i;:::-;;;;25843:212;;;;26063:57;;;;;;;;;;:::i;:::-;;;;;;;;25520:606;;;;:::o;4443:173::-;4499:16;4518:6;;;;;;;;;;;4499:25;;4544:8;4535:6;;:17;;;;;;;;;;;;;;;;;;4599:8;4568:40;;4589:8;4568:40;;;;;;;;;;;;4443:173;;:::o;29818:98::-;29883:27;29893:2;29897:8;29883:27;;;;;;;;;;;;:9;:27::i;:::-;29818:98;;:::o;35109:690::-;35246:4;35263:15;:2;:13;;;:15::i;:::-;35259:535;;;35318:2;35302:36;;;35339:12;:10;:12::i;:::-;35353:4;35359:7;35368:5;35302:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35289:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35550:1;35533:6;:13;:18;35529:215;;;35566:61;;;;;;;;;;:::i;:::-;;;;;;;;35529:215;35712:6;35706:13;35697:6;35693:2;35689:15;35682:38;35289:464;35434:45;;;35424:55;;;:6;:55;;;;35417:62;;;;;35259:535;35782:4;35775:11;;35109:690;;;;;;;:::o;39411:108::-;39471:13;39500;39493:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39411:108;:::o;37186:723::-;37242:13;37472:1;37463:5;:10;37459:53;;;37490:10;;;;;;;;;;;;;;;;;;;;;37459:53;37522:12;37537:5;37522:20;;37553:14;37578:78;37593:1;37585:4;:9;37578:78;;37611:8;;;;;:::i;:::-;;;;37642:2;37634:10;;;;;:::i;:::-;;;37578:78;;;37666:19;37698:6;37688:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37666:39;;37716:154;37732:1;37723:5;:10;37716:154;;37760:1;37750:11;;;;;:::i;:::-;;;37827:2;37819:5;:10;;;;:::i;:::-;37806:2;:24;;;;:::i;:::-;37793:39;;37776:6;37783;37776:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;37856:2;37847:11;;;;;:::i;:::-;;;37716:154;;;37894:6;37880:21;;;;;37186:723;;;;:::o;25274:240::-;25335:7;25384:1;25367:19;;:5;:19;;;;25351:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;25475:12;:19;25488:5;25475:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;25467:41;;25460:48;;25274:240;;;:::o;36261:141::-;;;;;:::o;36788:140::-;;;;;:::o;30255:1272::-;30360:20;30383:12;;30360:35;;30424:1;30410:16;;:2;:16;;;;30402:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30601:21;30609:12;30601:7;:21::i;:::-;30600:22;30592:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30683:12;30671:8;:24;;30663:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30743:61;30773:1;30777:2;30781:12;30795:8;30743:21;:61::i;:::-;30813:30;30846:12;:16;30859:2;30846:16;;;;;;;;;;;;;;;30813:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:119;;;;;;;;30938:8;30908:11;:19;;;:39;;;;:::i;:::-;30888:119;;;;;;30991:8;30956:11;:24;;;:44;;;;:::i;:::-;30888:119;;;;;30869:12;:16;30882:2;30869:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31042:43;;;;;;;;31057:2;31042:43;;;;;;31068:15;31042:43;;;;;31014:11;:25;31026:12;31014:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31094:20;31117:12;31094:35;;31143:9;31138:281;31162:8;31158:1;:12;31138:281;;;31216:12;31212:2;31191:38;;31208:1;31191:38;;;;;;;;;;;;31256:59;31287:1;31291:2;31295:12;31309:5;31256:22;:59::i;:::-;31238:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31397:14;;;;;:::i;:::-;;;;31172:3;;;;;:::i;:::-;;;;31138:281;;;;31442:12;31427;:27;;;;31461:60;31490:1;31494:2;31498:12;31512:8;31461:20;:60::i;:::-;30255:1272;;;;;;:::o;12977:387::-;13037:4;13245:12;13312:7;13300:20;13292:28;;13355:1;13348:4;:8;13341:15;;;12977:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1233:352::-;;;1351:3;1344:4;1336:6;1332:17;1328:27;1318:2;;1369:1;1366;1359:12;1318:2;1405:6;1392:20;1382:30;;1435:18;1427:6;1424:30;1421:2;;;1467:1;1464;1457:12;1421:2;1504:4;1496:6;1492:17;1480:29;;1558:3;1550:4;1542:6;1538:17;1528:8;1524:32;1521:41;1518:2;;;1575:1;1572;1565:12;1518:2;1308:277;;;;;:::o;1591:139::-;;1675:6;1662:20;1653:29;;1691:33;1718:5;1691:33;:::i;:::-;1643:87;;;;:::o;1736:262::-;;1844:2;1832:9;1823:7;1819:23;1815:32;1812:2;;;1860:1;1857;1850:12;1812:2;1903:1;1928:53;1973:7;1964:6;1953:9;1949:22;1928:53;:::i;:::-;1918:63;;1874:117;1802:196;;;;:::o;2004:407::-;;;2129:2;2117:9;2108:7;2104:23;2100:32;2097:2;;;2145:1;2142;2135:12;2097:2;2188:1;2213:53;2258:7;2249:6;2238:9;2234:22;2213:53;:::i;:::-;2203:63;;2159:117;2315:2;2341:53;2386:7;2377:6;2366:9;2362:22;2341:53;:::i;:::-;2331:63;;2286:118;2087:324;;;;;:::o;2417:552::-;;;;2559:2;2547:9;2538:7;2534:23;2530:32;2527:2;;;2575:1;2572;2565:12;2527:2;2618:1;2643:53;2688:7;2679:6;2668:9;2664:22;2643:53;:::i;:::-;2633:63;;2589:117;2745:2;2771:53;2816:7;2807:6;2796:9;2792:22;2771:53;:::i;:::-;2761:63;;2716:118;2873:2;2899:53;2944:7;2935:6;2924:9;2920:22;2899:53;:::i;:::-;2889:63;;2844:118;2517:452;;;;;:::o;2975:809::-;;;;;3143:3;3131:9;3122:7;3118:23;3114:33;3111:2;;;3160:1;3157;3150:12;3111:2;3203:1;3228:53;3273:7;3264:6;3253:9;3249:22;3228:53;:::i;:::-;3218:63;;3174:117;3330:2;3356:53;3401:7;3392:6;3381:9;3377:22;3356:53;:::i;:::-;3346:63;;3301:118;3458:2;3484:53;3529:7;3520:6;3509:9;3505:22;3484:53;:::i;:::-;3474:63;;3429:118;3614:2;3603:9;3599:18;3586:32;3645:18;3637:6;3634:30;3631:2;;;3677:1;3674;3667:12;3631:2;3705:62;3759:7;3750:6;3739:9;3735:22;3705:62;:::i;:::-;3695:72;;3557:220;3101:683;;;;;;;:::o;3790:401::-;;;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;3971:1;3996:53;4041:7;4032:6;4021:9;4017:22;3996:53;:::i;:::-;3986:63;;3942:117;4098:2;4124:50;4166:7;4157:6;4146:9;4142:22;4124:50;:::i;:::-;4114:60;;4069:115;3870:321;;;;;:::o;4197:407::-;;;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4338:1;4335;4328:12;4290:2;4381:1;4406:53;4451:7;4442:6;4431:9;4427:22;4406:53;:::i;:::-;4396:63;;4352:117;4508:2;4534:53;4579:7;4570:6;4559:9;4555:22;4534:53;:::i;:::-;4524:63;;4479:118;4280:324;;;;;:::o;4610:260::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4733:1;4730;4723:12;4685:2;4776:1;4801:52;4845:7;4836:6;4825:9;4821:22;4801:52;:::i;:::-;4791:62;;4747:116;4675:195;;;;:::o;4876:282::-;;4994:2;4982:9;4973:7;4969:23;4965:32;4962:2;;;5010:1;5007;5000:12;4962:2;5053:1;5078:63;5133:7;5124:6;5113:9;5109:22;5078:63;:::i;:::-;5068:73;;5024:127;4952:206;;;;:::o;5164:395::-;;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5308:1;5305;5298:12;5260:2;5379:1;5368:9;5364:17;5351:31;5409:18;5401:6;5398:30;5395:2;;;5441:1;5438;5431:12;5395:2;5477:65;5534:7;5525:6;5514:9;5510:22;5477:65;:::i;:::-;5459:83;;;;5322:230;5250:309;;;;;:::o;5565:262::-;;5673:2;5661:9;5652:7;5648:23;5644:32;5641:2;;;5689:1;5686;5679:12;5641:2;5732:1;5757:53;5802:7;5793:6;5782:9;5778:22;5757:53;:::i;:::-;5747:63;;5703:117;5631:196;;;;:::o;5833:108::-;5910:24;5928:5;5910:24;:::i;:::-;5905:3;5898:37;5888:53;;:::o;5947:118::-;6034:24;6052:5;6034:24;:::i;:::-;6029:3;6022:37;6012:53;;:::o;6071:109::-;6152:21;6167:5;6152:21;:::i;:::-;6147:3;6140:34;6130:50;;:::o;6186:360::-;;6300:38;6332:5;6300:38;:::i;:::-;6354:70;6417:6;6412:3;6354:70;:::i;:::-;6347:77;;6433:52;6478:6;6473:3;6466:4;6459:5;6455:16;6433:52;:::i;:::-;6510:29;6532:6;6510:29;:::i;:::-;6505:3;6501:39;6494:46;;6276:270;;;;;:::o;6552:364::-;;6668:39;6701:5;6668:39;:::i;:::-;6723:71;6787:6;6782:3;6723:71;:::i;:::-;6716:78;;6803:52;6848:6;6843:3;6836:4;6829:5;6825:16;6803:52;:::i;:::-;6880:29;6902:6;6880:29;:::i;:::-;6875:3;6871:39;6864:46;;6644:272;;;;;:::o;6922:377::-;;7056:39;7089:5;7056:39;:::i;:::-;7111:89;7193:6;7188:3;7111:89;:::i;:::-;7104:96;;7209:52;7254:6;7249:3;7242:4;7235:5;7231:16;7209:52;:::i;:::-;7286:6;7281:3;7277:16;7270:23;;7032:267;;;;;:::o;7305:366::-;;7468:67;7532:2;7527:3;7468:67;:::i;:::-;7461:74;;7565:34;7561:1;7556:3;7552:11;7545:55;7631:4;7626:2;7621:3;7617:12;7610:26;7662:2;7657:3;7653:12;7646:19;;7451:220;;;:::o;7677:318::-;;7840:67;7904:2;7899:3;7840:67;:::i;:::-;7833:74;;7937:22;7933:1;7928:3;7924:11;7917:43;7986:2;7981:3;7977:12;7970:19;;7823:172;;;:::o;8001:370::-;;8164:67;8228:2;8223:3;8164:67;:::i;:::-;8157:74;;8261:34;8257:1;8252:3;8248:11;8241:55;8327:8;8322:2;8317:3;8313:12;8306:30;8362:2;8357:3;8353:12;8346:19;;8147:224;;;:::o;8377:374::-;;8540:67;8604:2;8599:3;8540:67;:::i;:::-;8533:74;;8637:34;8633:1;8628:3;8624:11;8617:55;8703:12;8698:2;8693:3;8689:12;8682:34;8742:2;8737:3;8733:12;8726:19;;8523:228;;;:::o;8757:367::-;;8920:67;8984:2;8979:3;8920:67;:::i;:::-;8913:74;;9017:34;9013:1;9008:3;9004:11;8997:55;9083:5;9078:2;9073:3;9069:12;9062:27;9115:2;9110:3;9106:12;9099:19;;8903:221;;;:::o;9130:369::-;;9293:67;9357:2;9352:3;9293:67;:::i;:::-;9286:74;;9390:34;9386:1;9381:3;9377:11;9370:55;9456:7;9451:2;9446:3;9442:12;9435:29;9490:2;9485:3;9481:12;9474:19;;9276:223;;;:::o;9505:381::-;;9668:67;9732:2;9727:3;9668:67;:::i;:::-;9661:74;;9765:34;9761:1;9756:3;9752:11;9745:55;9831:19;9826:2;9821:3;9817:12;9810:41;9877:2;9872:3;9868:12;9861:19;;9651:235;;;:::o;9892:389::-;;10055:67;10119:2;10114:3;10055:67;:::i;:::-;10048:74;;10152:34;10148:1;10143:3;10139:11;10132:55;10218:27;10213:2;10208:3;10204:12;10197:49;10272:2;10267:3;10263:12;10256:19;;10038:243;;;:::o;10287:375::-;;10450:67;10514:2;10509:3;10450:67;:::i;:::-;10443:74;;10547:34;10543:1;10538:3;10534:11;10527:55;10613:13;10608:2;10603:3;10599:12;10592:35;10653:2;10648:3;10644:12;10637:19;;10433:229;;;:::o;10668:370::-;;10831:67;10895:2;10890:3;10831:67;:::i;:::-;10824:74;;10928:34;10924:1;10919:3;10915:11;10908:55;10994:8;10989:2;10984:3;10980:12;10973:30;11029:2;11024:3;11020:12;11013:19;;10814:224;;;:::o;11044:330::-;;11207:67;11271:2;11266:3;11207:67;:::i;:::-;11200:74;;11304:34;11300:1;11295:3;11291:11;11284:55;11365:2;11360:3;11356:12;11349:19;;11190:184;;;:::o;11380:379::-;;11543:67;11607:2;11602:3;11543:67;:::i;:::-;11536:74;;11640:34;11636:1;11631:3;11627:11;11620:55;11706:17;11701:2;11696:3;11692:12;11685:39;11750:2;11745:3;11741:12;11734:19;;11526:233;;;:::o;11765:324::-;;11928:67;11992:2;11987:3;11928:67;:::i;:::-;11921:74;;12025:28;12021:1;12016:3;12012:11;12005:49;12080:2;12075:3;12071:12;12064:19;;11911:178;;;:::o;12095:382::-;;12258:67;12322:2;12317:3;12258:67;:::i;:::-;12251:74;;12355:34;12351:1;12346:3;12342:11;12335:55;12421:20;12416:2;12411:3;12407:12;12400:42;12468:2;12463:3;12459:12;12452:19;;12241:236;;;:::o;12483:366::-;;12646:67;12710:2;12705:3;12646:67;:::i;:::-;12639:74;;12743:34;12739:1;12734:3;12730:11;12723:55;12809:4;12804:2;12799:3;12795:12;12788:26;12840:2;12835:3;12831:12;12824:19;;12629:220;;;:::o;12855:383::-;;13018:67;13082:2;13077:3;13018:67;:::i;:::-;13011:74;;13115:34;13111:1;13106:3;13102:11;13095:55;13181:21;13176:2;13171:3;13167:12;13160:43;13229:2;13224:3;13220:12;13213:19;;13001:237;;;:::o;13244:327::-;;13407:67;13471:2;13466:3;13407:67;:::i;:::-;13400:74;;13504:31;13500:1;13495:3;13491:11;13484:52;13562:2;13557:3;13553:12;13546:19;;13390:181;;;:::o;13577:365::-;;13740:67;13804:2;13799:3;13740:67;:::i;:::-;13733:74;;13837:34;13833:1;13828:3;13824:11;13817:55;13903:3;13898:2;13893:3;13889:12;13882:25;13933:2;13928:3;13924:12;13917:19;;13723:219;;;:::o;13948:378::-;;14111:67;14175:2;14170:3;14111:67;:::i;:::-;14104:74;;14208:34;14204:1;14199:3;14195:11;14188:55;14274:16;14269:2;14264:3;14260:12;14253:38;14317:2;14312:3;14308:12;14301:19;;14094:232;;;:::o;14332:379::-;;14495:67;14559:2;14554:3;14495:67;:::i;:::-;14488:74;;14592:34;14588:1;14583:3;14579:11;14572:55;14658:17;14653:2;14648:3;14644:12;14637:39;14702:2;14697:3;14693:12;14686:19;;14478:233;;;:::o;14717:377::-;;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14977:34;14973:1;14968:3;14964:11;14957:55;15043:15;15038:2;15033:3;15029:12;15022:37;15085:2;15080:3;15076:12;15069:19;;14863:231;;;:::o;15100:366::-;;15263:67;15327:2;15322:3;15263:67;:::i;:::-;15256:74;;15360:34;15356:1;15351:3;15347:11;15340:55;15426:4;15421:2;15416:3;15412:12;15405:26;15457:2;15452:3;15448:12;15441:19;;15246:220;;;:::o;15542:527::-;15701:4;15696:3;15692:14;15788:4;15781:5;15777:16;15771:23;15807:63;15864:4;15859:3;15855:14;15841:12;15807:63;:::i;:::-;15716:164;15972:4;15965:5;15961:16;15955:23;15991:61;16046:4;16041:3;16037:14;16023:12;15991:61;:::i;:::-;15890:172;15670:399;;;:::o;16075:118::-;16162:24;16180:5;16162:24;:::i;:::-;16157:3;16150:37;16140:53;;:::o;16199:105::-;16274:23;16291:5;16274:23;:::i;:::-;16269:3;16262:36;16252:52;;:::o;16310:435::-;;16512:95;16603:3;16594:6;16512:95;:::i;:::-;16505:102;;16624:95;16715:3;16706:6;16624:95;:::i;:::-;16617:102;;16736:3;16729:10;;16494:251;;;;;:::o;16751:222::-;;16882:2;16871:9;16867:18;16859:26;;16895:71;16963:1;16952:9;16948:17;16939:6;16895:71;:::i;:::-;16849:124;;;;:::o;16979:640::-;;17212:3;17201:9;17197:19;17189:27;;17226:71;17294:1;17283:9;17279:17;17270:6;17226:71;:::i;:::-;17307:72;17375:2;17364:9;17360:18;17351:6;17307:72;:::i;:::-;17389;17457:2;17446:9;17442:18;17433:6;17389:72;:::i;:::-;17508:9;17502:4;17498:20;17493:2;17482:9;17478:18;17471:48;17536:76;17607:4;17598:6;17536:76;:::i;:::-;17528:84;;17179:440;;;;;;;:::o;17625:210::-;;17750:2;17739:9;17735:18;17727:26;;17763:65;17825:1;17814:9;17810:17;17801:6;17763:65;:::i;:::-;17717:118;;;;:::o;17841:313::-;;17992:2;17981:9;17977:18;17969:26;;18041:9;18035:4;18031:20;18027:1;18016:9;18012:17;18005:47;18069:78;18142:4;18133:6;18069:78;:::i;:::-;18061:86;;17959:195;;;;:::o;18160:419::-;;18364:2;18353:9;18349:18;18341:26;;18413:9;18407:4;18403:20;18399:1;18388:9;18384:17;18377:47;18441:131;18567:4;18441:131;:::i;:::-;18433:139;;18331:248;;;:::o;18585:419::-;;18789:2;18778:9;18774:18;18766:26;;18838:9;18832:4;18828:20;18824:1;18813:9;18809:17;18802:47;18866:131;18992:4;18866:131;:::i;:::-;18858:139;;18756:248;;;:::o;19010:419::-;;19214:2;19203:9;19199:18;19191:26;;19263:9;19257:4;19253:20;19249:1;19238:9;19234:17;19227:47;19291:131;19417:4;19291:131;:::i;:::-;19283:139;;19181:248;;;:::o;19435:419::-;;19639:2;19628:9;19624:18;19616:26;;19688:9;19682:4;19678:20;19674:1;19663:9;19659:17;19652:47;19716:131;19842:4;19716:131;:::i;:::-;19708:139;;19606:248;;;:::o;19860:419::-;;20064:2;20053:9;20049:18;20041:26;;20113:9;20107:4;20103:20;20099:1;20088:9;20084:17;20077:47;20141:131;20267:4;20141:131;:::i;:::-;20133:139;;20031:248;;;:::o;20285:419::-;;20489:2;20478:9;20474:18;20466:26;;20538:9;20532:4;20528:20;20524:1;20513:9;20509:17;20502:47;20566:131;20692:4;20566:131;:::i;:::-;20558:139;;20456:248;;;:::o;20710:419::-;;20914:2;20903:9;20899:18;20891:26;;20963:9;20957:4;20953:20;20949:1;20938:9;20934:17;20927:47;20991:131;21117:4;20991:131;:::i;:::-;20983:139;;20881:248;;;:::o;21135:419::-;;21339:2;21328:9;21324:18;21316:26;;21388:9;21382:4;21378:20;21374:1;21363:9;21359:17;21352:47;21416:131;21542:4;21416:131;:::i;:::-;21408:139;;21306:248;;;:::o;21560:419::-;;21764:2;21753:9;21749:18;21741:26;;21813:9;21807:4;21803:20;21799:1;21788:9;21784:17;21777:47;21841:131;21967:4;21841:131;:::i;:::-;21833:139;;21731:248;;;:::o;21985:419::-;;22189:2;22178:9;22174:18;22166:26;;22238:9;22232:4;22228:20;22224:1;22213:9;22209:17;22202:47;22266:131;22392:4;22266:131;:::i;:::-;22258:139;;22156:248;;;:::o;22410:419::-;;22614:2;22603:9;22599:18;22591:26;;22663:9;22657:4;22653:20;22649:1;22638:9;22634:17;22627:47;22691:131;22817:4;22691:131;:::i;:::-;22683:139;;22581:248;;;:::o;22835:419::-;;23039:2;23028:9;23024:18;23016:26;;23088:9;23082:4;23078:20;23074:1;23063:9;23059:17;23052:47;23116:131;23242:4;23116:131;:::i;:::-;23108:139;;23006:248;;;:::o;23260:419::-;;23464:2;23453:9;23449:18;23441:26;;23513:9;23507:4;23503:20;23499:1;23488:9;23484:17;23477:47;23541:131;23667:4;23541:131;:::i;:::-;23533:139;;23431:248;;;:::o;23685:419::-;;23889:2;23878:9;23874:18;23866:26;;23938:9;23932:4;23928:20;23924:1;23913:9;23909:17;23902:47;23966:131;24092:4;23966:131;:::i;:::-;23958:139;;23856:248;;;:::o;24110:419::-;;24314:2;24303:9;24299:18;24291:26;;24363:9;24357:4;24353:20;24349:1;24338:9;24334:17;24327:47;24391:131;24517:4;24391:131;:::i;:::-;24383:139;;24281:248;;;:::o;24535:419::-;;24739:2;24728:9;24724:18;24716:26;;24788:9;24782:4;24778:20;24774:1;24763:9;24759:17;24752:47;24816:131;24942:4;24816:131;:::i;:::-;24808:139;;24706:248;;;:::o;24960:419::-;;25164:2;25153:9;25149:18;25141:26;;25213:9;25207:4;25203:20;25199:1;25188:9;25184:17;25177:47;25241:131;25367:4;25241:131;:::i;:::-;25233:139;;25131:248;;;:::o;25385:419::-;;25589:2;25578:9;25574:18;25566:26;;25638:9;25632:4;25628:20;25624:1;25613:9;25609:17;25602:47;25666:131;25792:4;25666:131;:::i;:::-;25658:139;;25556:248;;;:::o;25810:419::-;;26014:2;26003:9;25999:18;25991:26;;26063:9;26057:4;26053:20;26049:1;26038:9;26034:17;26027:47;26091:131;26217:4;26091:131;:::i;:::-;26083:139;;25981:248;;;:::o;26235:419::-;;26439:2;26428:9;26424:18;26416:26;;26488:9;26482:4;26478:20;26474:1;26463:9;26459:17;26452:47;26516:131;26642:4;26516:131;:::i;:::-;26508:139;;26406:248;;;:::o;26660:419::-;;26864:2;26853:9;26849:18;26841:26;;26913:9;26907:4;26903:20;26899:1;26888:9;26884:17;26877:47;26941:131;27067:4;26941:131;:::i;:::-;26933:139;;26831:248;;;:::o;27085:419::-;;27289:2;27278:9;27274:18;27266:26;;27338:9;27332:4;27328:20;27324:1;27313:9;27309:17;27302:47;27366:131;27492:4;27366:131;:::i;:::-;27358:139;;27256:248;;;:::o;27510:346::-;;27703:2;27692:9;27688:18;27680:26;;27716:133;27846:1;27835:9;27831:17;27822:6;27716:133;:::i;:::-;27670:186;;;;:::o;27862:222::-;;27993:2;27982:9;27978:18;27970:26;;28006:71;28074:1;28063:9;28059:17;28050:6;28006:71;:::i;:::-;27960:124;;;;:::o;28090:283::-;;28156:2;28150:9;28140:19;;28198:4;28190:6;28186:17;28305:6;28293:10;28290:22;28269:18;28257:10;28254:34;28251:62;28248:2;;;28316:18;;:::i;:::-;28248:2;28356:10;28352:2;28345:22;28130:243;;;;:::o;28379:331::-;;28530:18;28522:6;28519:30;28516:2;;;28552:18;;:::i;:::-;28516:2;28637:4;28633:9;28626:4;28618:6;28614:17;28610:33;28602:41;;28698:4;28692;28688:15;28680:23;;28445:265;;;:::o;28716:98::-;;28801:5;28795:12;28785:22;;28774:40;;;:::o;28820:99::-;;28906:5;28900:12;28890:22;;28879:40;;;:::o;28925:168::-;;29042:6;29037:3;29030:19;29082:4;29077:3;29073:14;29058:29;;29020:73;;;;:::o;29099:169::-;;29217:6;29212:3;29205:19;29257:4;29252:3;29248:14;29233:29;;29195:73;;;;:::o;29274:148::-;;29413:3;29398:18;;29388:34;;;;:::o;29428:273::-;;29487:20;29505:1;29487:20;:::i;:::-;29482:25;;29521:20;29539:1;29521:20;:::i;:::-;29516:25;;29643:1;29607:34;29603:42;29600:1;29597:49;29594:2;;;29649:18;;:::i;:::-;29594:2;29693:1;29690;29686:9;29679:16;;29472:229;;;;:::o;29707:305::-;;29766:20;29784:1;29766:20;:::i;:::-;29761:25;;29800:20;29818:1;29800:20;:::i;:::-;29795:25;;29954:1;29886:66;29882:74;29879:1;29876:81;29873:2;;;29960:18;;:::i;:::-;29873:2;30004:1;30001;29997:9;29990:16;;29751:261;;;;:::o;30018:185::-;;30075:20;30093:1;30075:20;:::i;:::-;30070:25;;30109:20;30127:1;30109:20;:::i;:::-;30104:25;;30148:1;30138:2;;30153:18;;:::i;:::-;30138:2;30195:1;30192;30188:9;30183:14;;30060:143;;;;:::o;30209:191::-;;30269:20;30287:1;30269:20;:::i;:::-;30264:25;;30303:20;30321:1;30303:20;:::i;:::-;30298:25;;30342:1;30339;30336:8;30333:2;;;30347:18;;:::i;:::-;30333:2;30392:1;30389;30385:9;30377:17;;30254:146;;;;:::o;30406:191::-;;30466:20;30484:1;30466:20;:::i;:::-;30461:25;;30500:20;30518:1;30500:20;:::i;:::-;30495:25;;30539:1;30536;30533:8;30530:2;;;30544:18;;:::i;:::-;30530:2;30589:1;30586;30582:9;30574:17;;30451:146;;;;:::o;30603:96::-;;30669:24;30687:5;30669:24;:::i;:::-;30658:35;;30648:51;;;:::o;30705:90::-;;30782:5;30775:13;30768:21;30757:32;;30747:48;;;:::o;30801:149::-;;30877:66;30870:5;30866:78;30855:89;;30845:105;;;:::o;30956:118::-;;31033:34;31026:5;31022:46;31011:57;;31001:73;;;:::o;31080:126::-;;31157:42;31150:5;31146:54;31135:65;;31125:81;;;:::o;31212:77::-;;31278:5;31267:16;;31257:32;;;:::o;31295:101::-;;31371:18;31364:5;31360:30;31349:41;;31339:57;;;:::o;31402:154::-;31486:6;31481:3;31476;31463:30;31548:1;31539:6;31534:3;31530:16;31523:27;31453:103;;;:::o;31562:307::-;31630:1;31640:113;31654:6;31651:1;31648:13;31640:113;;;31739:1;31734:3;31730:11;31724:18;31720:1;31715:3;31711:11;31704:39;31676:2;31673:1;31669:10;31664:15;;31640:113;;;31771:6;31768:1;31765:13;31762:2;;;31851:1;31842:6;31837:3;31833:16;31826:27;31762:2;31611:258;;;;:::o;31875:171::-;;31937:24;31955:5;31937:24;:::i;:::-;31928:33;;31983:4;31976:5;31973:15;31970:2;;;31991:18;;:::i;:::-;31970:2;32038:1;32031:5;32027:13;32020:20;;31918:128;;;:::o;32052:320::-;;32133:1;32127:4;32123:12;32113:22;;32180:1;32174:4;32170:12;32201:18;32191:2;;32257:4;32249:6;32245:17;32235:27;;32191:2;32319;32311:6;32308:14;32288:18;32285:38;32282:2;;;32338:18;;:::i;:::-;32282:2;32103:269;;;;:::o;32378:233::-;;32440:24;32458:5;32440:24;:::i;:::-;32431:33;;32486:66;32479:5;32476:77;32473:2;;;32556:18;;:::i;:::-;32473:2;32603:1;32596:5;32592:13;32585:20;;32421:190;;;:::o;32617:176::-;;32666:20;32684:1;32666:20;:::i;:::-;32661:25;;32700:20;32718:1;32700:20;:::i;:::-;32695:25;;32739:1;32729:2;;32744:18;;:::i;:::-;32729:2;32785:1;32782;32778:9;32773:14;;32651:142;;;;:::o;32799:180::-;32847:77;32844:1;32837:88;32944:4;32941:1;32934:15;32968:4;32965:1;32958:15;32985:180;33033:77;33030:1;33023:88;33130:4;33127:1;33120:15;33154:4;33151:1;33144:15;33171:180;33219:77;33216:1;33209:88;33316:4;33313:1;33306:15;33340:4;33337:1;33330:15;33357:180;33405:77;33402:1;33395:88;33502:4;33499:1;33492:15;33526:4;33523:1;33516:15;33543:102;;33635:2;33631:7;33626:2;33619:5;33615:14;33611:28;33601:38;;33591:54;;;:::o;33651:122::-;33724:24;33742:5;33724:24;:::i;:::-;33717:5;33714:35;33704:2;;33763:1;33760;33753:12;33704:2;33694:79;:::o;33779:116::-;33849:21;33864:5;33849:21;:::i;:::-;33842:5;33839:32;33829:2;;33885:1;33882;33875:12;33829:2;33819:76;:::o;33901:120::-;33973:23;33990:5;33973:23;:::i;:::-;33966:5;33963:34;33953:2;;34011:1;34008;34001:12;33953:2;33943:78;:::o;34027:122::-;34100:24;34118:5;34100:24;:::i;:::-;34093:5;34090:35;34080:2;;34139:1;34136;34129:12;34080:2;34070:79;:::o

Swarm Source

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