ETH Price: $1,915.39 (-10.00%)
 

Overview

Max Total Supply

0 KPRV2

Holders

2,416

Market

Volume (24H)

0.0795 ETH

Min Price (24H)

$74.80 @ 0.039054 ETH

Max Price (24H)

$77.48 @ 0.040449 ETH
Filtered by Token Holder
treeso.eth
Balance
0 KPRV2
0x3a4a6d03449f855ecbc2cf694296938bd82e1fd6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

KPR will empower the most talented creators of today with the technology of tomorrow. Our goal is to bridge art, stories, and technology to reimagine and onboard the future of Web3.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KPRV2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : KPRV2.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {OperatorFilterer} from "closedsea/OperatorFilterer.sol";
error InvalidInput();
error NotOwnerOfToken();
error MaxSupplyReached();
/// @notice Updated KPR contract that includes marketplace filtering features.
/// @notice The original contract can be found at 0x05da517B1bf9999B7762EaEfa8372341A1a47559.
contract KPRV2 is Ownable, OperatorFilterer, ERC2981, ERC721 {
using Strings for uint256;
// Values copied from the original contract
uint256 public constant MAX_SUPPLY = 10000;
uint256 public constant TOKEN_ID_SHIFT = 5022;
string public constant PROVENANCE_HASH = "e0dad7bc28b31465903aee7b0fa3d2d1c6b28ec74f05de33ec682d85127428c4";
string public baseURI = "https://metadata.kprverse.com/metadata/";
address public constant KPR_MULTISIG = 0xF250d5584d682ba2F555197Bd26B58E83d7CA4C6;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 15 : OperatorFilterer.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
/// @dev The default OpenSea operator blocklist subscription.
address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
/// @dev The OpenSea operator filter registry.
address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;
/// @dev Registers the current contract to OpenSea's operator filter,
/// and subscribe to the default OpenSea operator blocklist.
/// Note: Will not revert nor update existing settings for repeated registration.
function _registerForOperatorFiltering() internal virtual {
_registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
}
/// @dev Registers the current contract to OpenSea's operator filter.
/// Note: Will not revert nor update existing settings for repeated registration.
function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
internal
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 15 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 15 : IERC2981.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard.
*
* A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
* support for royalty payments across all NFT marketplaces and ecosystem participants.
*
* _Available since v4.5._
*/
interface IERC2981 is IERC165 {
/**
* @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 15 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 15 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 15 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 15 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 15 : ERC2981.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)
pragma solidity ^0.8.0;
import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
*
* Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
*
* Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
* fee is specified in basis points by default.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*
* _Available since v4.5._
*/
abstract contract ERC2981 is IERC2981, ERC165 {
struct RoyaltyInfo {
address receiver;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 15 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 15 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
// 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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 15 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 15 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 15 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 15 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"closedsea/=lib/closedsea/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/closedsea/lib/openzeppelin-contracts/lib/erc4626-tests/",
"erc721a-upgradeable/=lib/closedsea/lib/erc721a-upgradeable/contracts/",
"erc721a/=lib/closedsea/lib/erc721a/contracts/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts-upgradeable/=lib/closedsea/lib/openzeppelin-contracts-upgradeable/contracts/",
"openzeppelin-contracts/=lib/closedsea/lib/openzeppelin-contracts/contracts/",
"operator-filter-registry/=lib/closedsea/lib/operator-filter-registry/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"bytecodeHash": "ipfs"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidInput","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"KPR_MULTISIG","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ID_SHIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"deleteDefaultRoyalty","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":"numberAirdropped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","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"}]

60e060405260276080818152906200236460a03960099062000022908262000387565b50600a805460ff191660011790553480156200003d57600080fd5b506040518060400160405280600a81526020016925b2b2b832b939902b1960b11b8152506040518060400160405280600581526020016425a8292b1960d91b8152506200009962000093620000ec60201b60201c565b620000f0565b6003620000a7838262000387565b506004620000b6828262000387565b50620000c491505062000140565b620000e673f250d5584d682ba2f555197bd26b58e83d7ca4c66101f462000163565b62000453565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b62000161733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000268565b565b6127106001600160601b0382161115620001d75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200022f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001ce565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600155565b6001600160a01b0390911690637d3e3dbe81620002985782620002915750634420e48662000298565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620002d8578060005160e01c03620002d857600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030d57607f821691505b6020821081036200032e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200038257600081815260208120601f850160051c810160208610156200035d5750805b601f850160051c820191505b818110156200037e5782815560010162000369565b5050505b505050565b81516001600160401b03811115620003a357620003a3620002e2565b620003bb81620003b48454620002f8565b8462000334565b602080601f831160018114620003f35760008415620003da5750858301515b600019600386901b1c1916600185901b1785556200037e565b600085815260208120601f198616915b82811015620004245788860151825594840194600190910190840162000403565b5085821015620004435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611f0180620004636000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063b7c0b8e8116100a2578063f2c1459f11610071578063f2c1459f146103d3578063f2fde38b146103dc578063fb796e6c146103ef578063ff1b6556146103fc57600080fd5b8063b7c0b8e814610387578063b88d4fde1461039a578063c87b56dd146103ad578063e985e9c5146103c057600080fd5b806395d89b41116100de57806395d89b411461035b578063970cba7114610363578063a22cb4651461036c578063aa1b103f1461037f57600080fd5b806370a082311461032f578063715018a6146103425780638da5cb5b1461034a57600080fd5b80632a55205a1161017157806355f804b31161014b57806355f804b3146102ee5780636352211e1461030157806367243482146103145780636c0360eb1461032757600080fd5b80632a55205a1461029257806332cb6b0c146102c457806342842e0e146102db57600080fd5b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806323b872dd146102645780632979fb831461027757600080fd5b806301ffc9a7146101d457806304634d8d146101fc57806306fdde0314610211575b600080fd5b6101e76101e236600461168f565b610404565b60405190151581526020015b60405180910390f35b61020f61020a3660046116c8565b610415565b005b61021961042b565b6040516101f3919061175b565b61023961023436600461176e565b6104bd565b6040516001600160a01b0390911681526020016101f3565b61020f61025f366004611787565b6104e4565b61020f6102723660046117b1565b610508565b61023973f250d5584d682ba2f555197bd26b58e83d7ca4c681565b6102a56102a03660046117ed565b61053e565b604080516001600160a01b0390931683526020830191909152016101f3565b6102cd61271081565b6040519081526020016101f3565b61020f6102e93660046117b1565b6105ec565b61020f6102fc36600461180f565b61061c565b61023961030f36600461176e565b610631565b61020f6103223660046118c6565b610696565b61021961075a565b6102cd61033d366004611932565b6107e8565b61020f61086e565b6000546001600160a01b0316610239565b610219610882565b6102cd61139e81565b61020f61037a36600461195d565b610891565b61020f6108b0565b61020f610395366004611990565b6108c2565b61020f6103a83660046119c1565b6108dd565b6102196103bb36600461176e565b610915565b6101e76103ce366004611a9d565b610992565b6102cd600b5481565b61020f6103ea366004611932565b6109c0565b600a546101e79060ff1681565b610219610a39565b600061040f82610a55565b92915050565b61041d610a95565b6104278282610aef565b5050565b60606003805461043a90611ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611ac7565b80156104b35780601f10610488576101008083540402835291602001916104b3565b820191906000526020600020905b81548152906001019060200180831161049657829003601f168201915b5050505050905090565b60006104c882610bec565b506000908152600760205260409020546001600160a01b031690565b81600a5460ff16156104f9576104f981610c4b565b6105038383610c8f565b505050565b826001600160a01b038116331461052d57600a5460ff161561052d5761052d33610c4b565b610538848484610d9f565b50505050565b60008281526002602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916105b35750604080518082019091526001546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906105d2906001600160601b031687611b17565b6105dc9190611b44565b91519350909150505b9250929050565b826001600160a01b038116331461061157600a5460ff16156106115761061133610c4b565b610538848484610dd0565b610624610a95565b6009610503828483611ba6565b6000818152600560205260408120546001600160a01b03168061040f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064015b60405180910390fd5b61069e610a95565b808381146106bf5760405163b4fa3fb360e01b815260040160405180910390fd5b61271081600b546106d09190611c66565b11156106ef5760405163d05cb60960e01b815260040160405180910390fd5b60005b8181101561074a5761074286868381811061070f5761070f611c79565b90506020020160208101906107249190611932565b85858481811061073657610736611c79565b90506020020135610deb565b6001016106f2565b50600b8054909101905550505050565b6009805461076790611ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461079390611ac7565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b505050505081565b60006001600160a01b0382166108525760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161068d565b506001600160a01b031660009081526006602052604090205490565b610876610a95565b6108806000610f84565b565b60606004805461043a90611ac7565b81600a5460ff16156108a6576108a681610c4b565b6105038383610fd4565b6108b8610a95565b6108806000600155565b6108ca610a95565b600a805460ff1916911515919091179055565b836001600160a01b038116331461090257600a5460ff16156109025761090233610c4b565b61090e85858585610fdf565b5050505050565b6060600061271061092861139e85611c66565b6109329190611c8f565b905060006009805461094390611ac7565b90501161095f576040518060200160405280600081525061098b565b600961096a82611011565b60405160200161097b929190611ca3565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6109c8610a95565b6001600160a01b038116610a2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b610a3681610f84565b50565b604051806060016040528060408152602001611e8c6040913981565b60006001600160e01b031982166380ac58cd60e01b1480610a8657506001600160e01b03198216635b5e139f60e01b145b8061040f575061040f826110a4565b6000546001600160a01b031633146108805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068d565b6127106001600160601b0382161115610b5d5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161068d565b6001600160a01b038216610bb35760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161068d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600155565b6000818152600560205260409020546001600160a01b0316610a365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161068d565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c87573d6000803e3d6000fd5b6000603a5250565b6000610c9a82610631565b9050806001600160a01b0316836001600160a01b031603610d075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068d565b336001600160a01b0382161480610d235750610d238133610992565b610d955760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161068d565b61050383836110d9565b610da93382611147565b610dc55760405162461bcd60e51b815260040161068d90611d3a565b6105038383836111a6565b610503838383604051806020016040528060008152506108dd565b6001600160a01b038216610e415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068d565b6000818152600560205260409020546001600160a01b031615610ea65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b610eb4600083836001611317565b6000818152600560205260409020546001600160a01b031615610f195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b6001600160a01b038216600081815260066020908152604080832080546001019055848352600590915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61042733838361139f565b610fe93383611147565b6110055760405162461bcd60e51b815260040161068d90611d3a565b6105388484848461146d565b6060600061101e836114a0565b600101905060008167ffffffffffffffff81111561103e5761103e6119ab565b6040519080825280601f01601f191660200182016040528015611068576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461107257509392505050565b60006001600160e01b0319821663152a902d60e11b148061040f57506301ffc9a760e01b6001600160e01b031983161461040f565b600081815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110e82610631565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061115383610631565b9050806001600160a01b0316846001600160a01b0316148061117a575061117a8185610992565b8061119e5750836001600160a01b0316611193846104bd565b6001600160a01b0316145b949350505050565b826001600160a01b03166111b982610631565b6001600160a01b0316146111df5760405162461bcd60e51b815260040161068d90611d87565b6001600160a01b0382166112415760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b61124e8383836001611317565b826001600160a01b031661126182610631565b6001600160a01b0316146112875760405162461bcd60e51b815260040161068d90611d87565b600081815260076020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260068552838620805460001901905590871680865283862080546001019055868652600590945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001811115610538576001600160a01b0384161561135d576001600160a01b03841660009081526006602052604081208054839290611357908490611dcc565b90915550505b6001600160a01b03831615610538576001600160a01b03831660009081526006602052604081208054839290611394908490611c66565b909155505050505050565b816001600160a01b0316836001600160a01b0316036114005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068d565b6001600160a01b03838116600081815260086020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114788484846111a6565b61148484848484611578565b6105385760405162461bcd60e51b815260040161068d90611ddf565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061150b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061152957662386f26fc10000830492506010015b6305f5e1008310611541576305f5e100830492506008015b612710831061155557612710830492506004015b60648310611567576064830492506002015b600a831061040f5760010192915050565b60006001600160a01b0384163b1561166e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115bc903390899088908890600401611e31565b6020604051808303816000875af19250505080156115f7575060408051601f3d908101601f191682019092526115f491810190611e6e565b60015b611654573d808015611625576040519150601f19603f3d011682016040523d82523d6000602084013e61162a565b606091505b50805160000361164c5760405162461bcd60e51b815260040161068d90611ddf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061119e565b506001949350505050565b6001600160e01b031981168114610a3657600080fd5b6000602082840312156116a157600080fd5b813561098b81611679565b80356001600160a01b03811681146116c357600080fd5b919050565b600080604083850312156116db57600080fd5b6116e4836116ac565b915060208301356001600160601b038116811461170057600080fd5b809150509250929050565b60005b8381101561172657818101518382015260200161170e565b50506000910152565b6000815180845261174781602086016020860161170b565b601f01601f19169290920160200192915050565b60208152600061098b602083018461172f565b60006020828403121561178057600080fd5b5035919050565b6000806040838503121561179a57600080fd5b6117a3836116ac565b946020939093013593505050565b6000806000606084860312156117c657600080fd5b6117cf846116ac565b92506117dd602085016116ac565b9150604084013590509250925092565b6000806040838503121561180057600080fd5b50508035926020909101359150565b6000806020838503121561182257600080fd5b823567ffffffffffffffff8082111561183a57600080fd5b818501915085601f83011261184e57600080fd5b81358181111561185d57600080fd5b86602082850101111561186f57600080fd5b60209290920196919550909350505050565b60008083601f84011261189357600080fd5b50813567ffffffffffffffff8111156118ab57600080fd5b6020830191508360208260051b85010111156105e557600080fd5b600080600080604085870312156118dc57600080fd5b843567ffffffffffffffff808211156118f457600080fd5b61190088838901611881565b9096509450602087013591508082111561191957600080fd5b5061192687828801611881565b95989497509550505050565b60006020828403121561194457600080fd5b61098b826116ac565b803580151581146116c357600080fd5b6000806040838503121561197057600080fd5b611979836116ac565b91506119876020840161194d565b90509250929050565b6000602082840312156119a257600080fd5b61098b8261194d565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119d757600080fd5b6119e0856116ac565b93506119ee602086016116ac565b925060408501359150606085013567ffffffffffffffff80821115611a1257600080fd5b818701915087601f830112611a2657600080fd5b813581811115611a3857611a386119ab565b604051601f8201601f19908116603f01168101908382118183101715611a6057611a606119ab565b816040528281528a6020848701011115611a7957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ab057600080fd5b611ab9836116ac565b9150611987602084016116ac565b600181811c90821680611adb57607f821691505b602082108103611afb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761040f5761040f611b01565b634e487b7160e01b600052601260045260246000fd5b600082611b5357611b53611b2e565b500490565b601f82111561050357600081815260208120601f850160051c81016020861015611b7f5750805b601f850160051c820191505b81811015611b9e57828155600101611b8b565b505050505050565b67ffffffffffffffff831115611bbe57611bbe6119ab565b611bd283611bcc8354611ac7565b83611b58565b6000601f841160018114611c065760008515611bee5750838201355b600019600387901b1c1916600186901b17835561090e565b600083815260209020601f19861690835b82811015611c375786850135825560209485019460019092019101611c17565b5086821015611c545760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082018082111561040f5761040f611b01565b634e487b7160e01b600052603260045260246000fd5b600082611c9e57611c9e611b2e565b500690565b6000808454611cb181611ac7565b60018281168015611cc95760018114611cde57611d0d565b60ff1984168752821515830287019450611d0d565b8860005260208060002060005b85811015611d045781548a820152908401908201611ceb565b50505082870194505b505050508351611d2181836020880161170b565b64173539b7b760d91b9101908152600501949350505050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b8181038181111561040f5761040f611b01565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e649083018461172f565b9695505050505050565b600060208284031215611e8057600080fd5b815161098b8161167956fe65306461643762633238623331343635393033616565376230666133643264316336623238656337346630356465333365633638326438353132373432386334a264697066735822122060ba820b97db78348df4e77e5cdf99c4d1ec6023da9785e42daf55ae56ce88c364736f6c6343000811003368747470733a2f2f6d657461646174612e6b707276657273652e636f6d2f6d657461646174612f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063b7c0b8e8116100a2578063f2c1459f11610071578063f2c1459f146103d3578063f2fde38b146103dc578063fb796e6c146103ef578063ff1b6556146103fc57600080fd5b8063b7c0b8e814610387578063b88d4fde1461039a578063c87b56dd146103ad578063e985e9c5146103c057600080fd5b806395d89b41116100de57806395d89b411461035b578063970cba7114610363578063a22cb4651461036c578063aa1b103f1461037f57600080fd5b806370a082311461032f578063715018a6146103425780638da5cb5b1461034a57600080fd5b80632a55205a1161017157806355f804b31161014b57806355f804b3146102ee5780636352211e1461030157806367243482146103145780636c0360eb1461032757600080fd5b80632a55205a1461029257806332cb6b0c146102c457806342842e0e146102db57600080fd5b8063081812fc116101ad578063081812fc14610226578063095ea7b31461025157806323b872dd146102645780632979fb831461027757600080fd5b806301ffc9a7146101d457806304634d8d146101fc57806306fdde0314610211575b600080fd5b6101e76101e236600461168f565b610404565b60405190151581526020015b60405180910390f35b61020f61020a3660046116c8565b610415565b005b61021961042b565b6040516101f3919061175b565b61023961023436600461176e565b6104bd565b6040516001600160a01b0390911681526020016101f3565b61020f61025f366004611787565b6104e4565b61020f6102723660046117b1565b610508565b61023973f250d5584d682ba2f555197bd26b58e83d7ca4c681565b6102a56102a03660046117ed565b61053e565b604080516001600160a01b0390931683526020830191909152016101f3565b6102cd61271081565b6040519081526020016101f3565b61020f6102e93660046117b1565b6105ec565b61020f6102fc36600461180f565b61061c565b61023961030f36600461176e565b610631565b61020f6103223660046118c6565b610696565b61021961075a565b6102cd61033d366004611932565b6107e8565b61020f61086e565b6000546001600160a01b0316610239565b610219610882565b6102cd61139e81565b61020f61037a36600461195d565b610891565b61020f6108b0565b61020f610395366004611990565b6108c2565b61020f6103a83660046119c1565b6108dd565b6102196103bb36600461176e565b610915565b6101e76103ce366004611a9d565b610992565b6102cd600b5481565b61020f6103ea366004611932565b6109c0565b600a546101e79060ff1681565b610219610a39565b600061040f82610a55565b92915050565b61041d610a95565b6104278282610aef565b5050565b60606003805461043a90611ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611ac7565b80156104b35780601f10610488576101008083540402835291602001916104b3565b820191906000526020600020905b81548152906001019060200180831161049657829003601f168201915b5050505050905090565b60006104c882610bec565b506000908152600760205260409020546001600160a01b031690565b81600a5460ff16156104f9576104f981610c4b565b6105038383610c8f565b505050565b826001600160a01b038116331461052d57600a5460ff161561052d5761052d33610c4b565b610538848484610d9f565b50505050565b60008281526002602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916105b35750604080518082019091526001546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906105d2906001600160601b031687611b17565b6105dc9190611b44565b91519350909150505b9250929050565b826001600160a01b038116331461061157600a5460ff16156106115761061133610c4b565b610538848484610dd0565b610624610a95565b6009610503828483611ba6565b6000818152600560205260408120546001600160a01b03168061040f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064015b60405180910390fd5b61069e610a95565b808381146106bf5760405163b4fa3fb360e01b815260040160405180910390fd5b61271081600b546106d09190611c66565b11156106ef5760405163d05cb60960e01b815260040160405180910390fd5b60005b8181101561074a5761074286868381811061070f5761070f611c79565b90506020020160208101906107249190611932565b85858481811061073657610736611c79565b90506020020135610deb565b6001016106f2565b50600b8054909101905550505050565b6009805461076790611ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461079390611ac7565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b505050505081565b60006001600160a01b0382166108525760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161068d565b506001600160a01b031660009081526006602052604090205490565b610876610a95565b6108806000610f84565b565b60606004805461043a90611ac7565b81600a5460ff16156108a6576108a681610c4b565b6105038383610fd4565b6108b8610a95565b6108806000600155565b6108ca610a95565b600a805460ff1916911515919091179055565b836001600160a01b038116331461090257600a5460ff16156109025761090233610c4b565b61090e85858585610fdf565b5050505050565b6060600061271061092861139e85611c66565b6109329190611c8f565b905060006009805461094390611ac7565b90501161095f576040518060200160405280600081525061098b565b600961096a82611011565b60405160200161097b929190611ca3565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6109c8610a95565b6001600160a01b038116610a2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b610a3681610f84565b50565b604051806060016040528060408152602001611e8c6040913981565b60006001600160e01b031982166380ac58cd60e01b1480610a8657506001600160e01b03198216635b5e139f60e01b145b8061040f575061040f826110a4565b6000546001600160a01b031633146108805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068d565b6127106001600160601b0382161115610b5d5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161068d565b6001600160a01b038216610bb35760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161068d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600155565b6000818152600560205260409020546001600160a01b0316610a365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161068d565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c87573d6000803e3d6000fd5b6000603a5250565b6000610c9a82610631565b9050806001600160a01b0316836001600160a01b031603610d075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068d565b336001600160a01b0382161480610d235750610d238133610992565b610d955760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161068d565b61050383836110d9565b610da93382611147565b610dc55760405162461bcd60e51b815260040161068d90611d3a565b6105038383836111a6565b610503838383604051806020016040528060008152506108dd565b6001600160a01b038216610e415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068d565b6000818152600560205260409020546001600160a01b031615610ea65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b610eb4600083836001611317565b6000818152600560205260409020546001600160a01b031615610f195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068d565b6001600160a01b038216600081815260066020908152604080832080546001019055848352600590915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61042733838361139f565b610fe93383611147565b6110055760405162461bcd60e51b815260040161068d90611d3a565b6105388484848461146d565b6060600061101e836114a0565b600101905060008167ffffffffffffffff81111561103e5761103e6119ab565b6040519080825280601f01601f191660200182016040528015611068576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461107257509392505050565b60006001600160e01b0319821663152a902d60e11b148061040f57506301ffc9a760e01b6001600160e01b031983161461040f565b600081815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110e82610631565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061115383610631565b9050806001600160a01b0316846001600160a01b0316148061117a575061117a8185610992565b8061119e5750836001600160a01b0316611193846104bd565b6001600160a01b0316145b949350505050565b826001600160a01b03166111b982610631565b6001600160a01b0316146111df5760405162461bcd60e51b815260040161068d90611d87565b6001600160a01b0382166112415760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b61124e8383836001611317565b826001600160a01b031661126182610631565b6001600160a01b0316146112875760405162461bcd60e51b815260040161068d90611d87565b600081815260076020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260068552838620805460001901905590871680865283862080546001019055868652600590945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001811115610538576001600160a01b0384161561135d576001600160a01b03841660009081526006602052604081208054839290611357908490611dcc565b90915550505b6001600160a01b03831615610538576001600160a01b03831660009081526006602052604081208054839290611394908490611c66565b909155505050505050565b816001600160a01b0316836001600160a01b0316036114005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068d565b6001600160a01b03838116600081815260086020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114788484846111a6565b61148484848484611578565b6105385760405162461bcd60e51b815260040161068d90611ddf565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061150b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061152957662386f26fc10000830492506010015b6305f5e1008310611541576305f5e100830492506008015b612710831061155557612710830492506004015b60648310611567576064830492506002015b600a831061040f5760010192915050565b60006001600160a01b0384163b1561166e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115bc903390899088908890600401611e31565b6020604051808303816000875af19250505080156115f7575060408051601f3d908101601f191682019092526115f491810190611e6e565b60015b611654573d808015611625576040519150601f19603f3d011682016040523d82523d6000602084013e61162a565b606091505b50805160000361164c5760405162461bcd60e51b815260040161068d90611ddf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061119e565b506001949350505050565b6001600160e01b031981168114610a3657600080fd5b6000602082840312156116a157600080fd5b813561098b81611679565b80356001600160a01b03811681146116c357600080fd5b919050565b600080604083850312156116db57600080fd5b6116e4836116ac565b915060208301356001600160601b038116811461170057600080fd5b809150509250929050565b60005b8381101561172657818101518382015260200161170e565b50506000910152565b6000815180845261174781602086016020860161170b565b601f01601f19169290920160200192915050565b60208152600061098b602083018461172f565b60006020828403121561178057600080fd5b5035919050565b6000806040838503121561179a57600080fd5b6117a3836116ac565b946020939093013593505050565b6000806000606084860312156117c657600080fd5b6117cf846116ac565b92506117dd602085016116ac565b9150604084013590509250925092565b6000806040838503121561180057600080fd5b50508035926020909101359150565b6000806020838503121561182257600080fd5b823567ffffffffffffffff8082111561183a57600080fd5b818501915085601f83011261184e57600080fd5b81358181111561185d57600080fd5b86602082850101111561186f57600080fd5b60209290920196919550909350505050565b60008083601f84011261189357600080fd5b50813567ffffffffffffffff8111156118ab57600080fd5b6020830191508360208260051b85010111156105e557600080fd5b600080600080604085870312156118dc57600080fd5b843567ffffffffffffffff808211156118f457600080fd5b61190088838901611881565b9096509450602087013591508082111561191957600080fd5b5061192687828801611881565b95989497509550505050565b60006020828403121561194457600080fd5b61098b826116ac565b803580151581146116c357600080fd5b6000806040838503121561197057600080fd5b611979836116ac565b91506119876020840161194d565b90509250929050565b6000602082840312156119a257600080fd5b61098b8261194d565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119d757600080fd5b6119e0856116ac565b93506119ee602086016116ac565b925060408501359150606085013567ffffffffffffffff80821115611a1257600080fd5b818701915087601f830112611a2657600080fd5b813581811115611a3857611a386119ab565b604051601f8201601f19908116603f01168101908382118183101715611a6057611a606119ab565b816040528281528a6020848701011115611a7957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ab057600080fd5b611ab9836116ac565b9150611987602084016116ac565b600181811c90821680611adb57607f821691505b602082108103611afb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761040f5761040f611b01565b634e487b7160e01b600052601260045260246000fd5b600082611b5357611b53611b2e565b500490565b601f82111561050357600081815260208120601f850160051c81016020861015611b7f5750805b601f850160051c820191505b81811015611b9e57828155600101611b8b565b505050505050565b67ffffffffffffffff831115611bbe57611bbe6119ab565b611bd283611bcc8354611ac7565b83611b58565b6000601f841160018114611c065760008515611bee5750838201355b600019600387901b1c1916600186901b17835561090e565b600083815260209020601f19861690835b82811015611c375786850135825560209485019460019092019101611c17565b5086821015611c545760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082018082111561040f5761040f611b01565b634e487b7160e01b600052603260045260246000fd5b600082611c9e57611c9e611b2e565b500690565b6000808454611cb181611ac7565b60018281168015611cc95760018114611cde57611d0d565b60ff1984168752821515830287019450611d0d565b8860005260208060002060005b85811015611d045781548a820152908401908201611ceb565b50505082870194505b505050508351611d2181836020880161170b565b64173539b7b760d91b9101908152600501949350505050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b8181038181111561040f5761040f611b01565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e649083018461172f565b9695505050505050565b600060208284031215611e8057600080fd5b815161098b8161167956fe65306461643762633238623331343635393033616565376230666133643264316336623238656337346630356465333365633638326438353132373432386334a264697066735822122060ba820b97db78348df4e77e5cdf99c4d1ec6023da9785e42daf55ae56ce88c364736f6c63430008110033

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.