ETH Price: $3,482.67 (+3.31%)
Gas: 3 Gwei

Token

Pixel Doodles (PXN)
 

Overview

Max Total Supply

1,589 PXN

Holders

371

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 PXN
0xba5626a31c4844ac03ddc5e93aa7fa3045d43bc5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PXDoodles

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-05-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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








pragma solidity ^0.8.0;

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




pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;


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

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

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

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


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


pragma solidity ^0.8.0;


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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal  collectionSize;
  uint256 internal  collectionSizeFree;
  uint256 internal  maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 collectionSizeFree_
  ) {
    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_;
    collectionSizeFree = collectionSizeFree_;
  }

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


contract PXDoodles is Ownable, ERC721A, ReentrancyGuard {
  uint256 public maxPerAddressDuringMint;
  uint256 public amountForDevs;
  uint256 public price = 0.0044 ether;
  uint256 public freemintAmount = 2;
  uint256 public mintAmount = 20;

  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 collectionSizeFree_,
    uint256 amountForDevs_
  ) ERC721A("Pixel Doodles", "PXN", maxBatchSize_, collectionSize_, collectionSizeFree_) {
    maxPerAddressDuringMint = 20;
    amountForDevs = amountForDevs_;
    
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function webmint(uint256 quantity)
    external
    payable
    callerIsUser
  {
      require(quantity <= mintAmount, "Too many minted at once");
      require(msg.value >= price * quantity, "Need to send more ETH.");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    _safeMint(msg.sender, quantity);
    
  }


  function mint(uint256 quantity) external payable {address _caller = _msgSender();
     
        require(quantity > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts"); 

        if(collectionSizeFree >= totalSupply())

        {require(freemintAmount >= quantity , "Excess max per free tx");} 


     else
     
     {require(mintAmount >= quantity , "Excess max per paid tx");
     
     require(msg.value >= price * quantity, "Need to send more ETH.");
     
     }
    
    _safeMint(msg.sender, quantity);

     }







  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
  function Mint(uint256 quantity) external onlyOwner {
    
     require(totalSupply() + quantity <= amountForDevs, "reached max supply");
    _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 withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

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

function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

  function setfreemints(uint256 _newfreemints) public onlyOwner {
	    collectionSizeFree = _newfreemints;
	}

    function setcollectionSize(uint256 _newcollectionSize) public onlyOwner {
	    collectionSize = _newcollectionSize;
	}

    function setamountForDevs(uint256 _newamountForDevs) public onlyOwner {
	    amountForDevs = _newamountForDevs;
	}

    function setfreemintAmount(uint256 _newfreemintAmount) public onlyOwner {
	    freemintAmount = _newfreemintAmount;
	}

    function setmintAmount(uint256 _newmintAmount) public onlyOwner {
	    mintAmount = _newmintAmount;
	}


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSizeFree_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","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":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newamountForDevs","type":"uint256"}],"name":"setamountForDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcollectionSize","type":"uint256"}],"name":"setcollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemintAmount","type":"uint256"}],"name":"setfreemintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemints","type":"uint256"}],"name":"setfreemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmintAmount","type":"uint256"}],"name":"setmintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"webmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006001556000600b55660fa1c6d5030000600f55600260105560146011553480156200003057600080fd5b5060405162005b5538038062005b55833981810160405281019062000056919062000371565b6040518060400160405280600d81526020017f506978656c20446f6f646c6573000000000000000000000000000000000000008152506040518060400160405280600381526020017f50584e0000000000000000000000000000000000000000000000000000000000815250858585620000e5620000d9620001de60201b60201c565b620001e660201b60201c565b600082116200012b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012290620004cf565b60405180910390fd5b6000831162000171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016890620004ad565b60405180910390fd5b846005908051906020019062000189929190620002aa565b508360069080519060200190620001a2929190620002aa565b5082600481905550816002819055508060038190555050505050506001600c819055506014600d8190555080600e81905550505050506200058b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b8906200050c565b90600052602060002090601f016020900481019282620002dc576000855562000328565b82601f10620002f757805160ff191683800117855562000328565b8280016001018555821562000328579182015b82811115620003275782518255916020019190600101906200030a565b5b5090506200033791906200033b565b5090565b5b80821115620003565760008160009055506001016200033c565b5090565b6000815190506200036b8162000571565b92915050565b600080600080608085870312156200038857600080fd5b600062000398878288016200035a565b9450506020620003ab878288016200035a565b9350506040620003be878288016200035a565b9250506060620003d1878288016200035a565b91505092959194509250565b6000620003ec602783620004f1565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000454602e83620004f1565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004c881620003dd565b9050919050565b60006020820190508181036000830152620004ea8162000445565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200052557607f821691505b602082108114156200053c576200053b62000542565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200057c8162000502565b81146200058857600080fd5b50565b6155ba806200059b6000396000f3fe6080604052600436106102515760003560e01c80638bc35c2f11610139578063ac446002116100b6578063d49f0fa51161007a578063d49f0fa5146108a2578063d7224ba0146108cb578063dc33e681146108f6578063e985e9c514610933578063f2fde38b14610970578063fbe1aa511461099957610251565b8063ac446002146107d3578063b05863d5146107ea578063b88d4fde14610813578063c87b56dd1461083c578063d0d999071461087957610251565b80639f8afbcc116100fd5780639f8afbcc146106fd578063a035b1fe14610726578063a0712d6814610751578063a22cb4651461076d578063a7cd52cb1461079657610251565b80638bc35c2f146106145780638da5cb5b1461063f57806390aa0b0f1461066a5780639231ab2a1461069557806395d89b41146106d257610251565b8063280b7eed116101d257806355f804b31161019657806355f804b3146105065780635a2bcc181461052f5780636352211e1461055a57806370a0823114610597578063715018a6146105d457806380e28ea5146105eb57610251565b8063280b7eed1461041e5780632d20fb601461043a5780632f745c591461046357806342842e0e146104a05780634f6ccce7146104c957610251565b8063130db2bb11610219578063130db2bb1461034d57806318160ddd1461037857806321b2a6cb146103a357806323b872dd146103cc57806327e410f1146103f557610251565b806301ffc9a71461025657806306fdde031461029357806307883703146102be578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613d1d565b6109c4565b60405161028a9190614b3b565b60405180910390f35b34801561029f57600080fd5b506102a8610b0e565b6040516102b59190614b56565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613db4565b610ba0565b005b3480156102f357600080fd5b5061030e60048036038101906103099190613db4565b610c80565b60405161031b9190614ad4565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613c75565b610d05565b005b34801561035957600080fd5b50610362610e1e565b60405161036f9190614fd3565b60405180910390f35b34801561038457600080fd5b5061038d610e24565b60405161039a9190614fd3565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613db4565b610e2e565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613b6f565b610eb4565b005b34801561040157600080fd5b5061041c60048036038101906104179190613db4565b610ec4565b005b61043860048036038101906104339190613db4565b610f4a565b005b34801561044657600080fd5b50610461600480360381019061045c9190613db4565b6110b1565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613c75565b61118f565b6040516104979190614fd3565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190613b6f565b61138d565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613db4565b6113ad565b6040516104fd9190614fd3565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613d6f565b611400565b005b34801561053b57600080fd5b50610544611492565b6040516105519190614fd3565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613db4565b611498565b60405161058e9190614ad4565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613b0a565b6114ae565b6040516105cb9190614fd3565b60405180910390f35b3480156105e057600080fd5b506105e9611597565b005b3480156105f757600080fd5b50610612600480360381019061060d9190613db4565b61161f565b005b34801561062057600080fd5b506106296116a5565b6040516106369190614fd3565b60405180910390f35b34801561064b57600080fd5b506106546116ab565b6040516106619190614ad4565b60405180910390f35b34801561067657600080fd5b5061067f6116d4565b60405161068c9190614fee565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190613db4565b6116f4565b6040516106c99190614fb8565b60405180910390f35b3480156106de57600080fd5b506106e761170c565b6040516106f49190614b56565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190613db4565b61179e565b005b34801561073257600080fd5b5061073b611824565b6040516107489190614fd3565b60405180910390f35b61076b60048036038101906107669190613db4565b61182a565b005b34801561077957600080fd5b50610794600480360381019061078f9190613c39565b6119e5565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613b0a565b611b66565b6040516107ca9190614fd3565b60405180910390f35b3480156107df57600080fd5b506107e8611b7e565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613cb1565b611cff565b005b34801561081f57600080fd5b5061083a60048036038101906108359190613bbe565b611ea7565b005b34801561084857600080fd5b50610863600480360381019061085e9190613db4565b611f03565b6040516108709190614b56565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190613db4565b611faa565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613db4565b612030565b005b3480156108d757600080fd5b506108e06120b6565b6040516108ed9190614fd3565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190613b0a565b6120bc565b60405161092a9190614fd3565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190613b33565b6120ce565b6040516109679190614b3b565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190613b0a565b612162565b005b3480156109a557600080fd5b506109ae61225a565b6040516109bb9190614fd3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b075750610b0682612260565b5b9050919050565b606060058054610b1d906153af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b49906153af565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b5050505050905090565b610ba86122ca565b73ffffffffffffffffffffffffffffffffffffffff16610bc66116ab565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390614d78565b60405180910390fd5b600e5481610c28610e24565b610c329190615156565b1115610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90614d38565b60405180910390fd5b610c7d33826122d2565b50565b6000610c8b826122f0565b610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190614f38565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1082611498565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890614df8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da06122ca565b73ffffffffffffffffffffffffffffffffffffffff161480610dcf5750610dce81610dc96122ca565b6120ce565b5b610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590614cd8565b60405180910390fd5b610e198383836122fe565b505050565b60105481565b6000600154905090565b610e366122ca565b73ffffffffffffffffffffffffffffffffffffffff16610e546116ab565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614d78565b60405180910390fd5b80600e8190555050565b610ebf8383836123b0565b505050565b610ecc6122ca565b73ffffffffffffffffffffffffffffffffffffffff16610eea6116ab565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790614d78565b60405180910390fd5b8060108190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614c98565b60405180910390fd5b601154811115610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614b98565b60405180910390fd5b80600f5461100b91906151dd565b34101561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614e58565b60405180910390fd5b60025481611059610e24565b6110639190615156565b11156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90614d38565b60405180910390fd5b6110ae33826122d2565b50565b6110b96122ca565b73ffffffffffffffffffffffffffffffffffffffff166110d76116ab565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490614d78565b60405180910390fd5b6002600c541415611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90614ef8565b60405180910390fd5b6002600c8190555061118481612969565b6001600c8190555050565b600061119a836114ae565b82106111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d290614b78565b60405180910390fd5b60006111e5610e24565b905060008060005b8381101561134b576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112df57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113375786841415611328578195505050505050611387565b8380611333906153e1565b9450505b508080611343906153e1565b9150506111ed565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90614eb8565b60405180910390fd5b92915050565b6113a883838360405180602001604052806000815250611ea7565b505050565b60006113b7610e24565b82106113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614c38565b60405180910390fd5b819050919050565b6114086122ca565b73ffffffffffffffffffffffffffffffffffffffff166114266116ab565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390614d78565b60405180910390fd5b81816014919061148d9291906137e6565b505050565b60115481565b60006114a382612bbb565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614d18565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61159f6122ca565b73ffffffffffffffffffffffffffffffffffffffff166115bd6116ab565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90614d78565b60405180910390fd5b61161d6000612d82565b565b6116276122ca565b73ffffffffffffffffffffffffffffffffffffffff166116456116ab565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614d78565b60405180910390fd5b8060038190555050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60128060000160009054906101000a900467ffffffffffffffff16905081565b6116fc61386c565b61170582612bbb565b9050919050565b60606006805461171b906153af565b80601f0160208091040260200160405190810160405280929190818152602001828054611747906153af565b80156117945780601f1061176957610100808354040283529160200191611794565b820191906000526020600020905b81548152906001019060200180831161177757829003601f168201915b5050505050905090565b6117a66122ca565b73ffffffffffffffffffffffffffffffffffffffff166117c46116ab565b73ffffffffffffffffffffffffffffffffffffffff161461181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190614d78565b60405180910390fd5b8060028190555050565b600f5481565b60006118346122ca565b905060008211611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614bf8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90614f58565b60405180910390fd5b6118ef610e24565b600354106119415781601054101561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390614cb8565b60405180910390fd5b6119d7565b816011541015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614c18565b60405180910390fd5b81600f5461199491906151dd565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90614e58565b60405180910390fd5b5b6119e133836122d2565b5050565b6119ed6122ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290614db8565b60405180910390fd5b80600a6000611a686122ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b156122ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5a9190614b3b565b60405180910390a35050565b60136020528060005260406000206000915090505481565b611b866122ca565b73ffffffffffffffffffffffffffffffffffffffff16611ba46116ab565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614d78565b60405180910390fd5b6002600c541415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614ef8565b60405180910390fd5b6002600c8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6e90614abf565b60006040518083038185875af1925050503d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b5050905080611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90614e18565b60405180910390fd5b506001600c81905550565b611d076122ca565b73ffffffffffffffffffffffffffffffffffffffff16611d256116ab565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614d78565b60405180910390fd5b8051825114611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690614f98565b60405180910390fd5b60005b8251811015611ea257818181518110611e04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160136000858481518110611e49577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e9a906153e1565b915050611dc2565b505050565b611eb28484846123b0565b611ebe84848484612e46565b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490614e38565b60405180910390fd5b50505050565b6060611f0e826122f0565b611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614d98565b60405180910390fd5b6000611f57612fdd565b90506000815111611f775760405180602001604052806000815250611fa2565b80611f818461306f565b604051602001611f92929190614a9b565b6040516020818303038152906040525b915050919050565b611fb26122ca565b73ffffffffffffffffffffffffffffffffffffffff16611fd06116ab565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614d78565b60405180910390fd5b8060118190555050565b6120386122ca565b73ffffffffffffffffffffffffffffffffffffffff166120566116ab565b73ffffffffffffffffffffffffffffffffffffffff16146120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390614d78565b60405180910390fd5b80600f8190555050565b600b5481565b60006120c78261321c565b9050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61216a6122ca565b73ffffffffffffffffffffffffffffffffffffffff166121886116ab565b73ffffffffffffffffffffffffffffffffffffffff16146121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614d78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590614bb8565b60405180910390fd5b61225781612d82565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6122ec828260405180602001604052806000815250613305565b5050565b600060015482109050919050565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006123bb82612bbb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123e26122ca565b73ffffffffffffffffffffffffffffffffffffffff16148061243e57506124076122ca565b73ffffffffffffffffffffffffffffffffffffffff1661242684610c80565b73ffffffffffffffffffffffffffffffffffffffff16145b8061245a575061245982600001516124546122ca565b6120ce565b5b90508061249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390614dd8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561257e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257590614c58565b60405180910390fd5b61258b85858560016137c7565b61259b60008484600001516122fe565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126099190615237565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126ad9190615110565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846127b39190615156565b9050600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128f957612829816122f0565b156128f8576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506007600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296186868660016137cd565b505050505050565b6000600b549050600082116129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa90614cf8565b60405180910390fd5b6000600183836129c39190615156565b6129cd919061526b565b905060016002546129de919061526b565b8111156129f75760016002546129f4919061526b565b90505b612a00816122f0565b612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3690614ed8565b60405180910390fd5b60008290505b818111612ba257600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b8f576000612ac282612bbb565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612b9a906153e1565b915050612a45565b50600181612bb09190615156565b600b81905550505050565b612bc361386c565b612bcc826122f0565b612c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0290614bd8565b60405180910390fd5b60006004548310612c3357600160045484612c26919061526b565b612c309190615156565b90505b60008390505b818110612d41576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d2d57809350505050612d7d565b508080612d3990615385565b915050612c39565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7490614f18565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612e678473ffffffffffffffffffffffffffffffffffffffff166137d3565b15612fd0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e906122ca565b8786866040518563ffffffff1660e01b8152600401612eb29493929190614aef565b602060405180830381600087803b158015612ecc57600080fd5b505af1925050508015612efd57506040513d601f19601f82011682018060405250810190612efa9190613d46565b60015b612f80573d8060008114612f2d576040519150601f19603f3d011682016040523d82523d6000602084013e612f32565b606091505b50600081511415612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f90614e38565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fd5565b600190505b949350505050565b606060148054612fec906153af565b80601f0160208091040260200160405190810160405280929190818152602001828054613018906153af565b80156130655780601f1061303a57610100808354040283529160200191613065565b820191906000526020600020905b81548152906001019060200180831161304857829003601f168201915b5050505050905090565b606060008214156130b7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613217565b600082905060005b600082146130e95780806130d2906153e1565b915050600a826130e291906151ac565b91506130bf565b60008167ffffffffffffffff81111561312b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561315d5781602001600182028036833780820191505090505b5090505b6000851461321057600182613176919061526b565b9150600a85613185919061542a565b60306131919190615156565b60f81b8183815181106131cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561320991906151ac565b9450613161565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328490614c78565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561337c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337390614e98565b60405180910390fd5b613385816122f0565b156133c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bc90614e78565b60405180910390fd5b60045483111561340a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340190614f78565b60405180910390fd5b61341760008583866137c7565b6000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135149190615110565b6fffffffffffffffffffffffffffffffff16815260200185836020015161353b9190615110565b6fffffffffffffffffffffffffffffffff16815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156137aa57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461374a6000888488612e46565b613789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378090614e38565b60405180910390fd5b8180613794906153e1565b92505080806137a2906153e1565b9150506136d9565b50806001819055506137bf60008785886137cd565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b8280546137f2906153af565b90600052602060002090601f016020900481019282613814576000855561385b565b82601f1061382d57803560ff191683800117855561385b565b8280016001018555821561385b579182015b8281111561385a57823582559160200191906001019061383f565b5b50905061386891906138a6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138bf5760008160009055506001016138a7565b5090565b60006138d66138d18461503a565b615009565b905080838252602082019050828560208602820111156138f557600080fd5b60005b85811015613925578161390b88826139d9565b8452602084019350602083019250506001810190506138f8565b5050509392505050565b600061394261393d84615066565b615009565b9050808382526020820190508285602086028201111561396157600080fd5b60005b8581101561399157816139778882613af5565b845260208401935060208301925050600181019050613964565b5050509392505050565b60006139ae6139a984615092565b615009565b9050828152602081018484840111156139c657600080fd5b6139d1848285615343565b509392505050565b6000813590506139e881615528565b92915050565b600082601f8301126139ff57600080fd5b8135613a0f8482602086016138c3565b91505092915050565b600082601f830112613a2957600080fd5b8135613a3984826020860161392f565b91505092915050565b600081359050613a518161553f565b92915050565b600081359050613a6681615556565b92915050565b600081519050613a7b81615556565b92915050565b600082601f830112613a9257600080fd5b8135613aa284826020860161399b565b91505092915050565b60008083601f840112613abd57600080fd5b8235905067ffffffffffffffff811115613ad657600080fd5b602083019150836001820283011115613aee57600080fd5b9250929050565b600081359050613b048161556d565b92915050565b600060208284031215613b1c57600080fd5b6000613b2a848285016139d9565b91505092915050565b60008060408385031215613b4657600080fd5b6000613b54858286016139d9565b9250506020613b65858286016139d9565b9150509250929050565b600080600060608486031215613b8457600080fd5b6000613b92868287016139d9565b9350506020613ba3868287016139d9565b9250506040613bb486828701613af5565b9150509250925092565b60008060008060808587031215613bd457600080fd5b6000613be2878288016139d9565b9450506020613bf3878288016139d9565b9350506040613c0487828801613af5565b925050606085013567ffffffffffffffff811115613c2157600080fd5b613c2d87828801613a81565b91505092959194509250565b60008060408385031215613c4c57600080fd5b6000613c5a858286016139d9565b9250506020613c6b85828601613a42565b9150509250929050565b60008060408385031215613c8857600080fd5b6000613c96858286016139d9565b9250506020613ca785828601613af5565b9150509250929050565b60008060408385031215613cc457600080fd5b600083013567ffffffffffffffff811115613cde57600080fd5b613cea858286016139ee565b925050602083013567ffffffffffffffff811115613d0757600080fd5b613d1385828601613a18565b9150509250929050565b600060208284031215613d2f57600080fd5b6000613d3d84828501613a57565b91505092915050565b600060208284031215613d5857600080fd5b6000613d6684828501613a6c565b91505092915050565b60008060208385031215613d8257600080fd5b600083013567ffffffffffffffff811115613d9c57600080fd5b613da885828601613aab565b92509250509250929050565b600060208284031215613dc657600080fd5b6000613dd484828501613af5565b91505092915050565b613de68161529f565b82525050565b613df58161529f565b82525050565b613e04816152b1565b82525050565b6000613e15826150c2565b613e1f81856150d8565b9350613e2f818560208601615352565b613e3881615517565b840191505092915050565b6000613e4e826150cd565b613e5881856150f4565b9350613e68818560208601615352565b613e7181615517565b840191505092915050565b6000613e87826150cd565b613e918185615105565b9350613ea1818560208601615352565b80840191505092915050565b6000613eba6022836150f4565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f206017836150f4565b91507f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006000830152602082019050919050565b6000613f606026836150f4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc6602a836150f4565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061402c600a836150f4565b91507f4e6f2030206d696e7473000000000000000000000000000000000000000000006000830152602082019050919050565b600061406c6016836150f4565b91507f457863657373206d6178207065722070616964207478000000000000000000006000830152602082019050919050565b60006140ac6023836150f4565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141126025836150f4565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141786031836150f4565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b60006141de601e836150f4565b91507f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006000830152602082019050919050565b600061421e6016836150f4565b91507f457863657373206d6178207065722066726565207478000000000000000000006000830152602082019050919050565b600061425e6039836150f4565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006142c46018836150f4565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b6000614304602b836150f4565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b600061436a6012836150f4565b91507f72656163686564206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b60006143aa6026836150f4565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144106020836150f4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614450602f836150f4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006144b6601a836150f4565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006144f66032836150f4565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061455c6022836150f4565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145c26000836150e9565b9150600082019050919050565b60006145dc6010836150f4565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b600061461c6033836150f4565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006146826016836150f4565b91507f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006000830152602082019050919050565b60006146c2601d836150f4565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006147026021836150f4565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614768602e836150f4565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b60006147ce6026836150f4565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614834601f836150f4565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614874602f836150f4565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006148da602d836150f4565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614940600c836150f4565b91507f4e6f20636f6e74726163747300000000000000000000000000000000000000006000830152602082019050919050565b60006149806022836150f4565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149e66028836150f4565b91507f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008301527f73206c656e6774680000000000000000000000000000000000000000000000006020830152604082019050919050565b604082016000820151614a556000850182613ddd565b506020820151614a686020850182614a7d565b50505050565b614a7781615325565b82525050565b614a868161532f565b82525050565b614a958161532f565b82525050565b6000614aa78285613e7c565b9150614ab38284613e7c565b91508190509392505050565b6000614aca826145b5565b9150819050919050565b6000602082019050614ae96000830184613dec565b92915050565b6000608082019050614b046000830187613dec565b614b116020830186613dec565b614b1e6040830185614a6e565b8181036060830152614b308184613e0a565b905095945050505050565b6000602082019050614b506000830184613dfb565b92915050565b60006020820190508181036000830152614b708184613e43565b905092915050565b60006020820190508181036000830152614b9181613ead565b9050919050565b60006020820190508181036000830152614bb181613f13565b9050919050565b60006020820190508181036000830152614bd181613f53565b9050919050565b60006020820190508181036000830152614bf181613fb9565b9050919050565b60006020820190508181036000830152614c118161401f565b9050919050565b60006020820190508181036000830152614c318161405f565b9050919050565b60006020820190508181036000830152614c518161409f565b9050919050565b60006020820190508181036000830152614c7181614105565b9050919050565b60006020820190508181036000830152614c918161416b565b9050919050565b60006020820190508181036000830152614cb1816141d1565b9050919050565b60006020820190508181036000830152614cd181614211565b9050919050565b60006020820190508181036000830152614cf181614251565b9050919050565b60006020820190508181036000830152614d11816142b7565b9050919050565b60006020820190508181036000830152614d31816142f7565b9050919050565b60006020820190508181036000830152614d518161435d565b9050919050565b60006020820190508181036000830152614d718161439d565b9050919050565b60006020820190508181036000830152614d9181614403565b9050919050565b60006020820190508181036000830152614db181614443565b9050919050565b60006020820190508181036000830152614dd1816144a9565b9050919050565b60006020820190508181036000830152614df1816144e9565b9050919050565b60006020820190508181036000830152614e118161454f565b9050919050565b60006020820190508181036000830152614e31816145cf565b9050919050565b60006020820190508181036000830152614e518161460f565b9050919050565b60006020820190508181036000830152614e7181614675565b9050919050565b60006020820190508181036000830152614e91816146b5565b9050919050565b60006020820190508181036000830152614eb1816146f5565b9050919050565b60006020820190508181036000830152614ed18161475b565b9050919050565b60006020820190508181036000830152614ef1816147c1565b9050919050565b60006020820190508181036000830152614f1181614827565b9050919050565b60006020820190508181036000830152614f3181614867565b9050919050565b60006020820190508181036000830152614f51816148cd565b9050919050565b60006020820190508181036000830152614f7181614933565b9050919050565b60006020820190508181036000830152614f9181614973565b9050919050565b60006020820190508181036000830152614fb1816149d9565b9050919050565b6000604082019050614fcd6000830184614a3f565b92915050565b6000602082019050614fe86000830184614a6e565b92915050565b60006020820190506150036000830184614a8c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156150305761502f6154e8565b5b8060405250919050565b600067ffffffffffffffff821115615055576150546154e8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615081576150806154e8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150ad576150ac6154e8565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061511b826152e9565b9150615126836152e9565b9250826fffffffffffffffffffffffffffffffff0382111561514b5761514a61545b565b5b828201905092915050565b600061516182615325565b915061516c83615325565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151a1576151a061545b565b5b828201905092915050565b60006151b782615325565b91506151c283615325565b9250826151d2576151d161548a565b5b828204905092915050565b60006151e882615325565b91506151f383615325565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561522c5761522b61545b565b5b828202905092915050565b6000615242826152e9565b915061524d836152e9565b9250828210156152605761525f61545b565b5b828203905092915050565b600061527682615325565b915061528183615325565b9250828210156152945761529361545b565b5b828203905092915050565b60006152aa82615305565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015615370578082015181840152602081019050615355565b8381111561537f576000848401525b50505050565b600061539082615325565b915060008214156153a4576153a361545b565b5b600182039050919050565b600060028204905060018216806153c757607f821691505b602082108114156153db576153da6154b9565b5b50919050565b60006153ec82615325565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541f5761541e61545b565b5b600182019050919050565b600061543582615325565b915061544083615325565b9250826154505761544f61548a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155318161529f565b811461553c57600080fd5b50565b615548816152b1565b811461555357600080fd5b50565b61555f816152bd565b811461556a57600080fd5b50565b61557681615325565b811461558157600080fd5b5056fea2646970667358221220db35e975a54288f0e75d4940f0c98e8ca39ef8bd2febeef5e460682f9cd7c43164736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000022a500000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000009

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638bc35c2f11610139578063ac446002116100b6578063d49f0fa51161007a578063d49f0fa5146108a2578063d7224ba0146108cb578063dc33e681146108f6578063e985e9c514610933578063f2fde38b14610970578063fbe1aa511461099957610251565b8063ac446002146107d3578063b05863d5146107ea578063b88d4fde14610813578063c87b56dd1461083c578063d0d999071461087957610251565b80639f8afbcc116100fd5780639f8afbcc146106fd578063a035b1fe14610726578063a0712d6814610751578063a22cb4651461076d578063a7cd52cb1461079657610251565b80638bc35c2f146106145780638da5cb5b1461063f57806390aa0b0f1461066a5780639231ab2a1461069557806395d89b41146106d257610251565b8063280b7eed116101d257806355f804b31161019657806355f804b3146105065780635a2bcc181461052f5780636352211e1461055a57806370a0823114610597578063715018a6146105d457806380e28ea5146105eb57610251565b8063280b7eed1461041e5780632d20fb601461043a5780632f745c591461046357806342842e0e146104a05780634f6ccce7146104c957610251565b8063130db2bb11610219578063130db2bb1461034d57806318160ddd1461037857806321b2a6cb146103a357806323b872dd146103cc57806327e410f1146103f557610251565b806301ffc9a71461025657806306fdde031461029357806307883703146102be578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613d1d565b6109c4565b60405161028a9190614b3b565b60405180910390f35b34801561029f57600080fd5b506102a8610b0e565b6040516102b59190614b56565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613db4565b610ba0565b005b3480156102f357600080fd5b5061030e60048036038101906103099190613db4565b610c80565b60405161031b9190614ad4565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613c75565b610d05565b005b34801561035957600080fd5b50610362610e1e565b60405161036f9190614fd3565b60405180910390f35b34801561038457600080fd5b5061038d610e24565b60405161039a9190614fd3565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613db4565b610e2e565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613b6f565b610eb4565b005b34801561040157600080fd5b5061041c60048036038101906104179190613db4565b610ec4565b005b61043860048036038101906104339190613db4565b610f4a565b005b34801561044657600080fd5b50610461600480360381019061045c9190613db4565b6110b1565b005b34801561046f57600080fd5b5061048a60048036038101906104859190613c75565b61118f565b6040516104979190614fd3565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190613b6f565b61138d565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613db4565b6113ad565b6040516104fd9190614fd3565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613d6f565b611400565b005b34801561053b57600080fd5b50610544611492565b6040516105519190614fd3565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613db4565b611498565b60405161058e9190614ad4565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613b0a565b6114ae565b6040516105cb9190614fd3565b60405180910390f35b3480156105e057600080fd5b506105e9611597565b005b3480156105f757600080fd5b50610612600480360381019061060d9190613db4565b61161f565b005b34801561062057600080fd5b506106296116a5565b6040516106369190614fd3565b60405180910390f35b34801561064b57600080fd5b506106546116ab565b6040516106619190614ad4565b60405180910390f35b34801561067657600080fd5b5061067f6116d4565b60405161068c9190614fee565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190613db4565b6116f4565b6040516106c99190614fb8565b60405180910390f35b3480156106de57600080fd5b506106e761170c565b6040516106f49190614b56565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190613db4565b61179e565b005b34801561073257600080fd5b5061073b611824565b6040516107489190614fd3565b60405180910390f35b61076b60048036038101906107669190613db4565b61182a565b005b34801561077957600080fd5b50610794600480360381019061078f9190613c39565b6119e5565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613b0a565b611b66565b6040516107ca9190614fd3565b60405180910390f35b3480156107df57600080fd5b506107e8611b7e565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613cb1565b611cff565b005b34801561081f57600080fd5b5061083a60048036038101906108359190613bbe565b611ea7565b005b34801561084857600080fd5b50610863600480360381019061085e9190613db4565b611f03565b6040516108709190614b56565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190613db4565b611faa565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613db4565b612030565b005b3480156108d757600080fd5b506108e06120b6565b6040516108ed9190614fd3565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190613b0a565b6120bc565b60405161092a9190614fd3565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190613b33565b6120ce565b6040516109679190614b3b565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190613b0a565b612162565b005b3480156109a557600080fd5b506109ae61225a565b6040516109bb9190614fd3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b075750610b0682612260565b5b9050919050565b606060058054610b1d906153af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b49906153af565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b5050505050905090565b610ba86122ca565b73ffffffffffffffffffffffffffffffffffffffff16610bc66116ab565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390614d78565b60405180910390fd5b600e5481610c28610e24565b610c329190615156565b1115610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90614d38565b60405180910390fd5b610c7d33826122d2565b50565b6000610c8b826122f0565b610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190614f38565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d1082611498565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890614df8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da06122ca565b73ffffffffffffffffffffffffffffffffffffffff161480610dcf5750610dce81610dc96122ca565b6120ce565b5b610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590614cd8565b60405180910390fd5b610e198383836122fe565b505050565b60105481565b6000600154905090565b610e366122ca565b73ffffffffffffffffffffffffffffffffffffffff16610e546116ab565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614d78565b60405180910390fd5b80600e8190555050565b610ebf8383836123b0565b505050565b610ecc6122ca565b73ffffffffffffffffffffffffffffffffffffffff16610eea6116ab565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790614d78565b60405180910390fd5b8060108190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614c98565b60405180910390fd5b601154811115610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614b98565b60405180910390fd5b80600f5461100b91906151dd565b34101561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614e58565b60405180910390fd5b60025481611059610e24565b6110639190615156565b11156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90614d38565b60405180910390fd5b6110ae33826122d2565b50565b6110b96122ca565b73ffffffffffffffffffffffffffffffffffffffff166110d76116ab565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490614d78565b60405180910390fd5b6002600c541415611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90614ef8565b60405180910390fd5b6002600c8190555061118481612969565b6001600c8190555050565b600061119a836114ae565b82106111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d290614b78565b60405180910390fd5b60006111e5610e24565b905060008060005b8381101561134b576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112df57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113375786841415611328578195505050505050611387565b8380611333906153e1565b9450505b508080611343906153e1565b9150506111ed565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90614eb8565b60405180910390fd5b92915050565b6113a883838360405180602001604052806000815250611ea7565b505050565b60006113b7610e24565b82106113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614c38565b60405180910390fd5b819050919050565b6114086122ca565b73ffffffffffffffffffffffffffffffffffffffff166114266116ab565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390614d78565b60405180910390fd5b81816014919061148d9291906137e6565b505050565b60115481565b60006114a382612bbb565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614d18565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61159f6122ca565b73ffffffffffffffffffffffffffffffffffffffff166115bd6116ab565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90614d78565b60405180910390fd5b61161d6000612d82565b565b6116276122ca565b73ffffffffffffffffffffffffffffffffffffffff166116456116ab565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614d78565b60405180910390fd5b8060038190555050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60128060000160009054906101000a900467ffffffffffffffff16905081565b6116fc61386c565b61170582612bbb565b9050919050565b60606006805461171b906153af565b80601f0160208091040260200160405190810160405280929190818152602001828054611747906153af565b80156117945780601f1061176957610100808354040283529160200191611794565b820191906000526020600020905b81548152906001019060200180831161177757829003601f168201915b5050505050905090565b6117a66122ca565b73ffffffffffffffffffffffffffffffffffffffff166117c46116ab565b73ffffffffffffffffffffffffffffffffffffffff161461181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190614d78565b60405180910390fd5b8060028190555050565b600f5481565b60006118346122ca565b905060008211611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614bf8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90614f58565b60405180910390fd5b6118ef610e24565b600354106119415781601054101561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390614cb8565b60405180910390fd5b6119d7565b816011541015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614c18565b60405180910390fd5b81600f5461199491906151dd565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90614e58565b60405180910390fd5b5b6119e133836122d2565b5050565b6119ed6122ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290614db8565b60405180910390fd5b80600a6000611a686122ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b156122ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5a9190614b3b565b60405180910390a35050565b60136020528060005260406000206000915090505481565b611b866122ca565b73ffffffffffffffffffffffffffffffffffffffff16611ba46116ab565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614d78565b60405180910390fd5b6002600c541415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614ef8565b60405180910390fd5b6002600c8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611c6e90614abf565b60006040518083038185875af1925050503d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b5050905080611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90614e18565b60405180910390fd5b506001600c81905550565b611d076122ca565b73ffffffffffffffffffffffffffffffffffffffff16611d256116ab565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614d78565b60405180910390fd5b8051825114611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690614f98565b60405180910390fd5b60005b8251811015611ea257818181518110611e04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160136000858481518110611e49577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e9a906153e1565b915050611dc2565b505050565b611eb28484846123b0565b611ebe84848484612e46565b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490614e38565b60405180910390fd5b50505050565b6060611f0e826122f0565b611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490614d98565b60405180910390fd5b6000611f57612fdd565b90506000815111611f775760405180602001604052806000815250611fa2565b80611f818461306f565b604051602001611f92929190614a9b565b6040516020818303038152906040525b915050919050565b611fb26122ca565b73ffffffffffffffffffffffffffffffffffffffff16611fd06116ab565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614d78565b60405180910390fd5b8060118190555050565b6120386122ca565b73ffffffffffffffffffffffffffffffffffffffff166120566116ab565b73ffffffffffffffffffffffffffffffffffffffff16146120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390614d78565b60405180910390fd5b80600f8190555050565b600b5481565b60006120c78261321c565b9050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61216a6122ca565b73ffffffffffffffffffffffffffffffffffffffff166121886116ab565b73ffffffffffffffffffffffffffffffffffffffff16146121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590614d78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590614bb8565b60405180910390fd5b61225781612d82565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6122ec828260405180602001604052806000815250613305565b5050565b600060015482109050919050565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006123bb82612bbb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123e26122ca565b73ffffffffffffffffffffffffffffffffffffffff16148061243e57506124076122ca565b73ffffffffffffffffffffffffffffffffffffffff1661242684610c80565b73ffffffffffffffffffffffffffffffffffffffff16145b8061245a575061245982600001516124546122ca565b6120ce565b5b90508061249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390614dd8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561257e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257590614c58565b60405180910390fd5b61258b85858560016137c7565b61259b60008484600001516122fe565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126099190615237565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126ad9190615110565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846127b39190615156565b9050600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128f957612829816122f0565b156128f8576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506007600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296186868660016137cd565b505050505050565b6000600b549050600082116129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa90614cf8565b60405180910390fd5b6000600183836129c39190615156565b6129cd919061526b565b905060016002546129de919061526b565b8111156129f75760016002546129f4919061526b565b90505b612a00816122f0565b612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3690614ed8565b60405180910390fd5b60008290505b818111612ba257600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b8f576000612ac282612bbb565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612b9a906153e1565b915050612a45565b50600181612bb09190615156565b600b81905550505050565b612bc361386c565b612bcc826122f0565b612c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0290614bd8565b60405180910390fd5b60006004548310612c3357600160045484612c26919061526b565b612c309190615156565b90505b60008390505b818110612d41576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d2d57809350505050612d7d565b508080612d3990615385565b915050612c39565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7490614f18565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612e678473ffffffffffffffffffffffffffffffffffffffff166137d3565b15612fd0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e906122ca565b8786866040518563ffffffff1660e01b8152600401612eb29493929190614aef565b602060405180830381600087803b158015612ecc57600080fd5b505af1925050508015612efd57506040513d601f19601f82011682018060405250810190612efa9190613d46565b60015b612f80573d8060008114612f2d576040519150601f19603f3d011682016040523d82523d6000602084013e612f32565b606091505b50600081511415612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f90614e38565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fd5565b600190505b949350505050565b606060148054612fec906153af565b80601f0160208091040260200160405190810160405280929190818152602001828054613018906153af565b80156130655780601f1061303a57610100808354040283529160200191613065565b820191906000526020600020905b81548152906001019060200180831161304857829003601f168201915b5050505050905090565b606060008214156130b7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613217565b600082905060005b600082146130e95780806130d2906153e1565b915050600a826130e291906151ac565b91506130bf565b60008167ffffffffffffffff81111561312b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561315d5781602001600182028036833780820191505090505b5090505b6000851461321057600182613176919061526b565b9150600a85613185919061542a565b60306131919190615156565b60f81b8183815181106131cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561320991906151ac565b9450613161565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328490614c78565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561337c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337390614e98565b60405180910390fd5b613385816122f0565b156133c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bc90614e78565b60405180910390fd5b60045483111561340a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340190614f78565b60405180910390fd5b61341760008583866137c7565b6000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135149190615110565b6fffffffffffffffffffffffffffffffff16815260200185836020015161353b9190615110565b6fffffffffffffffffffffffffffffffff16815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156137aa57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461374a6000888488612e46565b613789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378090614e38565b60405180910390fd5b8180613794906153e1565b92505080806137a2906153e1565b9150506136d9565b50806001819055506137bf60008785886137cd565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b8280546137f2906153af565b90600052602060002090601f016020900481019282613814576000855561385b565b82601f1061382d57803560ff191683800117855561385b565b8280016001018555821561385b579182015b8281111561385a57823582559160200191906001019061383f565b5b50905061386891906138a6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138bf5760008160009055506001016138a7565b5090565b60006138d66138d18461503a565b615009565b905080838252602082019050828560208602820111156138f557600080fd5b60005b85811015613925578161390b88826139d9565b8452602084019350602083019250506001810190506138f8565b5050509392505050565b600061394261393d84615066565b615009565b9050808382526020820190508285602086028201111561396157600080fd5b60005b8581101561399157816139778882613af5565b845260208401935060208301925050600181019050613964565b5050509392505050565b60006139ae6139a984615092565b615009565b9050828152602081018484840111156139c657600080fd5b6139d1848285615343565b509392505050565b6000813590506139e881615528565b92915050565b600082601f8301126139ff57600080fd5b8135613a0f8482602086016138c3565b91505092915050565b600082601f830112613a2957600080fd5b8135613a3984826020860161392f565b91505092915050565b600081359050613a518161553f565b92915050565b600081359050613a6681615556565b92915050565b600081519050613a7b81615556565b92915050565b600082601f830112613a9257600080fd5b8135613aa284826020860161399b565b91505092915050565b60008083601f840112613abd57600080fd5b8235905067ffffffffffffffff811115613ad657600080fd5b602083019150836001820283011115613aee57600080fd5b9250929050565b600081359050613b048161556d565b92915050565b600060208284031215613b1c57600080fd5b6000613b2a848285016139d9565b91505092915050565b60008060408385031215613b4657600080fd5b6000613b54858286016139d9565b9250506020613b65858286016139d9565b9150509250929050565b600080600060608486031215613b8457600080fd5b6000613b92868287016139d9565b9350506020613ba3868287016139d9565b9250506040613bb486828701613af5565b9150509250925092565b60008060008060808587031215613bd457600080fd5b6000613be2878288016139d9565b9450506020613bf3878288016139d9565b9350506040613c0487828801613af5565b925050606085013567ffffffffffffffff811115613c2157600080fd5b613c2d87828801613a81565b91505092959194509250565b60008060408385031215613c4c57600080fd5b6000613c5a858286016139d9565b9250506020613c6b85828601613a42565b9150509250929050565b60008060408385031215613c8857600080fd5b6000613c96858286016139d9565b9250506020613ca785828601613af5565b9150509250929050565b60008060408385031215613cc457600080fd5b600083013567ffffffffffffffff811115613cde57600080fd5b613cea858286016139ee565b925050602083013567ffffffffffffffff811115613d0757600080fd5b613d1385828601613a18565b9150509250929050565b600060208284031215613d2f57600080fd5b6000613d3d84828501613a57565b91505092915050565b600060208284031215613d5857600080fd5b6000613d6684828501613a6c565b91505092915050565b60008060208385031215613d8257600080fd5b600083013567ffffffffffffffff811115613d9c57600080fd5b613da885828601613aab565b92509250509250929050565b600060208284031215613dc657600080fd5b6000613dd484828501613af5565b91505092915050565b613de68161529f565b82525050565b613df58161529f565b82525050565b613e04816152b1565b82525050565b6000613e15826150c2565b613e1f81856150d8565b9350613e2f818560208601615352565b613e3881615517565b840191505092915050565b6000613e4e826150cd565b613e5881856150f4565b9350613e68818560208601615352565b613e7181615517565b840191505092915050565b6000613e87826150cd565b613e918185615105565b9350613ea1818560208601615352565b80840191505092915050565b6000613eba6022836150f4565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f206017836150f4565b91507f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006000830152602082019050919050565b6000613f606026836150f4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc6602a836150f4565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061402c600a836150f4565b91507f4e6f2030206d696e7473000000000000000000000000000000000000000000006000830152602082019050919050565b600061406c6016836150f4565b91507f457863657373206d6178207065722070616964207478000000000000000000006000830152602082019050919050565b60006140ac6023836150f4565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141126025836150f4565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141786031836150f4565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b60006141de601e836150f4565b91507f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006000830152602082019050919050565b600061421e6016836150f4565b91507f457863657373206d6178207065722066726565207478000000000000000000006000830152602082019050919050565b600061425e6039836150f4565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006142c46018836150f4565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b6000614304602b836150f4565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b600061436a6012836150f4565b91507f72656163686564206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b60006143aa6026836150f4565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144106020836150f4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614450602f836150f4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006144b6601a836150f4565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006144f66032836150f4565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061455c6022836150f4565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145c26000836150e9565b9150600082019050919050565b60006145dc6010836150f4565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b600061461c6033836150f4565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006146826016836150f4565b91507f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006000830152602082019050919050565b60006146c2601d836150f4565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006147026021836150f4565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614768602e836150f4565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b60006147ce6026836150f4565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614834601f836150f4565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614874602f836150f4565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006148da602d836150f4565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614940600c836150f4565b91507f4e6f20636f6e74726163747300000000000000000000000000000000000000006000830152602082019050919050565b60006149806022836150f4565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149e66028836150f4565b91507f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008301527f73206c656e6774680000000000000000000000000000000000000000000000006020830152604082019050919050565b604082016000820151614a556000850182613ddd565b506020820151614a686020850182614a7d565b50505050565b614a7781615325565b82525050565b614a868161532f565b82525050565b614a958161532f565b82525050565b6000614aa78285613e7c565b9150614ab38284613e7c565b91508190509392505050565b6000614aca826145b5565b9150819050919050565b6000602082019050614ae96000830184613dec565b92915050565b6000608082019050614b046000830187613dec565b614b116020830186613dec565b614b1e6040830185614a6e565b8181036060830152614b308184613e0a565b905095945050505050565b6000602082019050614b506000830184613dfb565b92915050565b60006020820190508181036000830152614b708184613e43565b905092915050565b60006020820190508181036000830152614b9181613ead565b9050919050565b60006020820190508181036000830152614bb181613f13565b9050919050565b60006020820190508181036000830152614bd181613f53565b9050919050565b60006020820190508181036000830152614bf181613fb9565b9050919050565b60006020820190508181036000830152614c118161401f565b9050919050565b60006020820190508181036000830152614c318161405f565b9050919050565b60006020820190508181036000830152614c518161409f565b9050919050565b60006020820190508181036000830152614c7181614105565b9050919050565b60006020820190508181036000830152614c918161416b565b9050919050565b60006020820190508181036000830152614cb1816141d1565b9050919050565b60006020820190508181036000830152614cd181614211565b9050919050565b60006020820190508181036000830152614cf181614251565b9050919050565b60006020820190508181036000830152614d11816142b7565b9050919050565b60006020820190508181036000830152614d31816142f7565b9050919050565b60006020820190508181036000830152614d518161435d565b9050919050565b60006020820190508181036000830152614d718161439d565b9050919050565b60006020820190508181036000830152614d9181614403565b9050919050565b60006020820190508181036000830152614db181614443565b9050919050565b60006020820190508181036000830152614dd1816144a9565b9050919050565b60006020820190508181036000830152614df1816144e9565b9050919050565b60006020820190508181036000830152614e118161454f565b9050919050565b60006020820190508181036000830152614e31816145cf565b9050919050565b60006020820190508181036000830152614e518161460f565b9050919050565b60006020820190508181036000830152614e7181614675565b9050919050565b60006020820190508181036000830152614e91816146b5565b9050919050565b60006020820190508181036000830152614eb1816146f5565b9050919050565b60006020820190508181036000830152614ed18161475b565b9050919050565b60006020820190508181036000830152614ef1816147c1565b9050919050565b60006020820190508181036000830152614f1181614827565b9050919050565b60006020820190508181036000830152614f3181614867565b9050919050565b60006020820190508181036000830152614f51816148cd565b9050919050565b60006020820190508181036000830152614f7181614933565b9050919050565b60006020820190508181036000830152614f9181614973565b9050919050565b60006020820190508181036000830152614fb1816149d9565b9050919050565b6000604082019050614fcd6000830184614a3f565b92915050565b6000602082019050614fe86000830184614a6e565b92915050565b60006020820190506150036000830184614a8c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156150305761502f6154e8565b5b8060405250919050565b600067ffffffffffffffff821115615055576150546154e8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615081576150806154e8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150ad576150ac6154e8565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061511b826152e9565b9150615126836152e9565b9250826fffffffffffffffffffffffffffffffff0382111561514b5761514a61545b565b5b828201905092915050565b600061516182615325565b915061516c83615325565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151a1576151a061545b565b5b828201905092915050565b60006151b782615325565b91506151c283615325565b9250826151d2576151d161548a565b5b828204905092915050565b60006151e882615325565b91506151f383615325565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561522c5761522b61545b565b5b828202905092915050565b6000615242826152e9565b915061524d836152e9565b9250828210156152605761525f61545b565b5b828203905092915050565b600061527682615325565b915061528183615325565b9250828210156152945761529361545b565b5b828203905092915050565b60006152aa82615305565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015615370578082015181840152602081019050615355565b8381111561537f576000848401525b50505050565b600061539082615325565b915060008214156153a4576153a361545b565b5b600182039050919050565b600060028204905060018216806153c757607f821691505b602082108114156153db576153da6154b9565b5b50919050565b60006153ec82615325565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561541f5761541e61545b565b5b600182019050919050565b600061543582615325565b915061544083615325565b9250826154505761544f61548a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155318161529f565b811461553c57600080fd5b50565b615548816152b1565b811461555357600080fd5b50565b61555f816152bd565b811461556a57600080fd5b50565b61557681615325565b811461558157600080fd5b5056fea2646970667358221220db35e975a54288f0e75d4940f0c98e8ca39ef8bd2febeef5e460682f9cd7c43164736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000022a500000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000009

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 200
Arg [1] : collectionSize_ (uint256): 8869
Arg [2] : collectionSizeFree_ (uint256): 1000
Arg [3] : amountForDevs_ (uint256): 9

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 00000000000000000000000000000000000000000000000000000000000022a5
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009


Deployed Bytecode Sourcemap

40516:3872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23335:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25061:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42645:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26586:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26149:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40693:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21896:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44025:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27436:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44149:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41339:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43302:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22527:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27641:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22059:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43009:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40731:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24884:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23761:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39856:94;;;;;;;;;;;;;:::i;:::-;;43780:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40577:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39205:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40823:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43539:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25216:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43897:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40653:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41700:557;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26854:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40858:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43115:181;;;;;;;;;;;;;:::i;:::-;;42275:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27861:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25377:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44277:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43690:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32276:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43426:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27191:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40105:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40620:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23335:370;23462:4;23507:25;23492:40;;;:11;:40;;;;:99;;;;23558:33;23543:48;;;:11;:48;;;;23492:99;:160;;;;23617:35;23602:50;;;:11;:50;;;;23492:160;:207;;;;23663:36;23687:11;23663:23;:36::i;:::-;23492:207;23478:221;;23335:370;;;:::o;25061:94::-;25115:13;25144:5;25137:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:94;:::o;42645:181::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42746:13:::1;;42734:8;42718:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;42710:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;42789:31;42799:10;42811:8;42789:9;:31::i;:::-;42645:181:::0;:::o;26586:204::-;26654:7;26678:16;26686:7;26678;:16::i;:::-;26670:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26760:15;:24;26776:7;26760:24;;;;;;;;;;;;;;;;;;;;;26753:31;;26586:204;;;:::o;26149:379::-;26218:13;26234:24;26250:7;26234:15;:24::i;:::-;26218:40;;26279:5;26273:11;;:2;:11;;;;26265:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26364:5;26348:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26373:37;26390:5;26397:12;:10;:12::i;:::-;26373:16;:37::i;:::-;26348:62;26332:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;26494:28;26503:2;26507:7;26516:5;26494:8;:28::i;:::-;26149:379;;;:::o;40693:33::-;;;;:::o;21896:94::-;21949:7;21972:12;;21965:19;;21896:94;:::o;44025:116::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44119:17:::1;44103:13;:33;;;;44025:116:::0;:::o;27436:142::-;27544:28;27554:4;27560:2;27564:7;27544:9;:28::i;:::-;27436:142;;;:::o;44149:120::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44246:18:::1;44229:14;:35;;;;44149:120:::0;:::o;41339:353::-;41274:10;41261:23;;:9;:23;;;41253:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41451:10:::1;;41439:8;:22;;41431:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41527:8;41519:5;;:16;;;;:::i;:::-;41506:9;:29;;41498:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41605:14;;41593:8;41577:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;41569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41649:31;41659:10;41671:8;41649:9;:31::i;:::-;41339:353:::0;:::o;43302:118::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37319:1:::1;37915:7;;:19;;37907:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37319:1;38048:7;:18;;;;43386:28:::2;43405:8;43386:18;:28::i;:::-;37275:1:::1;38227:7;:22;;;;43302:118:::0;:::o;22527:744::-;22636:7;22671:16;22681:5;22671:9;:16::i;:::-;22663:5;:24;22655:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22733:22;22758:13;:11;:13::i;:::-;22733:38;;22778:19;22808:25;22858:9;22853:350;22877:14;22873:1;:18;22853:350;;;22907:31;22941:11;:14;22953:1;22941:14;;;;;;;;;;;22907:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22994:1;22968:28;;:9;:14;;;:28;;;22964:89;;23029:9;:14;;;23009:34;;22964:89;23086:5;23065:26;;:17;:26;;;23061:135;;;23123:5;23108:11;:20;23104:59;;;23150:1;23143:8;;;;;;;;;23104:59;23173:13;;;;;:::i;:::-;;;;23061:135;22853:350;22893:3;;;;;:::i;:::-;;;;22853:350;;;;23209:56;;;;;;;;;;:::i;:::-;;;;;;;;22527:744;;;;;:::o;27641:157::-;27753:39;27770:4;27776:2;27780:7;27753:39;;;;;;;;;;;;:16;:39::i;:::-;27641:157;;;:::o;22059:177::-;22126:7;22158:13;:11;:13::i;:::-;22150:5;:21;22142:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22225:5;22218:12;;22059:177;;;:::o;43009:100::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43096:7:::1;;43080:13;:23;;;;;;;:::i;:::-;;43009:100:::0;;:::o;40731:30::-;;;;:::o;24884:118::-;24948:7;24971:20;24983:7;24971:11;:20::i;:::-;:25;;;24964:32;;24884:118;;;:::o;23761:211::-;23825:7;23866:1;23849:19;;:5;:19;;;;23841:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;23938:12;:19;23951:5;23938:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;23930:36;;23923:43;;23761:211;;;:::o;39856:94::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39921:21:::1;39939:1;39921:9;:21::i;:::-;39856:94::o:0;43780:109::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43871:13:::1;43850:18;:34;;;;43780:109:::0;:::o;40577:38::-;;;;:::o;39205:87::-;39251:7;39278:6;;;;;;;;;;;39271:13;;39205:87;:::o;40823:28::-;;;;;;;;;;;;;;;;;;:::o;43539:147::-;43620:21;;:::i;:::-;43660:20;43672:7;43660:11;:20::i;:::-;43653:27;;43539:147;;;:::o;25216:98::-;25272:13;25301:7;25294:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25216:98;:::o;43897:120::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43994:18:::1;43977:14;:35;;;;43897:120:::0;:::o;40653:35::-;;;;:::o;41700:557::-;41750:15;41768:12;:10;:12::i;:::-;41750:30;;41817:1;41806:8;:12;41798:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;41865:7;41852:20;;:9;:20;;;41844:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;41928:13;:11;:13::i;:::-;41906:18;;:35;41903:300;;41981:8;41963:14;;:26;;41955:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41903:300;;;42072:8;42058:10;;:22;;42050:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42152:8;42144:5;;:16;;;;:::i;:::-;42131:9;:29;;42123:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41903:300;42215:31;42225:10;42237:8;42215:9;:31::i;:::-;41700:557;;:::o;26854:274::-;26957:12;:10;:12::i;:::-;26945:24;;:8;:24;;;;26937:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27054:8;27009:18;:32;27028:12;:10;:12::i;:::-;27009:32;;;;;;;;;;;;;;;:42;27042:8;27009:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27103:8;27074:48;;27089:12;:10;:12::i;:::-;27074:48;;;27113:8;27074:48;;;;;;:::i;:::-;;;;;;;;26854:274;;:::o;40858:44::-;;;;;;;;;;;;;;;;;:::o;43115:181::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37319:1:::1;37915:7;;:19;;37907:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37319:1;38048:7;:18;;;;43180:12:::2;43198:10;:15;;43221:21;43198:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43179:68;;;43262:7;43254:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;38079:1;37275::::1;38227:7;:22;;;;43115:181::o:0;42275:339::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42428:8:::1;:15;42408:9;:16;:35;42392:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;42513:9;42508:101;42532:9;:16;42528:1;:20;42508:101;;;42590:8;42599:1;42590:11;;;;;;;;;;;;;;;;;;;;;;42564:9;:23;42574:9;42584:1;42574:12;;;;;;;;;;;;;;;;;;;;;;42564:23;;;;;;;;;;;;;;;:37;;;;42550:3;;;;;:::i;:::-;;;;42508:101;;;;42275:339:::0;;:::o;27861:311::-;27998:28;28008:4;28014:2;28018:7;27998:9;:28::i;:::-;28049:48;28072:4;28078:2;28082:7;28091:5;28049:22;:48::i;:::-;28033:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;27861:311;;;;:::o;25377:394::-;25475:13;25516:16;25524:7;25516;:16::i;:::-;25500:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;25606:21;25630:10;:8;:10::i;:::-;25606:34;;25685:1;25667:7;25661:21;:25;:104;;;;;;;;;;;;;;;;;25722:7;25731:18;:7;:16;:18::i;:::-;25705:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25661:104;25647:118;;;25377:394;;;:::o;44277:104::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44362:14:::1;44349:10;:27;;;;44277:104:::0;:::o;43690:84::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43760:9:::1;43752:5;:17;;;;43690:84:::0;:::o;32276:43::-;;;;:::o;43426:107::-;43484:7;43507:20;43521:5;43507:13;:20::i;:::-;43500:27;;43426:107;;;:::o;27191:186::-;27313:4;27336:18;:25;27355:5;27336:25;;;;;;;;;;;;;;;:35;27362:8;27336:35;;;;;;;;;;;;;;;;;;;;;;;;;27329:42;;27191:186;;;;:::o;40105:192::-;39436:12;:10;:12::i;:::-;39425:23;;:7;:5;:7::i;:::-;:23;;;39417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40214:1:::1;40194:22;;:8;:22;;;;40186:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40270:19;40280:8;40270:9;:19::i;:::-;40105:192:::0;:::o;40620:28::-;;;;:::o;1541:157::-;1626:4;1665:25;1650:40;;;:11;:40;;;;1643:47;;1541:157;;;:::o;17298:98::-;17351:7;17378:10;17371:17;;17298:98;:::o;28522:::-;28587:27;28597:2;28601:8;28587:27;;;;;;;;;;;;:9;:27::i;:::-;28522:98;;:::o;28411:105::-;28468:4;28498:12;;28488:7;:22;28481:29;;28411:105;;;:::o;32098:172::-;32222:2;32195:15;:24;32211:7;32195:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32256:7;32252:2;32236:28;;32245:5;32236:28;;;;;;;;;;;;32098:172;;;:::o;30463:1529::-;30560:35;30598:20;30610:7;30598:11;:20::i;:::-;30560:58;;30627:22;30669:13;:18;;;30653:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;30722:12;:10;:12::i;:::-;30698:36;;:20;30710:7;30698:11;:20::i;:::-;:36;;;30653:81;:142;;;;30745:50;30762:13;:18;;;30782:12;:10;:12::i;:::-;30745:16;:50::i;:::-;30653:142;30627:169;;30821:17;30805:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;30953:4;30931:26;;:13;:18;;;:26;;;30915:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;31042:1;31028:16;;:2;:16;;;;31020:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31095:43;31117:4;31123:2;31127:7;31136:1;31095:21;:43::i;:::-;31195:49;31212:1;31216:7;31225:13;:18;;;31195:8;:49::i;:::-;31283:1;31253:12;:18;31266:4;31253:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31319:1;31291:12;:16;31304:2;31291:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31350:43;;;;;;;;31365:2;31350:43;;;;;;31376:15;31350:43;;;;;31327:11;:20;31339:7;31327:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31621:19;31653:1;31643:7;:11;;;;:::i;:::-;31621:33;;31706:1;31665:43;;:11;:24;31677:11;31665:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31661:236;;;31723:20;31731:11;31723:7;:20::i;:::-;31719:171;;;31783:97;;;;;;;;31810:13;:18;;;31783:97;;;;;;31841:13;:28;;;31783:97;;;;;31756:11;:24;31768:11;31756:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31719:171;31661:236;31929:7;31925:2;31910:27;;31919:4;31910:27;;;;;;;;;;;;31944:42;31965:4;31971:2;31975:7;31984:1;31944:20;:42::i;:::-;30463:1529;;;;;;:::o;32424:846::-;32486:25;32514:24;;32486:52;;32564:1;32553:8;:12;32545:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;32601:16;32651:1;32640:8;32620:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;32601:51;;32691:1;32674:14;;:18;;;;:::i;:::-;32663:8;:29;32659:81;;;32731:1;32714:14;;:18;;;;:::i;:::-;32703:29;;32659:81;32855:17;32863:8;32855:7;:17::i;:::-;32847:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32927:9;32939:17;32927:29;;32922:297;32963:8;32958:1;:13;32922:297;;33022:1;32991:33;;:11;:14;33003:1;32991:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;32987:225;;;33037:31;33071:14;33083:1;33071:11;:14::i;:::-;33037:48;;33113:89;;;;;;;;33140:9;:14;;;33113:89;;;;;;33167:9;:24;;;33113:89;;;;;33096:11;:14;33108:1;33096:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32987:225;;32973:3;;;;;:::i;:::-;;;;32922:297;;;;33263:1;33252:8;:12;;;;:::i;:::-;33225:24;:39;;;;32424:846;;;:::o;24224:606::-;24300:21;;:::i;:::-;24341:16;24349:7;24341;:16::i;:::-;24333:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24413:26;24461:12;;24450:7;:23;24446:93;;24530:1;24515:12;;24505:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;24484:47;;24446:93;24552:12;24567:7;24552:22;;24547:212;24584:18;24576:4;:26;24547:212;;24621:31;24655:11;:17;24667:4;24655:17;;;;;;;;;;;24621:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24711:1;24685:28;;:9;:14;;;:28;;;24681:71;;24733:9;24726:16;;;;;;;24681:71;24547:212;24604:6;;;;;:::i;:::-;;;;24547:212;;;;24767:57;;;;;;;;;;:::i;:::-;;;;;;;;24224:606;;;;:::o;40305:173::-;40361:16;40380:6;;;;;;;;;;;40361:25;;40406:8;40397:6;;:17;;;;;;;;;;;;;;;;;;40461:8;40430:40;;40451:8;40430:40;;;;;;;;;;;;40305:173;;:::o;33813:690::-;33950:4;33967:15;:2;:13;;;:15::i;:::-;33963:535;;;34022:2;34006:36;;;34043:12;:10;:12::i;:::-;34057:4;34063:7;34072:5;34006:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33993:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34254:1;34237:6;:13;:18;34233:215;;;34270:61;;;;;;;;;;:::i;:::-;;;;;;;;34233:215;34416:6;34410:13;34401:6;34397:2;34393:15;34386:38;33993:464;34138:45;;;34128:55;;;:6;:55;;;;34121:62;;;;;33963:535;34486:4;34479:11;;33813:690;;;;;;;:::o;42895:108::-;42955:13;42984;42977:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42895:108;:::o;17767:723::-;17823:13;18053:1;18044:5;:10;18040:53;;;18071:10;;;;;;;;;;;;;;;;;;;;;18040:53;18103:12;18118:5;18103:20;;18134:14;18159:78;18174:1;18166:4;:9;18159:78;;18192:8;;;;;:::i;:::-;;;;18223:2;18215:10;;;;;:::i;:::-;;;18159:78;;;18247:19;18279:6;18269:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18247:39;;18297:154;18313:1;18304:5;:10;18297:154;;18341:1;18331:11;;;;;:::i;:::-;;;18408:2;18400:5;:10;;;;:::i;:::-;18387:2;:24;;;;:::i;:::-;18374:39;;18357:6;18364;18357:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18437:2;18428:11;;;;;:::i;:::-;;;18297:154;;;18475:6;18461:21;;;;;17767:723;;;;:::o;23978:240::-;24039:7;24088:1;24071:19;;:5;:19;;;;24055:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;24179:12;:19;24192:5;24179:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;24171:41;;24164:48;;23978:240;;;:::o;28959:1272::-;29064:20;29087:12;;29064:35;;29128:1;29114:16;;:2;:16;;;;29106:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29305:21;29313:12;29305:7;:21::i;:::-;29304:22;29296:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29387:12;;29375:8;:24;;29367:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29447:61;29477:1;29481:2;29485:12;29499:8;29447:21;:61::i;:::-;29517:30;29550:12;:16;29563:2;29550:16;;;;;;;;;;;;;;;29517:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29592:119;;;;;;;;29642:8;29612:11;:19;;;:39;;;;:::i;:::-;29592:119;;;;;;29695:8;29660:11;:24;;;:44;;;;:::i;:::-;29592:119;;;;;29573:12;:16;29586:2;29573:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29746:43;;;;;;;;29761:2;29746:43;;;;;;29772:15;29746:43;;;;;29718:11;:25;29730:12;29718:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29798:20;29821:12;29798:35;;29847:9;29842:281;29866:8;29862:1;:12;29842:281;;;29920:12;29916:2;29895:38;;29912:1;29895:38;;;;;;;;;;;;29960:59;29991:1;29995:2;29999:12;30013:5;29960:22;:59::i;:::-;29942:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;30101:14;;;;;:::i;:::-;;;;29876:3;;;;;:::i;:::-;;;;29842:281;;;;30146:12;30131;:27;;;;30165:60;30194:1;30198:2;30202:12;30216:8;30165:20;:60::i;:::-;28959:1272;;;;;;:::o;34965:141::-;;;;;:::o;35492:140::-;;;;;:::o;2415:387::-;2475:4;2683:12;2750:7;2738:20;2730:28;;2793:1;2786:4;:8;2779:15;;;2415:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;669:622::-;;790:80;805:64;862:6;805:64;:::i;:::-;790:80;:::i;:::-;781:89;;890:5;918:6;911:5;904:21;944:4;937:5;933:16;926:23;;969:6;1019:3;1011:4;1003:6;999:17;994:3;990:27;987:36;984:2;;;1036:1;1033;1026:12;984:2;1064:1;1049:236;1074:6;1071:1;1068:13;1049:236;;;1141:3;1169:37;1202:3;1190:10;1169:37;:::i;:::-;1164:3;1157:50;1236:4;1231:3;1227:14;1220:21;;1270:4;1265:3;1261:14;1254:21;;1109:176;1096:1;1093;1089:9;1084:14;;1049:236;;;1053:14;771:520;;;;;;;:::o;1297:342::-;;1399:64;1414:48;1455:6;1414:48;:::i;:::-;1399:64;:::i;:::-;1390:73;;1486:6;1479:5;1472:21;1524:4;1517:5;1513:16;1562:3;1553:6;1548:3;1544:16;1541:25;1538:2;;;1579:1;1576;1569:12;1538:2;1592:41;1626:6;1621:3;1616;1592:41;:::i;:::-;1380:259;;;;;;:::o;1645:139::-;;1729:6;1716:20;1707:29;;1745:33;1772:5;1745:33;:::i;:::-;1697:87;;;;:::o;1807:303::-;;1927:3;1920:4;1912:6;1908:17;1904:27;1894:2;;1945:1;1942;1935:12;1894:2;1985:6;1972:20;2010:94;2100:3;2092:6;2085:4;2077:6;2073:17;2010:94;:::i;:::-;2001:103;;1884:226;;;;;:::o;2133:303::-;;2253:3;2246:4;2238:6;2234:17;2230:27;2220:2;;2271:1;2268;2261:12;2220:2;2311:6;2298:20;2336:94;2426:3;2418:6;2411:4;2403:6;2399:17;2336:94;:::i;:::-;2327:103;;2210:226;;;;;:::o;2442:133::-;;2523:6;2510:20;2501:29;;2539:30;2563:5;2539:30;:::i;:::-;2491:84;;;;:::o;2581:137::-;;2664:6;2651:20;2642:29;;2680:32;2706:5;2680:32;:::i;:::-;2632:86;;;;:::o;2724:141::-;;2811:6;2805:13;2796:22;;2827:32;2853:5;2827:32;:::i;:::-;2786:79;;;;:::o;2884:271::-;;2988:3;2981:4;2973:6;2969:17;2965:27;2955:2;;3006:1;3003;2996:12;2955:2;3046:6;3033:20;3071:78;3145:3;3137:6;3130:4;3122:6;3118:17;3071:78;:::i;:::-;3062:87;;2945:210;;;;;:::o;3175:352::-;;;3293:3;3286:4;3278:6;3274:17;3270:27;3260:2;;3311:1;3308;3301:12;3260:2;3347:6;3334:20;3324:30;;3377:18;3369:6;3366:30;3363:2;;;3409:1;3406;3399:12;3363:2;3446:4;3438:6;3434:17;3422:29;;3500:3;3492:4;3484:6;3480:17;3470:8;3466:32;3463:41;3460:2;;;3517:1;3514;3507:12;3460:2;3250:277;;;;;:::o;3533:139::-;;3617:6;3604:20;3595:29;;3633:33;3660:5;3633:33;:::i;:::-;3585:87;;;;:::o;3678:262::-;;3786:2;3774:9;3765:7;3761:23;3757:32;3754:2;;;3802:1;3799;3792:12;3754:2;3845:1;3870:53;3915:7;3906:6;3895:9;3891:22;3870:53;:::i;:::-;3860:63;;3816:117;3744:196;;;;:::o;3946:407::-;;;4071:2;4059:9;4050:7;4046:23;4042:32;4039:2;;;4087:1;4084;4077:12;4039:2;4130:1;4155:53;4200:7;4191:6;4180:9;4176:22;4155:53;:::i;:::-;4145:63;;4101:117;4257:2;4283:53;4328:7;4319:6;4308:9;4304:22;4283:53;:::i;:::-;4273:63;;4228:118;4029:324;;;;;:::o;4359:552::-;;;;4501:2;4489:9;4480:7;4476:23;4472:32;4469:2;;;4517:1;4514;4507:12;4469:2;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4687:2;4713:53;4758:7;4749:6;4738:9;4734:22;4713:53;:::i;:::-;4703:63;;4658:118;4815:2;4841:53;4886:7;4877:6;4866:9;4862:22;4841:53;:::i;:::-;4831:63;;4786:118;4459:452;;;;;:::o;4917:809::-;;;;;5085:3;5073:9;5064:7;5060:23;5056:33;5053:2;;;5102:1;5099;5092:12;5053:2;5145:1;5170:53;5215:7;5206:6;5195:9;5191:22;5170:53;:::i;:::-;5160:63;;5116:117;5272:2;5298:53;5343:7;5334:6;5323:9;5319:22;5298:53;:::i;:::-;5288:63;;5243:118;5400:2;5426:53;5471:7;5462:6;5451:9;5447:22;5426:53;:::i;:::-;5416:63;;5371:118;5556:2;5545:9;5541:18;5528:32;5587:18;5579:6;5576:30;5573:2;;;5619:1;5616;5609:12;5573:2;5647:62;5701:7;5692:6;5681:9;5677:22;5647:62;:::i;:::-;5637:72;;5499:220;5043:683;;;;;;;:::o;5732:401::-;;;5854:2;5842:9;5833:7;5829:23;5825:32;5822:2;;;5870:1;5867;5860:12;5822:2;5913:1;5938:53;5983:7;5974:6;5963:9;5959:22;5938:53;:::i;:::-;5928:63;;5884:117;6040:2;6066:50;6108:7;6099:6;6088:9;6084:22;6066:50;:::i;:::-;6056:60;;6011:115;5812:321;;;;;:::o;6139:407::-;;;6264:2;6252:9;6243:7;6239:23;6235:32;6232:2;;;6280:1;6277;6270:12;6232:2;6323:1;6348:53;6393:7;6384:6;6373:9;6369:22;6348:53;:::i;:::-;6338:63;;6294:117;6450:2;6476:53;6521:7;6512:6;6501:9;6497:22;6476:53;:::i;:::-;6466:63;;6421:118;6222:324;;;;;:::o;6552:693::-;;;6727:2;6715:9;6706:7;6702:23;6698:32;6695:2;;;6743:1;6740;6733:12;6695:2;6814:1;6803:9;6799:17;6786:31;6844:18;6836:6;6833:30;6830:2;;;6876:1;6873;6866:12;6830:2;6904:78;6974:7;6965:6;6954:9;6950:22;6904:78;:::i;:::-;6894:88;;6757:235;7059:2;7048:9;7044:18;7031:32;7090:18;7082:6;7079:30;7076:2;;;7122:1;7119;7112:12;7076:2;7150:78;7220:7;7211:6;7200:9;7196:22;7150:78;:::i;:::-;7140:88;;7002:236;6685:560;;;;;:::o;7251:260::-;;7358:2;7346:9;7337:7;7333:23;7329:32;7326:2;;;7374:1;7371;7364:12;7326:2;7417:1;7442:52;7486:7;7477:6;7466:9;7462:22;7442:52;:::i;:::-;7432:62;;7388:116;7316:195;;;;:::o;7517:282::-;;7635:2;7623:9;7614:7;7610:23;7606:32;7603:2;;;7651:1;7648;7641:12;7603:2;7694:1;7719:63;7774:7;7765:6;7754:9;7750:22;7719:63;:::i;:::-;7709:73;;7665:127;7593:206;;;;:::o;7805:395::-;;;7933:2;7921:9;7912:7;7908:23;7904:32;7901:2;;;7949:1;7946;7939:12;7901:2;8020:1;8009:9;8005:17;7992:31;8050:18;8042:6;8039:30;8036:2;;;8082:1;8079;8072:12;8036:2;8118:65;8175:7;8166:6;8155:9;8151:22;8118:65;:::i;:::-;8100:83;;;;7963:230;7891:309;;;;;:::o;8206:262::-;;8314:2;8302:9;8293:7;8289:23;8285:32;8282:2;;;8330:1;8327;8320:12;8282:2;8373:1;8398:53;8443:7;8434:6;8423:9;8419:22;8398:53;:::i;:::-;8388:63;;8344:117;8272:196;;;;:::o;8474:108::-;8551:24;8569:5;8551:24;:::i;:::-;8546:3;8539:37;8529:53;;:::o;8588:118::-;8675:24;8693:5;8675:24;:::i;:::-;8670:3;8663:37;8653:53;;:::o;8712:109::-;8793:21;8808:5;8793:21;:::i;:::-;8788:3;8781:34;8771:50;;:::o;8827:360::-;;8941:38;8973:5;8941:38;:::i;:::-;8995:70;9058:6;9053:3;8995:70;:::i;:::-;8988:77;;9074:52;9119:6;9114:3;9107:4;9100:5;9096:16;9074:52;:::i;:::-;9151:29;9173:6;9151:29;:::i;:::-;9146:3;9142:39;9135:46;;8917:270;;;;;:::o;9193:364::-;;9309:39;9342:5;9309:39;:::i;:::-;9364:71;9428:6;9423:3;9364:71;:::i;:::-;9357:78;;9444:52;9489:6;9484:3;9477:4;9470:5;9466:16;9444:52;:::i;:::-;9521:29;9543:6;9521:29;:::i;:::-;9516:3;9512:39;9505:46;;9285:272;;;;;:::o;9563:377::-;;9697:39;9730:5;9697:39;:::i;:::-;9752:89;9834:6;9829:3;9752:89;:::i;:::-;9745:96;;9850:52;9895:6;9890:3;9883:4;9876:5;9872:16;9850:52;:::i;:::-;9927:6;9922:3;9918:16;9911:23;;9673:267;;;;;:::o;9946:366::-;;10109:67;10173:2;10168:3;10109:67;:::i;:::-;10102:74;;10206:34;10202:1;10197:3;10193:11;10186:55;10272:4;10267:2;10262:3;10258:12;10251:26;10303:2;10298:3;10294:12;10287:19;;10092:220;;;:::o;10318:321::-;;10481:67;10545:2;10540:3;10481:67;:::i;:::-;10474:74;;10578:25;10574:1;10569:3;10565:11;10558:46;10630:2;10625:3;10621:12;10614:19;;10464:175;;;:::o;10645:370::-;;10808:67;10872:2;10867:3;10808:67;:::i;:::-;10801:74;;10905:34;10901:1;10896:3;10892:11;10885:55;10971:8;10966:2;10961:3;10957:12;10950:30;11006:2;11001:3;10997:12;10990:19;;10791:224;;;:::o;11021:374::-;;11184:67;11248:2;11243:3;11184:67;:::i;:::-;11177:74;;11281:34;11277:1;11272:3;11268:11;11261:55;11347:12;11342:2;11337:3;11333:12;11326:34;11386:2;11381:3;11377:12;11370:19;;11167:228;;;:::o;11401:308::-;;11564:67;11628:2;11623:3;11564:67;:::i;:::-;11557:74;;11661:12;11657:1;11652:3;11648:11;11641:33;11700:2;11695:3;11691:12;11684:19;;11547:162;;;:::o;11715:320::-;;11878:67;11942:2;11937:3;11878:67;:::i;:::-;11871:74;;11975:24;11971:1;11966:3;11962:11;11955:45;12026:2;12021:3;12017:12;12010:19;;11861:174;;;:::o;12041:367::-;;12204:67;12268:2;12263:3;12204:67;:::i;:::-;12197:74;;12301:34;12297:1;12292:3;12288:11;12281:55;12367:5;12362:2;12357:3;12353:12;12346:27;12399:2;12394:3;12390:12;12383:19;;12187:221;;;:::o;12414:369::-;;12577:67;12641:2;12636:3;12577:67;:::i;:::-;12570:74;;12674:34;12670:1;12665:3;12661:11;12654:55;12740:7;12735:2;12730:3;12726:12;12719:29;12774:2;12769:3;12765:12;12758:19;;12560:223;;;:::o;12789:381::-;;12952:67;13016:2;13011:3;12952:67;:::i;:::-;12945:74;;13049:34;13045:1;13040:3;13036:11;13029:55;13115:19;13110:2;13105:3;13101:12;13094:41;13161:2;13156:3;13152:12;13145:19;;12935:235;;;:::o;13176:328::-;;13339:67;13403:2;13398:3;13339:67;:::i;:::-;13332:74;;13436:32;13432:1;13427:3;13423:11;13416:53;13495:2;13490:3;13486:12;13479:19;;13322:182;;;:::o;13510:320::-;;13673:67;13737:2;13732:3;13673:67;:::i;:::-;13666:74;;13770:24;13766:1;13761:3;13757:11;13750:45;13821:2;13816:3;13812:12;13805:19;;13656:174;;;:::o;13836:389::-;;13999:67;14063:2;14058:3;13999:67;:::i;:::-;13992:74;;14096:34;14092:1;14087:3;14083:11;14076:55;14162:27;14157:2;14152:3;14148:12;14141:49;14216:2;14211:3;14207:12;14200:19;;13982:243;;;:::o;14231:322::-;;14394:67;14458:2;14453:3;14394:67;:::i;:::-;14387:74;;14491:26;14487:1;14482:3;14478:11;14471:47;14544:2;14539:3;14535:12;14528:19;;14377:176;;;:::o;14559:375::-;;14722:67;14786:2;14781:3;14722:67;:::i;:::-;14715:74;;14819:34;14815:1;14810:3;14806:11;14799:55;14885:13;14880:2;14875:3;14871:12;14864:35;14925:2;14920:3;14916:12;14909:19;;14705:229;;;:::o;14940:316::-;;15103:67;15167:2;15162:3;15103:67;:::i;:::-;15096:74;;15200:20;15196:1;15191:3;15187:11;15180:41;15247:2;15242:3;15238:12;15231:19;;15086:170;;;:::o;15262:370::-;;15425:67;15489:2;15484:3;15425:67;:::i;:::-;15418:74;;15522:34;15518:1;15513:3;15509:11;15502:55;15588:8;15583:2;15578:3;15574:12;15567:30;15623:2;15618:3;15614:12;15607:19;;15408:224;;;:::o;15638:330::-;;15801:67;15865:2;15860:3;15801:67;:::i;:::-;15794:74;;15898:34;15894:1;15889:3;15885:11;15878:55;15959:2;15954:3;15950:12;15943:19;;15784:184;;;:::o;15974:379::-;;16137:67;16201:2;16196:3;16137:67;:::i;:::-;16130:74;;16234:34;16230:1;16225:3;16221:11;16214:55;16300:17;16295:2;16290:3;16286:12;16279:39;16344:2;16339:3;16335:12;16328:19;;16120:233;;;:::o;16359:324::-;;16522:67;16586:2;16581:3;16522:67;:::i;:::-;16515:74;;16619:28;16615:1;16610:3;16606:11;16599:49;16674:2;16669:3;16665:12;16658:19;;16505:178;;;:::o;16689:382::-;;16852:67;16916:2;16911:3;16852:67;:::i;:::-;16845:74;;16949:34;16945:1;16940:3;16936:11;16929:55;17015:20;17010:2;17005:3;17001:12;16994:42;17062:2;17057:3;17053:12;17046:19;;16835:236;;;:::o;17077:366::-;;17240:67;17304:2;17299:3;17240:67;:::i;:::-;17233:74;;17337:34;17333:1;17328:3;17324:11;17317:55;17403:4;17398:2;17393:3;17389:12;17382:26;17434:2;17429:3;17425:12;17418:19;;17223:220;;;:::o;17449:297::-;;17629:83;17710:1;17705:3;17629:83;:::i;:::-;17622:90;;17738:1;17733:3;17729:11;17722:18;;17612:134;;;:::o;17752:314::-;;17915:67;17979:2;17974:3;17915:67;:::i;:::-;17908:74;;18012:18;18008:1;18003:3;17999:11;17992:39;18057:2;18052:3;18048:12;18041:19;;17898:168;;;:::o;18072:383::-;;18235:67;18299:2;18294:3;18235:67;:::i;:::-;18228:74;;18332:34;18328:1;18323:3;18319:11;18312:55;18398:21;18393:2;18388:3;18384:12;18377:43;18446:2;18441:3;18437:12;18430:19;;18218:237;;;:::o;18461:320::-;;18624:67;18688:2;18683:3;18624:67;:::i;:::-;18617:74;;18721:24;18717:1;18712:3;18708:11;18701:45;18772:2;18767:3;18763:12;18756:19;;18607:174;;;:::o;18787:327::-;;18950:67;19014:2;19009:3;18950:67;:::i;:::-;18943:74;;19047:31;19043:1;19038:3;19034:11;19027:52;19105:2;19100:3;19096:12;19089:19;;18933:181;;;:::o;19120:365::-;;19283:67;19347:2;19342:3;19283:67;:::i;:::-;19276:74;;19380:34;19376:1;19371:3;19367:11;19360:55;19446:3;19441:2;19436:3;19432:12;19425:25;19476:2;19471:3;19467:12;19460:19;;19266:219;;;:::o;19491:378::-;;19654:67;19718:2;19713:3;19654:67;:::i;:::-;19647:74;;19751:34;19747:1;19742:3;19738:11;19731:55;19817:16;19812:2;19807:3;19803:12;19796:38;19860:2;19855:3;19851:12;19844:19;;19637:232;;;:::o;19875:370::-;;20038:67;20102:2;20097:3;20038:67;:::i;:::-;20031:74;;20135:34;20131:1;20126:3;20122:11;20115:55;20201:8;20196:2;20191:3;20187:12;20180:30;20236:2;20231:3;20227:12;20220:19;;20021:224;;;:::o;20251:329::-;;20414:67;20478:2;20473:3;20414:67;:::i;:::-;20407:74;;20511:33;20507:1;20502:3;20498:11;20491:54;20571:2;20566:3;20562:12;20555:19;;20397:183;;;:::o;20586:379::-;;20749:67;20813:2;20808:3;20749:67;:::i;:::-;20742:74;;20846:34;20842:1;20837:3;20833:11;20826:55;20912:17;20907:2;20902:3;20898:12;20891:39;20956:2;20951:3;20947:12;20940:19;;20732:233;;;:::o;20971:377::-;;21134:67;21198:2;21193:3;21134:67;:::i;:::-;21127:74;;21231:34;21227:1;21222:3;21218:11;21211:55;21297:15;21292:2;21287:3;21283:12;21276:37;21339:2;21334:3;21330:12;21323:19;;21117:231;;;:::o;21354:310::-;;21517:67;21581:2;21576:3;21517:67;:::i;:::-;21510:74;;21614:14;21610:1;21605:3;21601:11;21594:35;21655:2;21650:3;21646:12;21639:19;;21500:164;;;:::o;21670:366::-;;21833:67;21897:2;21892:3;21833:67;:::i;:::-;21826:74;;21930:34;21926:1;21921:3;21917:11;21910:55;21996:4;21991:2;21986:3;21982:12;21975:26;22027:2;22022:3;22018:12;22011:19;;21816:220;;;:::o;22042:372::-;;22205:67;22269:2;22264:3;22205:67;:::i;:::-;22198:74;;22302:34;22298:1;22293:3;22289:11;22282:55;22368:10;22363:2;22358:3;22354:12;22347:32;22405:2;22400:3;22396:12;22389:19;;22188:226;;;:::o;22490:527::-;22649:4;22644:3;22640:14;22736:4;22729:5;22725:16;22719:23;22755:63;22812:4;22807:3;22803:14;22789:12;22755:63;:::i;:::-;22664:164;22920:4;22913:5;22909:16;22903:23;22939:61;22994:4;22989:3;22985:14;22971:12;22939:61;:::i;:::-;22838:172;22618:399;;;:::o;23023:118::-;23110:24;23128:5;23110:24;:::i;:::-;23105:3;23098:37;23088:53;;:::o;23147:105::-;23222:23;23239:5;23222:23;:::i;:::-;23217:3;23210:36;23200:52;;:::o;23258:115::-;23343:23;23360:5;23343:23;:::i;:::-;23338:3;23331:36;23321:52;;:::o;23379:435::-;;23581:95;23672:3;23663:6;23581:95;:::i;:::-;23574:102;;23693:95;23784:3;23775:6;23693:95;:::i;:::-;23686:102;;23805:3;23798:10;;23563:251;;;;;:::o;23820:379::-;;24026:147;24169:3;24026:147;:::i;:::-;24019:154;;24190:3;24183:10;;24008:191;;;:::o;24205:222::-;;24336:2;24325:9;24321:18;24313:26;;24349:71;24417:1;24406:9;24402:17;24393:6;24349:71;:::i;:::-;24303:124;;;;:::o;24433:640::-;;24666:3;24655:9;24651:19;24643:27;;24680:71;24748:1;24737:9;24733:17;24724:6;24680:71;:::i;:::-;24761:72;24829:2;24818:9;24814:18;24805:6;24761:72;:::i;:::-;24843;24911:2;24900:9;24896:18;24887:6;24843:72;:::i;:::-;24962:9;24956:4;24952:20;24947:2;24936:9;24932:18;24925:48;24990:76;25061:4;25052:6;24990:76;:::i;:::-;24982:84;;24633:440;;;;;;;:::o;25079:210::-;;25204:2;25193:9;25189:18;25181:26;;25217:65;25279:1;25268:9;25264:17;25255:6;25217:65;:::i;:::-;25171:118;;;;:::o;25295:313::-;;25446:2;25435:9;25431:18;25423:26;;25495:9;25489:4;25485:20;25481:1;25470:9;25466:17;25459:47;25523:78;25596:4;25587:6;25523:78;:::i;:::-;25515:86;;25413:195;;;;:::o;25614:419::-;;25818:2;25807:9;25803:18;25795:26;;25867:9;25861:4;25857:20;25853:1;25842:9;25838:17;25831:47;25895:131;26021:4;25895:131;:::i;:::-;25887:139;;25785:248;;;:::o;26039:419::-;;26243:2;26232:9;26228:18;26220:26;;26292:9;26286:4;26282:20;26278:1;26267:9;26263:17;26256:47;26320:131;26446:4;26320:131;:::i;:::-;26312:139;;26210:248;;;:::o;26464:419::-;;26668:2;26657:9;26653:18;26645:26;;26717:9;26711:4;26707:20;26703:1;26692:9;26688:17;26681:47;26745:131;26871:4;26745:131;:::i;:::-;26737:139;;26635:248;;;:::o;26889:419::-;;27093:2;27082:9;27078:18;27070:26;;27142:9;27136:4;27132:20;27128:1;27117:9;27113:17;27106:47;27170:131;27296:4;27170:131;:::i;:::-;27162:139;;27060:248;;;:::o;27314:419::-;;27518:2;27507:9;27503:18;27495:26;;27567:9;27561:4;27557:20;27553:1;27542:9;27538:17;27531:47;27595:131;27721:4;27595:131;:::i;:::-;27587:139;;27485:248;;;:::o;27739:419::-;;27943:2;27932:9;27928:18;27920:26;;27992:9;27986:4;27982:20;27978:1;27967:9;27963:17;27956:47;28020:131;28146:4;28020:131;:::i;:::-;28012:139;;27910:248;;;:::o;28164:419::-;;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28335:248;;;:::o;28589:419::-;;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28760:248;;;:::o;29014:419::-;;29218:2;29207:9;29203:18;29195:26;;29267:9;29261:4;29257:20;29253:1;29242:9;29238:17;29231:47;29295:131;29421:4;29295:131;:::i;:::-;29287:139;;29185:248;;;:::o;29439:419::-;;29643:2;29632:9;29628:18;29620:26;;29692:9;29686:4;29682:20;29678:1;29667:9;29663:17;29656:47;29720:131;29846:4;29720:131;:::i;:::-;29712:139;;29610:248;;;:::o;29864:419::-;;30068:2;30057:9;30053:18;30045:26;;30117:9;30111:4;30107:20;30103:1;30092:9;30088:17;30081:47;30145:131;30271:4;30145:131;:::i;:::-;30137:139;;30035:248;;;:::o;30289:419::-;;30493:2;30482:9;30478:18;30470:26;;30542:9;30536:4;30532:20;30528:1;30517:9;30513:17;30506:47;30570:131;30696:4;30570:131;:::i;:::-;30562:139;;30460:248;;;:::o;30714:419::-;;30918:2;30907:9;30903:18;30895:26;;30967:9;30961:4;30957:20;30953:1;30942:9;30938:17;30931:47;30995:131;31121:4;30995:131;:::i;:::-;30987:139;;30885:248;;;:::o;31139:419::-;;31343:2;31332:9;31328:18;31320:26;;31392:9;31386:4;31382:20;31378:1;31367:9;31363:17;31356:47;31420:131;31546:4;31420:131;:::i;:::-;31412:139;;31310:248;;;:::o;31564:419::-;;31768:2;31757:9;31753:18;31745:26;;31817:9;31811:4;31807:20;31803:1;31792:9;31788:17;31781:47;31845:131;31971:4;31845:131;:::i;:::-;31837:139;;31735:248;;;:::o;31989:419::-;;32193:2;32182:9;32178:18;32170:26;;32242:9;32236:4;32232:20;32228:1;32217:9;32213:17;32206:47;32270:131;32396:4;32270:131;:::i;:::-;32262:139;;32160:248;;;:::o;32414:419::-;;32618:2;32607:9;32603:18;32595:26;;32667:9;32661:4;32657:20;32653:1;32642:9;32638:17;32631:47;32695:131;32821:4;32695:131;:::i;:::-;32687:139;;32585:248;;;:::o;32839:419::-;;33043:2;33032:9;33028:18;33020:26;;33092:9;33086:4;33082:20;33078:1;33067:9;33063:17;33056:47;33120:131;33246:4;33120:131;:::i;:::-;33112:139;;33010:248;;;:::o;33264:419::-;;33468:2;33457:9;33453:18;33445:26;;33517:9;33511:4;33507:20;33503:1;33492:9;33488:17;33481:47;33545:131;33671:4;33545:131;:::i;:::-;33537:139;;33435:248;;;:::o;33689:419::-;;33893:2;33882:9;33878:18;33870:26;;33942:9;33936:4;33932:20;33928:1;33917:9;33913:17;33906:47;33970:131;34096:4;33970:131;:::i;:::-;33962:139;;33860:248;;;:::o;34114:419::-;;34318:2;34307:9;34303:18;34295:26;;34367:9;34361:4;34357:20;34353:1;34342:9;34338:17;34331:47;34395:131;34521:4;34395:131;:::i;:::-;34387:139;;34285:248;;;:::o;34539:419::-;;34743:2;34732:9;34728:18;34720:26;;34792:9;34786:4;34782:20;34778:1;34767:9;34763:17;34756:47;34820:131;34946:4;34820:131;:::i;:::-;34812:139;;34710:248;;;:::o;34964:419::-;;35168:2;35157:9;35153:18;35145:26;;35217:9;35211:4;35207:20;35203:1;35192:9;35188:17;35181:47;35245:131;35371:4;35245:131;:::i;:::-;35237:139;;35135:248;;;:::o;35389:419::-;;35593:2;35582:9;35578:18;35570:26;;35642:9;35636:4;35632:20;35628:1;35617:9;35613:17;35606:47;35670:131;35796:4;35670:131;:::i;:::-;35662:139;;35560:248;;;:::o;35814:419::-;;36018:2;36007:9;36003:18;35995:26;;36067:9;36061:4;36057:20;36053:1;36042:9;36038:17;36031:47;36095:131;36221:4;36095:131;:::i;:::-;36087:139;;35985:248;;;:::o;36239:419::-;;36443:2;36432:9;36428:18;36420:26;;36492:9;36486:4;36482:20;36478:1;36467:9;36463:17;36456:47;36520:131;36646:4;36520:131;:::i;:::-;36512:139;;36410:248;;;:::o;36664:419::-;;36868:2;36857:9;36853:18;36845:26;;36917:9;36911:4;36907:20;36903:1;36892:9;36888:17;36881:47;36945:131;37071:4;36945:131;:::i;:::-;36937:139;;36835:248;;;:::o;37089:419::-;;37293:2;37282:9;37278:18;37270:26;;37342:9;37336:4;37332:20;37328:1;37317:9;37313:17;37306:47;37370:131;37496:4;37370:131;:::i;:::-;37362:139;;37260:248;;;:::o;37514:419::-;;37718:2;37707:9;37703:18;37695:26;;37767:9;37761:4;37757:20;37753:1;37742:9;37738:17;37731:47;37795:131;37921:4;37795:131;:::i;:::-;37787:139;;37685:248;;;:::o;37939:419::-;;38143:2;38132:9;38128:18;38120:26;;38192:9;38186:4;38182:20;38178:1;38167:9;38163:17;38156:47;38220:131;38346:4;38220:131;:::i;:::-;38212:139;;38110:248;;;:::o;38364:419::-;;38568:2;38557:9;38553:18;38545:26;;38617:9;38611:4;38607:20;38603:1;38592:9;38588:17;38581:47;38645:131;38771:4;38645:131;:::i;:::-;38637:139;;38535:248;;;:::o;38789:419::-;;38993:2;38982:9;38978:18;38970:26;;39042:9;39036:4;39032:20;39028:1;39017:9;39013:17;39006:47;39070:131;39196:4;39070:131;:::i;:::-;39062:139;;38960:248;;;:::o;39214:419::-;;39418:2;39407:9;39403:18;39395:26;;39467:9;39461:4;39457:20;39453:1;39442:9;39438:17;39431:47;39495:131;39621:4;39495:131;:::i;:::-;39487:139;;39385:248;;;:::o;39639:419::-;;39843:2;39832:9;39828:18;39820:26;;39892:9;39886:4;39882:20;39878:1;39867:9;39863:17;39856:47;39920:131;40046:4;39920:131;:::i;:::-;39912:139;;39810:248;;;:::o;40064:346::-;;40257:2;40246:9;40242:18;40234:26;;40270:133;40400:1;40389:9;40385:17;40376:6;40270:133;:::i;:::-;40224:186;;;;:::o;40416:222::-;;40547:2;40536:9;40532:18;40524:26;;40560:71;40628:1;40617:9;40613:17;40604:6;40560:71;:::i;:::-;40514:124;;;;:::o;40644:218::-;;40773:2;40762:9;40758:18;40750:26;;40786:69;40852:1;40841:9;40837:17;40828:6;40786:69;:::i;:::-;40740:122;;;;:::o;40868:283::-;;40934:2;40928:9;40918:19;;40976:4;40968:6;40964:17;41083:6;41071:10;41068:22;41047:18;41035:10;41032:34;41029:62;41026:2;;;41094:18;;:::i;:::-;41026:2;41134:10;41130:2;41123:22;40908:243;;;;:::o;41157:311::-;;41324:18;41316:6;41313:30;41310:2;;;41346:18;;:::i;:::-;41310:2;41396:4;41388:6;41384:17;41376:25;;41456:4;41450;41446:15;41438:23;;41239:229;;;:::o;41474:311::-;;41641:18;41633:6;41630:30;41627:2;;;41663:18;;:::i;:::-;41627:2;41713:4;41705:6;41701:17;41693:25;;41773:4;41767;41763:15;41755:23;;41556:229;;;:::o;41791:331::-;;41942:18;41934:6;41931:30;41928:2;;;41964:18;;:::i;:::-;41928:2;42049:4;42045:9;42038:4;42030:6;42026:17;42022:33;42014:41;;42110:4;42104;42100:15;42092:23;;41857:265;;;:::o;42128:98::-;;42213:5;42207:12;42197:22;;42186:40;;;:::o;42232:99::-;;42318:5;42312:12;42302:22;;42291:40;;;:::o;42337:168::-;;42454:6;42449:3;42442:19;42494:4;42489:3;42485:14;42470:29;;42432:73;;;;:::o;42511:147::-;;42649:3;42634:18;;42624:34;;;;:::o;42664:169::-;;42782:6;42777:3;42770:19;42822:4;42817:3;42813:14;42798:29;;42760:73;;;;:::o;42839:148::-;;42978:3;42963:18;;42953:34;;;;:::o;42993:273::-;;43052:20;43070:1;43052:20;:::i;:::-;43047:25;;43086:20;43104:1;43086:20;:::i;:::-;43081:25;;43208:1;43172:34;43168:42;43165:1;43162:49;43159:2;;;43214:18;;:::i;:::-;43159:2;43258:1;43255;43251:9;43244:16;;43037:229;;;;:::o;43272:305::-;;43331:20;43349:1;43331:20;:::i;:::-;43326:25;;43365:20;43383:1;43365:20;:::i;:::-;43360:25;;43519:1;43451:66;43447:74;43444:1;43441:81;43438:2;;;43525:18;;:::i;:::-;43438:2;43569:1;43566;43562:9;43555:16;;43316:261;;;;:::o;43583:185::-;;43640:20;43658:1;43640:20;:::i;:::-;43635:25;;43674:20;43692:1;43674:20;:::i;:::-;43669:25;;43713:1;43703:2;;43718:18;;:::i;:::-;43703:2;43760:1;43757;43753:9;43748:14;;43625:143;;;;:::o;43774:348::-;;43837:20;43855:1;43837:20;:::i;:::-;43832:25;;43871:20;43889:1;43871:20;:::i;:::-;43866:25;;44059:1;43991:66;43987:74;43984:1;43981:81;43976:1;43969:9;43962:17;43958:105;43955:2;;;44066:18;;:::i;:::-;43955:2;44114:1;44111;44107:9;44096:20;;43822:300;;;;:::o;44128:191::-;;44188:20;44206:1;44188:20;:::i;:::-;44183:25;;44222:20;44240:1;44222:20;:::i;:::-;44217:25;;44261:1;44258;44255:8;44252:2;;;44266:18;;:::i;:::-;44252:2;44311:1;44308;44304:9;44296:17;;44173:146;;;;:::o;44325:191::-;;44385:20;44403:1;44385:20;:::i;:::-;44380:25;;44419:20;44437:1;44419:20;:::i;:::-;44414:25;;44458:1;44455;44452:8;44449:2;;;44463:18;;:::i;:::-;44449:2;44508:1;44505;44501:9;44493:17;;44370:146;;;;:::o;44522:96::-;;44588:24;44606:5;44588:24;:::i;:::-;44577:35;;44567:51;;;:::o;44624:90::-;;44701:5;44694:13;44687:21;44676:32;;44666:48;;;:::o;44720:149::-;;44796:66;44789:5;44785:78;44774:89;;44764:105;;;:::o;44875:118::-;;44952:34;44945:5;44941:46;44930:57;;44920:73;;;:::o;44999:126::-;;45076:42;45069:5;45065:54;45054:65;;45044:81;;;:::o;45131:77::-;;45197:5;45186:16;;45176:32;;;:::o;45214:101::-;;45290:18;45283:5;45279:30;45268:41;;45258:57;;;:::o;45321:154::-;45405:6;45400:3;45395;45382:30;45467:1;45458:6;45453:3;45449:16;45442:27;45372:103;;;:::o;45481:307::-;45549:1;45559:113;45573:6;45570:1;45567:13;45559:113;;;45658:1;45653:3;45649:11;45643:18;45639:1;45634:3;45630:11;45623:39;45595:2;45592:1;45588:10;45583:15;;45559:113;;;45690:6;45687:1;45684:13;45681:2;;;45770:1;45761:6;45756:3;45752:16;45745:27;45681:2;45530:258;;;;:::o;45794:171::-;;45856:24;45874:5;45856:24;:::i;:::-;45847:33;;45902:4;45895:5;45892:15;45889:2;;;45910:18;;:::i;:::-;45889:2;45957:1;45950:5;45946:13;45939:20;;45837:128;;;:::o;45971:320::-;;46052:1;46046:4;46042:12;46032:22;;46099:1;46093:4;46089:12;46120:18;46110:2;;46176:4;46168:6;46164:17;46154:27;;46110:2;46238;46230:6;46227:14;46207:18;46204:38;46201:2;;;46257:18;;:::i;:::-;46201:2;46022:269;;;;:::o;46297:233::-;;46359:24;46377:5;46359:24;:::i;:::-;46350:33;;46405:66;46398:5;46395:77;46392:2;;;46475:18;;:::i;:::-;46392:2;46522:1;46515:5;46511:13;46504:20;;46340:190;;;:::o;46536:176::-;;46585:20;46603:1;46585:20;:::i;:::-;46580:25;;46619:20;46637:1;46619:20;:::i;:::-;46614:25;;46658:1;46648:2;;46663:18;;:::i;:::-;46648:2;46704:1;46701;46697:9;46692:14;;46570:142;;;;:::o;46718:180::-;46766:77;46763:1;46756:88;46863:4;46860:1;46853:15;46887:4;46884:1;46877:15;46904:180;46952:77;46949:1;46942:88;47049:4;47046:1;47039:15;47073:4;47070:1;47063:15;47090:180;47138:77;47135:1;47128:88;47235:4;47232:1;47225:15;47259:4;47256:1;47249:15;47276:180;47324:77;47321:1;47314:88;47421:4;47418:1;47411:15;47445:4;47442:1;47435:15;47462:102;;47554:2;47550:7;47545:2;47538:5;47534:14;47530:28;47520:38;;47510:54;;;:::o;47570:122::-;47643:24;47661:5;47643:24;:::i;:::-;47636:5;47633:35;47623:2;;47682:1;47679;47672:12;47623:2;47613:79;:::o;47698:116::-;47768:21;47783:5;47768:21;:::i;:::-;47761:5;47758:32;47748:2;;47804:1;47801;47794:12;47748:2;47738:76;:::o;47820:120::-;47892:23;47909:5;47892:23;:::i;:::-;47885:5;47882:34;47872:2;;47930:1;47927;47920:12;47872:2;47862:78;:::o;47946:122::-;48019:24;48037:5;48019:24;:::i;:::-;48012:5;48009:35;47999:2;;48058:1;48055;48048:12;47999:2;47989:79;:::o

Swarm Source

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