ETH Price: $2,522.88 (+1.57%)

Token

Bored Bunny Tribe (BBT)
 

Overview

Max Total Supply

843 BBT

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*长相思兮长相忆.eth
Balance
30 BBT
0xc218f7b14d28f813DB62965814F49987a650F7a1
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:
BoredBunnyTribe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : bbt.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

/*
BoredBunnyTribe
Official links:
Website: https://boredbunnytribe.com/
Twitter: https://twitter.com/BoredBunnyTribe
Instagram: https://www.instagram.com/BoredBunnyTribe/
Telegram: https://t.me/BoredBunnyTribe
Discord: https://discord.gg/VsjvTgf36b

*/

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 = 1;

  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 = 1;
    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;

contract BoredBunnyTribe is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.01 ether;
    uint256 public NFT_PRICEx5 = 0.008 ether;
    uint256 public NFT_PRICEx10 = 0.0065 ether;
    uint256 public NFT_PRICEx20 = 0.005 ether;
    uint256 public MAX_SUPPLY = 5555;
    uint256 public maxFreeMint = 1;
    uint256 public cap = 5555;
    uint256 public MAX_MINTS = 50;
    string public baseURI = "";
    string public baseExtension = ".json";
     bool public paused = false;
    
    mapping(address => uint256) private _freeMintedCount;

    constructor() ERC721A("Bored Bunny Tribe", "BBT", MAX_MINTS, MAX_SUPPLY) {  
    }
    

    function Mint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_SUPPLY);
        require(MAX_MINTS >= numTokens, "Excess max per paid tx");
        require(totalSupply() + numTokens <= cap, "Can't fulfill requested tokens");

        uint256 payForCount = numTokens;
        uint256 freeMintCount = _freeMintedCount[msg.sender];
        uint256 priceNew = NFT_PRICE;
       if(numTokens<=(maxFreeMint-freeMintCount)){
       payForCount=0;
       _freeMintedCount[msg.sender] = freeMintCount + numTokens;
       }
       else{
         if(numTokens==5){priceNew=NFT_PRICEx5;}
         if(numTokens==10){priceNew=NFT_PRICEx10;}
         if(numTokens==20){priceNew=NFT_PRICEx20;}
       }
    
    require(msg.value >= payForCount * priceNew, "Invalid funds provided");

        _safeMint(msg.sender, numTokens);
    }

    function DevsMint(uint256 numTokens) public payable onlyOwner {
        _safeMint(msg.sender, numTokens);
    }

    function Airdrop(address to, uint count) external onlyOwner {
		_safeMint(to, count);
	}


    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    function freeMintedCount(address owner) external view returns (uint256) {
    return _freeMintedCount[owner];
  }

    

    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, uint256 newPricex5, uint256 newPricex10, uint256 newPricex20) public onlyOwner {
        NFT_PRICE = newPrice;
        NFT_PRICEx5 = newPricex5;
        NFT_PRICEx10 = newPricex10;
        NFT_PRICEx20 = newPricex20;


    }

    function setCap(uint256 _cap) external onlyOwner {
        cap = _cap;
    }

    function setMaxFreeMint(uint256 _maxFreeMint) external onlyOwner {
      maxFreeMint = _maxFreeMint;
    }

    function setRound(uint256 newPrice, uint256 newPricex5, uint256 newPricex10, uint256 newPricex20, uint256 _cap) public onlyOwner {
        NFT_PRICE = newPrice;
        NFT_PRICEx5 = newPricex5;
        NFT_PRICEx10 = newPricex10;
        NFT_PRICEx20 = newPricex20;
        cap = _cap;
    }

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

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

    function withdrawMoney() external onlyOwner {
      (bool success, ) = msg.sender.call{value: address(this).balance}("");
      require(success, "WITHDRAW FAILED!");
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"DevsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_MINTS","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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICEx10","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICEx20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICEx5","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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","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"},{"internalType":"uint256","name":"newPricex5","type":"uint256"},{"internalType":"uint256","name":"newPricex10","type":"uint256"},{"internalType":"uint256","name":"newPricex20","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"newPricex5","type":"uint256"},{"internalType":"uint256","name":"newPricex10","type":"uint256"},{"internalType":"uint256","name":"newPricex20","type":"uint256"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setRound","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260016000556000600755662386f26fc10000600955661c6bf526340000600a55661717b72f0a4000600b556611c37937e08000600c556115b3600d556001600e556115b3600f55603260105560405180602001604052806000815250601190805190602001906200007792919062000327565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060129080519060200190620000c592919062000327565b506000601360006101000a81548160ff021916908315150217905550348015620000ee57600080fd5b506040518060400160405280601181526020017f426f7265642042756e6e792054726962650000000000000000000000000000008152506040518060400160405280600381526020017f4242540000000000000000000000000000000000000000000000000000000000815250601054600d5460008111620001a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019e9062000447565b60405180910390fd5b60008211620001ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e49062000425565b60405180910390fd5b83600190805190602001906200020592919062000327565b5082600290805190602001906200021e92919062000327565b508160a0818152505080608081815250505050505062000253620002476200025960201b60201c565b6200026160201b60201c565b6200057d565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000335906200047a565b90600052602060002090601f016020900481019282620003595760008555620003a5565b82601f106200037457805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a457825182559160200191906001019062000387565b5b509050620003b49190620003b8565b5090565b5b80821115620003d3576000816000905550600101620003b9565b5090565b6000620003e660278362000469565b9150620003f382620004df565b604082019050919050565b60006200040d602e8362000469565b91506200041a826200052e565b604082019050919050565b600060208201905081810360008301526200044081620003d7565b9050919050565b600060208201905081810360008301526200046281620003fe565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049357607f821691505b60208210811415620004aa57620004a9620004b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614d83620005ae600039600081816127f60152818161281f0152612e24015260005050614d836000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063acd01483116100b6578063d176dd451161007a578063d176dd45146108cc578063d3e26a89146108f5578063d7224ba01461091e578063e985e9c514610949578063f2fde38b14610986578063fccffbb4146109af5761025c565b8063acd01483146107e5578063b88d4fde14610810578063c668286214610839578063c87b56dd14610864578063cce132d1146108a15761025c565b806395d89b411161010857806395d89b41146106e75780639813323514610712578063a22cb4651461074f578063a591252d14610778578063aac92ce9146107a3578063ac446002146107ce5761025c565b8063715018a61461062a578063742a4c9b1461064157806379c9cb7b1461066a5780638c32c568146106935780638da5cb5b146106bc5761025c565b8063355274ea116101dd57806355f804b3116101a157806355f804b3146105065780635c975abb1461052f5780636352211e1461055a578063676dd563146105975780636c0360eb146105c257806370a08231146105ed5761025c565b8063355274ea146104305780633fa6a9731461045b57806342842e0e1461047757806347786d37146104a05780634f6ccce7146104c95761025c565b8063095ea7b311610224578063095ea7b31461034b57806318160ddd1461037457806323b872dd1461039f5780632f745c59146103c857806332cb6b0c146104055761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c757806307883703146102f2578063081812fc1461030e575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613677565b6109da565b6040516102959190613db3565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061364a565b610b24565b005b3480156102d357600080fd5b506102dc610bbd565b6040516102e99190613dce565b60405180910390f35b61030c6004803603810190610307919061371a565b610c4f565b005b34801561031a57600080fd5b506103356004803603810190610330919061371a565b610ebf565b6040516103429190613d4c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061360a565b610f44565b005b34801561038057600080fd5b5061038961105d565b6040516103969190614110565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c191906134f4565b611066565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061360a565b611076565b6040516103fc9190614110565b60405180910390f35b34801561041157600080fd5b5061041a611278565b6040516104279190614110565b60405180910390f35b34801561043c57600080fd5b5061044561127e565b6040516104529190614110565b60405180910390f35b6104756004803603810190610470919061371a565b611284565b005b34801561048357600080fd5b5061049e600480360381019061049991906134f4565b61130d565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061371a565b61132d565b005b3480156104d557600080fd5b506104f060048036038101906104eb919061371a565b6113b3565b6040516104fd9190614110565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906136d1565b611406565b005b34801561053b57600080fd5b5061054461149c565b6040516105519190613db3565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c919061371a565b6114af565b60405161058e9190613d4c565b60405180910390f35b3480156105a357600080fd5b506105ac6114c5565b6040516105b99190614110565b60405180910390f35b3480156105ce57600080fd5b506105d76114cb565b6040516105e49190613dce565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613487565b611559565b6040516106219190614110565b60405180910390f35b34801561063657600080fd5b5061063f611642565b005b34801561064d57600080fd5b506106686004803603810190610663919061371a565b6116ca565b005b34801561067657600080fd5b50610691600480360381019061068c919061371a565b611750565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061360a565b6117d6565b005b3480156106c857600080fd5b506106d1611860565b6040516106de9190613d4c565b60405180910390f35b3480156106f357600080fd5b506106fc61188a565b6040516107099190613dce565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190613487565b61191c565b6040516107469190614110565b60405180910390f35b34801561075b57600080fd5b50610776600480360381019061077191906135ca565b611965565b005b34801561078457600080fd5b5061078d611ae6565b60405161079a9190614110565b60405180910390f35b3480156107af57600080fd5b506107b8611aec565b6040516107c59190614110565b60405180910390f35b3480156107da57600080fd5b506107e3611af2565b005b3480156107f157600080fd5b506107fa611c1d565b6040516108079190614110565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190613547565b611c23565b005b34801561084557600080fd5b5061084e611c7f565b60405161085b9190613dce565b60405180910390f35b34801561087057600080fd5b5061088b6004803603810190610886919061371a565b611d0d565b6040516108989190613dce565b60405180910390f35b3480156108ad57600080fd5b506108b6611db8565b6040516108c39190614110565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee9190613747565b611dbe565b005b34801561090157600080fd5b5061091c600480360381019061091791906137ae565b611e5c565b005b34801561092a57600080fd5b50610933611f02565b6040516109409190614110565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b91906134b4565b611f08565b60405161097d9190613db3565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a89190613487565b611f9c565b005b3480156109bb57600080fd5b506109c4612094565b6040516109d19190614110565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1d5750610b1c8261209a565b5b9050919050565b610b2c612104565b73ffffffffffffffffffffffffffffffffffffffff16610b4a611860565b73ffffffffffffffffffffffffffffffffffffffff1614610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790613ef0565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060018054610bcc906144a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf8906144a0565b8015610c455780601f10610c1a57610100808354040283529160200191610c45565b820191906000526020600020905b815481529060010190602001808311610c2857829003601f168201915b5050505050905090565b601360009054906101000a900460ff1615610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613e10565b60405180910390fd5b600081118015610cb157506010548111155b610cba57600080fd5b600d5481610cc661105d565b610cd0919061425b565b1115610cdb57600080fd5b806010541015610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613e90565b60405180910390fd5b600f5481610d2c61105d565b610d36919061425b565b1115610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90613ff0565b60405180910390fd5b60008190506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600954905081600e54610dd59190614370565b8411610e3357600092508382610deb919061425b565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e61565b6005841415610e4257600a5490505b600a841415610e5157600b5490505b6014841415610e6057600c5490505b5b8083610e6d91906142e2565b341015610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613fd0565b60405180910390fd5b610eb9338561210c565b50505050565b6000610eca8261212a565b610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f00906140d0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f4f826114af565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790614010565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fdf612104565b73ffffffffffffffffffffffffffffffffffffffff16148061100e575061100d81611008612104565b611f08565b5b61104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613f10565b60405180910390fd5b611058838383612137565b505050565b60008054905090565b6110718383836121e9565b505050565b600061108183611559565b82106110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613df0565b60405180910390fd5b60006110cc61105d565b90506000600190506000805b83811015611236576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111ca57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112225786841415611213578195505050505050611272565b838061121e90614503565b9450505b50808061122e90614503565b9150506110d8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990614090565b60405180910390fd5b92915050565b600d5481565b600f5481565b61128c612104565b73ffffffffffffffffffffffffffffffffffffffff166112aa611860565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613ef0565b60405180910390fd5b61130a338261210c565b50565b61132883838360405180602001604052806000815250611c23565b505050565b611335612104565b73ffffffffffffffffffffffffffffffffffffffff16611353611860565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613ef0565b60405180910390fd5b80600f8190555050565b60006113bd61105d565b82106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613eb0565b60405180910390fd5b819050919050565b61140e612104565b73ffffffffffffffffffffffffffffffffffffffff1661142c611860565b73ffffffffffffffffffffffffffffffffffffffff1614611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990613ef0565b60405180910390fd5b8060119080519060200190611498929190613261565b5050565b601360009054906101000a900460ff1681565b60006114ba826127a2565b600001519050919050565b60095481565b601180546114d8906144a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611504906144a0565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613f30565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61164a612104565b73ffffffffffffffffffffffffffffffffffffffff16611668611860565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613ef0565b60405180910390fd5b6116c860006129a5565b565b6116d2612104565b73ffffffffffffffffffffffffffffffffffffffff166116f0611860565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613ef0565b60405180910390fd5b80600e8190555050565b611758612104565b73ffffffffffffffffffffffffffffffffffffffff16611776611860565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613ef0565b60405180910390fd5b8060108190555050565b6117de612104565b73ffffffffffffffffffffffffffffffffffffffff166117fc611860565b73ffffffffffffffffffffffffffffffffffffffff1614611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990613ef0565b60405180910390fd5b61185c828261210c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611899906144a0565b80601f01602080910402602001604051908101604052809291908181526020018280546118c5906144a0565b80156119125780601f106118e757610100808354040283529160200191611912565b820191906000526020600020905b8154815290600101906020018083116118f557829003601f168201915b5050505050905090565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61196d612104565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613f90565b60405180910390fd5b80600660006119e8612104565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a95612104565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ada9190613db3565b60405180910390a35050565b600e5481565b600b5481565b611afa612104565b73ffffffffffffffffffffffffffffffffffffffff16611b18611860565b73ffffffffffffffffffffffffffffffffffffffff1614611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613ef0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611b9490613d37565b60006040518083038185875af1925050503d8060008114611bd1576040519150601f19603f3d011682016040523d82523d6000602084013e611bd6565b606091505b5050905080611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613e50565b60405180910390fd5b50565b600c5481565b611c2e8484846121e9565b611c3a84848484612a6b565b611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614030565b60405180910390fd5b50505050565b60128054611c8c906144a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb8906144a0565b8015611d055780601f10611cda57610100808354040283529160200191611d05565b820191906000526020600020905b815481529060010190602001808311611ce857829003601f168201915b505050505081565b6060611d188261212a565b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613f50565b60405180910390fd5b600060118054611d66906144a0565b905011611d825760405180602001604052806000815250611db1565b6011611d8d83612c02565b6012604051602001611da193929190613d06565b6040516020818303038152906040525b9050919050565b60105481565b611dc6612104565b73ffffffffffffffffffffffffffffffffffffffff16611de4611860565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190613ef0565b60405180910390fd5b8360098190555082600a8190555081600b8190555080600c8190555050505050565b611e64612104565b73ffffffffffffffffffffffffffffffffffffffff16611e82611860565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613ef0565b60405180910390fd5b8460098190555083600a8190555082600b8190555081600c8190555080600f819055505050505050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa4612104565b73ffffffffffffffffffffffffffffffffffffffff16611fc2611860565b73ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613ef0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207f90613e30565b60405180910390fd5b612091816129a5565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612126828260405180602001604052806000815250612d63565b5050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121f4826127a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661221b612104565b73ffffffffffffffffffffffffffffffffffffffff1614806122775750612240612104565b73ffffffffffffffffffffffffffffffffffffffff1661225f84610ebf565b73ffffffffffffffffffffffffffffffffffffffff16145b806122935750612292826000015161228d612104565b611f08565b5b9050806122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90613fb0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90613f70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90613ed0565b60405180910390fd5b6123c48585856001613242565b6123d46000848460000151612137565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612442919061433c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124e69190614215565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125ec919061425b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612732576126628161212a565b15612731576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461279a8686866001613248565b505050505050565b6127aa6132e7565b6127b38261212a565b6127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990613e70565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106128565760017f0000000000000000000000000000000000000000000000000000000000000000846128499190614370565b612853919061425b565b90505b60008390505b818110612964576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612950578093505050506129a0565b50808061295c90614476565b91505061285c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612997906140b0565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a8c8473ffffffffffffffffffffffffffffffffffffffff1661324e565b15612bf5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ab5612104565b8786866040518563ffffffff1660e01b8152600401612ad79493929190613d67565b602060405180830381600087803b158015612af157600080fd5b505af1925050508015612b2257506040513d601f19601f82011682018060405250810190612b1f91906136a4565b60015b612ba5573d8060008114612b52576040519150601f19603f3d011682016040523d82523d6000602084013e612b57565b606091505b50600081511415612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490614030565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bfa565b600190505b949350505050565b60606000821415612c4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d5e565b600082905060005b60008214612c7c578080612c6590614503565b915050600a82612c7591906142b1565b9150612c52565b60008167ffffffffffffffff811115612c9857612c97614639565b5b6040519080825280601f01601f191660200182016040528015612cca5781602001600182028036833780820191505090505b5090505b60008514612d5757600182612ce39190614370565b9150600a85612cf2919061454c565b6030612cfe919061425b565b60f81b818381518110612d1457612d1361460a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d5091906142b1565b9450612cce565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd090614070565b60405180910390fd5b612de28161212a565b15612e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1990614050565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c906140f0565b60405180910390fd5b612e926000858386613242565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f8f9190614215565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fb69190614215565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561322557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131c56000888488612a6b565b613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90614030565b60405180910390fd5b818061320f90614503565b925050808061321d90614503565b915050613154565b508060008190555061323a6000878588613248565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461326d906144a0565b90600052602060002090601f01602090048101928261328f57600085556132d6565b82601f106132a857805160ff19168380011785556132d6565b828001600101855582156132d6579182015b828111156132d55782518255916020019190600101906132ba565b5b5090506132e39190613321565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561333a576000816000905550600101613322565b5090565b600061335161334c84614150565b61412b565b90508281526020810184848401111561336d5761336c61466d565b5b613378848285614434565b509392505050565b600061339361338e84614181565b61412b565b9050828152602081018484840111156133af576133ae61466d565b5b6133ba848285614434565b509392505050565b6000813590506133d181614cf1565b92915050565b6000813590506133e681614d08565b92915050565b6000813590506133fb81614d1f565b92915050565b60008151905061341081614d1f565b92915050565b600082601f83011261342b5761342a614668565b5b813561343b84826020860161333e565b91505092915050565b600082601f83011261345957613458614668565b5b8135613469848260208601613380565b91505092915050565b60008135905061348181614d36565b92915050565b60006020828403121561349d5761349c614677565b5b60006134ab848285016133c2565b91505092915050565b600080604083850312156134cb576134ca614677565b5b60006134d9858286016133c2565b92505060206134ea858286016133c2565b9150509250929050565b60008060006060848603121561350d5761350c614677565b5b600061351b868287016133c2565b935050602061352c868287016133c2565b925050604061353d86828701613472565b9150509250925092565b6000806000806080858703121561356157613560614677565b5b600061356f878288016133c2565b9450506020613580878288016133c2565b935050604061359187828801613472565b925050606085013567ffffffffffffffff8111156135b2576135b1614672565b5b6135be87828801613416565b91505092959194509250565b600080604083850312156135e1576135e0614677565b5b60006135ef858286016133c2565b9250506020613600858286016133d7565b9150509250929050565b6000806040838503121561362157613620614677565b5b600061362f858286016133c2565b925050602061364085828601613472565b9150509250929050565b6000602082840312156136605761365f614677565b5b600061366e848285016133d7565b91505092915050565b60006020828403121561368d5761368c614677565b5b600061369b848285016133ec565b91505092915050565b6000602082840312156136ba576136b9614677565b5b60006136c884828501613401565b91505092915050565b6000602082840312156136e7576136e6614677565b5b600082013567ffffffffffffffff81111561370557613704614672565b5b61371184828501613444565b91505092915050565b6000602082840312156137305761372f614677565b5b600061373e84828501613472565b91505092915050565b6000806000806080858703121561376157613760614677565b5b600061376f87828801613472565b945050602061378087828801613472565b935050604061379187828801613472565b92505060606137a287828801613472565b91505092959194509250565b600080600080600060a086880312156137ca576137c9614677565b5b60006137d888828901613472565b95505060206137e988828901613472565b94505060406137fa88828901613472565b935050606061380b88828901613472565b925050608061381c88828901613472565b9150509295509295909350565b613832816143a4565b82525050565b613841816143b6565b82525050565b6000613852826141c7565b61385c81856141dd565b935061386c818560208601614443565b6138758161467c565b840191505092915050565b600061388b826141d2565b61389581856141f9565b93506138a5818560208601614443565b6138ae8161467c565b840191505092915050565b60006138c4826141d2565b6138ce818561420a565b93506138de818560208601614443565b80840191505092915050565b600081546138f7816144a0565b613901818661420a565b9450600182166000811461391c576001811461392d57613960565b60ff19831686528186019350613960565b613936856141b2565b60005b8381101561395857815481890152600182019150602081019050613939565b838801955050505b50505092915050565b60006139766022836141f9565b91506139818261468d565b604082019050919050565b60006139996006836141f9565b91506139a4826146dc565b602082019050919050565b60006139bc6026836141f9565b91506139c782614705565b604082019050919050565b60006139df6010836141f9565b91506139ea82614754565b602082019050919050565b6000613a02602a836141f9565b9150613a0d8261477d565b604082019050919050565b6000613a256016836141f9565b9150613a30826147cc565b602082019050919050565b6000613a486023836141f9565b9150613a53826147f5565b604082019050919050565b6000613a6b6025836141f9565b9150613a7682614844565b604082019050919050565b6000613a8e6015836141f9565b9150613a9982614893565b602082019050919050565b6000613ab16039836141f9565b9150613abc826148bc565b604082019050919050565b6000613ad4602b836141f9565b9150613adf8261490b565b604082019050919050565b6000613af76018836141f9565b9150613b028261495a565b602082019050919050565b6000613b1a6026836141f9565b9150613b2582614983565b604082019050919050565b6000613b3d601a836141f9565b9150613b48826149d2565b602082019050919050565b6000613b606032836141f9565b9150613b6b826149fb565b604082019050919050565b6000613b836016836141f9565b9150613b8e82614a4a565b602082019050919050565b6000613ba6601e836141f9565b9150613bb182614a73565b602082019050919050565b6000613bc96022836141f9565b9150613bd482614a9c565b604082019050919050565b6000613bec6000836141ee565b9150613bf782614aeb565b600082019050919050565b6000613c0f6033836141f9565b9150613c1a82614aee565b604082019050919050565b6000613c32601d836141f9565b9150613c3d82614b3d565b602082019050919050565b6000613c556021836141f9565b9150613c6082614b66565b604082019050919050565b6000613c78602e836141f9565b9150613c8382614bb5565b604082019050919050565b6000613c9b602f836141f9565b9150613ca682614c04565b604082019050919050565b6000613cbe602d836141f9565b9150613cc982614c53565b604082019050919050565b6000613ce16022836141f9565b9150613cec82614ca2565b604082019050919050565b613d008161442a565b82525050565b6000613d1282866138ea565b9150613d1e82856138b9565b9150613d2a82846138ea565b9150819050949350505050565b6000613d4282613bdf565b9150819050919050565b6000602082019050613d616000830184613829565b92915050565b6000608082019050613d7c6000830187613829565b613d896020830186613829565b613d966040830185613cf7565b8181036060830152613da88184613847565b905095945050505050565b6000602082019050613dc86000830184613838565b92915050565b60006020820190508181036000830152613de88184613880565b905092915050565b60006020820190508181036000830152613e0981613969565b9050919050565b60006020820190508181036000830152613e298161398c565b9050919050565b60006020820190508181036000830152613e49816139af565b9050919050565b60006020820190508181036000830152613e69816139d2565b9050919050565b60006020820190508181036000830152613e89816139f5565b9050919050565b60006020820190508181036000830152613ea981613a18565b9050919050565b60006020820190508181036000830152613ec981613a3b565b9050919050565b60006020820190508181036000830152613ee981613a5e565b9050919050565b60006020820190508181036000830152613f0981613a81565b9050919050565b60006020820190508181036000830152613f2981613aa4565b9050919050565b60006020820190508181036000830152613f4981613ac7565b9050919050565b60006020820190508181036000830152613f6981613aea565b9050919050565b60006020820190508181036000830152613f8981613b0d565b9050919050565b60006020820190508181036000830152613fa981613b30565b9050919050565b60006020820190508181036000830152613fc981613b53565b9050919050565b60006020820190508181036000830152613fe981613b76565b9050919050565b6000602082019050818103600083015261400981613b99565b9050919050565b6000602082019050818103600083015261402981613bbc565b9050919050565b6000602082019050818103600083015261404981613c02565b9050919050565b6000602082019050818103600083015261406981613c25565b9050919050565b6000602082019050818103600083015261408981613c48565b9050919050565b600060208201905081810360008301526140a981613c6b565b9050919050565b600060208201905081810360008301526140c981613c8e565b9050919050565b600060208201905081810360008301526140e981613cb1565b9050919050565b6000602082019050818103600083015261410981613cd4565b9050919050565b60006020820190506141256000830184613cf7565b92915050565b6000614135614146565b905061414182826144d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561416b5761416a614639565b5b6141748261467c565b9050602081019050919050565b600067ffffffffffffffff82111561419c5761419b614639565b5b6141a58261467c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614220826143ee565b915061422b836143ee565b9250826fffffffffffffffffffffffffffffffff038211156142505761424f61457d565b5b828201905092915050565b60006142668261442a565b91506142718361442a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142a6576142a561457d565b5b828201905092915050565b60006142bc8261442a565b91506142c78361442a565b9250826142d7576142d66145ac565b5b828204905092915050565b60006142ed8261442a565b91506142f88361442a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143315761433061457d565b5b828202905092915050565b6000614347826143ee565b9150614352836143ee565b9250828210156143655761436461457d565b5b828203905092915050565b600061437b8261442a565b91506143868361442a565b9250828210156143995761439861457d565b5b828203905092915050565b60006143af8261440a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614461578082015181840152602081019050614446565b83811115614470576000848401525b50505050565b60006144818261442a565b915060008214156144955761449461457d565b5b600182039050919050565b600060028204905060018216806144b857607f821691505b602082108114156144cc576144cb6145db565b5b50919050565b6144db8261467c565b810181811067ffffffffffffffff821117156144fa576144f9614639565b5b80604052505050565b600061450e8261442a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145415761454061457d565b5b600182019050919050565b60006145578261442a565b91506145628361442a565b925082614572576145716145ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f43616e27742066756c66696c6c2072657175657374656420746f6b656e730000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614cfa816143a4565b8114614d0557600080fd5b50565b614d11816143b6565b8114614d1c57600080fd5b50565b614d28816143c2565b8114614d3357600080fd5b50565b614d3f8161442a565b8114614d4a57600080fd5b5056fea264697066735822122053bb511dc1d97842b84dfb150fa1e8fffee70d7067dbec10f403779803cda47f64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063acd01483116100b6578063d176dd451161007a578063d176dd45146108cc578063d3e26a89146108f5578063d7224ba01461091e578063e985e9c514610949578063f2fde38b14610986578063fccffbb4146109af5761025c565b8063acd01483146107e5578063b88d4fde14610810578063c668286214610839578063c87b56dd14610864578063cce132d1146108a15761025c565b806395d89b411161010857806395d89b41146106e75780639813323514610712578063a22cb4651461074f578063a591252d14610778578063aac92ce9146107a3578063ac446002146107ce5761025c565b8063715018a61461062a578063742a4c9b1461064157806379c9cb7b1461066a5780638c32c568146106935780638da5cb5b146106bc5761025c565b8063355274ea116101dd57806355f804b3116101a157806355f804b3146105065780635c975abb1461052f5780636352211e1461055a578063676dd563146105975780636c0360eb146105c257806370a08231146105ed5761025c565b8063355274ea146104305780633fa6a9731461045b57806342842e0e1461047757806347786d37146104a05780634f6ccce7146104c95761025c565b8063095ea7b311610224578063095ea7b31461034b57806318160ddd1461037457806323b872dd1461039f5780632f745c59146103c857806332cb6b0c146104055761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c757806307883703146102f2578063081812fc1461030e575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613677565b6109da565b6040516102959190613db3565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061364a565b610b24565b005b3480156102d357600080fd5b506102dc610bbd565b6040516102e99190613dce565b60405180910390f35b61030c6004803603810190610307919061371a565b610c4f565b005b34801561031a57600080fd5b506103356004803603810190610330919061371a565b610ebf565b6040516103429190613d4c565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061360a565b610f44565b005b34801561038057600080fd5b5061038961105d565b6040516103969190614110565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c191906134f4565b611066565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061360a565b611076565b6040516103fc9190614110565b60405180910390f35b34801561041157600080fd5b5061041a611278565b6040516104279190614110565b60405180910390f35b34801561043c57600080fd5b5061044561127e565b6040516104529190614110565b60405180910390f35b6104756004803603810190610470919061371a565b611284565b005b34801561048357600080fd5b5061049e600480360381019061049991906134f4565b61130d565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061371a565b61132d565b005b3480156104d557600080fd5b506104f060048036038101906104eb919061371a565b6113b3565b6040516104fd9190614110565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906136d1565b611406565b005b34801561053b57600080fd5b5061054461149c565b6040516105519190613db3565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c919061371a565b6114af565b60405161058e9190613d4c565b60405180910390f35b3480156105a357600080fd5b506105ac6114c5565b6040516105b99190614110565b60405180910390f35b3480156105ce57600080fd5b506105d76114cb565b6040516105e49190613dce565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613487565b611559565b6040516106219190614110565b60405180910390f35b34801561063657600080fd5b5061063f611642565b005b34801561064d57600080fd5b506106686004803603810190610663919061371a565b6116ca565b005b34801561067657600080fd5b50610691600480360381019061068c919061371a565b611750565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061360a565b6117d6565b005b3480156106c857600080fd5b506106d1611860565b6040516106de9190613d4c565b60405180910390f35b3480156106f357600080fd5b506106fc61188a565b6040516107099190613dce565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190613487565b61191c565b6040516107469190614110565b60405180910390f35b34801561075b57600080fd5b50610776600480360381019061077191906135ca565b611965565b005b34801561078457600080fd5b5061078d611ae6565b60405161079a9190614110565b60405180910390f35b3480156107af57600080fd5b506107b8611aec565b6040516107c59190614110565b60405180910390f35b3480156107da57600080fd5b506107e3611af2565b005b3480156107f157600080fd5b506107fa611c1d565b6040516108079190614110565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190613547565b611c23565b005b34801561084557600080fd5b5061084e611c7f565b60405161085b9190613dce565b60405180910390f35b34801561087057600080fd5b5061088b6004803603810190610886919061371a565b611d0d565b6040516108989190613dce565b60405180910390f35b3480156108ad57600080fd5b506108b6611db8565b6040516108c39190614110565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee9190613747565b611dbe565b005b34801561090157600080fd5b5061091c600480360381019061091791906137ae565b611e5c565b005b34801561092a57600080fd5b50610933611f02565b6040516109409190614110565b60405180910390f35b34801561095557600080fd5b50610970600480360381019061096b91906134b4565b611f08565b60405161097d9190613db3565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a89190613487565b611f9c565b005b3480156109bb57600080fd5b506109c4612094565b6040516109d19190614110565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1d5750610b1c8261209a565b5b9050919050565b610b2c612104565b73ffffffffffffffffffffffffffffffffffffffff16610b4a611860565b73ffffffffffffffffffffffffffffffffffffffff1614610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790613ef0565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060018054610bcc906144a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf8906144a0565b8015610c455780601f10610c1a57610100808354040283529160200191610c45565b820191906000526020600020905b815481529060010190602001808311610c2857829003601f168201915b5050505050905090565b601360009054906101000a900460ff1615610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613e10565b60405180910390fd5b600081118015610cb157506010548111155b610cba57600080fd5b600d5481610cc661105d565b610cd0919061425b565b1115610cdb57600080fd5b806010541015610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613e90565b60405180910390fd5b600f5481610d2c61105d565b610d36919061425b565b1115610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90613ff0565b60405180910390fd5b60008190506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600954905081600e54610dd59190614370565b8411610e3357600092508382610deb919061425b565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e61565b6005841415610e4257600a5490505b600a841415610e5157600b5490505b6014841415610e6057600c5490505b5b8083610e6d91906142e2565b341015610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613fd0565b60405180910390fd5b610eb9338561210c565b50505050565b6000610eca8261212a565b610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f00906140d0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f4f826114af565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790614010565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fdf612104565b73ffffffffffffffffffffffffffffffffffffffff16148061100e575061100d81611008612104565b611f08565b5b61104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613f10565b60405180910390fd5b611058838383612137565b505050565b60008054905090565b6110718383836121e9565b505050565b600061108183611559565b82106110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613df0565b60405180910390fd5b60006110cc61105d565b90506000600190506000805b83811015611236576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111ca57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112225786841415611213578195505050505050611272565b838061121e90614503565b9450505b50808061122e90614503565b9150506110d8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990614090565b60405180910390fd5b92915050565b600d5481565b600f5481565b61128c612104565b73ffffffffffffffffffffffffffffffffffffffff166112aa611860565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613ef0565b60405180910390fd5b61130a338261210c565b50565b61132883838360405180602001604052806000815250611c23565b505050565b611335612104565b73ffffffffffffffffffffffffffffffffffffffff16611353611860565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613ef0565b60405180910390fd5b80600f8190555050565b60006113bd61105d565b82106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613eb0565b60405180910390fd5b819050919050565b61140e612104565b73ffffffffffffffffffffffffffffffffffffffff1661142c611860565b73ffffffffffffffffffffffffffffffffffffffff1614611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990613ef0565b60405180910390fd5b8060119080519060200190611498929190613261565b5050565b601360009054906101000a900460ff1681565b60006114ba826127a2565b600001519050919050565b60095481565b601180546114d8906144a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611504906144a0565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613f30565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61164a612104565b73ffffffffffffffffffffffffffffffffffffffff16611668611860565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613ef0565b60405180910390fd5b6116c860006129a5565b565b6116d2612104565b73ffffffffffffffffffffffffffffffffffffffff166116f0611860565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613ef0565b60405180910390fd5b80600e8190555050565b611758612104565b73ffffffffffffffffffffffffffffffffffffffff16611776611860565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613ef0565b60405180910390fd5b8060108190555050565b6117de612104565b73ffffffffffffffffffffffffffffffffffffffff166117fc611860565b73ffffffffffffffffffffffffffffffffffffffff1614611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990613ef0565b60405180910390fd5b61185c828261210c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611899906144a0565b80601f01602080910402602001604051908101604052809291908181526020018280546118c5906144a0565b80156119125780601f106118e757610100808354040283529160200191611912565b820191906000526020600020905b8154815290600101906020018083116118f557829003601f168201915b5050505050905090565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61196d612104565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613f90565b60405180910390fd5b80600660006119e8612104565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a95612104565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ada9190613db3565b60405180910390a35050565b600e5481565b600b5481565b611afa612104565b73ffffffffffffffffffffffffffffffffffffffff16611b18611860565b73ffffffffffffffffffffffffffffffffffffffff1614611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613ef0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611b9490613d37565b60006040518083038185875af1925050503d8060008114611bd1576040519150601f19603f3d011682016040523d82523d6000602084013e611bd6565b606091505b5050905080611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613e50565b60405180910390fd5b50565b600c5481565b611c2e8484846121e9565b611c3a84848484612a6b565b611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614030565b60405180910390fd5b50505050565b60128054611c8c906144a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb8906144a0565b8015611d055780601f10611cda57610100808354040283529160200191611d05565b820191906000526020600020905b815481529060010190602001808311611ce857829003601f168201915b505050505081565b6060611d188261212a565b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90613f50565b60405180910390fd5b600060118054611d66906144a0565b905011611d825760405180602001604052806000815250611db1565b6011611d8d83612c02565b6012604051602001611da193929190613d06565b6040516020818303038152906040525b9050919050565b60105481565b611dc6612104565b73ffffffffffffffffffffffffffffffffffffffff16611de4611860565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190613ef0565b60405180910390fd5b8360098190555082600a8190555081600b8190555080600c8190555050505050565b611e64612104565b73ffffffffffffffffffffffffffffffffffffffff16611e82611860565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613ef0565b60405180910390fd5b8460098190555083600a8190555082600b8190555081600c8190555080600f819055505050505050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa4612104565b73ffffffffffffffffffffffffffffffffffffffff16611fc2611860565b73ffffffffffffffffffffffffffffffffffffffff1614612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613ef0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207f90613e30565b60405180910390fd5b612091816129a5565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612126828260405180602001604052806000815250612d63565b5050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121f4826127a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661221b612104565b73ffffffffffffffffffffffffffffffffffffffff1614806122775750612240612104565b73ffffffffffffffffffffffffffffffffffffffff1661225f84610ebf565b73ffffffffffffffffffffffffffffffffffffffff16145b806122935750612292826000015161228d612104565b611f08565b5b9050806122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90613fb0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90613f70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90613ed0565b60405180910390fd5b6123c48585856001613242565b6123d46000848460000151612137565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612442919061433c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124e69190614215565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125ec919061425b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612732576126628161212a565b15612731576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461279a8686866001613248565b505050505050565b6127aa6132e7565b6127b38261212a565b6127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990613e70565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000003283106128565760017f0000000000000000000000000000000000000000000000000000000000000032846128499190614370565b612853919061425b565b90505b60008390505b818110612964576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612950578093505050506129a0565b50808061295c90614476565b91505061285c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612997906140b0565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a8c8473ffffffffffffffffffffffffffffffffffffffff1661324e565b15612bf5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ab5612104565b8786866040518563ffffffff1660e01b8152600401612ad79493929190613d67565b602060405180830381600087803b158015612af157600080fd5b505af1925050508015612b2257506040513d601f19601f82011682018060405250810190612b1f91906136a4565b60015b612ba5573d8060008114612b52576040519150601f19603f3d011682016040523d82523d6000602084013e612b57565b606091505b50600081511415612b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9490614030565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bfa565b600190505b949350505050565b60606000821415612c4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d5e565b600082905060005b60008214612c7c578080612c6590614503565b915050600a82612c7591906142b1565b9150612c52565b60008167ffffffffffffffff811115612c9857612c97614639565b5b6040519080825280601f01601f191660200182016040528015612cca5781602001600182028036833780820191505090505b5090505b60008514612d5757600182612ce39190614370565b9150600a85612cf2919061454c565b6030612cfe919061425b565b60f81b818381518110612d1457612d1361460a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d5091906142b1565b9450612cce565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd090614070565b60405180910390fd5b612de28161212a565b15612e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1990614050565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000032831115612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c906140f0565b60405180910390fd5b612e926000858386613242565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f8f9190614215565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fb69190614215565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561322557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131c56000888488612a6b565b613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90614030565b60405180910390fd5b818061320f90614503565b925050808061321d90614503565b915050613154565b508060008190555061323a6000878588613248565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b82805461326d906144a0565b90600052602060002090601f01602090048101928261328f57600085556132d6565b82601f106132a857805160ff19168380011785556132d6565b828001600101855582156132d6579182015b828111156132d55782518255916020019190600101906132ba565b5b5090506132e39190613321565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561333a576000816000905550600101613322565b5090565b600061335161334c84614150565b61412b565b90508281526020810184848401111561336d5761336c61466d565b5b613378848285614434565b509392505050565b600061339361338e84614181565b61412b565b9050828152602081018484840111156133af576133ae61466d565b5b6133ba848285614434565b509392505050565b6000813590506133d181614cf1565b92915050565b6000813590506133e681614d08565b92915050565b6000813590506133fb81614d1f565b92915050565b60008151905061341081614d1f565b92915050565b600082601f83011261342b5761342a614668565b5b813561343b84826020860161333e565b91505092915050565b600082601f83011261345957613458614668565b5b8135613469848260208601613380565b91505092915050565b60008135905061348181614d36565b92915050565b60006020828403121561349d5761349c614677565b5b60006134ab848285016133c2565b91505092915050565b600080604083850312156134cb576134ca614677565b5b60006134d9858286016133c2565b92505060206134ea858286016133c2565b9150509250929050565b60008060006060848603121561350d5761350c614677565b5b600061351b868287016133c2565b935050602061352c868287016133c2565b925050604061353d86828701613472565b9150509250925092565b6000806000806080858703121561356157613560614677565b5b600061356f878288016133c2565b9450506020613580878288016133c2565b935050604061359187828801613472565b925050606085013567ffffffffffffffff8111156135b2576135b1614672565b5b6135be87828801613416565b91505092959194509250565b600080604083850312156135e1576135e0614677565b5b60006135ef858286016133c2565b9250506020613600858286016133d7565b9150509250929050565b6000806040838503121561362157613620614677565b5b600061362f858286016133c2565b925050602061364085828601613472565b9150509250929050565b6000602082840312156136605761365f614677565b5b600061366e848285016133d7565b91505092915050565b60006020828403121561368d5761368c614677565b5b600061369b848285016133ec565b91505092915050565b6000602082840312156136ba576136b9614677565b5b60006136c884828501613401565b91505092915050565b6000602082840312156136e7576136e6614677565b5b600082013567ffffffffffffffff81111561370557613704614672565b5b61371184828501613444565b91505092915050565b6000602082840312156137305761372f614677565b5b600061373e84828501613472565b91505092915050565b6000806000806080858703121561376157613760614677565b5b600061376f87828801613472565b945050602061378087828801613472565b935050604061379187828801613472565b92505060606137a287828801613472565b91505092959194509250565b600080600080600060a086880312156137ca576137c9614677565b5b60006137d888828901613472565b95505060206137e988828901613472565b94505060406137fa88828901613472565b935050606061380b88828901613472565b925050608061381c88828901613472565b9150509295509295909350565b613832816143a4565b82525050565b613841816143b6565b82525050565b6000613852826141c7565b61385c81856141dd565b935061386c818560208601614443565b6138758161467c565b840191505092915050565b600061388b826141d2565b61389581856141f9565b93506138a5818560208601614443565b6138ae8161467c565b840191505092915050565b60006138c4826141d2565b6138ce818561420a565b93506138de818560208601614443565b80840191505092915050565b600081546138f7816144a0565b613901818661420a565b9450600182166000811461391c576001811461392d57613960565b60ff19831686528186019350613960565b613936856141b2565b60005b8381101561395857815481890152600182019150602081019050613939565b838801955050505b50505092915050565b60006139766022836141f9565b91506139818261468d565b604082019050919050565b60006139996006836141f9565b91506139a4826146dc565b602082019050919050565b60006139bc6026836141f9565b91506139c782614705565b604082019050919050565b60006139df6010836141f9565b91506139ea82614754565b602082019050919050565b6000613a02602a836141f9565b9150613a0d8261477d565b604082019050919050565b6000613a256016836141f9565b9150613a30826147cc565b602082019050919050565b6000613a486023836141f9565b9150613a53826147f5565b604082019050919050565b6000613a6b6025836141f9565b9150613a7682614844565b604082019050919050565b6000613a8e6015836141f9565b9150613a9982614893565b602082019050919050565b6000613ab16039836141f9565b9150613abc826148bc565b604082019050919050565b6000613ad4602b836141f9565b9150613adf8261490b565b604082019050919050565b6000613af76018836141f9565b9150613b028261495a565b602082019050919050565b6000613b1a6026836141f9565b9150613b2582614983565b604082019050919050565b6000613b3d601a836141f9565b9150613b48826149d2565b602082019050919050565b6000613b606032836141f9565b9150613b6b826149fb565b604082019050919050565b6000613b836016836141f9565b9150613b8e82614a4a565b602082019050919050565b6000613ba6601e836141f9565b9150613bb182614a73565b602082019050919050565b6000613bc96022836141f9565b9150613bd482614a9c565b604082019050919050565b6000613bec6000836141ee565b9150613bf782614aeb565b600082019050919050565b6000613c0f6033836141f9565b9150613c1a82614aee565b604082019050919050565b6000613c32601d836141f9565b9150613c3d82614b3d565b602082019050919050565b6000613c556021836141f9565b9150613c6082614b66565b604082019050919050565b6000613c78602e836141f9565b9150613c8382614bb5565b604082019050919050565b6000613c9b602f836141f9565b9150613ca682614c04565b604082019050919050565b6000613cbe602d836141f9565b9150613cc982614c53565b604082019050919050565b6000613ce16022836141f9565b9150613cec82614ca2565b604082019050919050565b613d008161442a565b82525050565b6000613d1282866138ea565b9150613d1e82856138b9565b9150613d2a82846138ea565b9150819050949350505050565b6000613d4282613bdf565b9150819050919050565b6000602082019050613d616000830184613829565b92915050565b6000608082019050613d7c6000830187613829565b613d896020830186613829565b613d966040830185613cf7565b8181036060830152613da88184613847565b905095945050505050565b6000602082019050613dc86000830184613838565b92915050565b60006020820190508181036000830152613de88184613880565b905092915050565b60006020820190508181036000830152613e0981613969565b9050919050565b60006020820190508181036000830152613e298161398c565b9050919050565b60006020820190508181036000830152613e49816139af565b9050919050565b60006020820190508181036000830152613e69816139d2565b9050919050565b60006020820190508181036000830152613e89816139f5565b9050919050565b60006020820190508181036000830152613ea981613a18565b9050919050565b60006020820190508181036000830152613ec981613a3b565b9050919050565b60006020820190508181036000830152613ee981613a5e565b9050919050565b60006020820190508181036000830152613f0981613a81565b9050919050565b60006020820190508181036000830152613f2981613aa4565b9050919050565b60006020820190508181036000830152613f4981613ac7565b9050919050565b60006020820190508181036000830152613f6981613aea565b9050919050565b60006020820190508181036000830152613f8981613b0d565b9050919050565b60006020820190508181036000830152613fa981613b30565b9050919050565b60006020820190508181036000830152613fc981613b53565b9050919050565b60006020820190508181036000830152613fe981613b76565b9050919050565b6000602082019050818103600083015261400981613b99565b9050919050565b6000602082019050818103600083015261402981613bbc565b9050919050565b6000602082019050818103600083015261404981613c02565b9050919050565b6000602082019050818103600083015261406981613c25565b9050919050565b6000602082019050818103600083015261408981613c48565b9050919050565b600060208201905081810360008301526140a981613c6b565b9050919050565b600060208201905081810360008301526140c981613c8e565b9050919050565b600060208201905081810360008301526140e981613cb1565b9050919050565b6000602082019050818103600083015261410981613cd4565b9050919050565b60006020820190506141256000830184613cf7565b92915050565b6000614135614146565b905061414182826144d2565b919050565b6000604051905090565b600067ffffffffffffffff82111561416b5761416a614639565b5b6141748261467c565b9050602081019050919050565b600067ffffffffffffffff82111561419c5761419b614639565b5b6141a58261467c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614220826143ee565b915061422b836143ee565b9250826fffffffffffffffffffffffffffffffff038211156142505761424f61457d565b5b828201905092915050565b60006142668261442a565b91506142718361442a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142a6576142a561457d565b5b828201905092915050565b60006142bc8261442a565b91506142c78361442a565b9250826142d7576142d66145ac565b5b828204905092915050565b60006142ed8261442a565b91506142f88361442a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143315761433061457d565b5b828202905092915050565b6000614347826143ee565b9150614352836143ee565b9250828210156143655761436461457d565b5b828203905092915050565b600061437b8261442a565b91506143868361442a565b9250828210156143995761439861457d565b5b828203905092915050565b60006143af8261440a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614461578082015181840152602081019050614446565b83811115614470576000848401525b50505050565b60006144818261442a565b915060008214156144955761449461457d565b5b600182039050919050565b600060028204905060018216806144b857607f821691505b602082108114156144cc576144cb6145db565b5b50919050565b6144db8261467c565b810181811067ffffffffffffffff821117156144fa576144f9614639565b5b80604052505050565b600061450e8261442a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145415761454061457d565b5b600182019050919050565b60006145578261442a565b91506145628361442a565b925082614572576145716145ac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f43616e27742066756c66696c6c2072657175657374656420746f6b656e730000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614cfa816143a4565b8114614d0557600080fd5b50565b614d11816143b6565b8114614d1c57600080fd5b50565b614d28816143c2565b8114614d3357600080fd5b50565b614d3f8161442a565b8114614d4a57600080fd5b5056fea264697066735822122053bb511dc1d97842b84dfb150fa1e8fffee70d7067dbec10f403779803cda47f64736f6c63430008070033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.