ETH Price: $3,246.76 (-0.37%)
Gas: 1 Gwei

Token

LIBIDO (LIBIDO)
 

Overview

Max Total Supply

3,452 LIBIDO

Holders

291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nuditacos.eth
Balance
5 LIBIDO
0x30de3948c51645250794cc7fb02aecc0a481d78a
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:
LIBIDO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-30
*/

// SPDX-License-Identifier: MIT
// File: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: extensions/IERC165.sol


pragma solidity ^0.8.0;

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

// File: extensions/IERC721.sol


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: extensions/IERC721Receiver.sol


pragma solidity ^0.8.0;

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

// File: extensions/IERC721Metadata.sol


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: extensions/IERC721Enumerable.sol


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: extensions/ERC165.sol


pragma solidity ^0.8.0;


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

// File: 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: utils/Strings.sol


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: ERC721.sol


pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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
            || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

// File: ERC721EnumerableSimple.sol

pragma solidity ^0.8.0;




/**
 * @dev This is a fork of openzeppelin ERC721Enumerable. It is gas-optimizated for NFT collection
 * with sequential token IDs. The updated part includes:
 * - replaced the array `_allToken`  with a simple uint `_totalSupply`,
 * - updated the functions `totalSupply` and `_beforeTokenTransfer`.
 */
abstract contract ERC721EnumerableSimple is ERC721, IERC721Enumerable {
    // user => tokenId[]
    mapping(address => mapping(uint => uint)) private _ownedTokens;

    // tokenId => index of _ownedTokens[user] (used when changing token ownership)
    mapping(uint => uint) private _ownedTokensIndex;

    // current total amount of token minted
    uint private _totalSupply;

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

    /// @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /// @dev Hook that is called before any token transfer. This includes minting
    function _beforeTokenTransfer(
        address from,
        address to,
        uint tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            assert(tokenId == _totalSupply); // Ensure token is minted sequentially
            _totalSupply += 1;
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }

        if (to == address(0)) {
            // do nothing
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint tokenId) private {
        uint length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev See {ERC721Enumerable-_removeTokenFromOwnerEnumeration}.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }
}

// File: LIBIDO.sol

pragma solidity ^0.8.0;




contract LIBIDO is ERC721EnumerableSimple, Ownable {
    // Maximum amount of NFTToken in existance. Ever.
    // uint public constant MAX_NFTTOKEN_SUPPLY = 10000;

    // The provenance hash of all NFTToken. (Root hash of all NFTToken hashes concatenated)
    string public constant METADATA_PROVENANCE_HASH =
        "F5E8F9752F537EB428B0DC3A3A0F6B3646417E6FBD79AEC314D19D41AC48AF79";

    // Bsae URI of NFTToken's metadata
    string private baseURI;

    constructor() ERC721("LIBIDO", "LIBIDO") {}

    function tokensOfOwner(address _owner) external view returns (uint[] memory) {
        uint tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint[](0); // Return an empty array
        } else {
            uint[] memory result = new uint[](tokenCount);
            for (uint index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function mint() public onlyOwner {
        uint _totalSupply = totalSupply();

        // require(_totalSupply <= MAX_NFTTOKEN_SUPPLY, "Exceeds maximum NFTToken supply");

        _safeMint(msg.sender, _totalSupply);
    }

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

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

    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(msg.sender, tokenId));
        _burn(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

60806040523480156200001157600080fd5b506040805180820182526006808252654c494249444f60d01b6020808401828152855180870190965292855284015281519192916200005391600091620000d6565b50805162000069906001906020840190620000d6565b50505060006200007e620000d260201b60201c565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001b9565b3390565b828054620000e4906200017c565b90600052602060002090601f01602090048101928262000108576000855562000153565b82601f106200012357805160ff191683800117855562000153565b8280016001018555821562000153579182015b828111156200015357825182559160200191906001019062000136565b506200016192915062000165565b5090565b5b8082111562000161576000815560010162000166565b600181811c908216806200019157607f821691505b60208210811415620001b357634e487b7160e01b600052602260045260246000fd5b50919050565b611d0d80620001c96000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102cd578063b88d4fde146102e0578063c87b56dd146102f3578063e985e9c514610306578063f0c9dc6014610342578063f2fde38b1461034a57600080fd5b80636352211e1461026657806370a0823114610279578063715018a61461028c5780638462151c146102945780638da5cb5b146102b457806395d89b41146102c557600080fd5b806323b872dd1161011557806323b872dd146101f45780632f745c591461020757806342842e0e1461021a57806342966c681461022d5780634f6ccce71461024057806355f804b31461025357600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780631249c58b146101da57806318160ddd146101e2575b600080fd5b61017061016b36600461190f565b61035d565b60405190151581526020015b60405180910390f35b61018d610388565b60405161017c9190611a81565b6101ad6101a836600461198d565b61041a565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046118e6565b6104b4565b005b6101d86105ca565b6008545b60405190815260200161017c565b6101d86102023660046117f8565b61060e565b6101e66102153660046118e6565b61063f565b6101d86102283660046117f8565b6106d5565b6101d861023b36600461198d565b6106f0565b6101e661024e36600461198d565b61070c565b6101d8610261366004611947565b61077e565b6101ad61027436600461198d565b6107bf565b6101e66102873660046117ac565b610836565b6101d86108bd565b6102a76102a23660046117ac565b610931565b60405161017c9190611a3d565b6009546001600160a01b03166101ad565b61018d610a0c565b6101d86102db3660046118ac565b610a1b565b6101d86102ee366004611833565b610ae0565b61018d61030136600461198d565b610b18565b6101706103143660046117c6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61018d610bf3565b6101d86103583660046117ac565b610c0f565b60006001600160e01b0319821663780e9d6360e01b1480610382575061038282610cfa565b92915050565b60606000805461039790611bdb565b80601f01602080910402602001604051908101604052809291908181526020018280546103c390611bdb565b80156104105780601f106103e557610100808354040283529160200191610410565b820191906000526020600020905b8154815290600101906020018083116103f357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104bf826107bf565b9050806001600160a01b0316836001600160a01b0316141561052d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161048f565b336001600160a01b038216148061054957506105498133610314565b6105bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161048f565b6105c58383610d4a565b505050565b6009546001600160a01b031633146105f45760405162461bcd60e51b815260040161048f90611ae6565b60006105ff60085490565b905061060b3382610db8565b50565b6106183382610dd2565b6106345760405162461bcd60e51b815260040161048f90611b1b565b6105c5838383610ec9565b600061064a83610836565b82106106ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161048f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105c583838360405180602001604052806000815250610ae0565b6106fa3382610dd2565b61070357600080fd5b61060b81611074565b600061071760085490565b821061077a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161048f565b5090565b6009546001600160a01b031633146107a85760405162461bcd60e51b815260040161048f90611ae6565b80516107bb90600a90602084019061168a565b5050565b6000818152600260205260408120546001600160a01b0316806103825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161048f565b60006001600160a01b0382166108a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161048f565b506001600160a01b031660009081526003602052604090205490565b6009546001600160a01b031633146108e75760405162461bcd60e51b815260040161048f90611ae6565b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6060600061093e83610836565b90508061095f5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561098857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109b1578160200160208202803683370190505b50905060005b82811015610957576109c9858261063f565b8282815181106109e957634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109fe81611c10565b9150506109b7565b50919050565b60606001805461039790611bdb565b6001600160a01b038216331415610a745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161048f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610aea3383610dd2565b610b065760405162461bcd60e51b815260040161048f90611b1b565b610b128484848461111b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161048f565b6000610ba161114e565b90506000815111610bc15760405180602001604052806000815250610bec565b80610bcb8461115d565b604051602001610bdc9291906119d1565b6040516020818303038152906040525b9392505050565b604051806060016040528060408152602001611c986040913981565b6009546001600160a01b03163314610c395760405162461bcd60e51b815260040161048f90611ae6565b6001600160a01b038116610c9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048f565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610d2b57506001600160e01b03198216635b5e139f60e01b145b8061038257506301ffc9a760e01b6001600160e01b0319831614610382565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d7f826107bf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6107bb828260405180602001604052806000815250611277565b6000818152600260205260408120546001600160a01b0316610e4b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161048f565b6000610e56836107bf565b9050806001600160a01b0316846001600160a01b03161480610e915750836001600160a01b0316610e868461041a565b6001600160a01b0316145b80610ec157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610edc826107bf565b6001600160a01b031614610f445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161048f565b6001600160a01b038216610fa65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161048f565b610fb18383836112aa565b610fbc600082610d4a565b6001600160a01b0383166000908152600360205260408120805460019290610fe5908490611b98565b90915550506001600160a01b0382166000908152600360205260408120805460019290611013908490611b6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061107f826107bf565b905061108d816000846112aa565b611098600083610d4a565b6001600160a01b03811660009081526003602052604081208054600192906110c1908490611b98565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611126848484610ec9565b6111328484848461134e565b610b125760405162461bcd60e51b815260040161048f90611a94565b6060600a805461039790611bdb565b6060816111815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ab578061119581611c10565b91506111a49050600a83611b84565b9150611185565b60008167ffffffffffffffff8111156111d457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111fe576020820181803683370190505b5090505b8415610ec157611213600183611b98565b9150611220600a86611c2b565b61122b906030611b6c565b60f81b81838151811061124e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611270600a86611b84565b9450611202565b611281838361145b565b61128e600084848461134e565b6105c55760405162461bcd60e51b815260040161048f90611a94565b6001600160a01b0383166112f55760085481146112d757634e487b7160e01b600052600160045260246000fd5b6001600860008282546112ea9190611b6c565b909155506113189050565b816001600160a01b0316836001600160a01b0316146113185761131883826115a9565b6001600160a01b03821661132b57505050565b826001600160a01b0316826001600160a01b0316146105c5576105c58282611646565b60006001600160a01b0384163b1561145057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611392903390899088908890600401611a00565b602060405180830381600087803b1580156113ac57600080fd5b505af19250505080156113dc575060408051601f3d908101601f191682019092526113d99181019061192b565b60015b611436573d80801561140a576040519150601f19603f3d011682016040523d82523d6000602084013e61140f565b606091505b50805161142e5760405162461bcd60e51b815260040161048f90611a94565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ec1565b506001949350505050565b6001600160a01b0382166114b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161048f565b6000818152600260205260409020546001600160a01b0316156115165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161048f565b611522600083836112aa565b6001600160a01b038216600090815260036020526040812080546001929061154b908490611b6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016115b684610836565b6115c09190611b98565b600083815260076020526040902054909150808214611613576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600061165183610836565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461169690611bdb565b90600052602060002090601f0160209004810192826116b857600085556116fe565b82601f106116d157805160ff19168380011785556116fe565b828001600101855582156116fe579182015b828111156116fe5782518255916020019190600101906116e3565b5061077a9291505b8082111561077a5760008155600101611706565b600067ffffffffffffffff8084111561173557611735611c6b565b604051601f8501601f19908116603f0116810190828211818310171561175d5761175d611c6b565b8160405280935085815286868601111561177657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117a757600080fd5b919050565b6000602082840312156117bd578081fd5b610bec82611790565b600080604083850312156117d8578081fd5b6117e183611790565b91506117ef60208401611790565b90509250929050565b60008060006060848603121561180c578081fd5b61181584611790565b925061182360208501611790565b9150604084013590509250925092565b60008060008060808587031215611848578081fd5b61185185611790565b935061185f60208601611790565b925060408501359150606085013567ffffffffffffffff811115611881578182fd5b8501601f81018713611891578182fd5b6118a08782356020840161171a565b91505092959194509250565b600080604083850312156118be578182fd5b6118c783611790565b9150602083013580151581146118db578182fd5b809150509250929050565b600080604083850312156118f8578182fd5b61190183611790565b946020939093013593505050565b600060208284031215611920578081fd5b8135610bec81611c81565b60006020828403121561193c578081fd5b8151610bec81611c81565b600060208284031215611958578081fd5b813567ffffffffffffffff81111561196e578182fd5b8201601f8101841361197e578182fd5b610ec18482356020840161171a565b60006020828403121561199e578081fd5b5035919050565b600081518084526119bd816020860160208601611baf565b601f01601f19169290920160200192915050565b600083516119e3818460208801611baf565b8351908301906119f7818360208801611baf565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a33908301846119a5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611a7557835183529284019291840191600101611a59565b50909695505050505050565b602081526000610bec60208301846119a5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b7f57611b7f611c3f565b500190565b600082611b9357611b93611c55565b500490565b600082821015611baa57611baa611c3f565b500390565b60005b83811015611bca578181015183820152602001611bb2565b83811115610b125750506000910152565b600181811c90821680611bef57607f821691505b60208210811415610a0657634e487b7160e01b600052602260045260246000fd5b6000600019821415611c2457611c24611c3f565b5060010190565b600082611c3a57611c3a611c55565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461060b57600080fdfe46354538463937353246353337454234323842304443334133413046364233363436343137453646424437394145433331344431394434314143343841463739a264697066735822122051fc705e0a3df2b64e86f8a835d9df7749dc4f4c056560f64e4a3f85710d220d64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102cd578063b88d4fde146102e0578063c87b56dd146102f3578063e985e9c514610306578063f0c9dc6014610342578063f2fde38b1461034a57600080fd5b80636352211e1461026657806370a0823114610279578063715018a61461028c5780638462151c146102945780638da5cb5b146102b457806395d89b41146102c557600080fd5b806323b872dd1161011557806323b872dd146101f45780632f745c591461020757806342842e0e1461021a57806342966c681461022d5780634f6ccce71461024057806355f804b31461025357600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780631249c58b146101da57806318160ddd146101e2575b600080fd5b61017061016b36600461190f565b61035d565b60405190151581526020015b60405180910390f35b61018d610388565b60405161017c9190611a81565b6101ad6101a836600461198d565b61041a565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046118e6565b6104b4565b005b6101d86105ca565b6008545b60405190815260200161017c565b6101d86102023660046117f8565b61060e565b6101e66102153660046118e6565b61063f565b6101d86102283660046117f8565b6106d5565b6101d861023b36600461198d565b6106f0565b6101e661024e36600461198d565b61070c565b6101d8610261366004611947565b61077e565b6101ad61027436600461198d565b6107bf565b6101e66102873660046117ac565b610836565b6101d86108bd565b6102a76102a23660046117ac565b610931565b60405161017c9190611a3d565b6009546001600160a01b03166101ad565b61018d610a0c565b6101d86102db3660046118ac565b610a1b565b6101d86102ee366004611833565b610ae0565b61018d61030136600461198d565b610b18565b6101706103143660046117c6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61018d610bf3565b6101d86103583660046117ac565b610c0f565b60006001600160e01b0319821663780e9d6360e01b1480610382575061038282610cfa565b92915050565b60606000805461039790611bdb565b80601f01602080910402602001604051908101604052809291908181526020018280546103c390611bdb565b80156104105780601f106103e557610100808354040283529160200191610410565b820191906000526020600020905b8154815290600101906020018083116103f357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104bf826107bf565b9050806001600160a01b0316836001600160a01b0316141561052d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161048f565b336001600160a01b038216148061054957506105498133610314565b6105bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161048f565b6105c58383610d4a565b505050565b6009546001600160a01b031633146105f45760405162461bcd60e51b815260040161048f90611ae6565b60006105ff60085490565b905061060b3382610db8565b50565b6106183382610dd2565b6106345760405162461bcd60e51b815260040161048f90611b1b565b6105c5838383610ec9565b600061064a83610836565b82106106ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161048f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105c583838360405180602001604052806000815250610ae0565b6106fa3382610dd2565b61070357600080fd5b61060b81611074565b600061071760085490565b821061077a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161048f565b5090565b6009546001600160a01b031633146107a85760405162461bcd60e51b815260040161048f90611ae6565b80516107bb90600a90602084019061168a565b5050565b6000818152600260205260408120546001600160a01b0316806103825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161048f565b60006001600160a01b0382166108a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161048f565b506001600160a01b031660009081526003602052604090205490565b6009546001600160a01b031633146108e75760405162461bcd60e51b815260040161048f90611ae6565b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6060600061093e83610836565b90508061095f5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561098857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109b1578160200160208202803683370190505b50905060005b82811015610957576109c9858261063f565b8282815181106109e957634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109fe81611c10565b9150506109b7565b50919050565b60606001805461039790611bdb565b6001600160a01b038216331415610a745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161048f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610aea3383610dd2565b610b065760405162461bcd60e51b815260040161048f90611b1b565b610b128484848461111b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161048f565b6000610ba161114e565b90506000815111610bc15760405180602001604052806000815250610bec565b80610bcb8461115d565b604051602001610bdc9291906119d1565b6040516020818303038152906040525b9392505050565b604051806060016040528060408152602001611c986040913981565b6009546001600160a01b03163314610c395760405162461bcd60e51b815260040161048f90611ae6565b6001600160a01b038116610c9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048f565b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610d2b57506001600160e01b03198216635b5e139f60e01b145b8061038257506301ffc9a760e01b6001600160e01b0319831614610382565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d7f826107bf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6107bb828260405180602001604052806000815250611277565b6000818152600260205260408120546001600160a01b0316610e4b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161048f565b6000610e56836107bf565b9050806001600160a01b0316846001600160a01b03161480610e915750836001600160a01b0316610e868461041a565b6001600160a01b0316145b80610ec157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610edc826107bf565b6001600160a01b031614610f445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161048f565b6001600160a01b038216610fa65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161048f565b610fb18383836112aa565b610fbc600082610d4a565b6001600160a01b0383166000908152600360205260408120805460019290610fe5908490611b98565b90915550506001600160a01b0382166000908152600360205260408120805460019290611013908490611b6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061107f826107bf565b905061108d816000846112aa565b611098600083610d4a565b6001600160a01b03811660009081526003602052604081208054600192906110c1908490611b98565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611126848484610ec9565b6111328484848461134e565b610b125760405162461bcd60e51b815260040161048f90611a94565b6060600a805461039790611bdb565b6060816111815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ab578061119581611c10565b91506111a49050600a83611b84565b9150611185565b60008167ffffffffffffffff8111156111d457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111fe576020820181803683370190505b5090505b8415610ec157611213600183611b98565b9150611220600a86611c2b565b61122b906030611b6c565b60f81b81838151811061124e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611270600a86611b84565b9450611202565b611281838361145b565b61128e600084848461134e565b6105c55760405162461bcd60e51b815260040161048f90611a94565b6001600160a01b0383166112f55760085481146112d757634e487b7160e01b600052600160045260246000fd5b6001600860008282546112ea9190611b6c565b909155506113189050565b816001600160a01b0316836001600160a01b0316146113185761131883826115a9565b6001600160a01b03821661132b57505050565b826001600160a01b0316826001600160a01b0316146105c5576105c58282611646565b60006001600160a01b0384163b1561145057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611392903390899088908890600401611a00565b602060405180830381600087803b1580156113ac57600080fd5b505af19250505080156113dc575060408051601f3d908101601f191682019092526113d99181019061192b565b60015b611436573d80801561140a576040519150601f19603f3d011682016040523d82523d6000602084013e61140f565b606091505b50805161142e5760405162461bcd60e51b815260040161048f90611a94565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ec1565b506001949350505050565b6001600160a01b0382166114b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161048f565b6000818152600260205260409020546001600160a01b0316156115165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161048f565b611522600083836112aa565b6001600160a01b038216600090815260036020526040812080546001929061154b908490611b6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016115b684610836565b6115c09190611b98565b600083815260076020526040902054909150808214611613576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600061165183610836565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461169690611bdb565b90600052602060002090601f0160209004810192826116b857600085556116fe565b82601f106116d157805160ff19168380011785556116fe565b828001600101855582156116fe579182015b828111156116fe5782518255916020019190600101906116e3565b5061077a9291505b8082111561077a5760008155600101611706565b600067ffffffffffffffff8084111561173557611735611c6b565b604051601f8501601f19908116603f0116810190828211818310171561175d5761175d611c6b565b8160405280935085815286868601111561177657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117a757600080fd5b919050565b6000602082840312156117bd578081fd5b610bec82611790565b600080604083850312156117d8578081fd5b6117e183611790565b91506117ef60208401611790565b90509250929050565b60008060006060848603121561180c578081fd5b61181584611790565b925061182360208501611790565b9150604084013590509250925092565b60008060008060808587031215611848578081fd5b61185185611790565b935061185f60208601611790565b925060408501359150606085013567ffffffffffffffff811115611881578182fd5b8501601f81018713611891578182fd5b6118a08782356020840161171a565b91505092959194509250565b600080604083850312156118be578182fd5b6118c783611790565b9150602083013580151581146118db578182fd5b809150509250929050565b600080604083850312156118f8578182fd5b61190183611790565b946020939093013593505050565b600060208284031215611920578081fd5b8135610bec81611c81565b60006020828403121561193c578081fd5b8151610bec81611c81565b600060208284031215611958578081fd5b813567ffffffffffffffff81111561196e578182fd5b8201601f8101841361197e578182fd5b610ec18482356020840161171a565b60006020828403121561199e578081fd5b5035919050565b600081518084526119bd816020860160208601611baf565b601f01601f19169290920160200192915050565b600083516119e3818460208801611baf565b8351908301906119f7818360208801611baf565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a33908301846119a5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611a7557835183529284019291840191600101611a59565b50909695505050505050565b602081526000610bec60208301846119a5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b7f57611b7f611c3f565b500190565b600082611b9357611b93611c55565b500490565b600082821015611baa57611baa611c3f565b500390565b60005b83811015611bca578181015183820152602001611bb2565b83811115610b125750506000910152565b600181811c90821680611bef57607f821691505b60208210811415610a0657634e487b7160e01b600052602260045260246000fd5b6000600019821415611c2457611c24611c3f565b5060010190565b600082611c3a57611c3a611c55565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461060b57600080fdfe46354538463937353246353337454234323842304443334133413046364233363436343137453646424437394145433331344431394434314143343841463739a264697066735822122051fc705e0a3df2b64e86f8a835d9df7749dc4f4c056560f64e4a3f85710d220d64736f6c63430008040033

Deployed Bytecode Sourcemap

39710:1604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36177:224;;;;;;:::i;:::-;;:::i;:::-;;;6436:14:1;;6429:22;6411:41;;6399:2;6384:18;36177:224:0;;;;;;;;24469:100;;;:::i;:::-;;;;;;;:::i;25936:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;25936:221:0;5031:102:1;25466:404:0;;;;;;:::i;:::-;;:::i;:::-;;40729:228;;;:::i;36783:108::-;36871:12;;36783:108;;;14040:25:1;;;14028:2;14013:18;36783:108:0;13995:76:1;26826:305:0;;;;;;:::i;:::-;;:::i;36468:256::-;;;;;;:::i;:::-;;:::i;27202:151::-;;;;;;:::i;:::-;;:::i;41181:130::-;;;;;;:::i;:::-;;:::i;36951:221::-;;;;;;:::i;:::-;;:::i;41073:100::-;;;;;;:::i;:::-;;:::i;24163:239::-;;;;;;:::i;:::-;;:::i;23893:208::-;;;;;;:::i;:::-;;:::i;2689:148::-;;;:::i;40232:489::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2038:87::-;2111:6;;-1:-1:-1;;;;;2111:6:0;2038:87;;24638:104;;;:::i;26229:295::-;;;;;;:::i;:::-;;:::i;27424:285::-;;;;;;:::i;:::-;;:::i;24813:360::-;;;;;;:::i;:::-;;:::i;26595:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26716:25:0;;;26692:4;26716:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26595:164;39976:125;;;:::i;2992:244::-;;;;;;:::i;:::-;;:::i;36177:224::-;36279:4;-1:-1:-1;;;;;;36303:50:0;;-1:-1:-1;;;36303:50:0;;:90;;;36357:36;36381:11;36357:23;:36::i;:::-;36296:97;36177:224;-1:-1:-1;;36177:224:0:o;24469:100::-;24523:13;24556:5;24549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24469:100;:::o;25936:221::-;26012:7;29265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29265:16:0;26032:73;;;;-1:-1:-1;;;26032:73:0;;11263:2:1;26032:73:0;;;11245:21:1;11302:2;11282:18;;;11275:30;11341:34;11321:18;;;11314:62;-1:-1:-1;;;11392:18:1;;;11385:42;11444:19;;26032:73:0;;;;;;;;;-1:-1:-1;26125:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26125:24:0;;25936:221::o;25466:404::-;25547:13;25563:23;25578:7;25563:14;:23::i;:::-;25547:39;;25611:5;-1:-1:-1;;;;;25605:11:0;:2;-1:-1:-1;;;;;25605:11:0;;;25597:57;;;;-1:-1:-1;;;25597:57:0;;12863:2:1;25597:57:0;;;12845:21:1;12902:2;12882:18;;;12875:30;12941:34;12921:18;;;12914:62;-1:-1:-1;;;12992:18:1;;;12985:31;13033:19;;25597:57:0;12835:223:1;25597:57:0;709:10;-1:-1:-1;;;;;25675:21:0;;;;:69;;-1:-1:-1;25700:44:0;25724:5;709:10;26595:164;:::i;25700:44::-;25667:161;;;;-1:-1:-1;;;25667:161:0;;9656:2:1;25667:161:0;;;9638:21:1;9695:2;9675:18;;;9668:30;9734:34;9714:18;;;9707:62;9805:26;9785:18;;;9778:54;9849:19;;25667:161:0;9628:246:1;25667:161:0;25841:21;25850:2;25854:7;25841:8;:21::i;:::-;25466:404;;;:::o;40729:228::-;2111:6;;-1:-1:-1;;;;;2111:6:0;709:10;2258:23;2250:68;;;;-1:-1:-1;;;2250:68:0;;;;;;;:::i;:::-;40773:17:::1;40793:13;36871:12:::0;;;36783:108;40793:13:::1;40773:33;;40914:35;40924:10;40936:12;40914:9;:35::i;:::-;2329:1;40729:228::o:0;26826:305::-;26987:41;709:10;27020:7;26987:18;:41::i;:::-;26979:103;;;;-1:-1:-1;;;26979:103:0;;;;;;;:::i;:::-;27095:28;27105:4;27111:2;27115:7;27095:9;:28::i;36468:256::-;36565:7;36601:23;36618:5;36601:16;:23::i;:::-;36593:5;:31;36585:87;;;;-1:-1:-1;;;36585:87:0;;6889:2:1;36585:87:0;;;6871:21:1;6928:2;6908:18;;;6901:30;6967:34;6947:18;;;6940:62;-1:-1:-1;;;7018:18:1;;;7011:41;7069:19;;36585:87:0;6861:233:1;36585:87:0;-1:-1:-1;;;;;;36690:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36468:256::o;27202:151::-;27306:39;27323:4;27329:2;27333:7;27306:39;;;;;;;;;;;;:16;:39::i;41181:130::-;41238:39;41257:10;41269:7;41238:18;:39::i;:::-;41230:48;;;;;;41289:14;41295:7;41289:5;:14::i;36951:221::-;37023:4;37056:36;36871:12;;;36783:108;37056:36;37048:5;:44;37040:101;;;;-1:-1:-1;;;37040:101:0;;13683:2:1;37040:101:0;;;13665:21:1;13722:2;13702:18;;;13695:30;13761:34;13741:18;;;13734:62;-1:-1:-1;;;13812:18:1;;;13805:42;13864:19;;37040:101:0;13655:234:1;37040:101:0;-1:-1:-1;37159:5:0;36951:221::o;41073:100::-;2111:6;;-1:-1:-1;;;;;2111:6:0;709:10;2258:23;2250:68;;;;-1:-1:-1;;;2250:68:0;;;;;;;:::i;:::-;41146:19;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41073:100:::0;:::o;24163:239::-;24235:7;24271:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24271:16:0;24306:19;24298:73;;;;-1:-1:-1;;;24298:73:0;;10492:2:1;24298:73:0;;;10474:21:1;10531:2;10511:18;;;10504:30;10570:34;10550:18;;;10543:62;-1:-1:-1;;;10621:18:1;;;10614:39;10670:19;;24298:73:0;10464:231:1;23893:208:0;23965:7;-1:-1:-1;;;;;23993:19:0;;23985:74;;;;-1:-1:-1;;;23985:74:0;;10081:2:1;23985:74:0;;;10063:21:1;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;-1:-1:-1;;;10210:18:1;;;10203:40;10260:19;;23985:74:0;10053:232:1;23985:74:0;-1:-1:-1;;;;;;24077:16:0;;;;;:9;:16;;;;;;;23893:208::o;2689:148::-;2111:6;;-1:-1:-1;;;;;2111:6:0;709:10;2258:23;2250:68;;;;-1:-1:-1;;;2250:68:0;;;;;;;:::i;:::-;2780:6:::1;::::0;2759:40:::1;::::0;2796:1:::1;::::0;-1:-1:-1;;;;;2780:6:0::1;::::0;2759:40:::1;::::0;2796:1;;2759:40:::1;2810:6;:19:::0;;-1:-1:-1;;;;;;2810:19:0::1;::::0;;2689:148::o;40232:489::-;40294:13;40320:15;40338:17;40348:6;40338:9;:17::i;:::-;40320:35;-1:-1:-1;40370:15:0;40366:348;;40409:13;;;40420:1;40409:13;;;;;;;;;;;-1:-1:-1;40402:20:0;40232:489;-1:-1:-1;;;40232:489:0:o;40366:348::-;40480:20;40514:10;40503:22;;;;;;-1:-1:-1;;;40503:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40503:22:0;;40480:45;;40545:10;40540:135;40569:10;40561:5;:18;40540:135;;;40625:34;40645:6;40653:5;40625:19;:34::i;:::-;40609:6;40616:5;40609:13;;;;;;-1:-1:-1;;;40609:13:0;;;;;;;;;;;;;;;;;;:50;40581:7;;;;:::i;:::-;;;;40540:135;;40366:348;40232:489;;;;:::o;24638:104::-;24694:13;24727:7;24720:14;;;;;:::i;26229:295::-;-1:-1:-1;;;;;26332:24:0;;709:10;26332:24;;26324:62;;;;-1:-1:-1;;;26324:62:0;;8889:2:1;26324:62:0;;;8871:21:1;8928:2;8908:18;;;8901:30;8967:27;8947:18;;;8940:55;9012:18;;26324:62:0;8861:175:1;26324:62:0;709:10;26399:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26399:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26399:53:0;;;;;;;;;;26468:48;;6411:41:1;;;26399:42:0;;709:10;26468:48;;6384:18:1;26468:48:0;;;;;;;26229:295;;:::o;27424:285::-;27556:41;709:10;27589:7;27556:18;:41::i;:::-;27548:103;;;;-1:-1:-1;;;27548:103:0;;;;;;;:::i;:::-;27662:39;27676:4;27682:2;27686:7;27695:5;27662:13;:39::i;:::-;27424:285;;;;:::o;24813:360::-;29241:4;29265:16;;;:7;:16;;;;;;24886:13;;-1:-1:-1;;;;;29265:16:0;24912:76;;;;-1:-1:-1;;;24912:76:0;;12447:2:1;24912:76:0;;;12429:21:1;12486:2;12466:18;;;12459:30;12525:34;12505:18;;;12498:62;-1:-1:-1;;;12576:18:1;;;12569:45;12631:19;;24912:76:0;12419:237:1;24912:76:0;25001:21;25025:10;:8;:10::i;:::-;25001:34;;25077:1;25059:7;25053:21;:25;:112;;;;;;;;;;;;;;;;;25118:7;25127:18;:7;:16;:18::i;:::-;25101:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25053:112;25046:119;24813:360;-1:-1:-1;;;24813:360:0:o;39976:125::-;;;;;;;;;;;;;;;;;;;:::o;2992:244::-;2111:6;;-1:-1:-1;;;;;2111:6:0;709:10;2258:23;2250:68;;;;-1:-1:-1;;;2250:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3081:22:0;::::1;3073:73;;;::::0;-1:-1:-1;;;3073:73:0;;7720:2:1;3073:73:0::1;::::0;::::1;7702:21:1::0;7759:2;7739:18;;;7732:30;7798:34;7778:18;;;7771:62;-1:-1:-1;;;7849:18:1;;;7842:36;7895:19;;3073:73:0::1;7692:228:1::0;3073:73:0::1;3183:6;::::0;3162:38:::1;::::0;-1:-1:-1;;;;;3162:38:0;;::::1;::::0;3183:6:::1;::::0;3162:38:::1;::::0;3183:6:::1;::::0;3162:38:::1;3211:6;:17:::0;;-1:-1:-1;;;;;;3211:17:0::1;-1:-1:-1::0;;;;;3211:17:0;;;::::1;::::0;;;::::1;::::0;;2992:244::o;23537:292::-;23639:4;-1:-1:-1;;;;;;23663:40:0;;-1:-1:-1;;;23663:40:0;;:105;;-1:-1:-1;;;;;;;23720:48:0;;-1:-1:-1;;;23720:48:0;23663:105;:158;;;-1:-1:-1;;;;;;;;;;12144:40:0;;;23785:36;12035:157;33060:174;33135:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33135:29:0;-1:-1:-1;;;;;33135:29:0;;;;;;;;:24;;33189:23;33135:24;33189:14;:23::i;:::-;-1:-1:-1;;;;;33180:46:0;;;;;;;;;;;33060:174;;:::o;30167:110::-;30243:26;30253:2;30257:7;30243:26;;;;;;;;;;;;:9;:26::i;29470:355::-;29563:4;29265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29265:16:0;29580:73;;;;-1:-1:-1;;;29580:73:0;;9243:2:1;29580:73:0;;;9225:21:1;9282:2;9262:18;;;9255:30;9321:34;9301:18;;;9294:62;-1:-1:-1;;;9372:18:1;;;9365:42;9424:19;;29580:73:0;9215:234:1;29580:73:0;29664:13;29680:23;29695:7;29680:14;:23::i;:::-;29664:39;;29733:5;-1:-1:-1;;;;;29722:16:0;:7;-1:-1:-1;;;;;29722:16:0;;:51;;;;29766:7;-1:-1:-1;;;;;29742:31:0;:20;29754:7;29742:11;:20::i;:::-;-1:-1:-1;;;;;29742:31:0;;29722:51;:94;;;-1:-1:-1;;;;;;26716:25:0;;;26692:4;26716:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29777:39;29714:103;29470:355;-1:-1:-1;;;;29470:355:0:o;32398:544::-;32523:4;-1:-1:-1;;;;;32496:31:0;:23;32511:7;32496:14;:23::i;:::-;-1:-1:-1;;;;;32496:31:0;;32488:85;;;;-1:-1:-1;;;32488:85:0;;12037:2:1;32488:85:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:34;12095:18;;;12088:62;-1:-1:-1;;;12166:18:1;;;12159:39;12215:19;;32488:85:0;12009:231:1;32488:85:0;-1:-1:-1;;;;;32592:16:0;;32584:65;;;;-1:-1:-1;;;32584:65:0;;8484:2:1;32584:65:0;;;8466:21:1;8523:2;8503:18;;;8496:30;8562:34;8542:18;;;8535:62;-1:-1:-1;;;8613:18:1;;;8606:34;8657:19;;32584:65:0;8456:226:1;32584:65:0;32662:39;32683:4;32689:2;32693:7;32662:20;:39::i;:::-;32766:29;32783:1;32787:7;32766:8;:29::i;:::-;-1:-1:-1;;;;;32808:15:0;;;;;;:9;:15;;;;;:20;;32827:1;;32808:15;:20;;32827:1;;32808:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32839:13:0;;;;;;:9;:13;;;;;:18;;32856:1;;32839:13;:18;;32856:1;;32839:18;:::i;:::-;;;;-1:-1:-1;;32868:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32868:21:0;-1:-1:-1;;;;;32868:21:0;;;;;;;;;32907:27;;32868:16;;32907:27;;;;;;;32398:544;;;:::o;31701:360::-;31761:13;31777:23;31792:7;31777:14;:23::i;:::-;31761:39;;31813:48;31834:5;31849:1;31853:7;31813:20;:48::i;:::-;31902:29;31919:1;31923:7;31902:8;:29::i;:::-;-1:-1:-1;;;;;31944:16:0;;;;;;:9;:16;;;;;:21;;31964:1;;31944:16;:21;;31964:1;;31944:21;:::i;:::-;;;;-1:-1:-1;;31983:16:0;;;;:7;:16;;;;;;31976:23;;-1:-1:-1;;;;;;31976:23:0;;;32017:36;31991:7;;31983:16;-1:-1:-1;;;;;32017:36:0;;;;;31983:16;;32017:36;31701:360;;:::o;28591:272::-;28705:28;28715:4;28721:2;28725:7;28705:9;:28::i;:::-;28752:48;28775:4;28781:2;28785:7;28794:5;28752:22;:48::i;:::-;28744:111;;;;-1:-1:-1;;;28744:111:0;;;;;;;:::i;40965:100::-;41017:13;41050:7;41043:14;;;;;:::i;20479:723::-;20535:13;20756:10;20752:53;;-1:-1:-1;;20783:10:0;;;;;;;;;;;;-1:-1:-1;;;20783:10:0;;;;;20479:723::o;20752:53::-;20830:5;20815:12;20871:78;20878:9;;20871:78;;20904:8;;;;:::i;:::-;;-1:-1:-1;20927:10:0;;-1:-1:-1;20935:2:0;20927:10;;:::i;:::-;;;20871:78;;;20959:19;20991:6;20981:17;;;;;;-1:-1:-1;;;20981:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20981:17:0;;20959:39;;21009:154;21016:10;;21009:154;;21043:11;21053:1;21043:11;;:::i;:::-;;-1:-1:-1;21112:10:0;21120:2;21112:5;:10;:::i;:::-;21099:24;;:2;:24;:::i;:::-;21086:39;;21069:6;21076;21069:14;;;;;;-1:-1:-1;;;21069:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;21069:56:0;;;;;;;;-1:-1:-1;21140:11:0;21149:2;21140:11;;:::i;:::-;;;21009:154;;30504:250;30600:18;30606:2;30610:7;30600:5;:18::i;:::-;30637:54;30668:1;30672:2;30676:7;30685:5;30637:22;:54::i;:::-;30629:117;;;;-1:-1:-1;;;30629:117:0;;;;;;;:::i;37263:617::-;-1:-1:-1;;;;;37466:18:0;;37462:249;;37519:12;;37508:7;:23;37501:31;;-1:-1:-1;;;37501:31:0;;;;;;;;;37602:1;37586:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;37462:249:0;;-1:-1:-1;37462:249:0;;37633:2;-1:-1:-1;;;;;37625:10:0;:4;-1:-1:-1;;;;;37625:10:0;;37621:90;;37652:47;37685:4;37691:7;37652:32;:47::i;:::-;-1:-1:-1;;;;;37727:16:0;;37723:150;;25466:404;;;:::o;37723:150::-;37800:4;-1:-1:-1;;;;;37794:10:0;:2;-1:-1:-1;;;;;37794:10:0;;37790:83;;37821:40;37849:2;37853:7;37821:27;:40::i;33799:843::-;33920:4;-1:-1:-1;;;;;33946:13:0;;13306:20;13345:8;33942:693;;33982:72;;-1:-1:-1;;;33982:72:0;;-1:-1:-1;;;;;33982:36:0;;;;;:72;;709:10;;34033:4;;34039:7;;34048:5;;33982:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33982:72:0;;;;;;;;-1:-1:-1;;33982:72:0;;;;;;;;;;;;:::i;:::-;;;33978:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34228:13:0;;34224:341;;34271:60;;-1:-1:-1;;;34271:60:0;;;;;;;:::i;34224:341::-;34515:6;34509:13;34500:6;34496:2;34492:15;34485:38;33978:602;-1:-1:-1;;;;;;34105:55:0;-1:-1:-1;;;34105:55:0;;-1:-1:-1;34098:62:0;;33942:693;-1:-1:-1;34619:4:0;33799:843;;;;;;:::o;31090:382::-;-1:-1:-1;;;;;31170:16:0;;31162:61;;;;-1:-1:-1;;;31162:61:0;;10902:2:1;31162:61:0;;;10884:21:1;;;10921:18;;;10914:30;10980:34;10960:18;;;10953:62;11032:18;;31162:61:0;10874:182:1;31162:61:0;29241:4;29265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29265:16:0;:30;31234:58;;;;-1:-1:-1;;;31234:58:0;;8127:2:1;31234:58:0;;;8109:21:1;8166:2;8146:18;;;8139:30;8205;8185:18;;;8178:58;8253:18;;31234:58:0;8099:178:1;31234:58:0;31305:45;31334:1;31338:2;31342:7;31305:20;:45::i;:::-;-1:-1:-1;;;;;31363:13:0;;;;;;:9;:13;;;;;:18;;31380:1;;31363:13;:18;;31380:1;;31363:18;:::i;:::-;;;;-1:-1:-1;;31392:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31392:21:0;-1:-1:-1;;;;;31392:21:0;;;;;;;;31431:33;;31392:16;;;31431:33;;31392:16;;31431:33;31090:382;;:::o;38671:976::-;38934:19;38981:1;38956:22;38973:4;38956:16;:22::i;:::-;:26;;;;:::i;:::-;38993:15;39011:26;;;:17;:26;;;;;;38934:48;;-1:-1:-1;39144:28:0;;;39140:325;;-1:-1:-1;;;;;39208:18:0;;39189:16;39208:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39259:30;;;;;;:44;;;39376:30;;:17;:30;;;;;:43;;;39140:325;-1:-1:-1;39561:26:0;;;;:17;:26;;;;;;;;39554:33;;;-1:-1:-1;;;;;39605:18:0;;;;;:12;:18;;;;;:34;;;;;;;39598:41;38671:976::o;38178:215::-;38260:11;38274:20;38291:2;38274:16;:20::i;:::-;-1:-1:-1;;;;;38305:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38350:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38178:215:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5631:635::-;5802:2;5854:21;;;5924:13;;5827:18;;;5946:22;;;5773:4;;5802:2;6025:15;;;;5999:2;5984:18;;;5773:4;6071:169;6085:6;6082:1;6079:13;6071:169;;;6146:13;;6134:26;;6215:15;;;;6180:12;;;;6107:1;6100:9;6071:169;;;-1:-1:-1;6257:3:1;;5782:484;-1:-1:-1;;;;;;5782:484:1:o;6463:219::-;6612:2;6601:9;6594:21;6575:4;6632:44;6672:2;6661:9;6657:18;6649:6;6632:44;:::i;7099:414::-;7301:2;7283:21;;;7340:2;7320:18;;;7313:30;7379:34;7374:2;7359:18;;7352:62;-1:-1:-1;;;7445:2:1;7430:18;;7423:48;7503:3;7488:19;;7273:240::o;11474:356::-;11676:2;11658:21;;;11695:18;;;11688:30;11754:34;11749:2;11734:18;;11727:62;11821:2;11806:18;;11648:182::o;13063:413::-;13265:2;13247:21;;;13304:2;13284:18;;;13277:30;13343:34;13338:2;13323:18;;13316:62;-1:-1:-1;;;13409:2:1;13394:18;;13387:47;13466:3;13451:19;;13237:239::o;14076:128::-;14116:3;14147:1;14143:6;14140:1;14137:13;14134:2;;;14153:18;;:::i;:::-;-1:-1:-1;14189:9:1;;14124:80::o;14209:120::-;14249:1;14275;14265:2;;14280:18;;:::i;:::-;-1:-1:-1;14314:9:1;;14255:74::o;14334:125::-;14374:4;14402:1;14399;14396:8;14393:2;;;14407:18;;:::i;:::-;-1:-1:-1;14444:9:1;;14383:76::o;14464:258::-;14536:1;14546:113;14560:6;14557:1;14554:13;14546:113;;;14636:11;;;14630:18;14617:11;;;14610:39;14582:2;14575:10;14546:113;;;14677:6;14674:1;14671:13;14668:2;;;-1:-1:-1;;14712:1:1;14694:16;;14687:27;14517:205::o;14727:380::-;14806:1;14802:12;;;;14849;;;14870:2;;14924:4;14916:6;14912:17;14902:27;;14870:2;14977;14969:6;14966:14;14946:18;14943:38;14940:2;;;15023:10;15018:3;15014:20;15011:1;15004:31;15058:4;15055:1;15048:15;15086:4;15083:1;15076:15;15112:135;15151:3;-1:-1:-1;;15172:17:1;;15169:2;;;15192:18;;:::i;:::-;-1:-1:-1;15239:1:1;15228:13;;15159:88::o;15252:112::-;15284:1;15310;15300:2;;15315:18;;:::i;:::-;-1:-1:-1;15349:9:1;;15290:74::o;15369:127::-;15430:10;15425:3;15421:20;15418:1;15411:31;15461:4;15458:1;15451:15;15485:4;15482:1;15475:15;15501:127;15562:10;15557:3;15553:20;15550:1;15543:31;15593:4;15590:1;15583:15;15617:4;15614:1;15607:15;15633:127;15694:10;15689:3;15685:20;15682:1;15675:31;15725:4;15722:1;15715:15;15749:4;15746:1;15739:15;15765:131;-1:-1:-1;;;;;;15839:32:1;;15829:43;;15819:2;;15886:1;15883;15876:12

Swarm Source

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