ERC-721
Overview
Max Total Supply
10 HEAT
Holders
8
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HEATLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HEAT_ADVISOR
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./Ownable.sol"; import "./ERC721A.sol"; import "./Royalties.sol"; /**********************************************************************************\ * @dev HEAT ADVISORS contract * Contract for HEAT ADVISORS NFTs * @author myssynglynx | https://github.com/myssynglynx | myssynglynx.eth (( (( ((( ( (((( (( ((( (((( ((((( ( (((( ( (((( (((( ((((((( (( (((( (( ( ( ((((( ((((( ((((((( (( ((( ((( (( (( ((((( ((((( (((((((((((( (( (( (((( ((( ((( ((( ((((( ((((( (((((((((( (((( (((((((((( (((( ((( (((( ((((((((((( (((((((((((( ((((( ((((((((((( ( ((( (((( (((((( ((((((((( ((( ((((( (((( (((( ((((((( ((( (((( ((((( (((((( (((((((((((( ( (((( (( ((( ((( (((( ((( (((( ((((((((((( ( ((( (((((((( (( (((( (( (((((( (((( (((((((( (((((( (((((( (((((((((((( (( ((((( (((( ((( (((((( ((( ( ((((((( ((((((( ((((( (((((((((((((((( ((((((( (( (( (((( (( ((( (((( (((( ((((((((( ((((((((( (((((((((((( (((( (((( ((((((( ((( (((((( ((((( ((((( ((((((( (((((((((((((((( (( (((( (((((( (((( ((((((( ((((((( ((((( ((((((((((((((( ((((( (((((((((( ( (( (((((( ((( ((( (((((( (((((( (((((((((((((( ((((((((( (( ( ((((( ((( (((((((((( (( ((((( (((( ((( ((( ((((((((((((((( (((((((((( ((( (((((((((((((((((((((( ((((( (((( (((((( ((((((( (((((((((( ((((((((((((( (((((((((((( (((((( (((((((((((((((((( (((((((((( (((((((((((( ((((( ((((((((((((((((((((( ((((( ((((((((((((( (((((( ((((( (((( (((((((((((((( ((( ((((( (((((((((( (((((((((( (((( ( ((((((( ((((( ((((( \**********************************************************************************/ contract HEAT_ADVISOR is ERC721A, Royalties, Ownable { error AmountExceedsMaxSupply(); error ContractIsFrozen(); error MustBeGreaterThanTotalSupply(); error NotOwnerOrEnoughValueSent(); uint248 private MAX_SUPPLY; bool frozen; string _uri; constructor( address heat_, uint256 initialMint_, string memory uri_ ) ERC721A("HEAT ADVISORS", "HEAT") { ROYALTY_RECEIVER = payable(heat_); ROYALTY_POINTS = 1000; _mint(heat_, initialMint_); _uri = uri_; } /** * @dev mint HEAT ADVISORS * @param to_ address to mint token(s) to * @param amt_ amount of tokens to mint * * REQUIREMENTS: * - must be owner * - if max supply set, `totalSupply` after minting must be less than max supply */ function mint(address to_, uint256 amt_) public payable { if (MAX_SUPPLY > 0 && MAX_SUPPLY < amt_ + totalSupply()) revert AmountExceedsMaxSupply(); _mint(to_, amt_); if (msg.sender != owner() && msg.value < 1_000 ether * amt_) revert NotOwnerOrEnoughValueSent(); else if (msg.sender != owner()) ROYALTY_RECEIVER.call{ value: msg.value }(""); } /** * @dev set new `_uri` value * @param uri new uri value * * REQUIREMENTS: * - must be owner * - contract cannot be frozen */ function setBaseURI(string memory uri) public onlyOwner { if (frozen) revert ContractIsFrozen(); _uri = uri; } /** * @dev set `MAX_SUPPLY` to new value * @param maxSupply_ new maximum supply * * REQUIREMENTS: * - contract must not be frozen * - new supply must be greater than current supply */ function setMaxSupply(uint256 maxSupply_) public onlyOwner { if (frozen) revert ContractIsFrozen(); if (maxSupply_ <= totalSupply()) revert MustBeGreaterThanTotalSupply(); MAX_SUPPLY = uint248(maxSupply_); } /** * @dev freeze contract * * REQUIREMENTS: * - contract must not be frozen */ function freeze() public onlyOwner { if (frozen) revert ContractIsFrozen(); frozen = true; } /** * @dev Implements RaribleV2 Royalty * @param tokenId_ NFT token id to get info from */ function getRoyalties(uint256 tokenId_) public view returns ( address payable[] memory, uint256[] memory ) { if (totalSupply() == 0 || tokenId_ >= totalSupply()) revert RoyaltyQueryForNonexistentToken(); return _getRoyalties(tokenId_); } /** * @dev Implements RaribleV2 Royalty * @param tokenId_ NFT token id to get info from */ function getRaribleV2Royalties(uint256 tokenId_) public view returns (Part[] memory part) { if (totalSupply() == 0 || tokenId_ >= totalSupply()) revert RoyaltyQueryForNonexistentToken(); return _getRaribleV2Royalties(tokenId_); } /** * @dev Implements Foundation Royalty * @param tokenId_ NFT token id to get info from */ function getFees(uint256 tokenId_) public view returns ( address payable[] memory, uint256[] memory ) { return getRoyalties(tokenId_); } /** * @dev Implements ERC2981 * @param tokenId_ NFT token id to get info from * @param salePrice_ price at which to check Royalty return */ function royaltyInfo( uint256 tokenId_, uint256 salePrice_ ) external view returns ( address receiver, uint256 royaltyAmount ) { if (totalSupply() > 0 && tokenId_ < totalSupply()) return _royaltyInfo(tokenId_, salePrice_); return (address(0x0), 0); } /** * @dev internal override of {ERC721A-_baseURI}, to return `_uri` */ function _baseURI() internal virtual view override returns (string memory) { return _uri; } /** * @dev returns `metadata.json` file for collection, compatible with OpenSea's API */ function contractURI() public view returns (string memory) { return string(abi.encodePacked(_uri, "metadata.json")); } /** * @dev returns `MAX_SUPPLY` */ function maxSupply() public view returns (uint256) { return uint256(MAX_SUPPLY); } }
// 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; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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 { _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 { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; error CallerIsNotOwner(); error NewOwnerIsZeroAddress(); /** * @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() { if (owner() != _msgSender()) revert CallerIsNotOwner(); _; } /** * @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 { if (newOwner == address(0)) revert NewOwnerIsZeroAddress(); _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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /**********************************************************************************\ * @dev Royalties contract * ERC2981, Rarible, Foundation, & Manifold Royalty Registry-compatible contract * @author myssynglynx | https://github.com/myssynglynx | myssynglynx.eth \**********************************************************************************/ contract Royalties { error RoyaltyQueryForNonexistentToken(); address payable ROYALTY_RECEIVER; uint96 ROYALTY_POINTS; /** * @dev Manifold * * bytes4(keccak256('getRoyalties(uint256)')) == 0xbb3bafd6 * * => 0xbb3bafd6 = 0xbb3bafd6 */ bytes4 internal constant INTERFACE_ID_ROYALTIES_MANIFOLD = 0xbb3bafd6; /** * @dev Rarible: RoyaltiesV2 * * bytes4(keccak256('getRaribleV2Royalties(uint256)')) == 0xcad96cca * * => 0xcad96cca = 0xcad96cca */ bytes4 internal constant INTERFACE_ID_ROYALTIES_RARIBLE_V2 = 0xcad96cca; /** * @dev Foundation * * bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c * * => 0xd5a06d4c = 0xd5a06d4c */ bytes4 internal constant INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c; /** * @dev EIP-2981 * * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * * => 0x2a55205a = 0x2a55205a */ bytes4 internal constant INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; struct Part { address payable account; uint96 value; } /** * @dev Manifold / Foundation Royalties (for Foundation, write external call as `getFees(uint256)` */ function _getRoyalties(uint256 tokenId) internal view returns (address payable[] memory, uint256[] memory) { address payable[] memory receiver = new address payable[](1); uint256[] memory points = new uint256[](1); receiver[0] = ROYALTY_RECEIVER; points[0] = uint256(ROYALTY_POINTS); return (receiver, points); } /** * @dev Rarible V2 Royalties */ function _getRaribleV2Royalties(uint256) internal view returns (Part[] memory) { Part[] memory part = new Part[](1); part[0] = Part(ROYALTY_RECEIVER, ROYALTY_POINTS); return part; } /** * @dev EIP2981 Royalties */ function _royaltyInfo(uint256, uint256 value) internal view returns (address, uint256) { return (ROYALTY_RECEIVER, ROYALTY_POINTS*value/10000); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"heat_","type":"address"},{"internalType":"uint256","name":"initialMint_","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AmountExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CallerIsNotOwner","type":"error"},{"inputs":[],"name":"ContractIsFrozen","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MustBeGreaterThanTotalSupply","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NotOwnerOrEnoughValueSent","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"RoyaltyQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","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":"uint256","name":"tokenId_","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getRaribleV2Royalties","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct Royalties.Part[]","name":"part","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amt_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"salePrice_","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001ee938038062001ee98339810160408190526200003491620002bb565b604080518082018252600d81526c484541542041445649534f525360981b6020808301918252835180850190945260048452631211505560e21b908401528151919291620000859160029162000215565b5080516200009b90600390602084019062000215565b50506000805550620000ad33620000eb565b607d60a31b6001600160a01b03841617600855620000cc83836200013d565b8051620000e190600b90602084019062000215565b5050505062000417565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054826200015e57604051622e076360e81b815260040160405180910390fd5b816200017d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001c85750600055505050565b8280546200022390620003c4565b90600052602060002090601f01602090048101928262000247576000855562000292565b82601f106200026257805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029257825182559160200191906001019062000275565b50620002a0929150620002a4565b5090565b5b80821115620002a05760008155600101620002a5565b600080600060608486031215620002d157600080fd5b83516001600160a01b0381168114620002e957600080fd5b60208581015160408701519295509350906001600160401b03808211156200031057600080fd5b818701915087601f8301126200032557600080fd5b8151818111156200033a576200033a62000401565b604051601f8201601f19908116603f0116810190838211818310171562000365576200036562000401565b816040528281528a868487010111156200037e57600080fd5b600093505b82841015620003a2578484018601518185018701529285019262000383565b82841115620003b45760008684830101525b8096505050505050509250925092565b600181811c90821680620003d957607f821691505b60208210811415620003fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ac280620004276000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063c87b56dd1161008a578063d5abeb0111610064578063d5abeb01146104bf578063e8a3d485146104dd578063e985e9c5146104f2578063f2fde38b1461053b57600080fd5b8063c87b56dd14610452578063cad96cca14610472578063d5a06d4c1461049f57600080fd5b806395d89b41116100c657806395d89b41146103cf578063a22cb465146103e4578063b88d4fde14610404578063bb3bafd61461042457600080fd5b806370a082311461037c578063715018a61461039c5780638da5cb5b146103b157600080fd5b80632a55205a1161015957806355f804b31161013357806355f804b31461030757806362a5af3b146103275780636352211e1461033c5780636f8b44b01461035c57600080fd5b80632a55205a1461029557806340c10f19146102d457806342842e0e146102e757600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611675565b61055b565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105ad565b6040516101cd9190611961565b34801561020457600080fd5b506102186102133660046116f8565b61063f565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461164b565b610683565b005b34801561025e57600080fd5b50600154600054035b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611557565b610756565b3480156102a157600080fd5b506102b56102b0366004611711565b610766565b604080516001600160a01b0390931683526020830191909152016101cd565b6102506102e236600461164b565b6107b0565b3480156102f357600080fd5b50610250610302366004611557565b6108c2565b34801561031357600080fd5b506102506103223660046116af565b6108dd565b34801561033357600080fd5b50610250610946565b34801561034857600080fd5b506102186103573660046116f8565b6109b3565b34801561036857600080fd5b506102506103773660046116f8565b6109be565b34801561038857600080fd5b50610267610397366004611509565b610a5c565b3480156103a857600080fd5b50610250610aa2565b3480156103bd57600080fd5b506009546001600160a01b0316610218565b3480156103db57600080fd5b506101eb610ad9565b3480156103f057600080fd5b506102506103ff36600461160f565b610ae8565b34801561041057600080fd5b5061025061041f366004611593565b610b7e565b34801561043057600080fd5b5061044461043f3660046116f8565b610bc8565b6040516101cd92919061187c565b34801561045e57600080fd5b506101eb61046d3660046116f8565b610c1a565b34801561047e57600080fd5b5061049261048d3660046116f8565b610c9f565b6040516101cd9190611900565b3480156104ab57600080fd5b506104446104ba3660046116f8565b610ce7565b3480156104cb57600080fd5b50600a546001600160f81b0316610267565b3480156104e957600080fd5b506101eb610cf3565b3480156104fe57600080fd5b506101c161050d366004611524565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054757600080fd5b50610250610556366004611509565b610d1b565b60006301ffc9a760e01b6001600160e01b03198316148061058c57506380ac58cd60e01b6001600160e01b03198316145b806105a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105bc906119f9565b80601f01602080910402602001604051908101604052809291908181526020018280546105e8906119f9565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b600061064a82610d79565b610667576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061068e82610da0565b9050806001600160a01b0316836001600160a01b031614156106c35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106fa576106dd813361050d565b6106fa576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610761838383610e01565b505050565b60008060006107786001546000540390565b11801561078a57506001546000540384105b156107a2576107998484610fb1565b915091506107a9565b5060009050805b9250929050565b600a546001600160f81b0316158015906107e45750600154600054036107d69082611974565b600a546001600160f81b0316105b156108025760405163acbb966d60e01b815260040160405180910390fd5b61080c8282610ff8565b6009546001600160a01b03163314801590610838575061083581683635c9adc5dea000006119ae565b34105b156108565760405163af1ddc2b60e01b815260040160405180910390fd5b6009546001600160a01b031633146108be576008546040516001600160a01b03909116903490600081818185875af1925050503d80600081146108b5576040519150601f19603f3d011682016040523d82523d6000602084013e6108ba565b606091505b5050505b5050565b61076183838360405180602001604052806000815250610b7e565b6009546001600160a01b0316331461090857604051636db2465f60e01b815260040160405180910390fd5b600a54600160f81b900460ff16156109335760405163379dfc6360e01b815260040160405180910390fd5b80516108be90600b9060208401906113de565b6009546001600160a01b0316331461097157604051636db2465f60e01b815260040160405180910390fd5b600a54600160f81b900460ff161561099c5760405163379dfc6360e01b815260040160405180910390fd5b600a80546001600160f81b0316600160f81b179055565b60006105a782610da0565b6009546001600160a01b031633146109e957604051636db2465f60e01b815260040160405180910390fd5b600a54600160f81b900460ff1615610a145760405163379dfc6360e01b815260040160405180910390fd5b600154600054038111610a3a576040516301bf1e4f60e31b815260040160405180910390fd5b600a80546001600160f81b0319166001600160f81b0392909216919091179055565b600081610a7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610acd57604051636db2465f60e01b815260040160405180910390fd5b610ad760006110cd565b565b6060600380546105bc906119f9565b6001600160a01b038216331415610b125760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b89848484610e01565b6001600160a01b0383163b15610bc257610ba58484848461111f565b610bc2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606080610bd86001546000540390565b1580610bea5750600154600054038310155b15610c08576040516378d7938160e11b815260040160405180910390fd5b610c1183611217565b91509150915091565b6060610c2582610d79565b610c4257604051630a14c4b560e41b815260040160405180910390fd5b6000610c4c6112e8565b9050805160001415610c6d5760405180602001604052806000815250610c98565b80610c77846112f7565b604051602001610c8892919061175f565b6040516020818303038152906040525b9392505050565b6060610cae6001546000540390565b1580610cc05750600154600054038210155b15610cde576040516378d7938160e11b815260040160405180910390fd5b6105a782611346565b606080610c1183610bc8565b6060600b604051602001610d07919061178e565b604051602081830303815290604052905090565b6009546001600160a01b03163314610d4657604051636db2465f60e01b815260040160405180910390fd5b6001600160a01b038116610d6d57604051633a247dd760e11b815260040160405180910390fd5b610d76816110cd565b50565b60008054821080156105a7575050600090815260046020526040902054600160e01b161590565b600081600054811015610de857600081815260046020526040902054600160e01b8116610de6575b80610c98575060001901600081815260046020526040902054610dc8565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e0c82610da0565b9050836001600160a01b0316816001600160a01b031614610e3f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e6f5750610e6f863361050d565b80610e8257506001600160a01b03821633145b905080610ea257604051632ce44b5f60e11b815260040160405180910390fd5b84610ec057604051633a954ecd60e21b815260040160405180910390fd5b8115610ee357600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610f685760018401600081815260046020526040902054610f66576000548114610f665760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60085460009081906001600160a01b0381169061271090610fe3908690600160a01b90046001600160601b03166119ae565b610fed919061198c565b915091509250929050565b6000548261101857604051622e076360e81b815260040160405180910390fd5b816110365760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110815750600055505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061115490339089908890889060040161183f565b602060405180830381600087803b15801561116e57600080fd5b505af192505050801561119e575060408051601f3d908101601f1916820190925261119b91810190611692565b60015b6111f9573d8080156111cc576040519150601f19603f3d011682016040523d82523d6000602084013e6111d1565b606091505b5080516111f1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160018082528183019092526060918291600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337505060085484519293506001600160a01b03169184915060009061128157611281611a4a565b60200260200101906001600160a01b031690816001600160a01b031681525050600860149054906101000a90046001600160601b03166001600160601b0316816000815181106112d3576112d3611a4a565b60209081029190910101529094909350915050565b6060600b80546105bc906119f9565b604080516080810191829052607f0190826030600a8206018353600a90045b801561133457600183039250600a81066030018353600a9004611316565b50819003601f19909101908152919050565b60408051600180825281830190925260609160009190816020015b604080518082019091526000808252602082015281526020019060019003908161136157905050604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b0316602082015281519192509082906000906113cd576113cd611a4a565b602090810291909101015292915050565b8280546113ea906119f9565b90600052602060002090601f01602090048101928261140c5760008555611452565b82601f1061142557805160ff1916838001178555611452565b82800160010185558215611452579182015b82811115611452578251825591602001919060010190611437565b5061145e929150611462565b5090565b5b8082111561145e5760008155600101611463565b600067ffffffffffffffff8084111561149257611492611a60565b604051601f8501601f19908116603f011681019082821181831017156114ba576114ba611a60565b816040528093508581528686860111156114d357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461150457600080fd5b919050565b60006020828403121561151b57600080fd5b610c98826114ed565b6000806040838503121561153757600080fd5b611540836114ed565b915061154e602084016114ed565b90509250929050565b60008060006060848603121561156c57600080fd5b611575846114ed565b9250611583602085016114ed565b9150604084013590509250925092565b600080600080608085870312156115a957600080fd5b6115b2856114ed565b93506115c0602086016114ed565b925060408501359150606085013567ffffffffffffffff8111156115e357600080fd5b8501601f810187136115f457600080fd5b61160387823560208401611477565b91505092959194509250565b6000806040838503121561162257600080fd5b61162b836114ed565b91506020830135801515811461164057600080fd5b809150509250929050565b6000806040838503121561165e57600080fd5b611667836114ed565b946020939093013593505050565b60006020828403121561168757600080fd5b8135610c9881611a76565b6000602082840312156116a457600080fd5b8151610c9881611a76565b6000602082840312156116c157600080fd5b813567ffffffffffffffff8111156116d857600080fd5b8201601f810184136116e957600080fd5b61120f84823560208401611477565b60006020828403121561170a57600080fd5b5035919050565b6000806040838503121561172457600080fd5b50508035926020909101359150565b6000815180845261174b8160208601602086016119cd565b601f01601f19169290920160200192915050565b600083516117718184602088016119cd565b8351908301906117858183602088016119cd565b01949350505050565b600080835481600182811c9150808316806117aa57607f831692505b60208084108214156117ca57634e487b7160e01b86526022600452602486fd5b8180156117de57600181146117ef5761181c565b60ff1986168952848901965061181c565b60008a81526020902060005b868110156118145781548b8201529085019083016117fb565b505084890196505b50505050505061120f816c36b2ba30b230ba30973539b7b760991b8152600d0190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061187290830184611733565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156118be5781516001600160a01b031684529284019290840190600101611899565b5050508381038285015284518082528583019183019060005b818110156118f3578351835292840192918401916001016118d7565b5090979650505050505050565b602080825282518282018190526000919060409081850190868401855b8281101561195457815180516001600160a01b031685528601516001600160601b031686850152928401929085019060010161191d565b5091979650505050505050565b602081526000610c986020830184611733565b6000821982111561198757611987611a34565b500190565b6000826119a957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156119c8576119c8611a34565b500290565b60005b838110156119e85781810151838201526020016119d0565b83811115610bc25750506000910152565b600181811c90821680611a0d57607f821691505b60208210811415611a2e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7657600080fdfea26469706673582212207a9682455bd09ab9994cb56b628bc12a89fe2b03c2d6f0743776d1f1112377f364736f6c63430008060033000000000000000000000000e24a68271eb1953fcc57a585236770c51a2a09c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a3344704a3257576b4a41435a79635658466470696763334d4b336b5a5571715169545148683372764447412f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806370a08231116100ec578063c87b56dd1161008a578063d5abeb0111610064578063d5abeb01146104bf578063e8a3d485146104dd578063e985e9c5146104f2578063f2fde38b1461053b57600080fd5b8063c87b56dd14610452578063cad96cca14610472578063d5a06d4c1461049f57600080fd5b806395d89b41116100c657806395d89b41146103cf578063a22cb465146103e4578063b88d4fde14610404578063bb3bafd61461042457600080fd5b806370a082311461037c578063715018a61461039c5780638da5cb5b146103b157600080fd5b80632a55205a1161015957806355f804b31161013357806355f804b31461030757806362a5af3b146103275780636352211e1461033c5780636f8b44b01461035c57600080fd5b80632a55205a1461029557806340c10f19146102d457806342842e0e146102e757600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611675565b61055b565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105ad565b6040516101cd9190611961565b34801561020457600080fd5b506102186102133660046116f8565b61063f565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461164b565b610683565b005b34801561025e57600080fd5b50600154600054035b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611557565b610756565b3480156102a157600080fd5b506102b56102b0366004611711565b610766565b604080516001600160a01b0390931683526020830191909152016101cd565b6102506102e236600461164b565b6107b0565b3480156102f357600080fd5b50610250610302366004611557565b6108c2565b34801561031357600080fd5b506102506103223660046116af565b6108dd565b34801561033357600080fd5b50610250610946565b34801561034857600080fd5b506102186103573660046116f8565b6109b3565b34801561036857600080fd5b506102506103773660046116f8565b6109be565b34801561038857600080fd5b50610267610397366004611509565b610a5c565b3480156103a857600080fd5b50610250610aa2565b3480156103bd57600080fd5b506009546001600160a01b0316610218565b3480156103db57600080fd5b506101eb610ad9565b3480156103f057600080fd5b506102506103ff36600461160f565b610ae8565b34801561041057600080fd5b5061025061041f366004611593565b610b7e565b34801561043057600080fd5b5061044461043f3660046116f8565b610bc8565b6040516101cd92919061187c565b34801561045e57600080fd5b506101eb61046d3660046116f8565b610c1a565b34801561047e57600080fd5b5061049261048d3660046116f8565b610c9f565b6040516101cd9190611900565b3480156104ab57600080fd5b506104446104ba3660046116f8565b610ce7565b3480156104cb57600080fd5b50600a546001600160f81b0316610267565b3480156104e957600080fd5b506101eb610cf3565b3480156104fe57600080fd5b506101c161050d366004611524565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054757600080fd5b50610250610556366004611509565b610d1b565b60006301ffc9a760e01b6001600160e01b03198316148061058c57506380ac58cd60e01b6001600160e01b03198316145b806105a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105bc906119f9565b80601f01602080910402602001604051908101604052809291908181526020018280546105e8906119f9565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b600061064a82610d79565b610667576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061068e82610da0565b9050806001600160a01b0316836001600160a01b031614156106c35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106fa576106dd813361050d565b6106fa576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610761838383610e01565b505050565b60008060006107786001546000540390565b11801561078a57506001546000540384105b156107a2576107998484610fb1565b915091506107a9565b5060009050805b9250929050565b600a546001600160f81b0316158015906107e45750600154600054036107d69082611974565b600a546001600160f81b0316105b156108025760405163acbb966d60e01b815260040160405180910390fd5b61080c8282610ff8565b6009546001600160a01b03163314801590610838575061083581683635c9adc5dea000006119ae565b34105b156108565760405163af1ddc2b60e01b815260040160405180910390fd5b6009546001600160a01b031633146108be576008546040516001600160a01b03909116903490600081818185875af1925050503d80600081146108b5576040519150601f19603f3d011682016040523d82523d6000602084013e6108ba565b606091505b5050505b5050565b61076183838360405180602001604052806000815250610b7e565b6009546001600160a01b0316331461090857604051636db2465f60e01b815260040160405180910390fd5b600a54600160f81b900460ff16156109335760405163379dfc6360e01b815260040160405180910390fd5b80516108be90600b9060208401906113de565b6009546001600160a01b0316331461097157604051636db2465f60e01b815260040160405180910390fd5b600a54600160f81b900460ff161561099c5760405163379dfc6360e01b815260040160405180910390fd5b600a80546001600160f81b0316600160f81b179055565b60006105a782610da0565b6009546001600160a01b031633146109e957604051636db2465f60e01b815260040160405180910390fd5b600a54600160f81b900460ff1615610a145760405163379dfc6360e01b815260040160405180910390fd5b600154600054038111610a3a576040516301bf1e4f60e31b815260040160405180910390fd5b600a80546001600160f81b0319166001600160f81b0392909216919091179055565b600081610a7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610acd57604051636db2465f60e01b815260040160405180910390fd5b610ad760006110cd565b565b6060600380546105bc906119f9565b6001600160a01b038216331415610b125760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b89848484610e01565b6001600160a01b0383163b15610bc257610ba58484848461111f565b610bc2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606080610bd86001546000540390565b1580610bea5750600154600054038310155b15610c08576040516378d7938160e11b815260040160405180910390fd5b610c1183611217565b91509150915091565b6060610c2582610d79565b610c4257604051630a14c4b560e41b815260040160405180910390fd5b6000610c4c6112e8565b9050805160001415610c6d5760405180602001604052806000815250610c98565b80610c77846112f7565b604051602001610c8892919061175f565b6040516020818303038152906040525b9392505050565b6060610cae6001546000540390565b1580610cc05750600154600054038210155b15610cde576040516378d7938160e11b815260040160405180910390fd5b6105a782611346565b606080610c1183610bc8565b6060600b604051602001610d07919061178e565b604051602081830303815290604052905090565b6009546001600160a01b03163314610d4657604051636db2465f60e01b815260040160405180910390fd5b6001600160a01b038116610d6d57604051633a247dd760e11b815260040160405180910390fd5b610d76816110cd565b50565b60008054821080156105a7575050600090815260046020526040902054600160e01b161590565b600081600054811015610de857600081815260046020526040902054600160e01b8116610de6575b80610c98575060001901600081815260046020526040902054610dc8565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e0c82610da0565b9050836001600160a01b0316816001600160a01b031614610e3f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e6f5750610e6f863361050d565b80610e8257506001600160a01b03821633145b905080610ea257604051632ce44b5f60e11b815260040160405180910390fd5b84610ec057604051633a954ecd60e21b815260040160405180910390fd5b8115610ee357600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610f685760018401600081815260046020526040902054610f66576000548114610f665760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60085460009081906001600160a01b0381169061271090610fe3908690600160a01b90046001600160601b03166119ae565b610fed919061198c565b915091509250929050565b6000548261101857604051622e076360e81b815260040160405180910390fd5b816110365760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110815750600055505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061115490339089908890889060040161183f565b602060405180830381600087803b15801561116e57600080fd5b505af192505050801561119e575060408051601f3d908101601f1916820190925261119b91810190611692565b60015b6111f9573d8080156111cc576040519150601f19603f3d011682016040523d82523d6000602084013e6111d1565b606091505b5080516111f1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160018082528183019092526060918291600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337505060085484519293506001600160a01b03169184915060009061128157611281611a4a565b60200260200101906001600160a01b031690816001600160a01b031681525050600860149054906101000a90046001600160601b03166001600160601b0316816000815181106112d3576112d3611a4a565b60209081029190910101529094909350915050565b6060600b80546105bc906119f9565b604080516080810191829052607f0190826030600a8206018353600a90045b801561133457600183039250600a81066030018353600a9004611316565b50819003601f19909101908152919050565b60408051600180825281830190925260609160009190816020015b604080518082019091526000808252602082015281526020019060019003908161136157905050604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b0316602082015281519192509082906000906113cd576113cd611a4a565b602090810291909101015292915050565b8280546113ea906119f9565b90600052602060002090601f01602090048101928261140c5760008555611452565b82601f1061142557805160ff1916838001178555611452565b82800160010185558215611452579182015b82811115611452578251825591602001919060010190611437565b5061145e929150611462565b5090565b5b8082111561145e5760008155600101611463565b600067ffffffffffffffff8084111561149257611492611a60565b604051601f8501601f19908116603f011681019082821181831017156114ba576114ba611a60565b816040528093508581528686860111156114d357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461150457600080fd5b919050565b60006020828403121561151b57600080fd5b610c98826114ed565b6000806040838503121561153757600080fd5b611540836114ed565b915061154e602084016114ed565b90509250929050565b60008060006060848603121561156c57600080fd5b611575846114ed565b9250611583602085016114ed565b9150604084013590509250925092565b600080600080608085870312156115a957600080fd5b6115b2856114ed565b93506115c0602086016114ed565b925060408501359150606085013567ffffffffffffffff8111156115e357600080fd5b8501601f810187136115f457600080fd5b61160387823560208401611477565b91505092959194509250565b6000806040838503121561162257600080fd5b61162b836114ed565b91506020830135801515811461164057600080fd5b809150509250929050565b6000806040838503121561165e57600080fd5b611667836114ed565b946020939093013593505050565b60006020828403121561168757600080fd5b8135610c9881611a76565b6000602082840312156116a457600080fd5b8151610c9881611a76565b6000602082840312156116c157600080fd5b813567ffffffffffffffff8111156116d857600080fd5b8201601f810184136116e957600080fd5b61120f84823560208401611477565b60006020828403121561170a57600080fd5b5035919050565b6000806040838503121561172457600080fd5b50508035926020909101359150565b6000815180845261174b8160208601602086016119cd565b601f01601f19169290920160200192915050565b600083516117718184602088016119cd565b8351908301906117858183602088016119cd565b01949350505050565b600080835481600182811c9150808316806117aa57607f831692505b60208084108214156117ca57634e487b7160e01b86526022600452602486fd5b8180156117de57600181146117ef5761181c565b60ff1986168952848901965061181c565b60008a81526020902060005b868110156118145781548b8201529085019083016117fb565b505084890196505b50505050505061120f816c36b2ba30b230ba30973539b7b760991b8152600d0190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061187290830184611733565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156118be5781516001600160a01b031684529284019290840190600101611899565b5050508381038285015284518082528583019183019060005b818110156118f3578351835292840192918401916001016118d7565b5090979650505050505050565b602080825282518282018190526000919060409081850190868401855b8281101561195457815180516001600160a01b031685528601516001600160601b031686850152928401929085019060010161191d565b5091979650505050505050565b602081526000610c986020830184611733565b6000821982111561198757611987611a34565b500190565b6000826119a957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156119c8576119c8611a34565b500290565b60005b838110156119e85781810151838201526020016119d0565b83811115610bc25750506000910152565b600181811c90821680611a0d57607f821691505b60208210811415611a2e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7657600080fdfea26469706673582212207a9682455bd09ab9994cb56b628bc12a89fe2b03c2d6f0743776d1f1112377f364736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e24a68271eb1953fcc57a585236770c51a2a09c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a3344704a3257576b4a41435a79635658466470696763334d4b336b5a5571715169545148683372764447412f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : heat_ (address): 0xe24A68271eb1953FCc57a585236770C51a2A09C0
Arg [1] : initialMint_ (uint256): 10
Arg [2] : uri_ (string): https://ipfs.io/ipfs/QmZ3DpJ2WWkJACZycVXFdpigc3MK3kZUqqQiTQHh3rvDGA/
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000e24a68271eb1953fcc57a585236770c51a2a09c0
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f516d5a3344704a3257576b
Arg [5] : 4a41435a79635658466470696763334d4b336b5a557171516954514868337276
Arg [6] : 4447412f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
2523:4370:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:607:1;;;;;;;;;;-1:-1:-1;4874:607:1;;;;;:::i;:::-;;:::i;:::-;;;9801:14:6;;9794:22;9776:41;;9764:2;9749:18;4874:607:1;;;;;;;;9772:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11773:200::-;;;;;;;;;;-1:-1:-1;11773:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6775:32:6;;;6757:51;;6745:2;6730:18;11773:200:1;6712:102:6;11249:463:1;;;;;;;;;;-1:-1:-1;11249:463:1;;;;;:::i;:::-;;:::i;:::-;;3957:309;;;;;;;;;;-1:-1:-1;4219:12:1;;4010:7;4203:13;:28;3957:309;;;10198:25:6;;;10186:2;10171:18;3957:309:1;10153:76:6;12633:164:1;;;;;;;;;;-1:-1:-1;12633:164:1;;;;;:::i;:::-;;:::i;5998:310:2:-;;;;;;;;;;-1:-1:-1;5998:310:2;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7504:32:6;;;7486:51;;7568:2;7553:18;;7546:34;;;;7459:18;5998:310:2;7441:145:6;3351:417:2;;;;;;:::i;:::-;;:::i;12863:179:1:-;;;;;;;;;;-1:-1:-1;12863:179:1;;;;;:::i;:::-;;:::i;3945:130:2:-;;;;;;;;;;-1:-1:-1;3945:130:2;;;;;:::i;:::-;;:::i;4673:112::-;;;;;;;;;;;;;:::i;9568:142:1:-;;;;;;;;;;-1:-1:-1;9568:142:1;;;;;:::i;:::-;;:::i;4308:248:2:-;;;;;;;;;;-1:-1:-1;4308:248:2;;;;;:::i;:::-;;:::i;5540:231:1:-;;;;;;;;;;-1:-1:-1;5540:231:1;;;;;:::i;:::-;;:::i;1704:101:4:-;;;;;;;;;;;;;:::i;1086:85::-;;;;;;;;;;-1:-1:-1;1158:6:4;;-1:-1:-1;;;;;1158:6:4;1086:85;;9934:102:1;;;;;;;;;;;;;:::i;12040:303::-;;;;;;;;;;-1:-1:-1;12040:303:1;;;;;:::i;:::-;;:::i;13108:385::-;;;;;;;;;;-1:-1:-1;13108:385:1;;;;;:::i;:::-;;:::i;4901:277:2:-;;;;;;;;;;-1:-1:-1;4901:277:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;10102:313:1:-;;;;;;;;;;-1:-1:-1;10102:313:1;;;;;:::i;:::-;;:::i;5294:249:2:-;;;;;;;;;;-1:-1:-1;5294:249:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5660:168::-;;;;;;;;;;-1:-1:-1;5660:168:2;;;;;:::i;:::-;;:::i;6797:94::-;;;;;;;;;;-1:-1:-1;6873:10:2;;-1:-1:-1;;;;;6873:10:2;6797:94;;6612:130;;;;;;;;;;;;;:::i;12409:162:1:-;;;;;;;;;;-1:-1:-1;12409:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;12529:25:1;;;12506:4;12529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12409:162;1954:183:4;;;;;;;;;;-1:-1:-1;1954:183:4;;;;;:::i;:::-;;:::i;4874:607:1:-;4959:4;-1:-1:-1;;;;;;;;;5254:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;5330:25:1;;;5254:101;:177;;;-1:-1:-1;;;;;;;;;;5406:25:1;;;5254:177;5235:196;4874:607;-1:-1:-1;;4874:607:1:o;9772:98::-;9826:13;9858:5;9851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9772:98;:::o;11773:200::-;11841:7;11865:16;11873:7;11865;:16::i;:::-;11860:64;;11890:34;;-1:-1:-1;;;11890:34:1;;;;;;;;;;;11860:64;-1:-1:-1;11942:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;11942:24:1;;11773:200::o;11249:463::-;11321:13;11353:27;11372:7;11353:18;:27::i;:::-;11321:61;;11402:5;-1:-1:-1;;;;;11396:11:1;:2;-1:-1:-1;;;;;11396:11:1;;11392:48;;;11416:24;;-1:-1:-1;;;11416:24:1;;;;;;;;;;;11392:48;27728:10;-1:-1:-1;;;;;11455:28:1;;;11451:172;;11502:44;11519:5;27728:10;12409:162;:::i;11502:44::-;11497:126;;11573:35;;-1:-1:-1;;;11573:35:1;;;;;;;;;;;11497:126;11633:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11633:29:1;-1:-1:-1;;;;;11633:29:1;;;;;;;;;11677:28;;11633:24;;11677:28;;;;;;;11311:401;11249:463;;:::o;12633:164::-;12762:28;12772:4;12778:2;12782:7;12762:9;:28::i;:::-;12633:164;;;:::o;5998:310:2:-;6111:16;6137:21;6195:1;6179:13;4219:12:1;;4010:7;4203:13;:28;;3957:309;6179:13:2;:17;:45;;;;-1:-1:-1;4219:12:1;;4010:7;4203:13;:28;6200:8:2;:24;6179:45;6175:92;;;6233:34;6246:8;6256:10;6233:12;:34::i;:::-;6226:41;;;;;;6175:92;-1:-1:-1;6293:3:2;;-1:-1:-1;6293:3:2;5998:310;;;;;;:::o;3351:417::-;3421:10;;-1:-1:-1;;;;;3421:10:2;:14;;;;:51;;-1:-1:-1;4219:12:1;;4010:7;4203:13;:28;3452:20:2;;:4;:20;:::i;:::-;3439:10;;-1:-1:-1;;;;;3439:10:2;:33;3421:51;3417:100;;;3493:24;;-1:-1:-1;;;3493:24:2;;;;;;;;;;;3417:100;3528:16;3534:3;3539:4;3528:5;:16::i;:::-;1158:6:4;;-1:-1:-1;;;;;1158:6:4;3559:10:2;:21;;;;:55;;-1:-1:-1;3596:18:2;3610:4;3596:11;:18;:::i;:::-;3584:9;:30;3559:55;3555:206;;;3635:27;;-1:-1:-1;;;3635:27:2;;;;;;;;;;;3555:206;1158:6:4;;-1:-1:-1;;;;;1158:6:4;3681:10:2;:21;3677:84;;3716:16;;:45;;-1:-1:-1;;;;;3716:16:2;;;;3746:9;;3716:45;;;;3746:9;3716:16;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3677:84;3351:417;;:::o;12863:179:1:-;12996:39;13013:4;13019:2;13023:7;12996:39;;;;;;;;;;;;:16;:39::i;3945:130:2:-;1158:6:4;;-1:-1:-1;;;;;1158:6:4;27728:10:1;1294:23:4;1290:54;;1326:18;;-1:-1:-1;;;1326:18:4;;;;;;;;;;;1290:54;4015:6:2::1;::::0;-1:-1:-1;;;4015:6:2;::::1;;;4011:37;;;4030:18;;-1:-1:-1::0;;;4030:18:2::1;;;;;;;;;;;4011:37;4058:10:::0;;::::1;::::0;:4:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;4673:112::-:0;1158:6:4;;-1:-1:-1;;;;;1158:6:4;27728:10:1;1294:23:4;1290:54;;1326:18;;-1:-1:-1;;;1326:18:4;;;;;;;;;;;1290:54;4722:6:2::1;::::0;-1:-1:-1;;;4722:6:2;::::1;;;4718:37;;;4737:18;;-1:-1:-1::0;;;4737:18:2::1;;;;;;;;;;;4718:37;4765:6;:13:::0;;-1:-1:-1;;;;;4765:13:2::1;-1:-1:-1::0;;;4765:13:2::1;::::0;;4673:112::o;9568:142:1:-;9632:7;9674:27;9693:7;9674:18;:27::i;4308:248:2:-;1158:6:4;;-1:-1:-1;;;;;1158:6:4;27728:10:1;1294:23:4;1290:54;;1326:18;;-1:-1:-1;;;1326:18:4;;;;;;;;;;;1290:54;4381:6:2::1;::::0;-1:-1:-1;;;4381:6:2;::::1;;;4377:37;;;4396:18;;-1:-1:-1::0;;;4396:18:2::1;;;;;;;;;;;4377:37;4219:12:1::0;;4010:7;4203:13;:28;4428:10:2::1;:27;4424:82;;4476:30;;-1:-1:-1::0;;;4476:30:2::1;;;;;;;;;;;4424:82;4517:10;:32:::0;;-1:-1:-1;;;;;;4517:32:2::1;-1:-1:-1::0;;;;;4517:32:2;;;::::1;::::0;;;::::1;::::0;;4308:248::o;5540:231:1:-;5604:7;5645:5;5623:70;;5665:28;;-1:-1:-1;;;5665:28:1;;;;;;;;;;;5623:70;-1:-1:-1;;;;;;5710:25:1;;;;;:18;:25;;;;;;1017:13;5710:54;;5540:231::o;1704:101:4:-;1158:6;;-1:-1:-1;;;;;1158:6:4;27728:10:1;1294:23:4;1290:54;;1326:18;;-1:-1:-1;;;1326:18:4;;;;;;;;;;;1290:54;1768:30:::1;1795:1;1768:18;:30::i;:::-;1704:101::o:0;9934:102:1:-;9990:13;10022:7;10015:14;;;;;:::i;12040:303::-;-1:-1:-1;;;;;12138:31:1;;27728:10;12138:31;12134:61;;;12178:17;;-1:-1:-1;;;12178:17:1;;;;;;;;;;;12134:61;27728:10;12206:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12206:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;12206:60:1;;;;;;;;;;12281:55;;9776:41:6;;;12206:49:1;;27728:10;12281:55;;9749:18:6;12281:55:1;;;;;;;12040:303;;:::o;13108:385::-;13269:28;13279:4;13285:2;13289:7;13269:9;:28::i;:::-;-1:-1:-1;;;;;13311:14:1;;;:19;13307:180;;13349:56;13380:4;13386:2;13390:7;13399:5;13349:30;:56::i;:::-;13344:143;;13432:40;;-1:-1:-1;;;13432:40:1;;;;;;;;;;;13344:143;13108:385;;;;:::o;4901:277:2:-;4971:24;5005:16;5042:13;4219:12:1;;4010:7;4203:13;:28;;3957:309;5042:13:2;:18;;:47;;-1:-1:-1;4219:12:1;;4010:7;4203:13;:28;5064:8:2;:25;;5042:47;5038:93;;;5098:33;;-1:-1:-1;;;5098:33:2;;;;;;;;;;;5038:93;5148:23;5162:8;5148:13;:23::i;:::-;5141:30;;;;4901:277;;;:::o;10102:313:1:-;10175:13;10205:16;10213:7;10205;:16::i;:::-;10200:59;;10230:29;;-1:-1:-1;;;10230:29:1;;;;;;;;;;;10200:59;10270:21;10294:10;:8;:10::i;:::-;10270:34;;10327:7;10321:21;10346:1;10321:26;;:87;;;;;;;;;;;;;;;;;10374:7;10383:18;10393:7;10383:9;:18::i;:::-;10357:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10321:87;10314:94;10102:313;-1:-1:-1;;;10102:313:1:o;5294:249:2:-;5364:18;5398:13;4219:12:1;;4010:7;4203:13;:28;;3957:309;5398:13:2;:18;;:47;;-1:-1:-1;4219:12:1;;4010:7;4203:13;:28;5420:8:2;:25;;5398:47;5394:93;;;5454:33;;-1:-1:-1;;;5454:33:2;;;;;;;;;;;5394:93;5504:32;5527:8;5504:22;:32::i;5660:168::-;5725:24;5759:16;5799:22;5812:8;5799:12;:22::i;6612:130::-;6656:13;6712:4;6695:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;6681:54;;6612:130;:::o;1954:183:4:-;1158:6;;-1:-1:-1;;;;;1158:6:4;27728:10:1;1294:23:4;1290:54;;1326:18;;-1:-1:-1;;;1326:18:4;;;;;;;;;;;1290:54;-1:-1:-1;;;;;2038:22:4;::::1;2034:58;;2069:23;;-1:-1:-1::0;;;2069:23:4::1;;;;;;;;;;;2034:58;2102:28;2121:8;2102:18;:28::i;:::-;1954:183:::0;:::o;13739:268:1:-;13796:4;13883:13;;13873:7;:23;13831:150;;;;-1:-1:-1;;13933:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;13933:43:1;:48;;13739:268::o;7145:1105::-;7212:7;7246;7344:13;;7337:4;:20;7333:853;;;7381:14;7398:23;;;:17;:23;;;;;;-1:-1:-1;;;7485:23:1;;7481:687;;7996:111;8003:11;7996:111;;-1:-1:-1;;;8073:6:1;8055:25;;;;:17;:25;;;;;;7996:111;;7481:687;7359:827;7333:853;8212:31;;-1:-1:-1;;;8212:31:1;;;;;;;;;;;18859:2595;18969:27;18999;19018:7;18999:18;:27::i;:::-;18969:57;;19082:4;-1:-1:-1;;;;;19041:45:1;19057:19;-1:-1:-1;;;;;19041:45:1;;19037:86;;19095:28;;-1:-1:-1;;;19095:28:1;;;;;;;;;;;19037:86;19134:23;19160:24;;;:15;:24;;;;;;-1:-1:-1;;;;;19160:24:1;;;;19134:23;19221:27;;27728:10;19221:27;;:86;;-1:-1:-1;19264:43:1;19281:4;27728:10;12409:162;:::i;19264:43::-;19221:140;;;-1:-1:-1;;;;;;19323:38:1;;27728:10;19323:38;19221:140;19195:167;;19378:17;19373:66;;19404:35;;-1:-1:-1;;;19404:35:1;;;;;;;;;;;19373:66;19471:2;19449:62;;19488:23;;-1:-1:-1;;;19488:23:1;;;;;;;;;;;19449:62;19650:15;19632:39;19628:101;;19694:24;;;;:15;:24;;;;;19687:31;;-1:-1:-1;;;;;;19687:31:1;;;19628:101;-1:-1:-1;;;;;20089:24:1;;;;;;;:18;:24;;;;;;;;20087:26;;-1:-1:-1;;20087:26:1;;;20157:22;;;;;;;;20155:24;;-1:-1:-1;20155:24:1;;;20443:26;;;:17;:26;;;-1:-1:-1;;;20529:15:1;1656:3;20529:41;20488:83;;:126;;20443:171;;;20731:46;;20727:616;;20834:1;20824:11;;20802:19;20955:30;;;:17;:30;;;;;;20951:378;;21091:13;;21076:11;:28;21072:239;;21236:30;;;;:17;:30;;;;;:52;;;21072:239;20784:559;20727:616;21387:7;21383:2;-1:-1:-1;;;;;21368:27:1;21377:4;-1:-1:-1;;;;;21368:27:1;;;;;;;;;;;18959:2495;;;18859:2595;;;:::o;2353:157:5:-;2458:16;;2422:7;;;;-1:-1:-1;;;;;2458:16:5;;;2497:5;;2476:20;;2491:5;;-1:-1:-1;;;2476:14:5;;-1:-1:-1;;;;;2476:14:5;:20;:::i;:::-;:26;;;;:::i;:::-;2450:53;;;;2353:157;;;;;:::o;16989:1628:1:-;17053:20;17076:13;17121:2;17099:58;;17138:19;;-1:-1:-1;;;17138:19:1;;;;;;;;;;;17099:58;17171:13;17167:44;;17193:18;;-1:-1:-1;;;17193:18:1;;;;;;;;;;;17167:44;-1:-1:-1;;;;;17747:22:1;;;;;;:18;:22;;;;1151:2;17747:22;;;:70;;17785:31;17773:44;;17747:70;;;18053:31;;;:17;:31;;;;;18144:15;1656:3;18144:41;18103:83;;-1:-1:-1;18221:13:1;;1909:3;18206:56;18103:160;18053:210;;:31;18341:23;;;18379:109;18405:40;;18430:14;;;;;-1:-1:-1;;;;;18405:40:1;;;18422:1;;18405:40;;18422:1;;18405:40;18483:3;18468:12;:18;18379:109;;-1:-1:-1;18502:13:1;:28;12633:164;;;:::o;2291:187:4:-;2383:6;;;-1:-1:-1;;;;;2399:17:4;;;-1:-1:-1;;;;;;2399:17:4;;;;;;;2431:40;;2383:6;;;2399:17;2383:6;;2431:40;;2364:16;;2431:40;2354:124;2291:187;:::o;25182:697:1:-;25360:88;;-1:-1:-1;;;25360:88:1;;25340:4;;-1:-1:-1;;;;;25360:45:1;;;;;:88;;27728:10;;25427:4;;25433:7;;25442:5;;25360:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25360:88:1;;;;;;;;-1:-1:-1;;25360:88:1;;;;;;;;;;;;:::i;:::-;;;25356:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25638:13:1;;25634:229;;25683:40;;-1:-1:-1;;;25683:40:1;;;;;;;;;;;25634:229;25823:6;25817:13;25808:6;25804:2;25800:15;25793:38;25356:517;-1:-1:-1;;;;;;25516:64:1;-1:-1:-1;;;25516:64:1;;-1:-1:-1;25356:517:1;25182:697;;;;;;:::o;1680:357:5:-;1833:24;;;1855:1;1833:24;;;;;;;;;1743;;;;1797:33;;1833:24;;;;;;;;;-1:-1:-1;;1893:16:5;;;1907:1;1893:16;;;;;;;;;1797:60;;-1:-1:-1;1867:23:5;;1893:16;-1:-1:-1;1893:16:5;;;;;;;;;-1:-1:-1;;1934:16:5;;1920:11;;1867:42;;-1:-1:-1;;;;;;1934:16:5;;1920:11;;-1:-1:-1;1934:16:5;;1920:11;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;1920:30:5;;;-1:-1:-1;;;;;1920:30:5;;;;;1980:14;;;;;;;;;-1:-1:-1;;;;;1980:14:5;-1:-1:-1;;;;;1972:23:5;1960:6;1967:1;1960:9;;;;;;;;:::i;:::-;;;;;;;;;;:35;2013:8;;2023:6;;-1:-1:-1;1680:357:5;-1:-1:-1;;1680:357:5:o;6400:103:2:-;6460:13;6492:4;6485:11;;;;;:::i;27846:1904:1:-;28309:4;28303:11;;28316:3;28299:21;;28392:17;;;;29075:11;;;28956:5;29205:2;29219;29209:13;;29201:22;29075:11;29188:36;29259:2;29249:13;;28850:666;29277:4;28850:666;;;29447:1;29442:3;29438:11;29431:18;;29497:2;29491:4;29487:13;29483:2;29479:22;29474:3;29466:36;29370:2;29360:13;;28850:666;;;-1:-1:-1;29544:13:1;;;-1:-1:-1;;29657:12:1;;;29715:19;;;29657:12;27846:1904;-1:-1:-1;27846:1904:1:o;2092:209:5:-;2202:13;;;2213:1;2202:13;;;;;;;;;2156;;2181:18;;2202:13;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;2202:13:5;;;;;;;;;;;;;;-1:-1:-1;2235:38:5;;;;;;;;;2240:16;;-1:-1:-1;;;;;2240:16:5;;2235:38;;-1:-1:-1;;;2258:14:5;;-1:-1:-1;;;;;2258:14:5;2235:38;;;;2225:7;;;;-1:-1:-1;2235:38:5;2225:7;;-1:-1:-1;;2225:7:5;;;;:::i;:::-;;;;;;;;;;:48;2290:4;2092:209;-1:-1:-1;;2092:209:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:6;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:6;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:6;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:6;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:6:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:6;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:6;;3928:110;-1:-1:-1;3928:110:6:o;4043:248::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:2;;;4188:1;4185;4178:12;4140:2;-1:-1:-1;;4211:23:6;;;4281:2;4266:18;;;4253:32;;-1:-1:-1;4130:161:6:o;4296:257::-;4337:3;4375:5;4369:12;4402:6;4397:3;4390:19;4418:63;4474:6;4467:4;4462:3;4458:14;4451:4;4444:5;4440:16;4418:63;:::i;:::-;4535:2;4514:15;-1:-1:-1;;4510:29:6;4501:39;;;;4542:4;4497:50;;4345:208;-1:-1:-1;;4345:208:6:o;4690:470::-;4869:3;4907:6;4901:13;4923:53;4969:6;4964:3;4957:4;4949:6;4945:17;4923:53;:::i;:::-;5039:13;;4998:16;;;;5061:57;5039:13;4998:16;5095:4;5083:17;;5061:57;:::i;:::-;5134:20;;4877:283;-1:-1:-1;;;;4877:283:6:o;5165:1231::-;5394:3;5423:1;5456:6;5450:13;5486:3;5508:1;5536:9;5532:2;5528:18;5518:28;;5596:2;5585:9;5581:18;5618;5608:2;;5662:4;5654:6;5650:17;5640:27;;5608:2;5688;5736;5728:6;5725:14;5705:18;5702:38;5699:2;;;-1:-1:-1;;;5763:33:6;;5819:4;5816:1;5809:15;5849:4;5770:3;5837:17;5699:2;5880:18;5907:104;;;;6025:1;6020:320;;;;5873:467;;5907:104;-1:-1:-1;;5940:24:6;;5928:37;;5985:16;;;;-1:-1:-1;5907:104:6;;6020:320;10307:1;10300:14;;;10344:4;10331:18;;6115:1;6129:165;6143:6;6140:1;6137:13;6129:165;;;6221:14;;6208:11;;;6201:35;6264:16;;;;6158:10;;6129:165;;;6133:3;;6323:6;6318:3;6314:16;6307:23;;5873:467;;;;;;;6356:34;6386:3;-1:-1:-1;;;4623:28:6;;4676:2;4667:12;;4613:72;6819:488;-1:-1:-1;;;;;7088:15:6;;;7070:34;;7140:15;;7135:2;7120:18;;7113:43;7187:2;7172:18;;7165:34;;;7235:3;7230:2;7215:18;;7208:31;;;7013:4;;7256:45;;7281:19;;7273:6;7256:45;:::i;:::-;7248:53;7022:285;-1:-1:-1;;;;;;7022:285:6:o;7591:1194::-;7875:2;7887:21;;;7957:13;;7860:18;;;7979:22;;;7827:4;;8054;;8032:2;8017:18;;;8081:15;;;7827:4;8124:195;8138:6;8135:1;8132:13;8124:195;;;8203:13;;-1:-1:-1;;;;;8199:39:6;8187:52;;8259:12;;;;8294:15;;;;8235:1;8153:9;8124:195;;;-1:-1:-1;;;8355:19:6;;;8335:18;;;8328:47;8425:13;;8447:21;;;8523:15;;;;8486:12;;;8558:1;8568:189;8584:8;8579:3;8576:17;8568:189;;;8653:15;;8639:30;;8730:17;;;;8691:14;;;;8612:1;8603:11;8568:189;;;-1:-1:-1;8774:5:6;;7836:949;-1:-1:-1;;;;;;;7836:949:6:o;8790:841::-;9005:2;9057:21;;;9127:13;;9030:18;;;9149:22;;;8976:4;;9005:2;9190;;9208:18;;;;9249:15;;;8976:4;9292:313;9306:6;9303:1;9300:13;9292:313;;;9365:13;;9407:9;;-1:-1:-1;;;;;9403:35:6;9391:48;;9483:11;;9477:18;-1:-1:-1;;;;;9473:51:6;9459:12;;;9452:73;9545:12;;;;9580:15;;;;9435:1;9321:9;9292:313;;;-1:-1:-1;9622:3:6;;8985:646;-1:-1:-1;;;;;;;8985:646:6:o;9828:219::-;9977:2;9966:9;9959:21;9940:4;9997:44;10037:2;10026:9;10022:18;10014:6;9997:44;:::i;10360:128::-;10400:3;10431:1;10427:6;10424:1;10421:13;10418:2;;;10437:18;;:::i;:::-;-1:-1:-1;10473:9:6;;10408:80::o;10493:217::-;10533:1;10559;10549:2;;10603:10;10598:3;10594:20;10591:1;10584:31;10638:4;10635:1;10628:15;10666:4;10663:1;10656:15;10549:2;-1:-1:-1;10695:9:6;;10539:171::o;10715:168::-;10755:7;10821:1;10817;10813:6;10809:14;10806:1;10803:21;10798:1;10791:9;10784:17;10780:45;10777:2;;;10828:18;;:::i;:::-;-1:-1:-1;10868:9:6;;10767:116::o;10888:258::-;10960:1;10970:113;10984:6;10981:1;10978:13;10970:113;;;11060:11;;;11054:18;11041:11;;;11034:39;11006:2;10999:10;10970:113;;;11101:6;11098:1;11095:13;11092:2;;;-1:-1:-1;;11136:1:6;11118:16;;11111:27;10941:205::o;11151:380::-;11230:1;11226:12;;;;11273;;;11294:2;;11348:4;11340:6;11336:17;11326:27;;11294:2;11401;11393:6;11390:14;11370:18;11367:38;11364:2;;;11447:10;11442:3;11438:20;11435:1;11428:31;11482:4;11479:1;11472:15;11510:4;11507:1;11500:15;11364:2;;11206:325;;;:::o;11536:127::-;11597:10;11592:3;11588:20;11585:1;11578:31;11628:4;11625:1;11618:15;11652:4;11649:1;11642:15;11668:127;11729:10;11724:3;11720:20;11717:1;11710:31;11760:4;11757:1;11750:15;11784:4;11781:1;11774:15;11800:127;11861:10;11856:3;11852:20;11849:1;11842:31;11892:4;11889:1;11882:15;11916:4;11913:1;11906:15;11932:131;-1:-1:-1;;;;;;12006:32:6;;11996:43;;11986:2;;12053:1;12050;12043:12
Swarm Source
ipfs://7a9682455bd09ab9994cb56b628bc12a89fe2b03c2d6f0743776d1f1112377f3
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.