ETH Price: $3,465.72 (+2.11%)
Gas: 17 Gwei

Bored Meebits (BMBS)
 

Overview

TokenID

101

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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 immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

interface APE {
    function balanceOf(address account) external  view returns (uint256);
    function transferFrom(address sender, address recipient, uint256 amount) external  returns (bool);
    function allowance(address owner, address spender) external  view returns(uint256);
    function approve(address spender, uint256 amount) external returns(bool);
}

pragma solidity ^0.8.0;

contract BoredMeebits is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.01 ether;
    uint256 public  NFT_ApePrice = 2 ether;
    uint256 public MAX_SUPPLY = 3500;
    uint256 public constant FREE_MAX_SUPPLY = 500;
    uint256 public constant MAX_PER_TX_FREE = 5;
    uint256 public MAX_MINTS = 5;
    string public baseURI = "";
    string public baseExtension = ".json";
     bool public paused = true;   
   APE private immutable Ape;
    
    constructor() ERC721A("Bored Meebits", "BMBS", MAX_MINTS, MAX_SUPPLY) { 
      Ape = APE(0x4d224452801ACEd8B2F0aebE155379bb5D594381);   
    }
    function initialize() public onlyOwner  {
        Ape.approve(address(this), 2000000000000000000000);
    }
    

    function mint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_SUPPLY);
        if (FREE_MAX_SUPPLY >= totalSupply() + numTokens) {
            require(MAX_PER_TX_FREE >= numTokens, "Excess max per free tx");
        } else {
            require(MAX_MINTS >= numTokens, "Excess max per paid tx");
            require(msg.value >= numTokens * NFT_PRICE, "Invalid funds provided");
        }
        _safeMint(msg.sender, numTokens);
    }
    function mintWithApe(uint256 numTokens) external  {
        require(!paused, "Paused");
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Over max");
        require(NFT_ApePrice * numTokens <= Ape.balanceOf(msg.sender), "Low APE");
        require(NFT_ApePrice * numTokens <= Ape.allowance(msg.sender, address(this)), "Low APE");
        Ape.transferFrom(msg.sender, address(this), NFT_ApePrice * numTokens);

        _safeMint(msg.sender, numTokens);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }


    function setPrice(uint256 newPrice) public onlyOwner {
        NFT_PRICE = newPrice;
    }
    function setApePrice(uint256 newApePrice) public onlyOwner {
        NFT_ApePrice = newApePrice;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_ApePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintWithApe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newApePrice","type":"uint256"}],"name":"setApePrice","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007819055662386f26fc10000600955671bc16d674ec80000600a55610dac600b556005600c55610100604081905260e08290526200004791600d91906200025d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007691600e916200025d565b50600f805460ff191660011790553480156200009157600080fd5b506040518060400160405280600d81526020016c426f726564204d65656269747360981b81525060405180604001604052806004815260200163424d425360e01b815250600c54600b5460008111620001485760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001aa5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200013f565b8351620001bf9060019060208701906200025d565b508251620001d59060029060208601906200025d565b5060a09190915260805250620001ed9050336200020b565b734d224452801aced8b2f0aebe155379bb5d59438160c0526200033f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200026b9062000303565b90600052602060002090601f0160209004810192826200028f5760008555620002da565b82601f10620002aa57805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002da578251825591602001919060010190620002bd565b50620002e8929150620002ec565b5090565b5b80821115620002e85760008155600101620002ed565b600181811c908216806200031857607f821691505b6020821081036200033957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c0516128d16200039660003960008181610a4c01528181610b2001528181610bdb01528181610e820152611213015260008181611b1f01528181611b490152611f590152600050506128d16000f3fe6080604052600436106102255760003560e01c80636c0360eb11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105f4578063cce132d114610614578063d7224ba01461062a578063e985e9c514610640578063f2fde38b1461068957600080fd5b8063a0712d681461056c578063a22cb4651461057f578063aee5d0ac1461059f578063b88d4fde146105bf578063c6682862146105df57600080fd5b80638069876d116100f25780638069876d146104ee5780638129fc1c146105045780638da5cb5b1461051957806391b7f5ed1461053757806395d89b411461055757600080fd5b80636c0360eb1461048457806370a0823114610499578063715018a6146104b957806379c9cb7b146104ce57600080fd5b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146103f457806355f804b3146104145780635c975abb146104345780636352211e1461044e578063676dd5631461046e57600080fd5b80632f745c591461037457806332cb6b0c146103945780633ccfd60b146103aa57806342842e0e146103bf578063463fff79146103df57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806314f0252c146102fb5780631611e22e1461031b57806318160ddd1461033f57806323b872dd1461035457600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a61024536600461221d565b6106a9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a36600461224f565b610716565b005b34801561028d57600080fd5b5061029661075c565b60405161025691906122c4565b3480156102af57600080fd5b506102c36102be3660046122d7565b6107ee565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f636600461230c565b610879565b34801561030757600080fd5b5061027f6103163660046122d7565b610990565b34801561032757600080fd5b50610331600a5481565b604051908152602001610256565b34801561034b57600080fd5b50600054610331565b34801561036057600080fd5b5061027f61036f366004612336565b610c9e565b34801561038057600080fd5b5061033161038f36600461230c565b610ca9565b3480156103a057600080fd5b50610331600b5481565b3480156103b657600080fd5b5061027f610e15565b3480156103cb57600080fd5b5061027f6103da366004612336565b610f71565b3480156103eb57600080fd5b50610331600581565b34801561040057600080fd5b5061033161040f3660046122d7565b610f8c565b34801561042057600080fd5b5061027f61042f3660046123fe565b610fee565b34801561044057600080fd5b50600f5461024a9060ff1681565b34801561045a57600080fd5b506102c36104693660046122d7565b61102f565b34801561047a57600080fd5b5061033160095481565b34801561049057600080fd5b50610296611041565b3480156104a557600080fd5b506103316104b4366004612447565b6110cf565b3480156104c557600080fd5b5061027f611160565b3480156104da57600080fd5b5061027f6104e93660046122d7565b611196565b3480156104fa57600080fd5b506103316101f481565b34801561051057600080fd5b5061027f6111c5565b34801561052557600080fd5b506008546001600160a01b03166102c3565b34801561054357600080fd5b5061027f6105523660046122d7565b61124a565b34801561056357600080fd5b50610296611279565b61027f61057a3660046122d7565b611288565b34801561058b57600080fd5b5061027f61059a366004612462565b611416565b3480156105ab57600080fd5b5061027f6105ba3660046122d7565b6114da565b3480156105cb57600080fd5b5061027f6105da366004612499565b611509565b3480156105eb57600080fd5b50610296611542565b34801561060057600080fd5b5061029661060f3660046122d7565b61154f565b34801561062057600080fd5b50610331600c5481565b34801561063657600080fd5b5061033160075481565b34801561064c57600080fd5b5061024a61065b366004612515565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b5061027f6106a4366004612447565b611607565b60006001600160e01b031982166380ac58cd60e01b14806106da57506001600160e01b03198216635b5e139f60e01b145b806106f557506001600160e01b0319821663780e9d6360e01b145b8061071057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107495760405162461bcd60e51b815260040161074090612548565b60405180910390fd5b600f805460ff1916911515919091179055565b60606001805461076b90612577565b80601f016020809104026020016040519081016040528092919081815260200182805461079790612577565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b60006107fb826000541190565b61085d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610740565b506000908152600560205260409020546001600160a01b031690565b60006108848261102f565b9050806001600160a01b0316836001600160a01b0316036108f25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610740565b336001600160a01b038216148061090e575061090e813361065b565b6109805760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610740565b61098b83838361169f565b505050565b600f5460ff16156109cc5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610740565b6000811180156109de5750600c548111155b6109e757600080fd5b600b54816109f460005490565b6109fe91906125c7565b1115610a375760405162461bcd60e51b815260206004820152600860248201526709eeccae440dac2f60c31b6044820152606401610740565b6040516370a0823160e01b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf91906125df565b81600a54610acd91906125f8565b1115610b055760405162461bcd60e51b81526020600482015260076024820152664c6f772041504560c81b6044820152606401610740565b604051636eb1769f60e11b81523360048201523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9391906125df565b81600a54610ba191906125f8565b1115610bd95760405162461bcd60e51b81526020600482015260076024820152664c6f772041504560c81b6044820152606401610740565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166323b872dd333084600a54610c1891906125f8565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015610c6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c909190612617565b50610c9b33826116fb565b50565b61098b838383611715565b6000610cb4836110cf565b8210610d0d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610740565b600080549080805b83811015610db5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d6857805192505b876001600160a01b0316836001600160a01b031603610da257868403610d945750935061071092505050565b83610d9e81612634565b9450505b5080610dad81612634565b915050610d15565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610740565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161074090612548565b60405133904780156108fc02916000818181858888f19350505050610e6357600080fd5b6040516370a0823160e01b815230600482018190526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9190339084906370a0823190602401602060405180830381865afa158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef891906125df565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015b6020604051808303816000875af1158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9b9190612617565b61098b83838360405180602001604052806000815250611509565b600080548210610fea5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610740565b5090565b6008546001600160a01b031633146110185760405162461bcd60e51b815260040161074090612548565b805161102b90600d906020840190612177565b5050565b600061103a82611a9d565b5192915050565b600d805461104e90612577565b80601f016020809104026020016040519081016040528092919081815260200182805461107a90612577565b80156110c75780601f1061109c576101008083540402835291602001916110c7565b820191906000526020600020905b8154815290600101906020018083116110aa57829003601f168201915b505050505081565b60006001600160a01b03821661113b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610740565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461118a5760405162461bcd60e51b815260040161074090612548565b6111946000611c47565b565b6008546001600160a01b031633146111c05760405162461bcd60e51b815260040161074090612548565b600c55565b6008546001600160a01b031633146111ef5760405162461bcd60e51b815260040161074090612548565b60405163095ea7b360e01b8152306004820152686c6b935b8bbd40000060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063095ea7b390604401610f2e565b6008546001600160a01b031633146112745760405162461bcd60e51b815260040161074090612548565b600955565b60606002805461076b90612577565b600f5460ff16156112c45760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610740565b6000811180156112d65750600c548111155b6112df57600080fd5b600b54816112ec60005490565b6112f691906125c7565b111561130157600080fd5b8061130b60005490565b61131591906125c7565b6101f41061136c5780600510156113675760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610740565b61140c565b80600c5410156113b75760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610740565b6009546113c490826125f8565b34101561140c5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610740565b610c9b33826116fb565b336001600160a01b0383160361146e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610740565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115045760405162461bcd60e51b815260040161074090612548565b600a55565b611514848484611715565b61152084848484611c99565b61153c5760405162461bcd60e51b81526004016107409061264d565b50505050565b600e805461104e90612577565b606061155c826000541190565b6115a85760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610740565b6000600d80546115b790612577565b9050116115d35760405180602001604052806000815250610710565b600d6115de83611d9b565b600e6040516020016115f293929190612739565b60405160208183030381529060405292915050565b6008546001600160a01b031633146116315760405162461bcd60e51b815260040161074090612548565b6001600160a01b0381166116965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610740565b610c9b81611c47565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61102b828260405180602001604052806000815250611e9c565b600061172082611a9d565b80519091506000906001600160a01b0316336001600160a01b0316148061175757503361174c846107ee565b6001600160a01b0316145b8061176957508151611769903361065b565b9050806117d35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610740565b846001600160a01b031682600001516001600160a01b0316146118475760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610740565b6001600160a01b0384166118ab5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610740565b6118bb600084846000015161169f565b6001600160a01b03851660009081526004602052604081208054600192906118ed9084906001600160801b031661276c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261193991859116612794565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119c18460016125c7565b6000818152600360205260409020549091506001600160a01b0316611a53576119eb816000541190565b15611a535760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611abc826000541190565b611b1b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610740565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b7c57611b6e7f0000000000000000000000000000000000000000000000000000000000000000846127bf565b611b799060016125c7565b90505b825b818110611be6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bd357949350505050565b5080611bde816127d6565b915050611b7e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610740565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d8f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cdd9033908990889088906004016127ed565b6020604051808303816000875af1925050508015611d18575060408051601f3d908101601f19168201909252611d159181019061282a565b60015b611d75573d808015611d46576040519150601f19603f3d011682016040523d82523d6000602084013e611d4b565b606091505b508051600003611d6d5760405162461bcd60e51b81526004016107409061264d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d93565b5060015b949350505050565b606081600003611dc25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dec5780611dd681612634565b9150611de59050600a8361285d565b9150611dc6565b60008167ffffffffffffffff811115611e0757611e07612372565b6040519080825280601f01601f191660200182016040528015611e31576020820181803683370190505b5090505b8415611d9357611e466001836127bf565b9150611e53600a86612871565b611e5e9060306125c7565b60f81b818381518110611e7357611e73612885565b60200101906001600160f81b031916908160001a905350611e95600a8661285d565b9450611e35565b6000546001600160a01b038416611eff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610740565b611f0a816000541190565b15611f575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610740565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fd25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610740565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061202e908790612794565b6001600160801b0316815260200185836020015161204c9190612794565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561216c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121306000888488611c99565b61214c5760405162461bcd60e51b81526004016107409061264d565b8161215681612634565b925050808061216490612634565b9150506120e3565b506000819055611a95565b82805461218390612577565b90600052602060002090601f0160209004810192826121a557600085556121eb565b82601f106121be57805160ff19168380011785556121eb565b828001600101855582156121eb579182015b828111156121eb5782518255916020019190600101906121d0565b50610fea9291505b80821115610fea57600081556001016121f3565b6001600160e01b031981168114610c9b57600080fd5b60006020828403121561222f57600080fd5b813561223a81612207565b9392505050565b8015158114610c9b57600080fd5b60006020828403121561226157600080fd5b813561223a81612241565b60005b8381101561228757818101518382015260200161226f565b8381111561153c5750506000910152565b600081518084526122b081602086016020860161226c565b601f01601f19169290920160200192915050565b60208152600061223a6020830184612298565b6000602082840312156122e957600080fd5b5035919050565b80356001600160a01b038116811461230757600080fd5b919050565b6000806040838503121561231f57600080fd5b612328836122f0565b946020939093013593505050565b60008060006060848603121561234b57600080fd5b612354846122f0565b9250612362602085016122f0565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123a3576123a3612372565b604051601f8501601f19908116603f011681019082821181831017156123cb576123cb612372565b816040528093508581528686860111156123e457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561241057600080fd5b813567ffffffffffffffff81111561242757600080fd5b8201601f8101841361243857600080fd5b611d9384823560208401612388565b60006020828403121561245957600080fd5b61223a826122f0565b6000806040838503121561247557600080fd5b61247e836122f0565b9150602083013561248e81612241565b809150509250929050565b600080600080608085870312156124af57600080fd5b6124b8856122f0565b93506124c6602086016122f0565b925060408501359150606085013567ffffffffffffffff8111156124e957600080fd5b8501601f810187136124fa57600080fd5b61250987823560208401612388565b91505092959194509250565b6000806040838503121561252857600080fd5b612531836122f0565b915061253f602084016122f0565b90509250929050565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b600181811c9082168061258b57607f821691505b6020821081036125ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125da576125da6125b1565b500190565b6000602082840312156125f157600080fd5b5051919050565b6000816000190483118215151615612612576126126125b1565b500290565b60006020828403121561262957600080fd5b815161223a81612241565b600060018201612646576126466125b1565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b8054600090600181811c90808316806126ba57607f831692505b602080841082036126db57634e487b7160e01b600052602260045260246000fd5b8180156126ef57600181146127005761272d565b60ff1986168952848901965061272d565b60008881526020902060005b868110156127255781548b82015290850190830161270c565b505084890196505b50505050505092915050565b600061274582866126a0565b845161275581836020890161226c565b612761818301866126a0565b979650505050505050565b60006001600160801b038381169083168181101561278c5761278c6125b1565b039392505050565b60006001600160801b038083168185168083038211156127b6576127b66125b1565b01949350505050565b6000828210156127d1576127d16125b1565b500390565b6000816127e5576127e56125b1565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282090830184612298565b9695505050505050565b60006020828403121561283c57600080fd5b815161223a81612207565b634e487b7160e01b600052601260045260246000fd5b60008261286c5761286c612847565b500490565b60008261288057612880612847565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122077327677194f3a2f619411ce4e9c3a3eb78788b6b95652254563e9e43b496fe364736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636c0360eb11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105f4578063cce132d114610614578063d7224ba01461062a578063e985e9c514610640578063f2fde38b1461068957600080fd5b8063a0712d681461056c578063a22cb4651461057f578063aee5d0ac1461059f578063b88d4fde146105bf578063c6682862146105df57600080fd5b80638069876d116100f25780638069876d146104ee5780638129fc1c146105045780638da5cb5b1461051957806391b7f5ed1461053757806395d89b411461055757600080fd5b80636c0360eb1461048457806370a0823114610499578063715018a6146104b957806379c9cb7b146104ce57600080fd5b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146103f457806355f804b3146104145780635c975abb146104345780636352211e1461044e578063676dd5631461046e57600080fd5b80632f745c591461037457806332cb6b0c146103945780633ccfd60b146103aa57806342842e0e146103bf578063463fff79146103df57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806314f0252c146102fb5780631611e22e1461031b57806318160ddd1461033f57806323b872dd1461035457600080fd5b806301ffc9a71461022a57806302329a291461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a61024536600461221d565b6106a9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a36600461224f565b610716565b005b34801561028d57600080fd5b5061029661075c565b60405161025691906122c4565b3480156102af57600080fd5b506102c36102be3660046122d7565b6107ee565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f636600461230c565b610879565b34801561030757600080fd5b5061027f6103163660046122d7565b610990565b34801561032757600080fd5b50610331600a5481565b604051908152602001610256565b34801561034b57600080fd5b50600054610331565b34801561036057600080fd5b5061027f61036f366004612336565b610c9e565b34801561038057600080fd5b5061033161038f36600461230c565b610ca9565b3480156103a057600080fd5b50610331600b5481565b3480156103b657600080fd5b5061027f610e15565b3480156103cb57600080fd5b5061027f6103da366004612336565b610f71565b3480156103eb57600080fd5b50610331600581565b34801561040057600080fd5b5061033161040f3660046122d7565b610f8c565b34801561042057600080fd5b5061027f61042f3660046123fe565b610fee565b34801561044057600080fd5b50600f5461024a9060ff1681565b34801561045a57600080fd5b506102c36104693660046122d7565b61102f565b34801561047a57600080fd5b5061033160095481565b34801561049057600080fd5b50610296611041565b3480156104a557600080fd5b506103316104b4366004612447565b6110cf565b3480156104c557600080fd5b5061027f611160565b3480156104da57600080fd5b5061027f6104e93660046122d7565b611196565b3480156104fa57600080fd5b506103316101f481565b34801561051057600080fd5b5061027f6111c5565b34801561052557600080fd5b506008546001600160a01b03166102c3565b34801561054357600080fd5b5061027f6105523660046122d7565b61124a565b34801561056357600080fd5b50610296611279565b61027f61057a3660046122d7565b611288565b34801561058b57600080fd5b5061027f61059a366004612462565b611416565b3480156105ab57600080fd5b5061027f6105ba3660046122d7565b6114da565b3480156105cb57600080fd5b5061027f6105da366004612499565b611509565b3480156105eb57600080fd5b50610296611542565b34801561060057600080fd5b5061029661060f3660046122d7565b61154f565b34801561062057600080fd5b50610331600c5481565b34801561063657600080fd5b5061033160075481565b34801561064c57600080fd5b5061024a61065b366004612515565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b5061027f6106a4366004612447565b611607565b60006001600160e01b031982166380ac58cd60e01b14806106da57506001600160e01b03198216635b5e139f60e01b145b806106f557506001600160e01b0319821663780e9d6360e01b145b8061071057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107495760405162461bcd60e51b815260040161074090612548565b60405180910390fd5b600f805460ff1916911515919091179055565b60606001805461076b90612577565b80601f016020809104026020016040519081016040528092919081815260200182805461079790612577565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b60006107fb826000541190565b61085d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610740565b506000908152600560205260409020546001600160a01b031690565b60006108848261102f565b9050806001600160a01b0316836001600160a01b0316036108f25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610740565b336001600160a01b038216148061090e575061090e813361065b565b6109805760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610740565b61098b83838361169f565b505050565b600f5460ff16156109cc5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610740565b6000811180156109de5750600c548111155b6109e757600080fd5b600b54816109f460005490565b6109fe91906125c7565b1115610a375760405162461bcd60e51b815260206004820152600860248201526709eeccae440dac2f60c31b6044820152606401610740565b6040516370a0823160e01b81523360048201527f0000000000000000000000004d224452801aced8b2f0aebe155379bb5d5943816001600160a01b0316906370a0823190602401602060405180830381865afa158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf91906125df565b81600a54610acd91906125f8565b1115610b055760405162461bcd60e51b81526020600482015260076024820152664c6f772041504560c81b6044820152606401610740565b604051636eb1769f60e11b81523360048201523060248201527f0000000000000000000000004d224452801aced8b2f0aebe155379bb5d5943816001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9391906125df565b81600a54610ba191906125f8565b1115610bd95760405162461bcd60e51b81526020600482015260076024820152664c6f772041504560c81b6044820152606401610740565b7f0000000000000000000000004d224452801aced8b2f0aebe155379bb5d5943816001600160a01b03166323b872dd333084600a54610c1891906125f8565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015610c6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c909190612617565b50610c9b33826116fb565b50565b61098b838383611715565b6000610cb4836110cf565b8210610d0d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610740565b600080549080805b83811015610db5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d6857805192505b876001600160a01b0316836001600160a01b031603610da257868403610d945750935061071092505050565b83610d9e81612634565b9450505b5080610dad81612634565b915050610d15565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610740565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161074090612548565b60405133904780156108fc02916000818181858888f19350505050610e6357600080fd5b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000004d224452801aced8b2f0aebe155379bb5d59438116916323b872dd9190339084906370a0823190602401602060405180830381865afa158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef891906125df565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015b6020604051808303816000875af1158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9b9190612617565b61098b83838360405180602001604052806000815250611509565b600080548210610fea5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610740565b5090565b6008546001600160a01b031633146110185760405162461bcd60e51b815260040161074090612548565b805161102b90600d906020840190612177565b5050565b600061103a82611a9d565b5192915050565b600d805461104e90612577565b80601f016020809104026020016040519081016040528092919081815260200182805461107a90612577565b80156110c75780601f1061109c576101008083540402835291602001916110c7565b820191906000526020600020905b8154815290600101906020018083116110aa57829003601f168201915b505050505081565b60006001600160a01b03821661113b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610740565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461118a5760405162461bcd60e51b815260040161074090612548565b6111946000611c47565b565b6008546001600160a01b031633146111c05760405162461bcd60e51b815260040161074090612548565b600c55565b6008546001600160a01b031633146111ef5760405162461bcd60e51b815260040161074090612548565b60405163095ea7b360e01b8152306004820152686c6b935b8bbd40000060248201527f0000000000000000000000004d224452801aced8b2f0aebe155379bb5d5943816001600160a01b03169063095ea7b390604401610f2e565b6008546001600160a01b031633146112745760405162461bcd60e51b815260040161074090612548565b600955565b60606002805461076b90612577565b600f5460ff16156112c45760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610740565b6000811180156112d65750600c548111155b6112df57600080fd5b600b54816112ec60005490565b6112f691906125c7565b111561130157600080fd5b8061130b60005490565b61131591906125c7565b6101f41061136c5780600510156113675760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610740565b61140c565b80600c5410156113b75760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610740565b6009546113c490826125f8565b34101561140c5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610740565b610c9b33826116fb565b336001600160a01b0383160361146e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610740565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115045760405162461bcd60e51b815260040161074090612548565b600a55565b611514848484611715565b61152084848484611c99565b61153c5760405162461bcd60e51b81526004016107409061264d565b50505050565b600e805461104e90612577565b606061155c826000541190565b6115a85760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610740565b6000600d80546115b790612577565b9050116115d35760405180602001604052806000815250610710565b600d6115de83611d9b565b600e6040516020016115f293929190612739565b60405160208183030381529060405292915050565b6008546001600160a01b031633146116315760405162461bcd60e51b815260040161074090612548565b6001600160a01b0381166116965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610740565b610c9b81611c47565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61102b828260405180602001604052806000815250611e9c565b600061172082611a9d565b80519091506000906001600160a01b0316336001600160a01b0316148061175757503361174c846107ee565b6001600160a01b0316145b8061176957508151611769903361065b565b9050806117d35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610740565b846001600160a01b031682600001516001600160a01b0316146118475760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610740565b6001600160a01b0384166118ab5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610740565b6118bb600084846000015161169f565b6001600160a01b03851660009081526004602052604081208054600192906118ed9084906001600160801b031661276c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261193991859116612794565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119c18460016125c7565b6000818152600360205260409020549091506001600160a01b0316611a53576119eb816000541190565b15611a535760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611abc826000541190565b611b1b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610740565b60007f00000000000000000000000000000000000000000000000000000000000000058310611b7c57611b6e7f0000000000000000000000000000000000000000000000000000000000000005846127bf565b611b799060016125c7565b90505b825b818110611be6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bd357949350505050565b5080611bde816127d6565b915050611b7e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610740565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d8f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cdd9033908990889088906004016127ed565b6020604051808303816000875af1925050508015611d18575060408051601f3d908101601f19168201909252611d159181019061282a565b60015b611d75573d808015611d46576040519150601f19603f3d011682016040523d82523d6000602084013e611d4b565b606091505b508051600003611d6d5760405162461bcd60e51b81526004016107409061264d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d93565b5060015b949350505050565b606081600003611dc25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dec5780611dd681612634565b9150611de59050600a8361285d565b9150611dc6565b60008167ffffffffffffffff811115611e0757611e07612372565b6040519080825280601f01601f191660200182016040528015611e31576020820181803683370190505b5090505b8415611d9357611e466001836127bf565b9150611e53600a86612871565b611e5e9060306125c7565b60f81b818381518110611e7357611e73612885565b60200101906001600160f81b031916908160001a905350611e95600a8661285d565b9450611e35565b6000546001600160a01b038416611eff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610740565b611f0a816000541190565b15611f575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610740565b7f0000000000000000000000000000000000000000000000000000000000000005831115611fd25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610740565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061202e908790612794565b6001600160801b0316815260200185836020015161204c9190612794565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561216c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121306000888488611c99565b61214c5760405162461bcd60e51b81526004016107409061264d565b8161215681612634565b925050808061216490612634565b9150506120e3565b506000819055611a95565b82805461218390612577565b90600052602060002090601f0160209004810192826121a557600085556121eb565b82601f106121be57805160ff19168380011785556121eb565b828001600101855582156121eb579182015b828111156121eb5782518255916020019190600101906121d0565b50610fea9291505b80821115610fea57600081556001016121f3565b6001600160e01b031981168114610c9b57600080fd5b60006020828403121561222f57600080fd5b813561223a81612207565b9392505050565b8015158114610c9b57600080fd5b60006020828403121561226157600080fd5b813561223a81612241565b60005b8381101561228757818101518382015260200161226f565b8381111561153c5750506000910152565b600081518084526122b081602086016020860161226c565b601f01601f19169290920160200192915050565b60208152600061223a6020830184612298565b6000602082840312156122e957600080fd5b5035919050565b80356001600160a01b038116811461230757600080fd5b919050565b6000806040838503121561231f57600080fd5b612328836122f0565b946020939093013593505050565b60008060006060848603121561234b57600080fd5b612354846122f0565b9250612362602085016122f0565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123a3576123a3612372565b604051601f8501601f19908116603f011681019082821181831017156123cb576123cb612372565b816040528093508581528686860111156123e457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561241057600080fd5b813567ffffffffffffffff81111561242757600080fd5b8201601f8101841361243857600080fd5b611d9384823560208401612388565b60006020828403121561245957600080fd5b61223a826122f0565b6000806040838503121561247557600080fd5b61247e836122f0565b9150602083013561248e81612241565b809150509250929050565b600080600080608085870312156124af57600080fd5b6124b8856122f0565b93506124c6602086016122f0565b925060408501359150606085013567ffffffffffffffff8111156124e957600080fd5b8501601f810187136124fa57600080fd5b61250987823560208401612388565b91505092959194509250565b6000806040838503121561252857600080fd5b612531836122f0565b915061253f602084016122f0565b90509250929050565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b600181811c9082168061258b57607f821691505b6020821081036125ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125da576125da6125b1565b500190565b6000602082840312156125f157600080fd5b5051919050565b6000816000190483118215151615612612576126126125b1565b500290565b60006020828403121561262957600080fd5b815161223a81612241565b600060018201612646576126466125b1565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b8054600090600181811c90808316806126ba57607f831692505b602080841082036126db57634e487b7160e01b600052602260045260246000fd5b8180156126ef57600181146127005761272d565b60ff1986168952848901965061272d565b60008881526020902060005b868110156127255781548b82015290850190830161270c565b505084890196505b50505050505092915050565b600061274582866126a0565b845161275581836020890161226c565b612761818301866126a0565b979650505050505050565b60006001600160801b038381169083168181101561278c5761278c6125b1565b039392505050565b60006001600160801b038083168185168083038211156127b6576127b66125b1565b01949350505050565b6000828210156127d1576127d16125b1565b500390565b6000816127e5576127e56125b1565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282090830184612298565b9695505050505050565b60006020828403121561283c57600080fd5b815161223a81612207565b634e487b7160e01b600052601260045260246000fd5b60008261286c5761286c612847565b500490565b60008261288057612880612847565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122077327677194f3a2f619411ce4e9c3a3eb78788b6b95652254563e9e43b496fe364736f6c634300080d0033

Deployed Bytecode Sourcemap

40000:3196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24744:370;;;;;;;;;;-1:-1:-1;24744:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24744:370:0;;;;;;;;41862:79;;;;;;;;;;-1:-1:-1;41862:79:0;;;;;:::i;:::-;;:::i;:::-;;26470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28004:204::-;;;;;;;;;;-1:-1:-1;28004:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;28004:204:0;1897:203:1;27567:379:0;;;;;;;;;;-1:-1:-1;27567:379:0;;;;;:::i;:::-;;:::i;41321:533::-;;;;;;;;;;-1:-1:-1;41321:533:0;;;;;:::i;:::-;;:::i;40093:38::-;;;;;;;;;;;;;;;;;;;2688:25:1;;;2676:2;2661:18;40093:38:0;2542:177:1;23305:94:0;;;;;;;;;;-1:-1:-1;23358:7:0;23381:12;23305:94;;28854:142;;;;;;;;;;-1:-1:-1;28854:142:0;;;;;:::i;:::-;;:::i;23936:744::-;;;;;;;;;;-1:-1:-1;23936:744:0;;;;;:::i;:::-;;:::i;40138:32::-;;;;;;;;;;;;;;;;42997:196;;;;;;;;;;;;;:::i;29059:157::-;;;;;;;;;;-1:-1:-1;29059:157:0;;;;;:::i;:::-;;:::i;40229:43::-;;;;;;;;;;;;40271:1;40229:43;;23468:177;;;;;;;;;;-1:-1:-1;23468:177:0;;;;;:::i;:::-;;:::i;41947:102::-;;;;;;;;;;-1:-1:-1;41947:102:0;;;;;:::i;:::-;;:::i;40392:25::-;;;;;;;;;;-1:-1:-1;40392:25:0;;;;;;;;26293:118;;;;;;;;;;-1:-1:-1;26293:118:0;;;;;:::i;:::-;;:::i;40049:37::-;;;;;;;;;;;;;;;;40314:26;;;;;;;;;;;;;:::i;25170:211::-;;;;;;;;;;-1:-1:-1;25170:211:0;;;;;:::i;:::-;;:::i;38725:103::-;;;;;;;;;;;;;:::i;42782:91::-;;;;;;;;;;-1:-1:-1;42782:91:0;;;;;:::i;:::-;;:::i;40177:45::-;;;;;;;;;;;;40219:3;40177:45;;40614:109;;;;;;;;;;;;;:::i;38085:87::-;;;;;;;;;;-1:-1:-1;38158:6:0;;-1:-1:-1;;;;;38158:6:0;38085:87;;42572:92;;;;;;;;;;-1:-1:-1;42572:92:0;;;;;:::i;:::-;;:::i;26625:98::-;;;;;;;;;;;;;:::i;40737:578::-;;;;;;:::i;:::-;;:::i;28272:274::-;;;;;;;;;;-1:-1:-1;28272:274:0;;;;;:::i;:::-;;:::i;42670:104::-;;;;;;;;;;-1:-1:-1;42670:104:0;;;;;:::i;:::-;;:::i;29279:311::-;;;;;;;;;;-1:-1:-1;29279:311:0;;;;;:::i;:::-;;:::i;40347:37::-;;;;;;;;;;;;;:::i;42055:507::-;;;;;;;;;;-1:-1:-1;42055:507:0;;;;;:::i;:::-;;:::i;40279:28::-;;;;;;;;;;;;;;;;33694:43;;;;;;;;;;;;;;;;28609:186;;;;;;;;;;-1:-1:-1;28609:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;28754:25:0;;;28731:4;28754:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28609:186;38983:238;;;;;;;;;;-1:-1:-1;38983:238:0;;;;;:::i;:::-;;:::i;24744:370::-;24871:4;-1:-1:-1;;;;;;24901:40:0;;-1:-1:-1;;;24901:40:0;;:99;;-1:-1:-1;;;;;;;24952:48:0;;-1:-1:-1;;;24952:48:0;24901:99;:160;;;-1:-1:-1;;;;;;;25011:50:0;;-1:-1:-1;;;25011:50:0;24901:160;:207;;;-1:-1:-1;;;;;;;;;;8475:40:0;;;25072:36;24887:221;24744:370;-1:-1:-1;;24744:370:0:o;41862:79::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;;;;;;;;;41918:6:::1;:15:::0;;-1:-1:-1;;41918:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41862:79::o;26470:94::-;26524:13;26553:5;26546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470:94;:::o;28004:204::-;28072:7;28096:16;28104:7;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;28096:16;28088:74;;;;-1:-1:-1;;;28088:74:0;;6667:2:1;28088:74:0;;;6649:21:1;6706:2;6686:18;;;6679:30;6745:34;6725:18;;;6718:62;-1:-1:-1;;;6796:18:1;;;6789:43;6849:19;;28088:74:0;6465:409:1;28088:74:0;-1:-1:-1;28178:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28178:24:0;;28004:204::o;27567:379::-;27636:13;27652:24;27668:7;27652:15;:24::i;:::-;27636:40;;27697:5;-1:-1:-1;;;;;27691:11:0;:2;-1:-1:-1;;;;;27691:11:0;;27683:58;;;;-1:-1:-1;;;27683:58:0;;7081:2:1;27683:58:0;;;7063:21:1;7120:2;7100:18;;;7093:30;7159:34;7139:18;;;7132:62;-1:-1:-1;;;7210:18:1;;;7203:32;7252:19;;27683:58:0;6879:398:1;27683:58:0;17795:10;-1:-1:-1;;;;;27766:21:0;;;;:62;;-1:-1:-1;27791:37:0;27808:5;17795:10;28609:186;:::i;27791:37::-;27750:153;;;;-1:-1:-1;;;27750:153:0;;7484:2:1;27750:153:0;;;7466:21:1;7523:2;7503:18;;;7496:30;7562:34;7542:18;;;7535:62;7633:27;7613:18;;;7606:55;7678:19;;27750:153:0;7282:421:1;27750:153:0;27912:28;27921:2;27925:7;27934:5;27912:8;:28::i;:::-;27629:317;27567:379;;:::o;41321:533::-;41391:6;;;;41390:7;41382:26;;;;-1:-1:-1;;;41382:26:0;;7910:2:1;41382:26:0;;;7892:21:1;7949:1;7929:18;;;7922:29;-1:-1:-1;;;7967:18:1;;;7960:36;8013:18;;41382:26:0;7708:329:1;41382:26:0;41439:1;41427:9;:13;:39;;;;;41457:9;;41444;:22;;41427:39;41419:48;;;;;;41515:10;;41502:9;41486:13;23358:7;23381:12;;23305:94;41486:13;:25;;;;:::i;:::-;:39;;41478:60;;;;-1:-1:-1;;;41478:60:0;;8509:2:1;41478:60:0;;;8491:21:1;8548:1;8528:18;;;8521:29;-1:-1:-1;;;8566:18:1;;;8559:38;8614:18;;41478:60:0;8307:331:1;41478:60:0;41585:25;;-1:-1:-1;;;41585:25:0;;41599:10;41585:25;;;2043:51:1;41585:3:0;-1:-1:-1;;;;;41585:13:0;;;;2016:18:1;;41585:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41572:9;41557:12;;:24;;;;:::i;:::-;:53;;41549:73;;;;-1:-1:-1;;;41549:73:0;;9207:2:1;41549:73:0;;;9189:21:1;9246:1;9226:18;;;9219:29;-1:-1:-1;;;9264:18:1;;;9257:37;9311:18;;41549:73:0;9005:330:1;41549:73:0;41669:40;;-1:-1:-1;;;41669:40:0;;41683:10;41669:40;;;9552:34:1;41703:4:0;9602:18:1;;;9595:43;41669:3:0;-1:-1:-1;;;;;41669:13:0;;;;9487:18:1;;41669:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41656:9;41641:12;;:24;;;;:::i;:::-;:68;;41633:88;;;;-1:-1:-1;;;41633:88:0;;9207:2:1;41633:88:0;;;9189:21:1;9246:1;9226:18;;;9219:29;-1:-1:-1;;;9264:18:1;;;9257:37;9311:18;;41633:88:0;9005:330:1;41633:88:0;41732:3;-1:-1:-1;;;;;41732:16:0;;41749:10;41769:4;41791:9;41776:12;;:24;;;;:::i;:::-;41732:69;;-1:-1:-1;;;;;;41732:69:0;;;;;;;-1:-1:-1;;;;;9907:15:1;;;41732:69:0;;;9889:34:1;9959:15;;;;9939:18;;;9932:43;9991:18;;;9984:34;9824:18;;41732:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41814:32;41824:10;41836:9;41814;:32::i;:::-;41321:533;:::o;28854:142::-;28962:28;28972:4;28978:2;28982:7;28962:9;:28::i;23936:744::-;24045:7;24080:16;24090:5;24080:9;:16::i;:::-;24072:5;:24;24064:71;;;;-1:-1:-1;;;24064:71:0;;10481:2:1;24064:71:0;;;10463:21:1;10520:2;10500:18;;;10493:30;10559:34;10539:18;;;10532:62;-1:-1:-1;;;10610:18:1;;;10603:32;10652:19;;24064:71:0;10279:398:1;24064:71:0;24142:22;23381:12;;;24142:22;;24262:350;24286:14;24282:1;:18;24262:350;;;24316:31;24350:14;;;:11;:14;;;;;;;;;24316:48;;;;;;;;;-1:-1:-1;;;;;24316:48:0;;;;;-1:-1:-1;;;24316:48:0;;;;;;;;;;;;24377:28;24373:89;;24438:14;;;-1:-1:-1;24373:89:0;24495:5;-1:-1:-1;;;;;24474:26:0;:17;-1:-1:-1;;;;;24474:26:0;;24470:135;;24532:5;24517:11;:20;24513:59;;-1:-1:-1;24559:1:0;-1:-1:-1;24552:8:0;;-1:-1:-1;;;24552:8:0;24513:59;24582:13;;;;:::i;:::-;;;;24470:135;-1:-1:-1;24302:3:0;;;;:::i;:::-;;;;24262:350;;;-1:-1:-1;24618:56:0;;-1:-1:-1;;;24618:56:0;;11024:2:1;24618:56:0;;;11006:21:1;11063:2;11043:18;;;11036:30;11102:34;11082:18;;;11075:62;-1:-1:-1;;;11153:18:1;;;11146:44;11207:19;;24618:56:0;10822:410:1;42997:196:0;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;43053:47:::1;::::0;43061:10:::1;::::0;43078:21:::1;43053:47:::0;::::1;;;::::0;::::1;::::0;;;43078:21;43061:10;43053:47;::::1;;;;;;43045:56;;;::::0;::::1;;43156:28;::::0;-1:-1:-1;;;43156:28:0;;43137:4:::1;43156:28;::::0;::::1;2043:51:1::0;;;-1:-1:-1;;;;;43112:3:0::1;:16;::::0;::::1;::::0;43137:4;43144:10:::1;::::0;43112:16;;43156:13:::1;::::0;2016:18:1;;43156:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43112:73;::::0;-1:-1:-1;;;;;;43112:73:0::1;::::0;;;;;;-1:-1:-1;;;;;9907:15:1;;;43112:73:0::1;::::0;::::1;9889:34:1::0;9959:15;;;;9939:18;;;9932:43;9991:18;;;9984:34;9824:18;;43112:73:0::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;29059:157::-:0;29171:39;29188:4;29194:2;29198:7;29171:39;;;;;;;;;;;;:16;:39::i;23468:177::-;23535:7;23381:12;;23559:5;:21;23551:69;;;;-1:-1:-1;;;23551:69:0;;11439:2:1;23551:69:0;;;11421:21:1;11478:2;11458:18;;;11451:30;11517:34;11497:18;;;11490:62;-1:-1:-1;;;11568:18:1;;;11561:33;11611:19;;23551:69:0;11237:399:1;23551:69:0;-1:-1:-1;23634:5:0;23468:177::o;41947:102::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;42021:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41947:102:::0;:::o;26293:118::-;26357:7;26380:20;26392:7;26380:11;:20::i;:::-;:25;;26293:118;-1:-1:-1;;26293:118:0:o;40314:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25170:211::-;25234:7;-1:-1:-1;;;;;25258:19:0;;25250:75;;;;-1:-1:-1;;;25250:75:0;;11843:2:1;25250:75:0;;;11825:21:1;11882:2;11862:18;;;11855:30;11921:34;11901:18;;;11894:62;-1:-1:-1;;;11972:18:1;;;11965:41;12023:19;;25250:75:0;11641:407:1;25250:75:0;-1:-1:-1;;;;;;25347:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25347:27:0;;25170:211::o;38725:103::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;38790:30:::1;38817:1;38790:18;:30::i;:::-;38725:103::o:0;42782:91::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;42847:9:::1;:18:::0;42782:91::o;40614:109::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;40665:50:::1;::::0;-1:-1:-1;;;40665:50:0;;40685:4:::1;40665:50;::::0;::::1;12256:51:1::0;40692:22:0::1;12323:18:1::0;;;12316:34;40665:3:0::1;-1:-1:-1::0;;;;;40665:11:0::1;::::0;::::1;::::0;12229:18:1;;40665:50:0::1;12053:303:1::0;42572:92:0;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;42636:9:::1;:20:::0;42572:92::o;26625:98::-;26681:13;26710:7;26703:14;;;;;:::i;40737:578::-;40805:6;;;;40804:7;40796:26;;;;-1:-1:-1;;;40796:26:0;;7910:2:1;40796:26:0;;;7892:21:1;7949:1;7929:18;;;7922:29;-1:-1:-1;;;7967:18:1;;;7960:36;8013:18;;40796:26:0;7708:329:1;40796:26:0;40853:1;40841:9;:13;:39;;;;;40871:9;;40858;:22;;40841:39;40833:48;;;;;;40929:10;;40916:9;40900:13;23358:7;23381:12;;23305:94;40900:13;:25;;;;:::i;:::-;:39;;40892:48;;;;;;40990:9;40974:13;23358:7;23381:12;;23305:94;40974:13;:25;;;;:::i;:::-;40219:3;40955:44;40951:314;;41043:9;40271:1;41024:28;;41016:63;;;;-1:-1:-1;;;41016:63:0;;12563:2:1;41016:63:0;;;12545:21:1;12602:2;12582:18;;;12575:30;-1:-1:-1;;;12621:18:1;;;12614:52;12683:18;;41016:63:0;12361:346:1;41016:63:0;40951:314;;;41133:9;41120;;:22;;41112:57;;;;-1:-1:-1;;;41112:57:0;;12914:2:1;41112:57:0;;;12896:21:1;12953:2;12933:18;;;12926:30;-1:-1:-1;;;12972:18:1;;;12965:52;13034:18;;41112:57:0;12712:346:1;41112:57:0;41217:9;;41205:21;;:9;:21;:::i;:::-;41192:9;:34;;41184:69;;;;-1:-1:-1;;;41184:69:0;;13265:2:1;41184:69:0;;;13247:21:1;13304:2;13284:18;;;13277:30;-1:-1:-1;;;13323:18:1;;;13316:52;13385:18;;41184:69:0;13063:346:1;41184:69:0;41275:32;41285:10;41297:9;41275;:32::i;28272:274::-;17795:10;-1:-1:-1;;;;;28363:24:0;;;28355:63;;;;-1:-1:-1;;;28355:63:0;;13616:2:1;28355:63:0;;;13598:21:1;13655:2;13635:18;;;13628:30;13694:28;13674:18;;;13667:56;13740:18;;28355:63:0;13414:350:1;28355:63:0;17795:10;28427:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28427:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28427:53:0;;;;;;;;;;28492:48;;540:41:1;;;28427:42:0;;17795:10;28492:48;;513:18:1;28492:48:0;;;;;;;28272:274;;:::o;42670:104::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;42740:12:::1;:26:::0;42670:104::o;29279:311::-;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29467:48;29490:4;29496:2;29500:7;29509:5;29467:22;:48::i;:::-;29451:133;;;;-1:-1:-1;;;29451:133:0;;;;;;;:::i;:::-;29279:311;;;;:::o;40347:37::-;;;;;;;:::i;42055:507::-;42157:13;42196:17;42204:8;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;42196:17;42188:54;;;;-1:-1:-1;;;42188:54:0;;14391:2:1;42188:54:0;;;14373:21:1;14430:2;14410:18;;;14403:30;14469:26;14449:18;;;14442:54;14513:18;;42188:54:0;14189:348:1;42188:54:0;42297:1;42279:7;42273:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;42390:7;42424:26;42441:8;42424:16;:26::i;:::-;42477:13;42347:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42253:301;42055:507;-1:-1:-1;;42055:507:0:o;38983:238::-;38158:6;;-1:-1:-1;;;;;38158:6:0;17795:10;38305:23;38297:57;;;;-1:-1:-1;;;38297:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39086:22:0;::::1;39064:110;;;::::0;-1:-1:-1;;;39064:110:0;;16309:2:1;39064:110:0::1;::::0;::::1;16291:21:1::0;16348:2;16328:18;;;16321:30;16387:34;16367:18;;;16360:62;-1:-1:-1;;;16438:18:1;;;16431:36;16484:19;;39064:110:0::1;16107:402:1::0;39064:110:0::1;39185:28;39204:8;39185:18;:28::i;33516:172::-:0;33613:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33613:29:0;-1:-1:-1;;;;;33613:29:0;;;;;;;;;33654:28;;33613:24;;33654:28;;;;;;;33516:172;;;:::o;29940:98::-;30005:27;30015:2;30019:8;30005:27;;;;;;;;;;;;:9;:27::i;31881:1529::-;31978:35;32016:20;32028:7;32016:11;:20::i;:::-;32087:18;;31978:58;;-1:-1:-1;32045:22:0;;-1:-1:-1;;;;;32071:34:0;17795:10;-1:-1:-1;;;;;32071:34:0;;:81;;;-1:-1:-1;17795:10:0;32116:20;32128:7;32116:11;:20::i;:::-;-1:-1:-1;;;;;32116:36:0;;32071:81;:142;;;-1:-1:-1;32180:18:0;;32163:50;;17795:10;28609:186;:::i;32163:50::-;32045:169;;32239:17;32223:101;;;;-1:-1:-1;;;32223:101:0;;16716:2:1;32223:101:0;;;16698:21:1;16755:2;16735:18;;;16728:30;16794:34;16774:18;;;16767:62;-1:-1:-1;;;16845:18:1;;;16838:48;16903:19;;32223:101:0;16514:414:1;32223:101:0;32371:4;-1:-1:-1;;;;;32349:26:0;:13;:18;;;-1:-1:-1;;;;;32349:26:0;;32333:98;;;;-1:-1:-1;;;32333:98:0;;17135:2:1;32333:98:0;;;17117:21:1;17174:2;17154:18;;;17147:30;17213:34;17193:18;;;17186:62;-1:-1:-1;;;17264:18:1;;;17257:36;17310:19;;32333:98:0;16933:402:1;32333:98:0;-1:-1:-1;;;;;32446:16:0;;32438:66;;;;-1:-1:-1;;;32438:66:0;;17542:2:1;32438:66:0;;;17524:21:1;17581:2;17561:18;;;17554:30;17620:34;17600:18;;;17593:62;-1:-1:-1;;;17671:18:1;;;17664:35;17716:19;;32438:66:0;17340:401:1;32438:66:0;32613:49;32630:1;32634:7;32643:13;:18;;;32613:8;:49::i;:::-;-1:-1:-1;;;;;32671:18:0;;;;;;:12;:18;;;;;:31;;32701:1;;32671:18;:31;;32701:1;;-1:-1:-1;;;;;32671:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32671:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32709:16:0;;-1:-1:-1;32709:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32709:16:0;;:29;;-1:-1:-1;;32709:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32709:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32768:43:0;;;;;;;;-1:-1:-1;;;;;32768:43:0;;;;;;32794:15;32768:43;;;;;;;;;-1:-1:-1;32745:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32745:66:0;-1:-1:-1;;;;;;32745:66:0;;;;;;;;;;;33061:11;32757:7;-1:-1:-1;33061:11:0;:::i;:::-;33124:1;33083:24;;;:11;:24;;;;;:29;33039:33;;-1:-1:-1;;;;;;33083:29:0;33079:236;;33141:20;33149:11;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;33141:20;33137:171;;;33201:97;;;;;;;;33228:18;;-1:-1:-1;;;;;33201:97:0;;;;;;33259:28;;;;33201:97;;;;;;;;;;-1:-1:-1;33174:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33174:124:0;-1:-1:-1;;;;;;33174:124:0;;;;;;;;;;;;33137:171;33347:7;33343:2;-1:-1:-1;;;;;33328:27:0;33337:4;-1:-1:-1;;;;;33328:27:0;;;;;;;;;;;33362:42;31971:1439;;;31881:1529;;;:::o;25633:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25750:16:0;25758:7;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;25750:16;25742:71;;;;-1:-1:-1;;;25742:71:0;;18457:2:1;25742:71:0;;;18439:21:1;18496:2;18476:18;;;18469:30;18535:34;18515:18;;;18508:62;-1:-1:-1;;;18586:18:1;;;18579:40;18636:19;;25742:71:0;18255:406:1;25742:71:0;25822:26;25870:12;25859:7;:23;25855:93;;25914:22;25924:12;25914:7;:22;:::i;:::-;:26;;25939:1;25914:26;:::i;:::-;25893:47;;25855:93;25976:7;25956:212;25993:18;25985:4;:26;25956:212;;26030:31;26064:17;;;:11;:17;;;;;;;;;26030:51;;;;;;;;;-1:-1:-1;;;;;26030:51:0;;;;;-1:-1:-1;;;26030:51:0;;;;;;;;;;;;26094:28;26090:71;;26142:9;25633:606;-1:-1:-1;;;;25633:606:0:o;26090:71::-;-1:-1:-1;26013:6:0;;;;:::i;:::-;;;;25956:212;;;-1:-1:-1;26176:57:0;;-1:-1:-1;;;26176:57:0;;19139:2:1;26176:57:0;;;19121:21:1;19178:2;19158:18;;;19151:30;19217:34;19197:18;;;19190:62;-1:-1:-1;;;19268:18:1;;;19261:45;19323:19;;26176:57:0;18937:411:1;39381:191:0;39474:6;;;-1:-1:-1;;;;;39491:17:0;;;-1:-1:-1;;;;;;39491:17:0;;;;;;;39524:40;;39474:6;;;39491:17;39474:6;;39524:40;;39455:16;;39524:40;39444:128;39381:191;:::o;35231:690::-;35368:4;-1:-1:-1;;;;;35385:13:0;;9617:20;9665:8;35381:535;;35424:72;;-1:-1:-1;;;35424:72:0;;-1:-1:-1;;;;;35424:36:0;;;;;:72;;17795:10;;35475:4;;35481:7;;35490:5;;35424:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35424:72:0;;;;;;;;-1:-1:-1;;35424:72:0;;;;;;;;;;;;:::i;:::-;;;35411:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35655:6;:13;35672:1;35655:18;35651:215;;35688:61;;-1:-1:-1;;;35688:61:0;;;;;;;:::i;35651:215::-;35834:6;35828:13;35819:6;35815:2;35811:15;35804:38;35411:464;-1:-1:-1;;;;;;35546:55:0;-1:-1:-1;;;35546:55:0;;-1:-1:-1;35539:62:0;;35381:535;-1:-1:-1;35904:4:0;35381:535;35231:690;;;;;;:::o;18238:723::-;18294:13;18515:5;18524:1;18515:10;18511:53;;-1:-1:-1;;18542:10:0;;;;;;;;;;;;-1:-1:-1;;;18542:10:0;;;;;18238:723::o;18511:53::-;18589:5;18574:12;18630:78;18637:9;;18630:78;;18663:8;;;;:::i;:::-;;-1:-1:-1;18686:10:0;;-1:-1:-1;18694:2:0;18686:10;;:::i;:::-;;;18630:78;;;18718:19;18750:6;18740:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18740:17:0;;18718:39;;18768:154;18775:10;;18768:154;;18802:11;18812:1;18802:11;;:::i;:::-;;-1:-1:-1;18871:10:0;18879:2;18871:5;:10;:::i;:::-;18858:24;;:2;:24;:::i;:::-;18845:39;;18828:6;18835;18828:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18828:56:0;;;;;;;;-1:-1:-1;18899:11:0;18908:2;18899:11;;:::i;:::-;;;18768:154;;30377:1272;30482:20;30505:12;-1:-1:-1;;;;;30532:16:0;;30524:62;;;;-1:-1:-1;;;30524:62:0;;20809:2:1;30524:62:0;;;20791:21:1;20848:2;20828:18;;;20821:30;20887:34;20867:18;;;20860:62;-1:-1:-1;;;20938:18:1;;;20931:31;20979:19;;30524:62:0;20607:397:1;30524:62:0;30723:21;30731:12;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;30723:21;30722:22;30714:64;;;;-1:-1:-1;;;30714:64:0;;21211:2:1;30714:64:0;;;21193:21:1;21250:2;21230:18;;;21223:30;21289:31;21269:18;;;21262:59;21338:18;;30714:64:0;21009:353:1;30714:64:0;30805:12;30793:8;:24;;30785:71;;;;-1:-1:-1;;;30785:71:0;;21569:2:1;30785:71:0;;;21551:21:1;21608:2;21588:18;;;21581:30;21647:34;21627:18;;;21620:62;-1:-1:-1;;;21698:18:1;;;21691:32;21740:19;;30785:71:0;21367:398:1;30785:71:0;-1:-1:-1;;;;;30968:16:0;;30935:30;30968:16;;;:12;:16;;;;;;;;;30935:49;;;;;;;;;-1:-1:-1;;;;;30935:49:0;;;;;-1:-1:-1;;;30935:49:0;;;;;;;;;;;31010:119;;;;;;;;31030:19;;30935:49;;31010:119;;;31030:39;;31060:8;;31030:39;:::i;:::-;-1:-1:-1;;;;;31010:119:0;;;;;31113:8;31078:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31010:119:0;;;;;;-1:-1:-1;;;;;30991:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30991:138:0;;;;;;;;;;;;31164:43;;;;;;;;;;;31190:15;31164:43;;;;;;;;31136:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31136:71:0;-1:-1:-1;;;;;;31136:71:0;;;;;;;;;;;;;;;;;;31148:12;;31260:281;31284:8;31280:1;:12;31260:281;;;31313:38;;31338:12;;-1:-1:-1;;;;;31313:38:0;;;31330:1;;31313:38;;31330:1;;31313:38;31378:59;31409:1;31413:2;31417:12;31431:5;31378:22;:59::i;:::-;31360:150;;;;-1:-1:-1;;;31360:150:0;;;;;;;:::i;:::-;31519:14;;;;:::i;:::-;;;;31294:3;;;;;:::i;:::-;;;;31260:281;;;-1:-1:-1;31549:12:0;:27;;;31583:60;29279:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;961:258::-;1033:1;1043:113;1057:6;1054:1;1051:13;1043:113;;;1133:11;;;1127:18;1114:11;;;1107:39;1079:2;1072:10;1043:113;;;1174:6;1171:1;1168:13;1165:48;;;-1:-1:-1;;1209:1:1;1191:16;;1184:27;961:258::o;1224:::-;1266:3;1304:5;1298:12;1331:6;1326:3;1319:19;1347:63;1403:6;1396:4;1391:3;1387:14;1380:4;1373:5;1369:16;1347:63;:::i;:::-;1464:2;1443:15;-1:-1:-1;;1439:29:1;1430:39;;;;1471:4;1426:50;;1224:258;-1:-1:-1;;1224:258:1:o;1487:220::-;1636:2;1625:9;1618:21;1599:4;1656:45;1697:2;1686:9;1682:18;1674:6;1656:45;:::i;1712:180::-;1771:6;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;1863:23:1;;1712:180;-1:-1:-1;1712:180:1:o;2105:173::-;2173:20;;-1:-1:-1;;;;;2222:31:1;;2212:42;;2202:70;;2268:1;2265;2258:12;2202:70;2105:173;;;:::o;2283:254::-;2351:6;2359;2412:2;2400:9;2391:7;2387:23;2383:32;2380:52;;;2428:1;2425;2418:12;2380:52;2451:29;2470:9;2451:29;:::i;:::-;2441:39;2527:2;2512:18;;;;2499:32;;-1:-1:-1;;;2283:254:1:o;2724:328::-;2801:6;2809;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2909:29;2928:9;2909:29;:::i;:::-;2899:39;;2957:38;2991:2;2980:9;2976:18;2957:38;:::i;:::-;2947:48;;3042:2;3031:9;3027:18;3014:32;3004:42;;2724:328;;;;;:::o;3057:127::-;3118:10;3113:3;3109:20;3106:1;3099:31;3149:4;3146:1;3139:15;3173:4;3170:1;3163:15;3189:632;3254:5;3284:18;3325:2;3317:6;3314:14;3311:40;;;3331:18;;:::i;:::-;3406:2;3400:9;3374:2;3460:15;;-1:-1:-1;;3456:24:1;;;3482:2;3452:33;3448:42;3436:55;;;3506:18;;;3526:22;;;3503:46;3500:72;;;3552:18;;:::i;:::-;3592:10;3588:2;3581:22;3621:6;3612:15;;3651:6;3643;3636:22;3691:3;3682:6;3677:3;3673:16;3670:25;3667:45;;;3708:1;3705;3698:12;3667:45;3758:6;3753:3;3746:4;3738:6;3734:17;3721:44;3813:1;3806:4;3797:6;3789;3785:19;3781:30;3774:41;;;;3189:632;;;;;:::o;3826:451::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;4004:9;3991:23;4037:18;4029:6;4026:30;4023:50;;;4069:1;4066;4059:12;4023:50;4092:22;;4145:4;4137:13;;4133:27;-1:-1:-1;4123:55:1;;4174:1;4171;4164:12;4123:55;4197:74;4263:7;4258:2;4245:16;4240:2;4236;4232:11;4197:74;:::i;4282:186::-;4341:6;4394:2;4382:9;4373:7;4369:23;4365:32;4362:52;;;4410:1;4407;4400:12;4362:52;4433:29;4452:9;4433:29;:::i;4473:315::-;4538:6;4546;4599:2;4587:9;4578:7;4574:23;4570:32;4567:52;;;4615:1;4612;4605:12;4567:52;4638:29;4657:9;4638:29;:::i;:::-;4628:39;;4717:2;4706:9;4702:18;4689:32;4730:28;4752:5;4730:28;:::i;:::-;4777:5;4767:15;;;4473:315;;;;;:::o;4793:667::-;4888:6;4896;4904;4912;4965:3;4953:9;4944:7;4940:23;4936:33;4933:53;;;4982:1;4979;4972:12;4933:53;5005:29;5024:9;5005:29;:::i;:::-;4995:39;;5053:38;5087:2;5076:9;5072:18;5053:38;:::i;:::-;5043:48;;5138:2;5127:9;5123:18;5110:32;5100:42;;5193:2;5182:9;5178:18;5165:32;5220:18;5212:6;5209:30;5206:50;;;5252:1;5249;5242:12;5206:50;5275:22;;5328:4;5320:13;;5316:27;-1:-1:-1;5306:55:1;;5357:1;5354;5347:12;5306:55;5380:74;5446:7;5441:2;5428:16;5423:2;5419;5415:11;5380:74;:::i;:::-;5370:84;;;4793:667;;;;;;;:::o;5465:260::-;5533:6;5541;5594:2;5582:9;5573:7;5569:23;5565:32;5562:52;;;5610:1;5607;5600:12;5562:52;5633:29;5652:9;5633:29;:::i;:::-;5623:39;;5681:38;5715:2;5704:9;5700:18;5681:38;:::i;:::-;5671:48;;5465:260;;;;;:::o;5730:345::-;5932:2;5914:21;;;5971:2;5951:18;;;5944:30;-1:-1:-1;;;6005:2:1;5990:18;;5983:51;6066:2;6051:18;;5730:345::o;6080:380::-;6159:1;6155:12;;;;6202;;;6223:61;;6277:4;6269:6;6265:17;6255:27;;6223:61;6330:2;6322:6;6319:14;6299:18;6296:38;6293:161;;6376:10;6371:3;6367:20;6364:1;6357:31;6411:4;6408:1;6401:15;6439:4;6436:1;6429:15;6293:161;;6080:380;;;:::o;8042:127::-;8103:10;8098:3;8094:20;8091:1;8084:31;8134:4;8131:1;8124:15;8158:4;8155:1;8148:15;8174:128;8214:3;8245:1;8241:6;8238:1;8235:13;8232:39;;;8251:18;;:::i;:::-;-1:-1:-1;8287:9:1;;8174:128::o;8643:184::-;8713:6;8766:2;8754:9;8745:7;8741:23;8737:32;8734:52;;;8782:1;8779;8772:12;8734:52;-1:-1:-1;8805:16:1;;8643:184;-1:-1:-1;8643:184:1:o;8832:168::-;8872:7;8938:1;8934;8930:6;8926:14;8923:1;8920:21;8915:1;8908:9;8901:17;8897:45;8894:71;;;8945:18;;:::i;:::-;-1:-1:-1;8985:9:1;;8832:168::o;10029:245::-;10096:6;10149:2;10137:9;10128:7;10124:23;10120:32;10117:52;;;10165:1;10162;10155:12;10117:52;10197:9;10191:16;10216:28;10238:5;10216:28;:::i;10682:135::-;10721:3;10742:17;;;10739:43;;10762:18;;:::i;:::-;-1:-1:-1;10809:1:1;10798:13;;10682:135::o;13769:415::-;13971:2;13953:21;;;14010:2;13990:18;;;13983:30;14049:34;14044:2;14029:18;;14022:62;-1:-1:-1;;;14115:2:1;14100:18;;14093:49;14174:3;14159:19;;13769:415::o;14668:973::-;14753:12;;14718:3;;14808:1;14828:18;;;;14881;;;;14908:61;;14962:4;14954:6;14950:17;14940:27;;14908:61;14988:2;15036;15028:6;15025:14;15005:18;15002:38;14999:161;;15082:10;15077:3;15073:20;15070:1;15063:31;15117:4;15114:1;15107:15;15145:4;15142:1;15135:15;14999:161;15176:18;15203:104;;;;15321:1;15316:319;;;;15169:466;;15203:104;-1:-1:-1;;15236:24:1;;15224:37;;15281:16;;;;-1:-1:-1;15203:104:1;;15316:319;14615:1;14608:14;;;14652:4;14639:18;;15410:1;15424:165;15438:6;15435:1;15432:13;15424:165;;;15516:14;;15503:11;;;15496:35;15559:16;;;;15453:10;;15424:165;;;15428:3;;15618:6;15613:3;15609:16;15602:23;;15169:466;;;;;;;14668:973;;;;:::o;15646:456::-;15867:3;15895:38;15929:3;15921:6;15895:38;:::i;:::-;15962:6;15956:13;15978:52;16023:6;16019:2;16012:4;16004:6;16000:17;15978:52;:::i;:::-;16046:50;16088:6;16084:2;16080:15;16072:6;16046:50;:::i;:::-;16039:57;15646:456;-1:-1:-1;;;;;;;15646:456:1:o;17746:246::-;17786:4;-1:-1:-1;;;;;17899:10:1;;;;17869;;17921:12;;;17918:38;;;17936:18;;:::i;:::-;17973:13;;17746:246;-1:-1:-1;;;17746:246:1:o;17997:253::-;18037:3;-1:-1:-1;;;;;18126:2:1;18123:1;18119:10;18156:2;18153:1;18149:10;18187:3;18183:2;18179:12;18174:3;18171:21;18168:47;;;18195:18;;:::i;:::-;18231:13;;17997:253;-1:-1:-1;;;;17997:253:1:o;18666:125::-;18706:4;18734:1;18731;18728:8;18725:34;;;18739:18;;:::i;:::-;-1:-1:-1;18776:9:1;;18666:125::o;18796:136::-;18835:3;18863:5;18853:39;;18872:18;;:::i;:::-;-1:-1:-1;;;18908:18:1;;18796:136::o;19353:489::-;-1:-1:-1;;;;;19622:15:1;;;19604:34;;19674:15;;19669:2;19654:18;;19647:43;19721:2;19706:18;;19699:34;;;19769:3;19764:2;19749:18;;19742:31;;;19547:4;;19790:46;;19816:19;;19808:6;19790:46;:::i;:::-;19782:54;19353:489;-1:-1:-1;;;;;;19353:489:1:o;19847:249::-;19916:6;19969:2;19957:9;19948:7;19944:23;19940:32;19937:52;;;19985:1;19982;19975:12;19937:52;20017:9;20011:16;20036:30;20060:5;20036:30;:::i;20101:127::-;20162:10;20157:3;20153:20;20150:1;20143:31;20193:4;20190:1;20183:15;20217:4;20214:1;20207:15;20233:120;20273:1;20299;20289:35;;20304:18;;:::i;:::-;-1:-1:-1;20338:9:1;;20233:120::o;20358:112::-;20390:1;20416;20406:35;;20421:18;;:::i;:::-;-1:-1:-1;20455:9:1;;20358:112::o;20475:127::-;20536:10;20531:3;20527:20;20524:1;20517:31;20567:4;20564:1;20557:15;20591:4;20588:1;20581:15

Swarm Source

ipfs://77327677194f3a2f619411ce4e9c3a3eb78788b6b95652254563e9e43b496fe3
Loading...
Loading
Loading...
Loading
[ 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.