ERC-721
Overview
Max Total Supply
0 CSA2
Holders
394
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CSA2Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FVCKRENDERXCryptoStampArt
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-24 */ /** *Submitted for verification at Etherscan.io on 2023-07-24 */ // 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/FVCKRENDERXCryptoStampArt.sol pragma solidity ^0.8.4; /// @custom:security-contact thedevs contract FVCKRENDERXCryptoStampArt is ERC721, ERC721Burnable, Ownable { constructor() ERC721("FVCKRENDER X Crypto stamp art", "CSA2") {} 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601d81526020017f4656434b52454e44455220582043727970746f207374616d70206172740000008152506040518060400160405280600481526020016321a9a09960e11b8152508160009081620000769190620001a3565b506001620000858282620001a3565b505050620000a26200009c620000a860201b60201c565b620000ac565b6200026f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012957607f821691505b6020821081036200014a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019e57600081815260208120601f850160051c81016020861015620001795750805b601f850160051c820191505b818110156200019a5782815560010162000185565b5050505b505050565b81516001600160401b03811115620001bf57620001bf620000fe565b620001d781620001d0845462000114565b8462000150565b602080601f8311600181146200020f5760008415620001f65750858301515b600019600386901b1c1916600185901b1785556200019a565b600085815260208120601f198616915b8281101562000240578886015182559484019460019091019084016200021f565b50858210156200025f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6118bf806200027f6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461026a578063b88d4fde1461027d578063c87b56dd14610290578063e985e9c5146102a3578063f2fde38b146102b657600080fd5b806370a0823114610215578063715018a6146102365780638da5cb5b1461023e57806395d89b411461024f578063a14481941461025757600080fd5b806342842e0e116100f457806342842e0e146101c157806342966c68146101d457806355f804b3146101e75780636352211e146101fa5780636c0360eb1461020d57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806323b872dd146101ae575b600080fd5b61014461013f366004611241565b6102c9565b60405190151581526020015b60405180910390f35b61016161031b565b60405161015091906112ae565b61018161017c3660046112c1565b6103ad565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046112f6565b610447565b005b6101ac6101bc366004611320565b61055c565b6101ac6101cf366004611320565b61058e565b6101ac6101e23660046112c1565b6105a9565b6101ac6101f53660046113e8565b610623565b6101816102083660046112c1565b61065d565b6101616106d4565b610228610223366004611431565b6106e3565b604051908152602001610150565b6101ac61076a565b6006546001600160a01b0316610181565b6101616107a0565b6101ac6102653660046112f6565b6107af565b6101ac61027836600461144c565b6107e3565b6101ac61028b366004611488565b6107ee565b61016161029e3660046112c1565b610826565b6101446102b1366004611504565b610901565b6101ac6102c4366004611431565b61092f565b60006001600160e01b031982166380ac58cd60e01b14806102fa57506001600160e01b03198216635b5e139f60e01b145b8061031557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461032a90611537565b80601f016020809104026020016040519081016040528092919081815260200182805461035690611537565b80156103a35780601f10610378576101008083540402835291602001916103a3565b820191906000526020600020905b81548152906001019060200180831161038657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661042b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104528261065d565b9050806001600160a01b0316836001600160a01b0316036104bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610422565b336001600160a01b03821614806104db57506104db8133610901565b61054d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610422565b61055783836109c7565b505050565b610567335b82610a35565b6105835760405162461bcd60e51b815260040161042290611571565b610557838383610b0c565b610557838383604051806020016040528060008152506107ee565b6105b233610561565b6106175760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610422565b61062081610cac565b50565b6006546001600160a01b0316331461064d5760405162461bcd60e51b8152600401610422906115c2565b60076106598282611645565b5050565b6000818152600260205260408120546001600160a01b0316806103155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610422565b60606007805461032a90611537565b60006001600160a01b03821661074e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610422565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107945760405162461bcd60e51b8152600401610422906115c2565b61079e6000610d47565b565b60606001805461032a90611537565b6006546001600160a01b031633146107d95760405162461bcd60e51b8152600401610422906115c2565b6106598282610d99565b610659338383610db3565b6107f83383610a35565b6108145760405162461bcd60e51b815260040161042290611571565b61082084848484610e81565b50505050565b6000818152600260205260409020546060906001600160a01b03166108a55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610422565b60006108af6106d4565b905060008151116108cf57604051806020016040528060008152506108fa565b806108d984610eb4565b6040516020016108ea929190611705565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146109595760405162461bcd60e51b8152600401610422906115c2565b6001600160a01b0381166109be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b61062081610d47565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109fc8261065d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610aae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610422565b6000610ab98361065d565b9050806001600160a01b0316846001600160a01b03161480610af45750836001600160a01b0316610ae9846103ad565b6001600160a01b0316145b80610b045750610b048185610901565b949350505050565b826001600160a01b0316610b1f8261065d565b6001600160a01b031614610b875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610422565b6001600160a01b038216610be95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b610bf46000826109c7565b6001600160a01b0383166000908152600360205260408120805460019290610c1d90849061174a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c4b90849061175d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610cb78261065d565b9050610cc46000836109c7565b6001600160a01b0381166000908152600360205260408120805460019290610ced90849061174a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610659828260405180602001604052806000815250610fb5565b816001600160a01b0316836001600160a01b031603610e145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610422565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e8c848484610b0c565b610e9884848484610fe8565b6108205760405162461bcd60e51b815260040161042290611770565b606081600003610edb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f055780610eef816117c2565b9150610efe9050600a836117f1565b9150610edf565b60008167ffffffffffffffff811115610f2057610f2061135c565b6040519080825280601f01601f191660200182016040528015610f4a576020820181803683370190505b5090505b8415610b0457610f5f60018361174a565b9150610f6c600a86611805565b610f7790603061175d565b60f81b818381518110610f8c57610f8c611819565b60200101906001600160f81b031916908160001a905350610fae600a866117f1565b9450610f4e565b610fbf83836110e9565b610fcc6000848484610fe8565b6105575760405162461bcd60e51b815260040161042290611770565b60006001600160a01b0384163b156110de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061102c90339089908890889060040161182f565b6020604051808303816000875af1925050508015611067575060408051601f3d908101601f191682019092526110649181019061186c565b60015b6110c4573d808015611095576040519150601f19603f3d011682016040523d82523d6000602084013e61109a565b606091505b5080516000036110bc5760405162461bcd60e51b815260040161042290611770565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b04565b506001949350505050565b6001600160a01b03821661113f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610422565b6000818152600260205260409020546001600160a01b0316156111a45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610422565b6001600160a01b03821660009081526003602052604081208054600192906111cd90849061175d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461062057600080fd5b60006020828403121561125357600080fd5b81356108fa8161122b565b60005b83811015611279578181015183820152602001611261565b50506000910152565b6000815180845261129a81602086016020860161125e565b601f01601f19169290920160200192915050565b6020815260006108fa6020830184611282565b6000602082840312156112d357600080fd5b5035919050565b80356001600160a01b03811681146112f157600080fd5b919050565b6000806040838503121561130957600080fd5b611312836112da565b946020939093013593505050565b60008060006060848603121561133557600080fd5b61133e846112da565b925061134c602085016112da565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561138d5761138d61135c565b604051601f8501601f19908116603f011681019082821181831017156113b5576113b561135c565b816040528093508581528686860111156113ce57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156113fa57600080fd5b813567ffffffffffffffff81111561141157600080fd5b8201601f8101841361142257600080fd5b610b0484823560208401611372565b60006020828403121561144357600080fd5b6108fa826112da565b6000806040838503121561145f57600080fd5b611468836112da565b91506020830135801515811461147d57600080fd5b809150509250929050565b6000806000806080858703121561149e57600080fd5b6114a7856112da565b93506114b5602086016112da565b925060408501359150606085013567ffffffffffffffff8111156114d857600080fd5b8501601f810187136114e957600080fd5b6114f887823560208401611372565b91505092959194509250565b6000806040838503121561151757600080fd5b611520836112da565b915061152e602084016112da565b90509250929050565b600181811c9082168061154b57607f821691505b60208210810361156b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561055757600081815260208120601f850160051c8101602086101561161e5750805b601f850160051c820191505b8181101561163d5782815560010161162a565b505050505050565b815167ffffffffffffffff81111561165f5761165f61135c565b6116738161166d8454611537565b846115f7565b602080601f8311600181146116a857600084156116905750858301515b600019600386901b1c1916600185901b17855561163d565b600085815260208120601f198616915b828110156116d7578886015182559484019460019091019084016116b8565b50858210156116f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000835161171781846020880161125e565b83519083019061172b81836020880161125e565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561031557610315611734565b8082018082111561031557610315611734565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016117d4576117d4611734565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611800576118006117db565b500490565b600082611814576118146117db565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061186290830184611282565b9695505050505050565b60006020828403121561187e57600080fd5b81516108fa8161122b56fea2646970667358221220c4a96ad6cf04ac7b76905aa2521a325f50c38c054e16f1a4a938e75585591a9a64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb4651461026a578063b88d4fde1461027d578063c87b56dd14610290578063e985e9c5146102a3578063f2fde38b146102b657600080fd5b806370a0823114610215578063715018a6146102365780638da5cb5b1461023e57806395d89b411461024f578063a14481941461025757600080fd5b806342842e0e116100f457806342842e0e146101c157806342966c68146101d457806355f804b3146101e75780636352211e146101fa5780636c0360eb1461020d57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806323b872dd146101ae575b600080fd5b61014461013f366004611241565b6102c9565b60405190151581526020015b60405180910390f35b61016161031b565b60405161015091906112ae565b61018161017c3660046112c1565b6103ad565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046112f6565b610447565b005b6101ac6101bc366004611320565b61055c565b6101ac6101cf366004611320565b61058e565b6101ac6101e23660046112c1565b6105a9565b6101ac6101f53660046113e8565b610623565b6101816102083660046112c1565b61065d565b6101616106d4565b610228610223366004611431565b6106e3565b604051908152602001610150565b6101ac61076a565b6006546001600160a01b0316610181565b6101616107a0565b6101ac6102653660046112f6565b6107af565b6101ac61027836600461144c565b6107e3565b6101ac61028b366004611488565b6107ee565b61016161029e3660046112c1565b610826565b6101446102b1366004611504565b610901565b6101ac6102c4366004611431565b61092f565b60006001600160e01b031982166380ac58cd60e01b14806102fa57506001600160e01b03198216635b5e139f60e01b145b8061031557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461032a90611537565b80601f016020809104026020016040519081016040528092919081815260200182805461035690611537565b80156103a35780601f10610378576101008083540402835291602001916103a3565b820191906000526020600020905b81548152906001019060200180831161038657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661042b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104528261065d565b9050806001600160a01b0316836001600160a01b0316036104bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610422565b336001600160a01b03821614806104db57506104db8133610901565b61054d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610422565b61055783836109c7565b505050565b610567335b82610a35565b6105835760405162461bcd60e51b815260040161042290611571565b610557838383610b0c565b610557838383604051806020016040528060008152506107ee565b6105b233610561565b6106175760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610422565b61062081610cac565b50565b6006546001600160a01b0316331461064d5760405162461bcd60e51b8152600401610422906115c2565b60076106598282611645565b5050565b6000818152600260205260408120546001600160a01b0316806103155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610422565b60606007805461032a90611537565b60006001600160a01b03821661074e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610422565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107945760405162461bcd60e51b8152600401610422906115c2565b61079e6000610d47565b565b60606001805461032a90611537565b6006546001600160a01b031633146107d95760405162461bcd60e51b8152600401610422906115c2565b6106598282610d99565b610659338383610db3565b6107f83383610a35565b6108145760405162461bcd60e51b815260040161042290611571565b61082084848484610e81565b50505050565b6000818152600260205260409020546060906001600160a01b03166108a55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610422565b60006108af6106d4565b905060008151116108cf57604051806020016040528060008152506108fa565b806108d984610eb4565b6040516020016108ea929190611705565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b031633146109595760405162461bcd60e51b8152600401610422906115c2565b6001600160a01b0381166109be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b61062081610d47565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109fc8261065d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610aae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610422565b6000610ab98361065d565b9050806001600160a01b0316846001600160a01b03161480610af45750836001600160a01b0316610ae9846103ad565b6001600160a01b0316145b80610b045750610b048185610901565b949350505050565b826001600160a01b0316610b1f8261065d565b6001600160a01b031614610b875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610422565b6001600160a01b038216610be95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b610bf46000826109c7565b6001600160a01b0383166000908152600360205260408120805460019290610c1d90849061174a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c4b90849061175d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610cb78261065d565b9050610cc46000836109c7565b6001600160a01b0381166000908152600360205260408120805460019290610ced90849061174a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610659828260405180602001604052806000815250610fb5565b816001600160a01b0316836001600160a01b031603610e145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610422565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e8c848484610b0c565b610e9884848484610fe8565b6108205760405162461bcd60e51b815260040161042290611770565b606081600003610edb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f055780610eef816117c2565b9150610efe9050600a836117f1565b9150610edf565b60008167ffffffffffffffff811115610f2057610f2061135c565b6040519080825280601f01601f191660200182016040528015610f4a576020820181803683370190505b5090505b8415610b0457610f5f60018361174a565b9150610f6c600a86611805565b610f7790603061175d565b60f81b818381518110610f8c57610f8c611819565b60200101906001600160f81b031916908160001a905350610fae600a866117f1565b9450610f4e565b610fbf83836110e9565b610fcc6000848484610fe8565b6105575760405162461bcd60e51b815260040161042290611770565b60006001600160a01b0384163b156110de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061102c90339089908890889060040161182f565b6020604051808303816000875af1925050508015611067575060408051601f3d908101601f191682019092526110649181019061186c565b60015b6110c4573d808015611095576040519150601f19603f3d011682016040523d82523d6000602084013e61109a565b606091505b5080516000036110bc5760405162461bcd60e51b815260040161042290611770565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b04565b506001949350505050565b6001600160a01b03821661113f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610422565b6000818152600260205260409020546001600160a01b0316156111a45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610422565b6001600160a01b03821660009081526003602052604081208054600192906111cd90849061175d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461062057600080fd5b60006020828403121561125357600080fd5b81356108fa8161122b565b60005b83811015611279578181015183820152602001611261565b50506000910152565b6000815180845261129a81602086016020860161125e565b601f01601f19169290920160200192915050565b6020815260006108fa6020830184611282565b6000602082840312156112d357600080fd5b5035919050565b80356001600160a01b03811681146112f157600080fd5b919050565b6000806040838503121561130957600080fd5b611312836112da565b946020939093013593505050565b60008060006060848603121561133557600080fd5b61133e846112da565b925061134c602085016112da565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561138d5761138d61135c565b604051601f8501601f19908116603f011681019082821181831017156113b5576113b561135c565b816040528093508581528686860111156113ce57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156113fa57600080fd5b813567ffffffffffffffff81111561141157600080fd5b8201601f8101841361142257600080fd5b610b0484823560208401611372565b60006020828403121561144357600080fd5b6108fa826112da565b6000806040838503121561145f57600080fd5b611468836112da565b91506020830135801515811461147d57600080fd5b809150509250929050565b6000806000806080858703121561149e57600080fd5b6114a7856112da565b93506114b5602086016112da565b925060408501359150606085013567ffffffffffffffff8111156114d857600080fd5b8501601f810187136114e957600080fd5b6114f887823560208401611372565b91505092959194509250565b6000806040838503121561151757600080fd5b611520836112da565b915061152e602084016112da565b90509250929050565b600181811c9082168061154b57607f821691505b60208210810361156b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561055757600081815260208120601f850160051c8101602086101561161e5750805b601f850160051c820191505b8181101561163d5782815560010161162a565b505050505050565b815167ffffffffffffffff81111561165f5761165f61135c565b6116738161166d8454611537565b846115f7565b602080601f8311600181146116a857600084156116905750858301515b600019600386901b1c1916600185901b17855561163d565b600085815260208120601f198616915b828110156116d7578886015182559484019460019091019084016116b8565b50858210156116f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000835161171781846020880161125e565b83519083019061172b81836020880161125e565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561031557610315611734565b8082018082111561031557610315611734565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016117d4576117d4611734565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611800576118006117db565b500490565b600082611814576118146117db565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061186290830184611282565b9695505050505050565b60006020828403121561187e57600080fd5b81516108fa8161122b56fea2646970667358221220c4a96ad6cf04ac7b76905aa2521a325f50c38c054e16f1a4a938e75585591a9a64736f6c63430008120033
Deployed Bytecode Sourcemap
37191:616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23846:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23846:305:0;;;;;;;;24791:100;;;:::i;:::-;;;;;;;:::i;26350:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;26350:221:0;1533:203:1;25873:411:0;;;;;;:::i;:::-;;:::i;:::-;;27100:339;;;;;;:::i;:::-;;:::i;27510:185::-;;;;;;:::i;:::-;;:::i;36822:245::-;;;;;;:::i;:::-;;:::i;37710:94::-;;;;;;:::i;:::-;;:::i;24485:239::-;;;;;;:::i;:::-;;:::i;37604:94::-;;;:::i;24215:208::-;;;;;;:::i;:::-;;:::i;:::-;;;4073:25:1;;;4061:2;4046:18;24215:208:0;3927:177:1;4834:103:0;;;:::i;4183:87::-;4256:6;;-1:-1:-1;;;;;4256:6:0;4183:87;;24960:104;;;:::i;37491:105::-;;;;;;:::i;:::-;;:::i;26643:155::-;;;;;;:::i;:::-;;:::i;27766:328::-;;;;;;:::i;:::-;;:::i;25135:334::-;;;;;;:::i;:::-;;:::i;26869:164::-;;;;;;:::i;:::-;;:::i;5092:201::-;;;;;;:::i;:::-;;:::i;23846:305::-;23948:4;-1:-1:-1;;;;;;23985:40:0;;-1:-1:-1;;;23985:40:0;;:105;;-1:-1:-1;;;;;;;24042:48:0;;-1:-1:-1;;;24042:48:0;23985:105;:158;;;-1:-1:-1;;;;;;;;;;16724:40:0;;;24107:36;23965:178;23846:305;-1:-1:-1;;23846:305:0:o;24791:100::-;24845:13;24878:5;24871:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24791:100;:::o;26350:221::-;26426:7;29693:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29693:16:0;26446:73;;;;-1:-1:-1;;;26446:73:0;;5985:2:1;26446:73:0;;;5967:21:1;6024:2;6004:18;;;5997:30;6063:34;6043:18;;;6036:62;-1:-1:-1;;;6114:18:1;;;6107:42;6166:19;;26446:73:0;;;;;;;;;-1:-1:-1;26539:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26539:24:0;;26350:221::o;25873:411::-;25954:13;25970:23;25985:7;25970:14;:23::i;:::-;25954:39;;26018:5;-1:-1:-1;;;;;26012:11:0;:2;-1:-1:-1;;;;;26012:11:0;;26004:57;;;;-1:-1:-1;;;26004:57:0;;6398:2:1;26004:57:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:31;6568:19;;26004:57:0;6196:397:1;26004:57:0;2987:10;-1:-1:-1;;;;;26096:21:0;;;;:62;;-1:-1:-1;26121:37:0;26138:5;2987:10;26869:164;:::i;26121:37::-;26074:168;;;;-1:-1:-1;;;26074:168:0;;6800:2:1;26074:168:0;;;6782:21:1;6839:2;6819:18;;;6812:30;6878:34;6858:18;;;6851:62;6949:26;6929:18;;;6922:54;6993:19;;26074:168:0;6598:420:1;26074:168:0;26255:21;26264:2;26268:7;26255:8;:21::i;:::-;25943:341;25873:411;;:::o;27100:339::-;27295:41;2987:10;27314:12;27328:7;27295:18;:41::i;:::-;27287:103;;;;-1:-1:-1;;;27287:103:0;;;;;;;:::i;:::-;27403:28;27413:4;27419:2;27423:7;27403:9;:28::i;27510:185::-;27648:39;27665:4;27671:2;27675:7;27648:39;;;;;;;;;;;;:16;:39::i;36822:245::-;36940:41;2987:10;36959:12;2907:98;36940:41;36932:102;;;;-1:-1:-1;;;36932:102:0;;7643:2:1;36932:102:0;;;7625:21:1;7682:2;7662:18;;;7655:30;7721:34;7701:18;;;7694:62;-1:-1:-1;;;7772:18:1;;;7765:46;7828:19;;36932:102:0;7441:412:1;36932:102:0;37045:14;37051:7;37045:5;:14::i;:::-;36822:245;:::o;37710:94::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;37777:13:::1;:19;37793:3:::0;37777:13;:19:::1;:::i;:::-;;37710:94:::0;:::o;24485:239::-;24557:7;24593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24593:16:0;;24620:73;;;;-1:-1:-1;;;24620:73:0;;10625:2:1;24620:73:0;;;10607:21:1;10664:2;10644:18;;;10637:30;10703:34;10683:18;;;10676:62;-1:-1:-1;;;10754:18:1;;;10747:39;10803:19;;24620:73:0;10423:405:1;37604:94:0;37644:13;37677;37670:20;;;;;:::i;24215:208::-;24287:7;-1:-1:-1;;;;;24315:19:0;;24307:74;;;;-1:-1:-1;;;24307:74:0;;11035:2:1;24307:74:0;;;11017:21:1;11074:2;11054:18;;;11047:30;11113:34;11093:18;;;11086:62;-1:-1:-1;;;11164:18:1;;;11157:40;11214:19;;24307:74:0;10833:406:1;24307:74:0;-1:-1:-1;;;;;;24399:16:0;;;;;:9;:16;;;;;;;24215:208::o;4834:103::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;4899:30:::1;4926:1;4899:18;:30::i;:::-;4834:103::o:0;24960:104::-;25016:13;25049:7;25042:14;;;;;:::i;37491:105::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;37566:22:::1;37576:2;37580:7;37566:9;:22::i;26643:155::-:0;26738:52;2987:10;26771:8;26781;26738:18;:52::i;27766:328::-;27941:41;2987:10;27974:7;27941:18;:41::i;:::-;27933:103;;;;-1:-1:-1;;;27933:103:0;;;;;;;:::i;:::-;28047:39;28061:4;28067:2;28071:7;28080:5;28047:13;:39::i;:::-;27766:328;;;;:::o;25135:334::-;29669:4;29693:16;;;:7;:16;;;;;;25208:13;;-1:-1:-1;;;;;29693:16:0;25234:76;;;;-1:-1:-1;;;25234:76:0;;11446:2:1;25234:76:0;;;11428:21:1;11485:2;11465:18;;;11458:30;11524:34;11504:18;;;11497:62;-1:-1:-1;;;11575:18:1;;;11568:45;11630:19;;25234:76:0;11244:411:1;25234:76:0;25323:21;25347:10;:8;:10::i;:::-;25323:34;;25399:1;25381:7;25375:21;:25;:86;;;;;;;;;;;;;;;;;25427:7;25436:18;:7;:16;:18::i;:::-;25410:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25375:86;25368:93;25135:334;-1:-1:-1;;;25135:334:0:o;26869:164::-;-1:-1:-1;;;;;26990:25:0;;;26966:4;26990:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26869:164::o;5092:201::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5181:22:0;::::1;5173:73;;;::::0;-1:-1:-1;;;5173:73:0;;12363:2:1;5173:73:0::1;::::0;::::1;12345:21:1::0;12402:2;12382:18;;;12375:30;12441:34;12421:18;;;12414:62;-1:-1:-1;;;12492:18:1;;;12485:36;12538:19;;5173:73:0::1;12161:402:1::0;5173:73:0::1;5257:28;5276:8;5257:18;:28::i;33586:174::-:0;33661:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33661:29:0;-1:-1:-1;;;;;33661:29:0;;;;;;;;:24;;33715:23;33661:24;33715:14;:23::i;:::-;-1:-1:-1;;;;;33706:46:0;;;;;;;;;;;33586:174;;:::o;29898:348::-;29991:4;29693:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29693:16:0;30008:73;;;;-1:-1:-1;;;30008:73:0;;12770:2:1;30008:73:0;;;12752:21:1;12809:2;12789:18;;;12782:30;12848:34;12828:18;;;12821:62;-1:-1:-1;;;12899:18:1;;;12892:42;12951:19;;30008:73:0;12568:408:1;30008:73:0;30092:13;30108:23;30123:7;30108:14;:23::i;:::-;30092:39;;30161:5;-1:-1:-1;;;;;30150:16:0;:7;-1:-1:-1;;;;;30150:16:0;;:51;;;;30194:7;-1:-1:-1;;;;;30170:31:0;:20;30182:7;30170:11;:20::i;:::-;-1:-1:-1;;;;;30170:31:0;;30150:51;:87;;;;30205:32;30222:5;30229:7;30205:16;:32::i;:::-;30142:96;29898:348;-1:-1:-1;;;;29898:348:0:o;32890:578::-;33049:4;-1:-1:-1;;;;;33022:31:0;:23;33037:7;33022:14;:23::i;:::-;-1:-1:-1;;;;;33022:31:0;;33014:85;;;;-1:-1:-1;;;33014:85:0;;13183:2:1;33014:85:0;;;13165:21:1;13222:2;13202:18;;;13195:30;13261:34;13241:18;;;13234:62;-1:-1:-1;;;13312:18:1;;;13305:39;13361:19;;33014:85:0;12981:405:1;33014:85:0;-1:-1:-1;;;;;33118:16:0;;33110:65;;;;-1:-1:-1;;;33110:65:0;;13593:2:1;33110:65:0;;;13575:21:1;13632:2;13612:18;;;13605:30;13671:34;13651:18;;;13644:62;-1:-1:-1;;;13722:18:1;;;13715:34;13766:19;;33110:65:0;13391:400:1;33110:65:0;33292:29;33309:1;33313:7;33292:8;:29::i;:::-;-1:-1:-1;;;;;33334:15:0;;;;;;:9;:15;;;;;:20;;33353:1;;33334:15;:20;;33353:1;;33334:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33365:13:0;;;;;;:9;:13;;;;;:18;;33382:1;;33365:13;:18;;33382:1;;33365:18;:::i;:::-;;;;-1:-1:-1;;33394:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33394:21:0;-1:-1:-1;;;;;33394:21:0;;;;;;;;;33433:27;;33394:16;;33433:27;;;;;;;32890:578;;;:::o;32193:360::-;32253:13;32269:23;32284:7;32269:14;:23::i;:::-;32253:39;;32394:29;32411:1;32415:7;32394:8;:29::i;:::-;-1:-1:-1;;;;;32436:16:0;;;;;;:9;:16;;;;;:21;;32456:1;;32436:16;:21;;32456:1;;32436:21;:::i;:::-;;;;-1:-1:-1;;32475:16:0;;;;:7;:16;;;;;;32468:23;;-1:-1:-1;;;;;;32468:23:0;;;32509:36;32483:7;;32475:16;-1:-1:-1;;;;;32509:36:0;;;;;32475:16;;32509:36;32242:311;32193:360;:::o;5453:191::-;5546:6;;;-1:-1:-1;;;;;5563:17:0;;;-1:-1:-1;;;;;;5563:17:0;;;;;;;5596:40;;5546:6;;;5563:17;5546:6;;5596:40;;5527:16;;5596:40;5516:128;5453:191;:::o;30588:110::-;30664:26;30674:2;30678:7;30664:26;;;;;;;;;;;;:9;:26::i;33902:315::-;34057:8;-1:-1:-1;;;;;34048:17:0;:5;-1:-1:-1;;;;;34048:17:0;;34040:55;;;;-1:-1:-1;;;34040:55:0;;14393:2:1;34040:55:0;;;14375:21:1;14432:2;14412:18;;;14405:30;14471:27;14451:18;;;14444:55;14516:18;;34040:55:0;14191:349:1;34040:55:0;-1:-1:-1;;;;;34106:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34106:46:0;;;;;;;;;;34168:41;;540::1;;;34168::0;;513:18:1;34168:41:0;;;;;;;33902:315;;;:::o;28976:::-;29133:28;29143:4;29149:2;29153:7;29133:9;:28::i;:::-;29180:48;29203:4;29209:2;29213:7;29222:5;29180:22;:48::i;:::-;29172:111;;;;-1:-1:-1;;;29172:111:0;;;;;;;:::i;469:723::-;525:13;746:5;755:1;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;30925:321;31055:18;31061:2;31065:7;31055:5;:18::i;:::-;31106:54;31137:1;31141:2;31145:7;31154:5;31106:22;:54::i;:::-;31084:154;;;;-1:-1:-1;;;31084:154:0;;;;;;;:::i;34782:799::-;34937:4;-1:-1:-1;;;;;34958:13:0;;6794:20;6842:8;34954:620;;34994:72;;-1:-1:-1;;;34994:72:0;;-1:-1:-1;;;;;34994:36:0;;;;;:72;;2987:10;;35045:4;;35051:7;;35060:5;;34994:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34994:72:0;;;;;;;;-1:-1:-1;;34994:72:0;;;;;;;;;;;;:::i;:::-;;;34990:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35236:6;:13;35253:1;35236:18;35232:272;;35279:60;;-1:-1:-1;;;35279:60:0;;;;;;;:::i;35232:272::-;35454:6;35448:13;35439:6;35435:2;35431:15;35424:38;34990:529;-1:-1:-1;;;;;;35117:51:0;-1:-1:-1;;;35117:51:0;;-1:-1:-1;35110:58:0;;34954:620;-1:-1:-1;35558:4:0;34782:799;;;;;;:::o;31582:382::-;-1:-1:-1;;;;;31662:16:0;;31654:61;;;;-1:-1:-1;;;31654:61:0;;16560:2:1;31654:61:0;;;16542:21:1;;;16579:18;;;16572:30;16638:34;16618:18;;;16611:62;16690:18;;31654:61:0;16358:356:1;31654:61:0;29669:4;29693:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29693:16:0;:30;31726:58;;;;-1:-1:-1;;;31726:58:0;;16921:2:1;31726:58:0;;;16903:21:1;16960:2;16940:18;;;16933:30;16999;16979:18;;;16972:58;17047:18;;31726:58:0;16719:352:1;31726:58:0;-1:-1:-1;;;;;31855:13:0;;;;;;:9;:13;;;;;:18;;31872:1;;31855:13;:18;;31872:1;;31855:18;:::i;:::-;;;;-1:-1:-1;;31884:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31884:21:0;-1:-1:-1;;;;;31884:21:0;;;;;;;;31923:33;;31884:16;;;31923:33;;31884:16;;31923:33;31582:382;;:::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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:328::-;2255:6;2263;2271;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2363:29;2382:9;2363:29;:::i;:::-;2353:39;;2411:38;2445:2;2434:9;2430:18;2411:38;:::i;:::-;2401:48;;2496:2;2485:9;2481:18;2468:32;2458:42;;2178:328;;;;;:::o;2511:127::-;2572:10;2567:3;2563:20;2560:1;2553:31;2603:4;2600:1;2593:15;2627:4;2624:1;2617:15;2643:632;2708:5;2738:18;2779:2;2771:6;2768:14;2765:40;;;2785:18;;:::i;:::-;2860:2;2854:9;2828:2;2914:15;;-1:-1:-1;;2910:24:1;;;2936:2;2906:33;2902:42;2890:55;;;2960:18;;;2980:22;;;2957:46;2954:72;;;3006:18;;:::i;:::-;3046:10;3042:2;3035:22;3075:6;3066:15;;3105:6;3097;3090:22;3145:3;3136:6;3131:3;3127:16;3124:25;3121:45;;;3162:1;3159;3152:12;3121:45;3212:6;3207:3;3200:4;3192:6;3188:17;3175:44;3267:1;3260:4;3251:6;3243;3239:19;3235:30;3228:41;;;;2643:632;;;;;:::o;3280:451::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3458:9;3445:23;3491:18;3483:6;3480:30;3477:50;;;3523:1;3520;3513:12;3477:50;3546:22;;3599:4;3591:13;;3587:27;-1:-1:-1;3577:55:1;;3628:1;3625;3618:12;3577:55;3651:74;3717:7;3712:2;3699:16;3694:2;3690;3686:11;3651:74;:::i;3736:186::-;3795:6;3848:2;3836:9;3827:7;3823:23;3819:32;3816:52;;;3864:1;3861;3854:12;3816:52;3887:29;3906:9;3887:29;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;7023:413::-;7225:2;7207:21;;;7264:2;7244:18;;;7237:30;7303:34;7298:2;7283:18;;7276:62;-1:-1:-1;;;7369:2:1;7354:18;;7347:47;7426:3;7411:19;;7023:413::o;7858:356::-;8060:2;8042:21;;;8079:18;;;8072:30;8138:34;8133:2;8118:18;;8111:62;8205:2;8190:18;;7858:356::o;8345:545::-;8447:2;8442:3;8439:11;8436:448;;;8483:1;8508:5;8504:2;8497:17;8553:4;8549:2;8539:19;8623:2;8611:10;8607:19;8604:1;8600:27;8594:4;8590:38;8659:4;8647:10;8644:20;8641:47;;;-1:-1:-1;8682:4:1;8641:47;8737:2;8732:3;8728:12;8725:1;8721:20;8715:4;8711:31;8701:41;;8792:82;8810:2;8803:5;8800:13;8792:82;;;8855:17;;;8836:1;8825:13;8792:82;;;8796:3;;;8345:545;;;:::o;9066:1352::-;9192:3;9186:10;9219:18;9211:6;9208:30;9205:56;;;9241:18;;:::i;:::-;9270:97;9360:6;9320:38;9352:4;9346:11;9320:38;:::i;:::-;9314:4;9270:97;:::i;:::-;9422:4;;9486:2;9475:14;;9503:1;9498:663;;;;10205:1;10222:6;10219:89;;;-1:-1:-1;10274:19:1;;;10268:26;10219:89;-1:-1:-1;;9023:1:1;9019:11;;;9015:24;9011:29;9001:40;9047:1;9043:11;;;8998:57;10321:81;;9468:944;;9498:663;8292:1;8285:14;;;8329:4;8316:18;;-1:-1:-1;;9534:20:1;;;9652:236;9666:7;9663:1;9660:14;9652:236;;;9755:19;;;9749:26;9734:42;;9847:27;;;;9815:1;9803:14;;;;9682:19;;9652:236;;;9656:3;9916:6;9907:7;9904:19;9901:201;;;9977:19;;;9971:26;-1:-1:-1;;10060:1:1;10056:14;;;10072:3;10052:24;10048:37;10044:42;10029:58;10014:74;;9901:201;-1:-1:-1;;;;;10148:1:1;10132:14;;;10128:22;10115:36;;-1:-1:-1;9066:1352:1:o;11660:496::-;11839:3;11877:6;11871:13;11893:66;11952:6;11947:3;11940:4;11932:6;11928:17;11893:66;:::i;:::-;12022:13;;11981:16;;;;12044:70;12022:13;11981:16;12091:4;12079:17;;12044:70;:::i;:::-;12130:20;;11660:496;-1:-1:-1;;;;11660:496:1:o;13796:127::-;13857:10;13852:3;13848:20;13845:1;13838:31;13888:4;13885:1;13878:15;13912:4;13909:1;13902:15;13928:128;13995:9;;;14016:11;;;14013:37;;;14030:18;;:::i;14061:125::-;14126:9;;;14147:10;;;14144:36;;;14160:18;;:::i;14545:414::-;14747:2;14729:21;;;14786:2;14766:18;;;14759:30;14825:34;14820:2;14805:18;;14798:62;-1:-1:-1;;;14891:2:1;14876:18;;14869:48;14949:3;14934:19;;14545:414::o;14964:135::-;15003:3;15024:17;;;15021:43;;15044:18;;:::i;:::-;-1:-1:-1;15091:1:1;15080:13;;14964:135::o;15104:127::-;15165:10;15160:3;15156:20;15153:1;15146:31;15196:4;15193:1;15186:15;15220:4;15217:1;15210:15;15236:120;15276:1;15302;15292:35;;15307:18;;:::i;:::-;-1:-1:-1;15341:9:1;;15236:120::o;15361:112::-;15393:1;15419;15409:35;;15424:18;;:::i;:::-;-1:-1:-1;15458:9:1;;15361:112::o;15478:127::-;15539:10;15534:3;15530:20;15527:1;15520:31;15570:4;15567:1;15560:15;15594:4;15591:1;15584:15;15610:489;-1:-1:-1;;;;;15879:15:1;;;15861:34;;15931:15;;15926:2;15911:18;;15904:43;15978:2;15963:18;;15956:34;;;16026:3;16021:2;16006:18;;15999:31;;;15804:4;;16047:46;;16073:19;;16065:6;16047:46;:::i;:::-;16039:54;15610:489;-1:-1:-1;;;;;;15610:489:1:o;16104:249::-;16173:6;16226:2;16214:9;16205:7;16201:23;16197:32;16194:52;;;16242:1;16239;16232:12;16194:52;16274:9;16268:16;16293:30;16317:5;16293:30;:::i
Swarm Source
ipfs://c4a96ad6cf04ac7b76905aa2521a325f50c38c054e16f1a4a938e75585591a9a
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.