ETH Price: $2,626.80 (-2.61%)

Token

FreeSheets (FSHT)
 

Overview

Max Total Supply

0 FSHT

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
emileplato.eth
Balance
1 FSHT
0xf9306ade10d8c79778d9dfdfeae1311e8b7c4379
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:
FSHT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// FREE SHEETS ARE FREE STUFF, POORLY CODED ON THE BLOCKCHAIN
// VVaysse @ ebb.global


// SPDX-License-Identifier: GPL-3.0

// FreeSheets

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "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 {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || 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 {
        _setApprovalForAll(_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 || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


pragma solidity ^0.8.2;





contract FSHT is ERC721, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

	string private baseTokenURI;
    address public minter = 0x7F725aA3Bc15bB826D04250C078fb1fd76A909a8;

    constructor() ERC721("FreeSheets", "FSHT") {


	}


    modifier onlyMinter() {
      require(getMinter() == msg.sender, "OnlyMinter can mint");
      _;
  }


    function getMinter() internal view returns(address){
    return minter;
  }


	function safeMintTo(address _to, string memory tokenURI_) onlyMinter public payable {

			_safeMint(_to, _tokenIdCounter.current());
			_setTokenURI(_tokenIdCounter.current(), tokenURI_);
			_tokenIdCounter.increment();


	}


  function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal
    virtual
    override(ERC721)
    {
        require(from == address(0) || to == address(0), "Your Free Sheet is only for you, forever.");
        super._beforeTokenTransfer(from, to, tokenId);
    }


    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved)
      internal
      virtual
      override(ERC721)
      {
          require(msg.sender == address(0) || owner == address(0), "Your Free Sheet is only for you, forever.");
          super._setApprovalForAll(owner, operator, approved);
      }


    // The following functions are overrides required by Solidity.

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



	function setBaseURI(string memory _baseTokenURI) public onlyOwner {
		baseTokenURI = _baseTokenURI;
	}

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

	//Return current counter value
	function getCounter()
        public
        view
        returns (uint256)
    {
        return _tokenIdCounter.current();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_to","type":"address"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"safeMintTo","outputs":[],"stateMutability":"payable","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":"_baseTokenURI","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

6080604052600a80546001600160a01b031916737f725aa3bc15bb826d04250c078fb1fd76a909a81790553480156200003757600080fd5b50604080518082018252600a8152694672656553686565747360b01b6020808301918252835180850190945260048452631194d21560e21b908401528151919291620000869160009162000115565b5080516200009c90600190602084019062000115565b505050620000b9620000b3620000bf60201b60201c565b620000c3565b620001f8565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012390620001bb565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600181811c90821680620001d057607f821691505b60208210811415620001f257634e487b7160e01b600052602260045260246000fd5b50919050565b611bd980620002086000396000f3fe60806040526004361061011f5760003560e01c8063715018a6116100a0578063a22cb46511610064578063a22cb46514610313578063b88d4fde14610333578063c87b56dd14610353578063e985e9c514610373578063f2fde38b146103bc57600080fd5b8063715018a6146102a35780638ada066e146102b85780638da5cb5b146102cd5780638ee507bb146102eb57806395d89b41146102fe57600080fd5b806323b872dd116100e757806323b872dd146101f557806342842e0e1461021557806355f804b3146102355780636352211e1461025557806370a082311461027557600080fd5b806301ffc9a71461012457806306fdde0314610159578063075461721461017b578063081812fc146101b3578063095ea7b3146101d3575b600080fd5b34801561013057600080fd5b5061014461013f366004611808565b6103dc565b60405190151581526020015b60405180910390f35b34801561016557600080fd5b5061016e61042e565b6040516101509190611928565b34801561018757600080fd5b50600a5461019b906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b3480156101bf57600080fd5b5061019b6101ce366004611877565b6104c0565b3480156101df57600080fd5b506101f36101ee3660046117de565b61054d565b005b34801561020157600080fd5b506101f361021036600461169c565b610663565b34801561022157600080fd5b506101f361023036600461169c565b610694565b34801561024157600080fd5b506101f3610250366004611842565b6106af565b34801561026157600080fd5b5061019b610270366004611877565b6106f0565b34801561028157600080fd5b5061029561029036600461164e565b610767565b604051908152602001610150565b3480156102af57600080fd5b506101f36107ee565b3480156102c457600080fd5b50610295610824565b3480156102d957600080fd5b506007546001600160a01b031661019b565b6101f36102f9366004611790565b610834565b34801561030a57600080fd5b5061016e6108c5565b34801561031f57600080fd5b506101f361032e366004611754565b6108d4565b34801561033f57600080fd5b506101f361034e3660046116d8565b6108df565b34801561035f57600080fd5b5061016e61036e366004611877565b610917565b34801561037f57600080fd5b5061014461038e366004611669565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103c857600080fd5b506101f36103d736600461164e565b610922565b60006001600160e01b031982166380ac58cd60e01b148061040d57506001600160e01b03198216635b5e139f60e01b145b8061042857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461043d90611acb565b80601f016020809104026020016040519081016040528092919081815260200182805461046990611acb565b80156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b5050505050905090565b60006104cb826109bd565b6105315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610558826106f0565b9050806001600160a01b0316836001600160a01b031614156105c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610528565b336001600160a01b03821614806105e257506105e2813361038e565b6106545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610528565b61065e83836109da565b505050565b61066d3382610a48565b6106895760405162461bcd60e51b815260040161052890611a0b565b61065e838383610b32565b61065e838383604051806020016040528060008152506108df565b6007546001600160a01b031633146106d95760405162461bcd60e51b81526004016105289061198d565b80516106ec906009906020840190611503565b5050565b6000818152600260205260408120546001600160a01b0316806104285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610528565b60006001600160a01b0382166107d25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610528565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146108185760405162461bcd60e51b81526004016105289061198d565b6108226000610cdd565b565b600061082f60085490565b905090565b33610847600a546001600160a01b031690565b6001600160a01b0316146108935760405162461bcd60e51b815260206004820152601360248201527213db9b1e535a5b9d195c8818d85b881b5a5b9d606a1b6044820152606401610528565b6108a5826108a060085490565b610d2f565b6108b76108b160085490565b82610d49565b6106ec600880546001019055565b60606001805461043d90611acb565b6106ec338383610dd4565b6108e93383610a48565b6109055760405162461bcd60e51b815260040161052890611a0b565b61091184848484610e0f565b50505050565b606061042882610e42565b6007546001600160a01b0316331461094c5760405162461bcd60e51b81526004016105289061198d565b6001600160a01b0381166109b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610528565b6109ba81610cdd565b50565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a0f826106f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a53826109bd565b610ab45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610528565b6000610abf836106f0565b9050806001600160a01b0316846001600160a01b03161480610afa5750836001600160a01b0316610aef846104c0565b6001600160a01b0316145b80610b2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b45826106f0565b6001600160a01b031614610bad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610528565b6001600160a01b038216610c0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610528565b610c1a838383610fa4565b610c256000826109da565b6001600160a01b0383166000908152600360205260408120805460019290610c4e908490611a88565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c7c908490611a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106ec828260405180602001604052806000815250610fdd565b610d52826109bd565b610db55760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610528565b6000828152600660209081526040909120825161065e92840190611503565b331580610de857506001600160a01b038316155b610e045760405162461bcd60e51b8152600401610528906119c2565b61065e838383611010565b610e1a848484610b32565b610e26848484846110df565b6109115760405162461bcd60e51b81526004016105289061193b565b6060610e4d826109bd565b610eb35760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610528565b60008281526006602052604081208054610ecc90611acb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef890611acb565b8015610f455780601f10610f1a57610100808354040283529160200191610f45565b820191906000526020600020905b815481529060010190602001808311610f2857829003601f168201915b505050505090506000610f566111ec565b9050805160001415610f69575092915050565b815115610f9b578082604051602001610f839291906118bc565b60405160208183030381529060405292505050919050565b610b2a846111fb565b6001600160a01b0383161580610fc157506001600160a01b038216155b61065e5760405162461bcd60e51b8152600401610528906119c2565b610fe783836112c6565b610ff460008484846110df565b61065e5760405162461bcd60e51b81526004016105289061193b565b816001600160a01b0316836001600160a01b031614156110725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610528565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b156111e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111239033908990889088906004016118eb565b602060405180830381600087803b15801561113d57600080fd5b505af192505050801561116d575060408051601f3d908101601f1916820190925261116a91810190611825565b60015b6111c7573d80801561119b576040519150601f19603f3d011682016040523d82523d6000602084013e6111a0565b606091505b5080516111bf5760405162461bcd60e51b81526004016105289061193b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b2a565b506001949350505050565b60606009805461043d90611acb565b6060611206826109bd565b61126a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610528565b60006112746111ec565b9050600081511161129457604051806020016040528060008152506112bf565b8061129e84611405565b6040516020016112af9291906118bc565b6040516020818303038152906040525b9392505050565b6001600160a01b03821661131c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610528565b611325816109bd565b156113725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610528565b61137e60008383610fa4565b6001600160a01b03821660009081526003602052604081208054600192906113a7908490611a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816114295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611453578061143d81611b06565b915061144c9050600a83611a74565b915061142d565b60008167ffffffffffffffff81111561146e5761146e611b77565b6040519080825280601f01601f191660200182016040528015611498576020820181803683370190505b5090505b8415610b2a576114ad600183611a88565b91506114ba600a86611b21565b6114c5906030611a5c565b60f81b8183815181106114da576114da611b61565b60200101906001600160f81b031916908160001a9053506114fc600a86611a74565b945061149c565b82805461150f90611acb565b90600052602060002090601f0160209004810192826115315760008555611577565b82601f1061154a57805160ff1916838001178555611577565b82800160010185558215611577579182015b8281111561157757825182559160200191906001019061155c565b50611583929150611587565b5090565b5b808211156115835760008155600101611588565b600067ffffffffffffffff808411156115b7576115b7611b77565b604051601f8501601f19908116603f011681019082821181831017156115df576115df611b77565b816040528093508581528686860111156115f857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461162957600080fd5b919050565b600082601f83011261163f57600080fd5b6112bf8383356020850161159c565b60006020828403121561166057600080fd5b6112bf82611612565b6000806040838503121561167c57600080fd5b61168583611612565b915061169360208401611612565b90509250929050565b6000806000606084860312156116b157600080fd5b6116ba84611612565b92506116c860208501611612565b9150604084013590509250925092565b600080600080608085870312156116ee57600080fd5b6116f785611612565b935061170560208601611612565b925060408501359150606085013567ffffffffffffffff81111561172857600080fd5b8501601f8101871361173957600080fd5b6117488782356020840161159c565b91505092959194509250565b6000806040838503121561176757600080fd5b61177083611612565b91506020830135801515811461178557600080fd5b809150509250929050565b600080604083850312156117a357600080fd5b6117ac83611612565b9150602083013567ffffffffffffffff8111156117c857600080fd5b6117d48582860161162e565b9150509250929050565b600080604083850312156117f157600080fd5b6117fa83611612565b946020939093013593505050565b60006020828403121561181a57600080fd5b81356112bf81611b8d565b60006020828403121561183757600080fd5b81516112bf81611b8d565b60006020828403121561185457600080fd5b813567ffffffffffffffff81111561186b57600080fd5b610b2a8482850161162e565b60006020828403121561188957600080fd5b5035919050565b600081518084526118a8816020860160208601611a9f565b601f01601f19169290920160200192915050565b600083516118ce818460208801611a9f565b8351908301906118e2818360208801611a9f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061191e90830184611890565b9695505050505050565b6020815260006112bf6020830184611890565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f596f75722046726565205368656574206973206f6e6c7920666f7220796f752c604082015268103337b932bb32b91760b91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611a6f57611a6f611b35565b500190565b600082611a8357611a83611b4b565b500490565b600082821015611a9a57611a9a611b35565b500390565b60005b83811015611aba578181015183820152602001611aa2565b838111156109115750506000910152565b600181811c90821680611adf57607f821691505b60208210811415611b0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b1a57611b1a611b35565b5060010190565b600082611b3057611b30611b4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ba57600080fdfea264697066735822122051fd8370f2f8a8b46751579f782894292848dc6804349138d94a5ffe5b93907064736f6c63430008070033

Deployed Bytecode

0x60806040526004361061011f5760003560e01c8063715018a6116100a0578063a22cb46511610064578063a22cb46514610313578063b88d4fde14610333578063c87b56dd14610353578063e985e9c514610373578063f2fde38b146103bc57600080fd5b8063715018a6146102a35780638ada066e146102b85780638da5cb5b146102cd5780638ee507bb146102eb57806395d89b41146102fe57600080fd5b806323b872dd116100e757806323b872dd146101f557806342842e0e1461021557806355f804b3146102355780636352211e1461025557806370a082311461027557600080fd5b806301ffc9a71461012457806306fdde0314610159578063075461721461017b578063081812fc146101b3578063095ea7b3146101d3575b600080fd5b34801561013057600080fd5b5061014461013f366004611808565b6103dc565b60405190151581526020015b60405180910390f35b34801561016557600080fd5b5061016e61042e565b6040516101509190611928565b34801561018757600080fd5b50600a5461019b906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b3480156101bf57600080fd5b5061019b6101ce366004611877565b6104c0565b3480156101df57600080fd5b506101f36101ee3660046117de565b61054d565b005b34801561020157600080fd5b506101f361021036600461169c565b610663565b34801561022157600080fd5b506101f361023036600461169c565b610694565b34801561024157600080fd5b506101f3610250366004611842565b6106af565b34801561026157600080fd5b5061019b610270366004611877565b6106f0565b34801561028157600080fd5b5061029561029036600461164e565b610767565b604051908152602001610150565b3480156102af57600080fd5b506101f36107ee565b3480156102c457600080fd5b50610295610824565b3480156102d957600080fd5b506007546001600160a01b031661019b565b6101f36102f9366004611790565b610834565b34801561030a57600080fd5b5061016e6108c5565b34801561031f57600080fd5b506101f361032e366004611754565b6108d4565b34801561033f57600080fd5b506101f361034e3660046116d8565b6108df565b34801561035f57600080fd5b5061016e61036e366004611877565b610917565b34801561037f57600080fd5b5061014461038e366004611669565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103c857600080fd5b506101f36103d736600461164e565b610922565b60006001600160e01b031982166380ac58cd60e01b148061040d57506001600160e01b03198216635b5e139f60e01b145b8061042857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461043d90611acb565b80601f016020809104026020016040519081016040528092919081815260200182805461046990611acb565b80156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b5050505050905090565b60006104cb826109bd565b6105315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610558826106f0565b9050806001600160a01b0316836001600160a01b031614156105c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610528565b336001600160a01b03821614806105e257506105e2813361038e565b6106545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610528565b61065e83836109da565b505050565b61066d3382610a48565b6106895760405162461bcd60e51b815260040161052890611a0b565b61065e838383610b32565b61065e838383604051806020016040528060008152506108df565b6007546001600160a01b031633146106d95760405162461bcd60e51b81526004016105289061198d565b80516106ec906009906020840190611503565b5050565b6000818152600260205260408120546001600160a01b0316806104285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610528565b60006001600160a01b0382166107d25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610528565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146108185760405162461bcd60e51b81526004016105289061198d565b6108226000610cdd565b565b600061082f60085490565b905090565b33610847600a546001600160a01b031690565b6001600160a01b0316146108935760405162461bcd60e51b815260206004820152601360248201527213db9b1e535a5b9d195c8818d85b881b5a5b9d606a1b6044820152606401610528565b6108a5826108a060085490565b610d2f565b6108b76108b160085490565b82610d49565b6106ec600880546001019055565b60606001805461043d90611acb565b6106ec338383610dd4565b6108e93383610a48565b6109055760405162461bcd60e51b815260040161052890611a0b565b61091184848484610e0f565b50505050565b606061042882610e42565b6007546001600160a01b0316331461094c5760405162461bcd60e51b81526004016105289061198d565b6001600160a01b0381166109b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610528565b6109ba81610cdd565b50565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a0f826106f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a53826109bd565b610ab45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610528565b6000610abf836106f0565b9050806001600160a01b0316846001600160a01b03161480610afa5750836001600160a01b0316610aef846104c0565b6001600160a01b0316145b80610b2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b45826106f0565b6001600160a01b031614610bad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610528565b6001600160a01b038216610c0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610528565b610c1a838383610fa4565b610c256000826109da565b6001600160a01b0383166000908152600360205260408120805460019290610c4e908490611a88565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c7c908490611a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106ec828260405180602001604052806000815250610fdd565b610d52826109bd565b610db55760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610528565b6000828152600660209081526040909120825161065e92840190611503565b331580610de857506001600160a01b038316155b610e045760405162461bcd60e51b8152600401610528906119c2565b61065e838383611010565b610e1a848484610b32565b610e26848484846110df565b6109115760405162461bcd60e51b81526004016105289061193b565b6060610e4d826109bd565b610eb35760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610528565b60008281526006602052604081208054610ecc90611acb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef890611acb565b8015610f455780601f10610f1a57610100808354040283529160200191610f45565b820191906000526020600020905b815481529060010190602001808311610f2857829003601f168201915b505050505090506000610f566111ec565b9050805160001415610f69575092915050565b815115610f9b578082604051602001610f839291906118bc565b60405160208183030381529060405292505050919050565b610b2a846111fb565b6001600160a01b0383161580610fc157506001600160a01b038216155b61065e5760405162461bcd60e51b8152600401610528906119c2565b610fe783836112c6565b610ff460008484846110df565b61065e5760405162461bcd60e51b81526004016105289061193b565b816001600160a01b0316836001600160a01b031614156110725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610528565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b156111e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111239033908990889088906004016118eb565b602060405180830381600087803b15801561113d57600080fd5b505af192505050801561116d575060408051601f3d908101601f1916820190925261116a91810190611825565b60015b6111c7573d80801561119b576040519150601f19603f3d011682016040523d82523d6000602084013e6111a0565b606091505b5080516111bf5760405162461bcd60e51b81526004016105289061193b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b2a565b506001949350505050565b60606009805461043d90611acb565b6060611206826109bd565b61126a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610528565b60006112746111ec565b9050600081511161129457604051806020016040528060008152506112bf565b8061129e84611405565b6040516020016112af9291906118bc565b6040516020818303038152906040525b9392505050565b6001600160a01b03821661131c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610528565b611325816109bd565b156113725760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610528565b61137e60008383610fa4565b6001600160a01b03821660009081526003602052604081208054600192906113a7908490611a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816114295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611453578061143d81611b06565b915061144c9050600a83611a74565b915061142d565b60008167ffffffffffffffff81111561146e5761146e611b77565b6040519080825280601f01601f191660200182016040528015611498576020820181803683370190505b5090505b8415610b2a576114ad600183611a88565b91506114ba600a86611b21565b6114c5906030611a5c565b60f81b8183815181106114da576114da611b61565b60200101906001600160f81b031916908160001a9053506114fc600a86611a74565b945061149c565b82805461150f90611acb565b90600052602060002090601f0160209004810192826115315760008555611577565b82601f1061154a57805160ff1916838001178555611577565b82800160010185558215611577579182015b8281111561157757825182559160200191906001019061155c565b50611583929150611587565b5090565b5b808211156115835760008155600101611588565b600067ffffffffffffffff808411156115b7576115b7611b77565b604051601f8501601f19908116603f011681019082821181831017156115df576115df611b77565b816040528093508581528686860111156115f857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461162957600080fd5b919050565b600082601f83011261163f57600080fd5b6112bf8383356020850161159c565b60006020828403121561166057600080fd5b6112bf82611612565b6000806040838503121561167c57600080fd5b61168583611612565b915061169360208401611612565b90509250929050565b6000806000606084860312156116b157600080fd5b6116ba84611612565b92506116c860208501611612565b9150604084013590509250925092565b600080600080608085870312156116ee57600080fd5b6116f785611612565b935061170560208601611612565b925060408501359150606085013567ffffffffffffffff81111561172857600080fd5b8501601f8101871361173957600080fd5b6117488782356020840161159c565b91505092959194509250565b6000806040838503121561176757600080fd5b61177083611612565b91506020830135801515811461178557600080fd5b809150509250929050565b600080604083850312156117a357600080fd5b6117ac83611612565b9150602083013567ffffffffffffffff8111156117c857600080fd5b6117d48582860161162e565b9150509250929050565b600080604083850312156117f157600080fd5b6117fa83611612565b946020939093013593505050565b60006020828403121561181a57600080fd5b81356112bf81611b8d565b60006020828403121561183757600080fd5b81516112bf81611b8d565b60006020828403121561185457600080fd5b813567ffffffffffffffff81111561186b57600080fd5b610b2a8482850161162e565b60006020828403121561188957600080fd5b5035919050565b600081518084526118a8816020860160208601611a9f565b601f01601f19169290920160200192915050565b600083516118ce818460208801611a9f565b8351908301906118e2818360208801611a9f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061191e90830184611890565b9695505050505050565b6020815260006112bf6020830184611890565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f596f75722046726565205368656574206973206f6e6c7920666f7220796f752c604082015268103337b932bb32b91760b91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611a6f57611a6f611b35565b500190565b600082611a8357611a83611b4b565b500490565b600082821015611a9a57611a9a611b35565b500390565b60005b83811015611aba578181015183820152602001611aa2565b838111156109115750506000910152565b600181811c90821680611adf57607f821691505b60208210811415611b0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b1a57611b1a611b35565b5060010190565b600082611b3057611b30611b4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ba57600080fdfea264697066735822122051fd8370f2f8a8b46751579f782894292848dc6804349138d94a5ffe5b93907064736f6c63430008070033

Deployed Bytecode Sourcemap

39723:2214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25241:305;;;;;;;;;;-1:-1:-1;25241:305:0;;;;;:::i;:::-;;:::i;:::-;;;6145:14:1;;6138:22;6120:41;;6108:2;6093:18;25241:305:0;;;;;;;;26186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39905:66::-;;;;;;;;;;-1:-1:-1;39905:66:0;;;;-1:-1:-1;;;;;39905:66:0;;;;;;-1:-1:-1;;;;;5443:32:1;;;5425:51;;5413:2;5398:18;39905:66:0;5279:203:1;27745:221:0;;;;;;;;;;-1:-1:-1;27745:221:0;;;;;:::i;:::-;;:::i;27268:411::-;;;;;;;;;;-1:-1:-1;27268:411:0;;;;;:::i;:::-;;:::i;:::-;;28495:339;;;;;;;;;;-1:-1:-1;28495:339:0;;;;;:::i;:::-;;:::i;28905:185::-;;;;;;;;;;-1:-1:-1;28905:185:0;;;;;:::i;:::-;;:::i;41330:104::-;;;;;;;;;;-1:-1:-1;41330:104:0;;;;;:::i;:::-;;:::i;25880:239::-;;;;;;;;;;-1:-1:-1;25880:239:0;;;;;:::i;:::-;;:::i;25610:208::-;;;;;;;;;;-1:-1:-1;25610:208:0;;;;;:::i;:::-;;:::i;:::-;;;14515:25:1;;;14503:2;14488:18;25610:208:0;14369:177:1;6229:103:0;;;;;;;;;;;;;:::i;41799:135::-;;;;;;;;;;;;;:::i;5578:87::-;;;;;;;;;;-1:-1:-1;5651:6:0;;-1:-1:-1;;;;;5651:6:0;5578:87;;40240:231;;;;;;:::i;:::-;;:::i;26355:104::-;;;;;;;;;;;;;:::i;28038:155::-;;;;;;;;;;-1:-1:-1;28038:155:0;;;;;:::i;:::-;;:::i;29161:328::-;;;;;;;;;;-1:-1:-1;29161:328:0;;;;;:::i;:::-;;:::i;41565:196::-;;;;;;;;;;-1:-1:-1;41565:196:0;;;;;:::i;:::-;;:::i;28264:164::-;;;;;;;;;;-1:-1:-1;28264:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28385:25:0;;;28361:4;28385:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28264:164;6487:201;;;;;;;;;;-1:-1:-1;6487:201:0;;;;;:::i;:::-;;:::i;25241:305::-;25343:4;-1:-1:-1;;;;;;25380:40:0;;-1:-1:-1;;;25380:40:0;;:105;;-1:-1:-1;;;;;;;25437:48:0;;-1:-1:-1;;;25437:48:0;25380:105;:158;;;-1:-1:-1;;;;;;;;;;18119:40:0;;;25502:36;25360:178;25241:305;-1:-1:-1;;25241:305:0:o;26186:100::-;26240:13;26273:5;26266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26186:100;:::o;27745:221::-;27821:7;27849:16;27857:7;27849;:16::i;:::-;27841:73;;;;-1:-1:-1;;;27841:73:0;;11393:2:1;27841:73:0;;;11375:21:1;11432:2;11412:18;;;11405:30;11471:34;11451:18;;;11444:62;-1:-1:-1;;;11522:18:1;;;11515:42;11574:19;;27841:73:0;;;;;;;;;-1:-1:-1;27934:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27934:24:0;;27745:221::o;27268:411::-;27349:13;27365:23;27380:7;27365:14;:23::i;:::-;27349:39;;27413:5;-1:-1:-1;;;;;27407:11:0;:2;-1:-1:-1;;;;;27407:11:0;;;27399:57;;;;-1:-1:-1;;;27399:57:0;;13403:2:1;27399:57:0;;;13385:21:1;13442:2;13422:18;;;13415:30;13481:34;13461:18;;;13454:62;-1:-1:-1;;;13532:18:1;;;13525:31;13573:19;;27399:57:0;13201:397:1;27399:57:0;4382:10;-1:-1:-1;;;;;27491:21:0;;;;:62;;-1:-1:-1;27516:37:0;27533:5;4382:10;28264:164;:::i;27516:37::-;27469:168;;;;-1:-1:-1;;;27469:168:0;;8953:2:1;27469:168:0;;;8935:21:1;8992:2;8972:18;;;8965:30;9031:34;9011:18;;;9004:62;9102:26;9082:18;;;9075:54;9146:19;;27469:168:0;8751:420:1;27469:168:0;27650:21;27659:2;27663:7;27650:8;:21::i;:::-;27338:341;27268:411;;:::o;28495:339::-;28690:41;4382:10;28723:7;28690:18;:41::i;:::-;28682:103;;;;-1:-1:-1;;;28682:103:0;;;;;;;:::i;:::-;28798:28;28808:4;28814:2;28818:7;28798:9;:28::i;28905:185::-;29043:39;29060:4;29066:2;29070:7;29043:39;;;;;;;;;;;;:16;:39::i;41330:104::-;5651:6;;-1:-1:-1;;;;;5651:6:0;4382:10;5798:23;5790:68;;;;-1:-1:-1;;;5790:68:0;;;;;;;:::i;:::-;41401:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41330:104:::0;:::o;25880:239::-;25952:7;25988:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25988:16:0;26023:19;26015:73;;;;-1:-1:-1;;;26015:73:0;;9789:2:1;26015:73:0;;;9771:21:1;9828:2;9808:18;;;9801:30;9867:34;9847:18;;;9840:62;-1:-1:-1;;;9918:18:1;;;9911:39;9967:19;;26015:73:0;9587:405:1;25610:208:0;25682:7;-1:-1:-1;;;;;25710:19:0;;25702:74;;;;-1:-1:-1;;;25702:74:0;;9378:2:1;25702:74:0;;;9360:21:1;9417:2;9397:18;;;9390:30;9456:34;9436:18;;;9429:62;-1:-1:-1;;;9507:18:1;;;9500:40;9557:19;;25702:74:0;9176:406:1;25702:74:0;-1:-1:-1;;;;;;25794:16:0;;;;;:9;:16;;;;;;;25610:208::o;6229:103::-;5651:6;;-1:-1:-1;;;;;5651:6:0;4382:10;5798:23;5790:68;;;;-1:-1:-1;;;5790:68:0;;;;;;;:::i;:::-;6294:30:::1;6321:1;6294:18;:30::i;:::-;6229:103::o:0;41799:135::-;41869:7;41901:25;:15;998:14;;906:114;41901:25;41894:32;;41799:135;:::o;40240:231::-;40096:10;40081:11;40221:6;;-1:-1:-1;;;;;40221:6:0;;40156:77;40081:11;-1:-1:-1;;;;;40081:25:0;;40073:57;;;;-1:-1:-1;;;40073:57:0;;14223:2:1;40073:57:0;;;14205:21:1;14262:2;14242:18;;;14235:30;-1:-1:-1;;;14281:18:1;;;14274:49;14340:18;;40073:57:0;14021:343:1;40073:57:0;40332:41:::1;40342:3;40347:25;:15;998:14:::0;;906:114;40347:25:::1;40332:9;:41::i;:::-;40379:50;40392:25;:15;998:14:::0;;906:114;40392:25:::1;40419:9;40379:12;:50::i;:::-;40435:27;:15;1117:19:::0;;1135:1;1117:19;;;1028:127;26355:104;26411:13;26444:7;26437:14;;;;;:::i;28038:155::-;28133:52;4382:10;28166:8;28176;28133:18;:52::i;29161:328::-;29336:41;4382:10;29369:7;29336:18;:41::i;:::-;29328:103;;;;-1:-1:-1;;;29328:103:0;;;;;;;:::i;:::-;29442:39;29456:4;29462:2;29466:7;29475:5;29442:13;:39::i;:::-;29161:328;;;;:::o;41565:196::-;41692:13;41730:23;41745:7;41730:14;:23::i;6487:201::-;5651:6;;-1:-1:-1;;;;;5651:6:0;4382:10;5798:23;5790:68;;;;-1:-1:-1;;;5790:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6576:22:0;::::1;6568:73;;;::::0;-1:-1:-1;;;6568:73:0;;7017:2:1;6568:73:0::1;::::0;::::1;6999:21:1::0;7056:2;7036:18;;;7029:30;7095:34;7075:18;;;7068:62;-1:-1:-1;;;7146:18:1;;;7139:36;7192:19;;6568:73:0::1;6815:402:1::0;6568:73:0::1;6652:28;6671:8;6652:18;:28::i;:::-;6487:201:::0;:::o;30999:127::-;31064:4;31088:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31088:16:0;:30;;;30999:127::o;34981:174::-;35056:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35056:29:0;-1:-1:-1;;;;;35056:29:0;;;;;;;;:24;;35110:23;35056:24;35110:14;:23::i;:::-;-1:-1:-1;;;;;35101:46:0;;;;;;;;;;;34981:174;;:::o;31293:348::-;31386:4;31411:16;31419:7;31411;:16::i;:::-;31403:73;;;;-1:-1:-1;;;31403:73:0;;8540:2:1;31403:73:0;;;8522:21:1;8579:2;8559:18;;;8552:30;8618:34;8598:18;;;8591:62;-1:-1:-1;;;8669:18:1;;;8662:42;8721:19;;31403:73:0;8338:408:1;31403:73:0;31487:13;31503:23;31518:7;31503:14;:23::i;:::-;31487:39;;31556:5;-1:-1:-1;;;;;31545:16:0;:7;-1:-1:-1;;;;;31545:16:0;;:51;;;;31589:7;-1:-1:-1;;;;;31565:31:0;:20;31577:7;31565:11;:20::i;:::-;-1:-1:-1;;;;;31565:31:0;;31545:51;:87;;;-1:-1:-1;;;;;;28385:25:0;;;28361:4;28385:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31600:32;31537:96;31293:348;-1:-1:-1;;;;31293:348:0:o;34285:578::-;34444:4;-1:-1:-1;;;;;34417:31:0;:23;34432:7;34417:14;:23::i;:::-;-1:-1:-1;;;;;34417:31:0;;34409:85;;;;-1:-1:-1;;;34409:85:0;;12577:2:1;34409:85:0;;;12559:21:1;12616:2;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;-1:-1:-1;;;12706:18:1;;;12699:39;12755:19;;34409:85:0;12375:405:1;34409:85:0;-1:-1:-1;;;;;34513:16:0;;34505:65;;;;-1:-1:-1;;;34505:65:0;;7781:2:1;34505:65:0;;;7763:21:1;7820:2;7800:18;;;7793:30;7859:34;7839:18;;;7832:62;-1:-1:-1;;;7910:18:1;;;7903:34;7954:19;;34505:65:0;7579:400:1;34505:65:0;34583:39;34604:4;34610:2;34614:7;34583:20;:39::i;:::-;34687:29;34704:1;34708:7;34687:8;:29::i;:::-;-1:-1:-1;;;;;34729:15:0;;;;;;:9;:15;;;;;:20;;34748:1;;34729:15;:20;;34748:1;;34729:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34760:13:0;;;;;;:9;:13;;;;;:18;;34777:1;;34760:13;:18;;34777:1;;34760:18;:::i;:::-;;;;-1:-1:-1;;34789:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34789:21:0;-1:-1:-1;;;;;34789:21:0;;;;;;;;;34828:27;;34789:16;;34828:27;;;;;;;34285:578;;;:::o;6848:191::-;6941:6;;;-1:-1:-1;;;;;6958:17:0;;;-1:-1:-1;;;;;;6958:17:0;;;;;;;6991:40;;6941:6;;;6958:17;6941:6;;6991:40;;6922:16;;6991:40;6911:128;6848:191;:::o;31983:110::-;32059:26;32069:2;32073:7;32059:26;;;;;;;;;;;;:9;:26::i;39027:217::-;39127:16;39135:7;39127;:16::i;:::-;39119:75;;;;-1:-1:-1;;;39119:75:0;;10199:2:1;39119:75:0;;;10181:21:1;10238:2;10218:18;;;10211:30;10277:34;10257:18;;;10250:62;-1:-1:-1;;;10328:18:1;;;10321:44;10382:19;;39119:75:0;9997:410:1;39119:75:0;39205:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;40783:354::-;40970:10;:24;;:47;;-1:-1:-1;;;;;;40998:19:0;;;40970:47;40962:101;;;;-1:-1:-1;;;40962:101:0;;;;;;;:::i;:::-;41076:51;41101:5;41108:8;41118;41076:24;:51::i;30371:315::-;30528:28;30538:4;30544:2;30548:7;30528:9;:28::i;:::-;30575:48;30598:4;30604:2;30608:7;30617:5;30575:22;:48::i;:::-;30567:111;;;;-1:-1:-1;;;30567:111:0;;;;;;;:::i;38192:679::-;38265:13;38299:16;38307:7;38299;:16::i;:::-;38291:78;;;;-1:-1:-1;;;38291:78:0;;10975:2:1;38291:78:0;;;10957:21:1;11014:2;10994:18;;;10987:30;11053:34;11033:18;;;11026:62;-1:-1:-1;;;11104:18:1;;;11097:47;11161:19;;38291:78:0;10773:413:1;38291:78:0;38382:23;38408:19;;;:10;:19;;;;;38382:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38438:18;38459:10;:8;:10::i;:::-;38438:31;;38551:4;38545:18;38567:1;38545:23;38541:72;;;-1:-1:-1;38592:9:0;38192:679;-1:-1:-1;;38192:679:0:o;38541:72::-;38717:23;;:27;38713:108;;38792:4;38798:9;38775:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38761:48;;;;38192:679;;;:::o;38713:108::-;38840:23;38855:7;38840:14;:23::i;40479:294::-;-1:-1:-1;;;;;40625:18:0;;;;:38;;-1:-1:-1;;;;;;40647:16:0;;;40625:38;40617:92;;;;-1:-1:-1;;;40617:92:0;;;;;;;:::i;32320:321::-;32450:18;32456:2;32460:7;32450:5;:18::i;:::-;32501:54;32532:1;32536:2;32540:7;32549:5;32501:22;:54::i;:::-;32479:154;;;;-1:-1:-1;;;32479:154:0;;;;;;;:::i;35297:315::-;35452:8;-1:-1:-1;;;;;35443:17:0;:5;-1:-1:-1;;;;;35443:17:0;;;35435:55;;;;-1:-1:-1;;;35435:55:0;;8186:2:1;35435:55:0;;;8168:21:1;8225:2;8205:18;;;8198:30;8264:27;8244:18;;;8237:55;8309:18;;35435:55:0;7984:349:1;35435:55:0;-1:-1:-1;;;;;35501:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35501:46:0;;;;;;;;;;35563:41;;6120::1;;;35563::0;;6093:18:1;35563:41:0;;;;;;;35297:315;;;:::o;36177:799::-;36332:4;-1:-1:-1;;;;;36353:13:0;;8189:20;8237:8;36349:620;;36389:72;;-1:-1:-1;;;36389:72:0;;-1:-1:-1;;;;;36389:36:0;;;;;:72;;4382:10;;36440:4;;36446:7;;36455:5;;36389:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36389:72:0;;;;;;;;-1:-1:-1;;36389:72:0;;;;;;;;;;;;:::i;:::-;;;36385:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36631:13:0;;36627:272;;36674:60;;-1:-1:-1;;;36674:60:0;;;;;;;:::i;36627:272::-;36849:6;36843:13;36834:6;36830:2;36826:15;36819:38;36385:529;-1:-1:-1;;;;;;36512:51:0;-1:-1:-1;;;36512:51:0;;-1:-1:-1;36505:58:0;;36349:620;-1:-1:-1;36953:4:0;36177:799;;;;;;:::o;41217:104::-;41277:13;41304:12;41297:19;;;;;:::i;26530:334::-;26603:13;26637:16;26645:7;26637;:16::i;:::-;26629:76;;;;-1:-1:-1;;;26629:76:0;;12987:2:1;26629:76:0;;;12969:21:1;13026:2;13006:18;;;12999:30;13065:34;13045:18;;;13038:62;-1:-1:-1;;;13116:18:1;;;13109:45;13171:19;;26629:76:0;12785:411:1;26629:76:0;26718:21;26742:10;:8;:10::i;:::-;26718:34;;26794:1;26776:7;26770:21;:25;:86;;;;;;;;;;;;;;;;;26822:7;26831:18;:7;:16;:18::i;:::-;26805:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26770:86;26763:93;26530:334;-1:-1:-1;;;26530:334:0:o;32977:382::-;-1:-1:-1;;;;;33057:16:0;;33049:61;;;;-1:-1:-1;;;33049:61:0;;10614:2:1;33049:61:0;;;10596:21:1;;;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;10744:18;;33049:61:0;10412:356:1;33049:61:0;33130:16;33138:7;33130;:16::i;:::-;33129:17;33121:58;;;;-1:-1:-1;;;33121:58:0;;7424:2:1;33121:58:0;;;7406:21:1;7463:2;7443:18;;;7436:30;7502;7482:18;;;7475:58;7550:18;;33121:58:0;7222:352:1;33121:58:0;33192:45;33221:1;33225:2;33229:7;33192:20;:45::i;:::-;-1:-1:-1;;;;;33250:13:0;;;;;;:9;:13;;;;;:18;;33267:1;;33250:13;:18;;33267:1;;33250:18;:::i;:::-;;;;-1:-1:-1;;33279:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33279:21:0;-1:-1:-1;;;;;33279:21:0;;;;;;;;33318:33;;33279:16;;;33318:33;;33279:16;;33318:33;32977:382;;:::o;1864:723::-;1920:13;2141:10;2137:53;;-1:-1:-1;;2168:10:0;;;;;;;;;;;;-1:-1:-1;;;2168:10:0;;;;;1864:723::o;2137:53::-;2215:5;2200:12;2256:78;2263:9;;2256:78;;2289:8;;;;:::i;:::-;;-1:-1:-1;2312:10:0;;-1:-1:-1;2320:2:0;2312:10;;:::i;:::-;;;2256:78;;;2344:19;2376:6;2366:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2366:17:0;;2344:39;;2394:154;2401:10;;2394:154;;2428:11;2438:1;2428:11;;:::i;:::-;;-1:-1:-1;2497:10:0;2505:2;2497:5;:10;:::i;:::-;2484:24;;:2;:24;:::i;:::-;2471:39;;2454:6;2461;2454:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2454:56:0;;;;;;;;-1:-1:-1;2525:11:0;2534:2;2525:11;;:::i;:::-;;;2394:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:396::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3124:2;3113:9;3109:18;3096:32;3151:18;3143:6;3140:30;3137:50;;;3183:1;3180;3173:12;3137:50;3206;3248:7;3239:6;3228:9;3224:22;3206:50;:::i;:::-;3196:60;;;2866:396;;;;;:::o;3267:254::-;3335:6;3343;3396:2;3384:9;3375:7;3371:23;3367:32;3364:52;;;3412:1;3409;3402:12;3364:52;3435:29;3454:9;3435:29;:::i;:::-;3425:39;3511:2;3496:18;;;;3483:32;;-1:-1:-1;;;3267:254:1:o;3526:245::-;3584:6;3637:2;3625:9;3616:7;3612:23;3608:32;3605:52;;;3653:1;3650;3643:12;3605:52;3692:9;3679:23;3711:30;3735:5;3711:30;:::i;3776:249::-;3845:6;3898:2;3886:9;3877:7;3873:23;3869:32;3866:52;;;3914:1;3911;3904:12;3866:52;3946:9;3940:16;3965:30;3989:5;3965:30;:::i;4030:322::-;4099:6;4152:2;4140:9;4131:7;4127:23;4123:32;4120:52;;;4168:1;4165;4158:12;4120:52;4208:9;4195:23;4241:18;4233:6;4230:30;4227:50;;;4273:1;4270;4263:12;4227:50;4296;4338:7;4329:6;4318:9;4314:22;4296:50;:::i;4357:180::-;4416:6;4469:2;4457:9;4448:7;4444:23;4440:32;4437:52;;;4485:1;4482;4475:12;4437:52;-1:-1:-1;4508:23:1;;4357:180;-1:-1:-1;4357:180:1:o;4542:257::-;4583:3;4621:5;4615:12;4648:6;4643:3;4636:19;4664:63;4720:6;4713:4;4708:3;4704:14;4697:4;4690:5;4686:16;4664:63;:::i;:::-;4781:2;4760:15;-1:-1:-1;;4756:29:1;4747:39;;;;4788:4;4743:50;;4542:257;-1:-1:-1;;4542:257:1:o;4804:470::-;4983:3;5021:6;5015:13;5037:53;5083:6;5078:3;5071:4;5063:6;5059:17;5037:53;:::i;:::-;5153:13;;5112:16;;;;5175:57;5153:13;5112:16;5209:4;5197:17;;5175:57;:::i;:::-;5248:20;;4804:470;-1:-1:-1;;;;4804:470:1:o;5487:488::-;-1:-1:-1;;;;;5756:15:1;;;5738:34;;5808:15;;5803:2;5788:18;;5781:43;5855:2;5840:18;;5833:34;;;5903:3;5898:2;5883:18;;5876:31;;;5681:4;;5924:45;;5949:19;;5941:6;5924:45;:::i;:::-;5916:53;5487:488;-1:-1:-1;;;;;;5487:488:1:o;6172:219::-;6321:2;6310:9;6303:21;6284:4;6341:44;6381:2;6370:9;6366:18;6358:6;6341:44;:::i;6396:414::-;6598:2;6580:21;;;6637:2;6617:18;;;6610:30;6676:34;6671:2;6656:18;;6649:62;-1:-1:-1;;;6742:2:1;6727:18;;6720:48;6800:3;6785:19;;6396:414::o;11604:356::-;11806:2;11788:21;;;11825:18;;;11818:30;11884:34;11879:2;11864:18;;11857:62;11951:2;11936:18;;11604:356::o;11965:405::-;12167:2;12149:21;;;12206:2;12186:18;;;12179:30;12245:34;12240:2;12225:18;;12218:62;-1:-1:-1;;;12311:2:1;12296:18;;12289:39;12360:3;12345:19;;11965:405::o;13603:413::-;13805:2;13787:21;;;13844:2;13824:18;;;13817:30;13883:34;13878:2;13863:18;;13856:62;-1:-1:-1;;;13949:2:1;13934:18;;13927:47;14006:3;13991:19;;13603:413::o;14551:128::-;14591:3;14622:1;14618:6;14615:1;14612:13;14609:39;;;14628:18;;:::i;:::-;-1:-1:-1;14664:9:1;;14551:128::o;14684:120::-;14724:1;14750;14740:35;;14755:18;;:::i;:::-;-1:-1:-1;14789:9:1;;14684:120::o;14809:125::-;14849:4;14877:1;14874;14871:8;14868:34;;;14882:18;;:::i;:::-;-1:-1:-1;14919:9:1;;14809:125::o;14939:258::-;15011:1;15021:113;15035:6;15032:1;15029:13;15021:113;;;15111:11;;;15105:18;15092:11;;;15085:39;15057:2;15050:10;15021:113;;;15152:6;15149:1;15146:13;15143:48;;;-1:-1:-1;;15187:1:1;15169:16;;15162:27;14939:258::o;15202:380::-;15281:1;15277:12;;;;15324;;;15345:61;;15399:4;15391:6;15387:17;15377:27;;15345:61;15452:2;15444:6;15441:14;15421:18;15418:38;15415:161;;;15498:10;15493:3;15489:20;15486:1;15479:31;15533:4;15530:1;15523:15;15561:4;15558:1;15551:15;15415:161;;15202:380;;;:::o;15587:135::-;15626:3;-1:-1:-1;;15647:17:1;;15644:43;;;15667:18;;:::i;:::-;-1:-1:-1;15714:1:1;15703:13;;15587:135::o;15727:112::-;15759:1;15785;15775:35;;15790:18;;:::i;:::-;-1:-1:-1;15824:9:1;;15727:112::o;15844:127::-;15905:10;15900:3;15896:20;15893:1;15886:31;15936:4;15933:1;15926:15;15960:4;15957:1;15950:15;15976:127;16037:10;16032:3;16028:20;16025:1;16018:31;16068:4;16065:1;16058:15;16092:4;16089:1;16082:15;16108:127;16169:10;16164:3;16160:20;16157:1;16150:31;16200:4;16197:1;16190:15;16224:4;16221:1;16214:15;16240:127;16301:10;16296:3;16292:20;16289:1;16282:31;16332:4;16329:1;16322:15;16356:4;16353:1;16346:15;16372:131;-1:-1:-1;;;;;;16446:32:1;;16436:43;;16426:71;;16493:1;16490;16483:12

Swarm Source

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