ETH Price: $3,452.78 (-0.87%)
Gas: 2 Gwei

Token

Crypto stamp art (CSA)
 

Overview

Max Total Supply

0 CSA

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 CSA
0x9dcf2c97d88bb1e69ff6adcac15f2a2acc7c9070
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:
CryptoStampArt

Compiler Version
v0.8.10+commit.fc410830

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-13
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "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.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/ERC721Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: contracts/CryptoStampArt.sol

pragma solidity ^0.8.4;

//  __/\\\\\\\\\\\\\\\_______/\\\\\_______/\\\________/\\\_____/\\\\\\\\\_____/\\\\\\\\\\\\\____/\\\\\\\\\\\_        
//   _\///////\\\/////______/\\\///\\\____\/\\\_____/\\\//____/\\\\\\\\\\\\\__\/\\\/////////\\\_\/////\\\///__       
//    _______\/\\\_________/\\\/__\///\\\__\/\\\__/\\\//______/\\\/////////\\\_\/\\\_______\/\\\_____\/\\\_____      
//     _______\/\\\________/\\\______\//\\\_\/\\\\\\//\\\_____\/\\\_______\/\\\_\/\\\\\\\\\\\\\/______\/\\\_____     
//      _______\/\\\_______\/\\\_______\/\\\_\/\\\//_\//\\\____\/\\\\\\\\\\\\\\\_\/\\\/////////________\/\\\_____    
//       _______\/\\\_______\//\\\______/\\\__\/\\\____\//\\\___\/\\\/////////\\\_\/\\\_________________\/\\\_____   
//        _______\/\\\________\///\\\__/\\\____\/\\\_____\//\\\__\/\\\_______\/\\\_\/\\\_________________\/\\\_____  
//         _______\/\\\__________\///\\\\\/_____\/\\\______\//\\\_\/\\\_______\/\\\_\/\\\______________/\\\\\\\\\\\_ 
//          _______\///_____________\/////_______\///________\///__\///________\///__\///______________\///////////__

/// @custom:security-contact thedevs
contract CryptoStampArt is ERC721, ERC721Burnable, Ownable {
    constructor() ERC721("Crypto stamp art", "CSA") {}

    string private _baseTokenURI;

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

    function safeMint(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }

    function baseURI() public view returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        _baseTokenURI = uri;
    }
}

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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","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"}]

60806040523480156200001157600080fd5b50604080518082018252601081526f10dc9e5c1d1bc81cdd185b5c08185c9d60821b60208083019182528351808501909452600384526243534160e81b9084015281519192916200006591600091620000f4565b5080516200007b906001906020840190620000f4565b50505062000098620000926200009e60201b60201c565b620000a2565b620001d7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000102906200019a565b90600052602060002090601f01602090048101928262000126576000855562000171565b82601f106200014157805160ff191683800117855562000171565b8280016001018555821562000171579182015b828111156200017157825182559160200191906001019062000154565b506200017f92915062000183565b5090565b5b808211156200017f576000815560010162000184565b600181811c90821680620001af57607f821691505b60208210811415620001d157634e487b7160e01b600052602260045260246000fd5b50919050565b61187c80620001e76000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461026a578063b88d4fde1461027d578063c87b56dd14610290578063e985e9c5146102a3578063f2fde38b146102df57600080fd5b806370a0823114610215578063715018a6146102365780638da5cb5b1461023e57806395d89b411461024f578063a14481941461025757600080fd5b806342842e0e116100f457806342842e0e146101c157806342966c68146101d457806355f804b3146101e75780636352211e146101fa5780636c0360eb1461020d57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806323b872dd146101ae575b600080fd5b61014461013f3660046112f8565b6102f2565b60405190151581526020015b60405180910390f35b610161610344565b604051610150919061136d565b61018161017c366004611380565b6103d6565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046113b5565b610470565b005b6101ac6101bc3660046113df565b610586565b6101ac6101cf3660046113df565b6105b8565b6101ac6101e2366004611380565b6105d3565b6101ac6101f53660046114a7565b61064d565b610181610208366004611380565b61068e565b610161610705565b6102286102233660046114f0565b610714565b604051908152602001610150565b6101ac61079b565b6006546001600160a01b0316610181565b6101616107d1565b6101ac6102653660046113b5565b6107e0565b6101ac61027836600461150b565b610814565b6101ac61028b366004611547565b61081f565b61016161029e366004611380565b610857565b6101446102b13660046115c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102ed3660046114f0565b610932565b60006001600160e01b031982166380ac58cd60e01b148061032357506001600160e01b03198216635b5e139f60e01b145b8061033e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610353906115f6565b80601f016020809104026020016040519081016040528092919081815260200182805461037f906115f6565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061047b8261068e565b9050806001600160a01b0316836001600160a01b031614156104e95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161044b565b336001600160a01b0382161480610505575061050581336102b1565b6105775760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161044b565b61058183836109ca565b505050565b610591335b82610a38565b6105ad5760405162461bcd60e51b815260040161044b90611631565b610581838383610b2f565b6105818383836040518060200160405280600081525061081f565b6105dc3361058b565b6106415760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161044b565b61064a81610ccf565b50565b6006546001600160a01b031633146106775760405162461bcd60e51b815260040161044b90611682565b805161068a906007906020840190611249565b5050565b6000818152600260205260408120546001600160a01b03168061033e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161044b565b606060078054610353906115f6565b60006001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161044b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107c55760405162461bcd60e51b815260040161044b90611682565b6107cf6000610d6a565b565b606060018054610353906115f6565b6006546001600160a01b0316331461080a5760405162461bcd60e51b815260040161044b90611682565b61068a8282610dbc565b61068a338383610dd6565b6108293383610a38565b6108455760405162461bcd60e51b815260040161044b90611631565b61085184848484610ea5565b50505050565b6000818152600260205260409020546060906001600160a01b03166108d65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161044b565b60006108e0610705565b90506000815111610900576040518060200160405280600081525061092b565b8061090a84610ed8565b60405160200161091b9291906116b7565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461095c5760405162461bcd60e51b815260040161044b90611682565b6001600160a01b0381166109c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161044b565b61064a81610d6a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109ff8261068e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ab15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161044b565b6000610abc8361068e565b9050806001600160a01b0316846001600160a01b03161480610af75750836001600160a01b0316610aec846103d6565b6001600160a01b0316145b80610b2757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b428261068e565b6001600160a01b031614610baa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161044b565b6001600160a01b038216610c0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161044b565b610c176000826109ca565b6001600160a01b0383166000908152600360205260408120805460019290610c409084906116fc565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c6e908490611713565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610cda8261068e565b9050610ce76000836109ca565b6001600160a01b0381166000908152600360205260408120805460019290610d109084906116fc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61068a828260405180602001604052806000815250610fd6565b816001600160a01b0316836001600160a01b03161415610e385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161044b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610eb0848484610b2f565b610ebc84848484611009565b6108515760405162461bcd60e51b815260040161044b9061172b565b606081610efc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f265780610f108161177d565b9150610f1f9050600a836117ae565b9150610f00565b60008167ffffffffffffffff811115610f4157610f4161141b565b6040519080825280601f01601f191660200182016040528015610f6b576020820181803683370190505b5090505b8415610b2757610f806001836116fc565b9150610f8d600a866117c2565b610f98906030611713565b60f81b818381518110610fad57610fad6117d6565b60200101906001600160f81b031916908160001a905350610fcf600a866117ae565b9450610f6f565b610fe08383611107565b610fed6000848484611009565b6105815760405162461bcd60e51b815260040161044b9061172b565b60006001600160a01b0384163b156110fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061104d9033908990889088906004016117ec565b6020604051808303816000875af1925050508015611088575060408051601f3d908101601f1916820190925261108591810190611829565b60015b6110e2573d8080156110b6576040519150601f19603f3d011682016040523d82523d6000602084013e6110bb565b606091505b5080516110da5760405162461bcd60e51b815260040161044b9061172b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b27565b506001949350505050565b6001600160a01b03821661115d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161044b565b6000818152600260205260409020546001600160a01b0316156111c25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161044b565b6001600160a01b03821660009081526003602052604081208054600192906111eb908490611713565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611255906115f6565b90600052602060002090601f01602090048101928261127757600085556112bd565b82601f1061129057805160ff19168380011785556112bd565b828001600101855582156112bd579182015b828111156112bd5782518255916020019190600101906112a2565b506112c99291506112cd565b5090565b5b808211156112c957600081556001016112ce565b6001600160e01b03198116811461064a57600080fd5b60006020828403121561130a57600080fd5b813561092b816112e2565b60005b83811015611330578181015183820152602001611318565b838111156108515750506000910152565b60008151808452611359816020860160208601611315565b601f01601f19169290920160200192915050565b60208152600061092b6020830184611341565b60006020828403121561139257600080fd5b5035919050565b80356001600160a01b03811681146113b057600080fd5b919050565b600080604083850312156113c857600080fd5b6113d183611399565b946020939093013593505050565b6000806000606084860312156113f457600080fd5b6113fd84611399565b925061140b60208501611399565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561144c5761144c61141b565b604051601f8501601f19908116603f011681019082821181831017156114745761147461141b565b8160405280935085815286868601111561148d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156114b957600080fd5b813567ffffffffffffffff8111156114d057600080fd5b8201601f810184136114e157600080fd5b610b2784823560208401611431565b60006020828403121561150257600080fd5b61092b82611399565b6000806040838503121561151e57600080fd5b61152783611399565b91506020830135801515811461153c57600080fd5b809150509250929050565b6000806000806080858703121561155d57600080fd5b61156685611399565b935061157460208601611399565b925060408501359150606085013567ffffffffffffffff81111561159757600080fd5b8501601f810187136115a857600080fd5b6115b787823560208401611431565b91505092959194509250565b600080604083850312156115d657600080fd5b6115df83611399565b91506115ed60208401611399565b90509250929050565b600181811c9082168061160a57607f821691505b6020821081141561162b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600083516116c9818460208801611315565b8351908301906116dd818360208801611315565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b60008282101561170e5761170e6116e6565b500390565b60008219821115611726576117266116e6565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600019821415611791576117916116e6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826117bd576117bd611798565b500490565b6000826117d1576117d1611798565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061181f90830184611341565b9695505050505050565b60006020828403121561183b57600080fd5b815161092b816112e256fea26469706673582212202a4c2aef5ecec7a1cc9080087ee6f4cde62029386cda1ba3af31b8b97cc2ce2664736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461026a578063b88d4fde1461027d578063c87b56dd14610290578063e985e9c5146102a3578063f2fde38b146102df57600080fd5b806370a0823114610215578063715018a6146102365780638da5cb5b1461023e57806395d89b411461024f578063a14481941461025757600080fd5b806342842e0e116100f457806342842e0e146101c157806342966c68146101d457806355f804b3146101e75780636352211e146101fa5780636c0360eb1461020d57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806323b872dd146101ae575b600080fd5b61014461013f3660046112f8565b6102f2565b60405190151581526020015b60405180910390f35b610161610344565b604051610150919061136d565b61018161017c366004611380565b6103d6565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046113b5565b610470565b005b6101ac6101bc3660046113df565b610586565b6101ac6101cf3660046113df565b6105b8565b6101ac6101e2366004611380565b6105d3565b6101ac6101f53660046114a7565b61064d565b610181610208366004611380565b61068e565b610161610705565b6102286102233660046114f0565b610714565b604051908152602001610150565b6101ac61079b565b6006546001600160a01b0316610181565b6101616107d1565b6101ac6102653660046113b5565b6107e0565b6101ac61027836600461150b565b610814565b6101ac61028b366004611547565b61081f565b61016161029e366004611380565b610857565b6101446102b13660046115c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102ed3660046114f0565b610932565b60006001600160e01b031982166380ac58cd60e01b148061032357506001600160e01b03198216635b5e139f60e01b145b8061033e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610353906115f6565b80601f016020809104026020016040519081016040528092919081815260200182805461037f906115f6565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061047b8261068e565b9050806001600160a01b0316836001600160a01b031614156104e95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161044b565b336001600160a01b0382161480610505575061050581336102b1565b6105775760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161044b565b61058183836109ca565b505050565b610591335b82610a38565b6105ad5760405162461bcd60e51b815260040161044b90611631565b610581838383610b2f565b6105818383836040518060200160405280600081525061081f565b6105dc3361058b565b6106415760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161044b565b61064a81610ccf565b50565b6006546001600160a01b031633146106775760405162461bcd60e51b815260040161044b90611682565b805161068a906007906020840190611249565b5050565b6000818152600260205260408120546001600160a01b03168061033e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161044b565b606060078054610353906115f6565b60006001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161044b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107c55760405162461bcd60e51b815260040161044b90611682565b6107cf6000610d6a565b565b606060018054610353906115f6565b6006546001600160a01b0316331461080a5760405162461bcd60e51b815260040161044b90611682565b61068a8282610dbc565b61068a338383610dd6565b6108293383610a38565b6108455760405162461bcd60e51b815260040161044b90611631565b61085184848484610ea5565b50505050565b6000818152600260205260409020546060906001600160a01b03166108d65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161044b565b60006108e0610705565b90506000815111610900576040518060200160405280600081525061092b565b8061090a84610ed8565b60405160200161091b9291906116b7565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461095c5760405162461bcd60e51b815260040161044b90611682565b6001600160a01b0381166109c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161044b565b61064a81610d6a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109ff8261068e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ab15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161044b565b6000610abc8361068e565b9050806001600160a01b0316846001600160a01b03161480610af75750836001600160a01b0316610aec846103d6565b6001600160a01b0316145b80610b2757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b428261068e565b6001600160a01b031614610baa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161044b565b6001600160a01b038216610c0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161044b565b610c176000826109ca565b6001600160a01b0383166000908152600360205260408120805460019290610c409084906116fc565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c6e908490611713565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610cda8261068e565b9050610ce76000836109ca565b6001600160a01b0381166000908152600360205260408120805460019290610d109084906116fc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61068a828260405180602001604052806000815250610fd6565b816001600160a01b0316836001600160a01b03161415610e385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161044b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610eb0848484610b2f565b610ebc84848484611009565b6108515760405162461bcd60e51b815260040161044b9061172b565b606081610efc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f265780610f108161177d565b9150610f1f9050600a836117ae565b9150610f00565b60008167ffffffffffffffff811115610f4157610f4161141b565b6040519080825280601f01601f191660200182016040528015610f6b576020820181803683370190505b5090505b8415610b2757610f806001836116fc565b9150610f8d600a866117c2565b610f98906030611713565b60f81b818381518110610fad57610fad6117d6565b60200101906001600160f81b031916908160001a905350610fcf600a866117ae565b9450610f6f565b610fe08383611107565b610fed6000848484611009565b6105815760405162461bcd60e51b815260040161044b9061172b565b60006001600160a01b0384163b156110fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061104d9033908990889088906004016117ec565b6020604051808303816000875af1925050508015611088575060408051601f3d908101601f1916820190925261108591810190611829565b60015b6110e2573d8080156110b6576040519150601f19603f3d011682016040523d82523d6000602084013e6110bb565b606091505b5080516110da5760405162461bcd60e51b815260040161044b9061172b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b27565b506001949350505050565b6001600160a01b03821661115d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161044b565b6000818152600260205260409020546001600160a01b0316156111c25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161044b565b6001600160a01b03821660009081526003602052604081208054600192906111eb908490611713565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611255906115f6565b90600052602060002090601f01602090048101928261127757600085556112bd565b82601f1061129057805160ff19168380011785556112bd565b828001600101855582156112bd579182015b828111156112bd5782518255916020019190600101906112a2565b506112c99291506112cd565b5090565b5b808211156112c957600081556001016112ce565b6001600160e01b03198116811461064a57600080fd5b60006020828403121561130a57600080fd5b813561092b816112e2565b60005b83811015611330578181015183820152602001611318565b838111156108515750506000910152565b60008151808452611359816020860160208601611315565b601f01601f19169290920160200192915050565b60208152600061092b6020830184611341565b60006020828403121561139257600080fd5b5035919050565b80356001600160a01b03811681146113b057600080fd5b919050565b600080604083850312156113c857600080fd5b6113d183611399565b946020939093013593505050565b6000806000606084860312156113f457600080fd5b6113fd84611399565b925061140b60208501611399565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561144c5761144c61141b565b604051601f8501601f19908116603f011681019082821181831017156114745761147461141b565b8160405280935085815286868601111561148d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156114b957600080fd5b813567ffffffffffffffff8111156114d057600080fd5b8201601f810184136114e157600080fd5b610b2784823560208401611431565b60006020828403121561150257600080fd5b61092b82611399565b6000806040838503121561151e57600080fd5b61152783611399565b91506020830135801515811461153c57600080fd5b809150509250929050565b6000806000806080858703121561155d57600080fd5b61156685611399565b935061157460208601611399565b925060408501359150606085013567ffffffffffffffff81111561159757600080fd5b8501601f810187136115a857600080fd5b6115b787823560208401611431565b91505092959194509250565b600080604083850312156115d657600080fd5b6115df83611399565b91506115ed60208401611399565b90509250929050565b600181811c9082168061160a57607f821691505b6020821081141561162b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600083516116c9818460208801611315565b8351908301906116dd818360208801611315565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b60008282101561170e5761170e6116e6565b500390565b60008219821115611726576117266116e6565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600019821415611791576117916116e6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826117bd576117bd611798565b500490565b6000826117d1576117d1611798565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061181f90830184611341565b9695505050505050565b60006020828403121561183b57600080fd5b815161092b816112e256fea26469706673582212202a4c2aef5ecec7a1cc9080087ee6f4cde62029386cda1ba3af31b8b97cc2ce2664736f6c634300080a0033

Deployed Bytecode Sourcemap

38182:591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23775:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23775:305:0;;;;;;;;24720:100;;;:::i;:::-;;;;;;;:::i;26279:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26279:221:0;1528:203:1;25802:411:0;;;;;;:::i;:::-;;:::i;:::-;;27029:339;;;;;;:::i;:::-;;:::i;27439:185::-;;;;;;:::i;:::-;;:::i;36751:245::-;;;;;;:::i;:::-;;:::i;38676:94::-;;;;;;:::i;:::-;;:::i;24414:239::-;;;;;;:::i;:::-;;:::i;38570:94::-;;;:::i;24144:208::-;;;;;;:::i;:::-;;:::i;:::-;;;4068:25:1;;;4056:2;4041:18;24144:208:0;3922:177:1;4763:103:0;;;:::i;4112:87::-;4185:6;;-1:-1:-1;;;;;4185:6:0;4112:87;;24889:104;;;:::i;38457:105::-;;;;;;:::i;:::-;;:::i;26572:155::-;;;;;;:::i;:::-;;:::i;27695:328::-;;;;;;:::i;:::-;;:::i;25064:334::-;;;;;;:::i;:::-;;:::i;26798:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26919:25:0;;;26895:4;26919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26798:164;5021:201;;;;;;:::i;:::-;;:::i;23775:305::-;23877:4;-1:-1:-1;;;;;;23914:40:0;;-1:-1:-1;;;23914:40:0;;:105;;-1:-1:-1;;;;;;;23971:48:0;;-1:-1:-1;;;23971:48:0;23914:105;:158;;;-1:-1:-1;;;;;;;;;;16653:40:0;;;24036:36;23894:178;23775:305;-1:-1:-1;;23775:305:0:o;24720:100::-;24774:13;24807:5;24800:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24720:100;:::o;26279:221::-;26355:7;29622:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29622:16:0;26375:73;;;;-1:-1:-1;;;26375:73:0;;5980:2:1;26375:73:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:42;6161:19;;26375:73:0;;;;;;;;;-1:-1:-1;26468:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26468:24:0;;26279:221::o;25802:411::-;25883:13;25899:23;25914:7;25899:14;:23::i;:::-;25883:39;;25947:5;-1:-1:-1;;;;;25941:11:0;:2;-1:-1:-1;;;;;25941:11:0;;;25933:57;;;;-1:-1:-1;;;25933:57:0;;6393:2:1;25933:57:0;;;6375:21:1;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:1;;;6515:31;6563:19;;25933:57:0;6191:397:1;25933:57:0;2916:10;-1:-1:-1;;;;;26025:21:0;;;;:62;;-1:-1:-1;26050:37:0;26067:5;2916:10;26798:164;:::i;26050:37::-;26003:168;;;;-1:-1:-1;;;26003:168:0;;6795:2:1;26003:168:0;;;6777:21:1;6834:2;6814:18;;;6807:30;6873:34;6853:18;;;6846:62;6944:26;6924:18;;;6917:54;6988:19;;26003:168:0;6593:420:1;26003:168:0;26184:21;26193:2;26197:7;26184:8;:21::i;:::-;25872:341;25802:411;;:::o;27029:339::-;27224:41;2916:10;27243:12;27257:7;27224:18;:41::i;:::-;27216:103;;;;-1:-1:-1;;;27216:103:0;;;;;;;:::i;:::-;27332:28;27342:4;27348:2;27352:7;27332:9;:28::i;27439:185::-;27577:39;27594:4;27600:2;27604:7;27577:39;;;;;;;;;;;;:16;:39::i;36751:245::-;36869:41;2916:10;36888:12;2836:98;36869:41;36861:102;;;;-1:-1:-1;;;36861:102:0;;7638:2:1;36861:102:0;;;7620:21:1;7677:2;7657:18;;;7650:30;7716:34;7696:18;;;7689:62;-1:-1:-1;;;7767:18:1;;;7760:46;7823:19;;36861:102:0;7436:412:1;36861:102:0;36974:14;36980:7;36974:5;:14::i;:::-;36751:245;:::o;38676:94::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38743:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38676:94:::0;:::o;24414:239::-;24486:7;24522:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24522:16:0;24557:19;24549:73;;;;-1:-1:-1;;;24549:73:0;;8416:2:1;24549:73:0;;;8398:21:1;8455:2;8435:18;;;8428:30;8494:34;8474:18;;;8467:62;-1:-1:-1;;;8545:18:1;;;8538:39;8594:19;;24549:73:0;8214:405:1;38570:94:0;38610:13;38643;38636:20;;;;;:::i;24144:208::-;24216:7;-1:-1:-1;;;;;24244:19:0;;24236:74;;;;-1:-1:-1;;;24236:74:0;;8826:2:1;24236:74:0;;;8808:21:1;8865:2;8845:18;;;8838:30;8904:34;8884:18;;;8877:62;-1:-1:-1;;;8955:18:1;;;8948:40;9005:19;;24236:74:0;8624:406:1;24236:74:0;-1:-1:-1;;;;;;24328:16:0;;;;;:9;:16;;;;;;;24144:208::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;24889:104::-;24945:13;24978:7;24971:14;;;;;:::i;38457:105::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38532:22:::1;38542:2;38546:7;38532:9;:22::i;26572:155::-:0;26667:52;2916:10;26700:8;26710;26667:18;:52::i;27695:328::-;27870:41;2916:10;27903:7;27870:18;:41::i;:::-;27862:103;;;;-1:-1:-1;;;27862:103:0;;;;;;;:::i;:::-;27976:39;27990:4;27996:2;28000:7;28009:5;27976:13;:39::i;:::-;27695:328;;;;:::o;25064:334::-;29598:4;29622:16;;;:7;:16;;;;;;25137:13;;-1:-1:-1;;;;;29622:16:0;25163:76;;;;-1:-1:-1;;;25163:76:0;;9237:2:1;25163:76:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:34;9295:18;;;9288:62;-1:-1:-1;;;9366:18:1;;;9359:45;9421:19;;25163:76:0;9035:411:1;25163:76:0;25252:21;25276:10;:8;:10::i;:::-;25252:34;;25328:1;25310:7;25304:21;:25;:86;;;;;;;;;;;;;;;;;25356:7;25365:18;:7;:16;:18::i;:::-;25339:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25304:86;25297:93;25064:334;-1:-1:-1;;;25064:334:0:o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;10128:2:1;5102:73:0::1;::::0;::::1;10110:21:1::0;10167:2;10147:18;;;10140:30;10206:34;10186:18;;;10179:62;-1:-1:-1;;;10257:18:1;;;10250:36;10303:19;;5102:73:0::1;9926:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33515:174::-:0;33590:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33590:29:0;-1:-1:-1;;;;;33590:29:0;;;;;;;;:24;;33644:23;33590:24;33644:14;:23::i;:::-;-1:-1:-1;;;;;33635:46:0;;;;;;;;;;;33515:174;;:::o;29827:348::-;29920:4;29622:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29622:16:0;29937:73;;;;-1:-1:-1;;;29937:73:0;;10535:2:1;29937:73:0;;;10517:21:1;10574:2;10554:18;;;10547:30;10613:34;10593:18;;;10586:62;-1:-1:-1;;;10664:18:1;;;10657:42;10716:19;;29937:73:0;10333:408:1;29937:73:0;30021:13;30037:23;30052:7;30037:14;:23::i;:::-;30021:39;;30090:5;-1:-1:-1;;;;;30079:16:0;:7;-1:-1:-1;;;;;30079:16:0;;:51;;;;30123:7;-1:-1:-1;;;;;30099:31:0;:20;30111:7;30099:11;:20::i;:::-;-1:-1:-1;;;;;30099:31:0;;30079:51;:87;;;-1:-1:-1;;;;;;26919:25:0;;;26895:4;26919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30134:32;30071:96;29827:348;-1:-1:-1;;;;29827:348:0:o;32819:578::-;32978:4;-1:-1:-1;;;;;32951:31:0;:23;32966:7;32951:14;:23::i;:::-;-1:-1:-1;;;;;32951:31:0;;32943:85;;;;-1:-1:-1;;;32943:85:0;;10948:2:1;32943:85:0;;;10930:21:1;10987:2;10967:18;;;10960:30;11026:34;11006:18;;;10999:62;-1:-1:-1;;;11077:18:1;;;11070:39;11126:19;;32943:85:0;10746:405:1;32943:85:0;-1:-1:-1;;;;;33047:16:0;;33039:65;;;;-1:-1:-1;;;33039:65:0;;11358:2:1;33039:65:0;;;11340:21:1;11397:2;11377:18;;;11370:30;11436:34;11416:18;;;11409:62;-1:-1:-1;;;11487:18:1;;;11480:34;11531:19;;33039:65:0;11156:400:1;33039:65:0;33221:29;33238:1;33242:7;33221:8;:29::i;:::-;-1:-1:-1;;;;;33263:15:0;;;;;;:9;:15;;;;;:20;;33282:1;;33263:15;:20;;33282:1;;33263:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33294:13:0;;;;;;:9;:13;;;;;:18;;33311:1;;33294:13;:18;;33311:1;;33294:18;:::i;:::-;;;;-1:-1:-1;;33323:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33323:21:0;-1:-1:-1;;;;;33323:21:0;;;;;;;;;33362:27;;33323:16;;33362:27;;;;;;;32819:578;;;:::o;32122:360::-;32182:13;32198:23;32213:7;32198:14;:23::i;:::-;32182:39;;32323:29;32340:1;32344:7;32323:8;:29::i;:::-;-1:-1:-1;;;;;32365:16:0;;;;;;:9;:16;;;;;:21;;32385:1;;32365:16;:21;;32385:1;;32365:21;:::i;:::-;;;;-1:-1:-1;;32404:16:0;;;;:7;:16;;;;;;32397:23;;-1:-1:-1;;;;;;32397:23:0;;;32438:36;32412:7;;32404:16;-1:-1:-1;;;;;32438:36:0;;;;;32404:16;;32438:36;32171:311;32122:360;:::o;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;30517:110::-;30593:26;30603:2;30607:7;30593:26;;;;;;;;;;;;:9;:26::i;33831:315::-;33986:8;-1:-1:-1;;;;;33977:17:0;:5;-1:-1:-1;;;;;33977:17:0;;;33969:55;;;;-1:-1:-1;;;33969:55:0;;12158:2:1;33969:55:0;;;12140:21:1;12197:2;12177:18;;;12170:30;12236:27;12216:18;;;12209:55;12281:18;;33969:55:0;11956:349:1;33969:55:0;-1:-1:-1;;;;;34035:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34035:46:0;;;;;;;;;;34097:41;;540::1;;;34097::0;;513:18:1;34097:41:0;;;;;;;33831:315;;;:::o;28905:::-;29062:28;29072:4;29078:2;29082:7;29062:9;:28::i;:::-;29109:48;29132:4;29138:2;29142:7;29151:5;29109:22;:48::i;:::-;29101:111;;;;-1:-1:-1;;;29101:111:0;;;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;30854:321;30984:18;30990:2;30994:7;30984:5;:18::i;:::-;31035:54;31066:1;31070:2;31074:7;31083:5;31035:22;:54::i;:::-;31013:154;;;;-1:-1:-1;;;31013:154:0;;;;;;;:::i;34711:799::-;34866:4;-1:-1:-1;;;;;34887:13:0;;6723:20;6771:8;34883:620;;34923:72;;-1:-1:-1;;;34923:72:0;;-1:-1:-1;;;;;34923:36:0;;;;;:72;;2916:10;;34974:4;;34980:7;;34989:5;;34923:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34923:72:0;;;;;;;;-1:-1:-1;;34923:72:0;;;;;;;;;;;;:::i;:::-;;;34919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35165:13:0;;35161:272;;35208:60;;-1:-1:-1;;;35208:60:0;;;;;;;:::i;35161:272::-;35383:6;35377:13;35368:6;35364:2;35360:15;35353:38;34919:529;-1:-1:-1;;;;;;35046:51:0;-1:-1:-1;;;35046:51:0;;-1:-1:-1;35039:58:0;;34883:620;-1:-1:-1;35487:4:0;34711:799;;;;;;:::o;31511:382::-;-1:-1:-1;;;;;31591:16:0;;31583:61;;;;-1:-1:-1;;;31583:61:0;;14325:2:1;31583:61:0;;;14307:21:1;;;14344:18;;;14337:30;14403:34;14383:18;;;14376:62;14455:18;;31583:61:0;14123:356:1;31583:61:0;29598:4;29622:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29622:16:0;:30;31655:58;;;;-1:-1:-1;;;31655:58:0;;14686:2:1;31655:58:0;;;14668:21:1;14725:2;14705:18;;;14698:30;14764;14744:18;;;14737:58;14812:18;;31655:58:0;14484:352:1;31655:58:0;-1:-1:-1;;;;;31784:13:0;;;;;;:9;:13;;;;;:18;;31801:1;;31784:13;:18;;31801:1;;31784:18;:::i;:::-;;;;-1:-1:-1;;31813:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31813:21:0;-1:-1:-1;;;;;31813:21:0;;;;;;;;31852:33;;31813:16;;;31852:33;;31813:16;;31852:33;31511:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:328::-;2250:6;2258;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;2358:29;2377:9;2358:29;:::i;:::-;2348:39;;2406:38;2440:2;2429:9;2425:18;2406:38;:::i;:::-;2396:48;;2491:2;2480:9;2476:18;2463:32;2453:42;;2173:328;;;;;:::o;2506:127::-;2567:10;2562:3;2558:20;2555:1;2548:31;2598:4;2595:1;2588:15;2622:4;2619:1;2612:15;2638:632;2703:5;2733:18;2774:2;2766:6;2763:14;2760:40;;;2780:18;;:::i;:::-;2855:2;2849:9;2823:2;2909:15;;-1:-1:-1;;2905:24:1;;;2931:2;2901:33;2897:42;2885:55;;;2955:18;;;2975:22;;;2952:46;2949:72;;;3001:18;;:::i;:::-;3041:10;3037:2;3030:22;3070:6;3061:15;;3100:6;3092;3085:22;3140:3;3131:6;3126:3;3122:16;3119:25;3116:45;;;3157:1;3154;3147:12;3116:45;3207:6;3202:3;3195:4;3187:6;3183:17;3170:44;3262:1;3255:4;3246:6;3238;3234:19;3230:30;3223:41;;;;2638:632;;;;;:::o;3275:451::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3453:9;3440:23;3486:18;3478:6;3475:30;3472:50;;;3518:1;3515;3508:12;3472:50;3541:22;;3594:4;3586:13;;3582:27;-1:-1:-1;3572:55:1;;3623:1;3620;3613:12;3572:55;3646:74;3712:7;3707:2;3694:16;3689:2;3685;3681:11;3646:74;:::i;3731:186::-;3790:6;3843:2;3831:9;3822:7;3818:23;3814:32;3811:52;;;3859:1;3856;3849:12;3811:52;3882:29;3901:9;3882:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7018:413::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:47;7421:3;7406:19;;7018:413::o;7853:356::-;8055:2;8037:21;;;8074:18;;;8067:30;8133:34;8128:2;8113:18;;8106:62;8200:2;8185:18;;7853:356::o;9451:470::-;9630:3;9668:6;9662:13;9684:53;9730:6;9725:3;9718:4;9710:6;9706:17;9684:53;:::i;:::-;9800:13;;9759:16;;;;9822:57;9800:13;9759:16;9856:4;9844:17;;9822:57;:::i;:::-;9895:20;;9451:470;-1:-1:-1;;;;9451:470:1:o;11561:127::-;11622:10;11617:3;11613:20;11610:1;11603:31;11653:4;11650:1;11643:15;11677:4;11674:1;11667:15;11693:125;11733:4;11761:1;11758;11755:8;11752:34;;;11766:18;;:::i;:::-;-1:-1:-1;11803:9:1;;11693:125::o;11823:128::-;11863:3;11894:1;11890:6;11887:1;11884:13;11881:39;;;11900:18;;:::i;:::-;-1:-1:-1;11936:9:1;;11823:128::o;12310:414::-;12512:2;12494:21;;;12551:2;12531:18;;;12524:30;12590:34;12585:2;12570:18;;12563:62;-1:-1:-1;;;12656:2:1;12641:18;;12634:48;12714:3;12699:19;;12310:414::o;12729:135::-;12768:3;-1:-1:-1;;12789:17:1;;12786:43;;;12809:18;;:::i;:::-;-1:-1:-1;12856:1:1;12845:13;;12729:135::o;12869:127::-;12930:10;12925:3;12921:20;12918:1;12911:31;12961:4;12958:1;12951:15;12985:4;12982:1;12975:15;13001:120;13041:1;13067;13057:35;;13072:18;;:::i;:::-;-1:-1:-1;13106:9:1;;13001:120::o;13126:112::-;13158:1;13184;13174:35;;13189:18;;:::i;:::-;-1:-1:-1;13223:9:1;;13126:112::o;13243:127::-;13304:10;13299:3;13295:20;13292:1;13285:31;13335:4;13332:1;13325:15;13359:4;13356:1;13349:15;13375:489;-1:-1:-1;;;;;13644:15:1;;;13626:34;;13696:15;;13691:2;13676:18;;13669:43;13743:2;13728:18;;13721:34;;;13791:3;13786:2;13771:18;;13764:31;;;13569:4;;13812:46;;13838:19;;13830:6;13812:46;:::i;:::-;13804:54;13375:489;-1:-1:-1;;;;;;13375:489:1:o;13869:249::-;13938:6;13991:2;13979:9;13970:7;13966:23;13962:32;13959:52;;;14007:1;14004;13997:12;13959:52;14039:9;14033:16;14058:30;14082:5;14058:30;:::i

Swarm Source

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