Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 632 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint And Stake | 20884597 | 81 days ago | IN | 0 ETH | 0.00136028 | ||||
Mint | 20659277 | 112 days ago | IN | 0 ETH | 0.00006333 | ||||
Mint And Stake | 20606446 | 120 days ago | IN | 0 ETH | 0.00035191 | ||||
Mint And Stake | 20129116 | 186 days ago | IN | 0 ETH | 0.00090514 | ||||
Mint | 19904521 | 218 days ago | IN | 0 ETH | 0.00081163 | ||||
Set Approval For... | 19865136 | 223 days ago | IN | 0 ETH | 0.00019508 | ||||
Mint | 19500878 | 274 days ago | IN | 0 ETH | 0.00175192 | ||||
Set Approval For... | 18501090 | 414 days ago | IN | 0 ETH | 0.00034896 | ||||
Mint And Stake | 18489562 | 416 days ago | IN | 0 ETH | 0.01044847 | ||||
Mint And Stake | 18489376 | 416 days ago | IN | 0 ETH | 0.01748576 | ||||
Mint And Stake | 18489313 | 416 days ago | IN | 0 ETH | 0.02783492 | ||||
Mint And Stake | 18489134 | 416 days ago | IN | 0 ETH | 0.01116211 | ||||
Mint And Stake | 18489127 | 416 days ago | IN | 0 ETH | 0.01196784 | ||||
Mint And Stake | 18488144 | 416 days ago | IN | 0 ETH | 0.01191855 | ||||
Mint And Stake | 18488088 | 416 days ago | IN | 0 ETH | 0.01061102 | ||||
Mint And Stake | 18488084 | 416 days ago | IN | 0 ETH | 0.01474147 | ||||
Mint And Stake | 18487918 | 416 days ago | IN | 0 ETH | 0.01892109 | ||||
Mint And Stake | 18487912 | 416 days ago | IN | 0 ETH | 0.01808822 | ||||
Mint And Stake | 18487854 | 416 days ago | IN | 0 ETH | 0.01140186 | ||||
Mint And Stake | 18487830 | 416 days ago | IN | 0 ETH | 0.00932134 | ||||
Mint And Stake | 18475372 | 418 days ago | IN | 0 ETH | 0.00224925 | ||||
Mint And Stake | 18424991 | 425 days ago | IN | 0 ETH | 0.00208826 | ||||
Mint And Stake | 18394331 | 429 days ago | IN | 0 ETH | 0.0024009 | ||||
Mint And Stake | 18381069 | 431 days ago | IN | 0 ETH | 0.00102621 | ||||
Mint And Stake | 18327359 | 439 days ago | IN | 0 ETH | 0.00120383 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
WealthyTowersApartments
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; interface IWealth { function burnFrom(address account, uint256 amount) external; } interface IWealthyTowersApartmentsStaking { function stake(uint256[] calldata _tokenIds) external; } contract WealthyTowersApartments is ERC721A, ERC721AQueryable, Ownable { enum ApartmentTypes { None, Standard, Studio, Penthouse } bool public paused = true; uint16 studioCount = 1500; uint16 standardCount = 5500; uint16 penthouseCount = 777; uint16 constant MAX_SUPPLY = 7777; uint256 constant APARTMENT_COST = 12000 ether; string tokenBaseURI = "https://storage.googleapis.com/wasc-apartments/metadata/"; mapping(address => bool) public projectProxy; mapping(uint256 => ApartmentTypes) internal apartmentType; IWealth private immutable wealthContract; IWealthyTowersApartmentsStaking private apartmentsStakingContract; constructor(address _wealthContract) ERC721A("Wealthy Towers Apartments", "WTAP") { wealthContract = IWealth(_wealthContract); } function mint(uint256 _quantity) external payable { require(!paused, "Minting paused"); wealthContract.burnFrom(msg.sender, APARTMENT_COST * _quantity); _internalMint(_quantity); } function mintAndStake(uint256 _quantity) external payable { require(!paused, "Minting paused"); uint256 _totalSupply = _currentIndex; uint256[] memory _mintedTokens = new uint256[](_quantity); wealthContract.burnFrom(msg.sender, APARTMENT_COST * _quantity); _internalMint(_quantity); for (uint256 i = 0; i < _quantity; ++i) { _mintedTokens[i] = _totalSupply + i; } apartmentsStakingContract.stake(_mintedTokens); } function _internalMint(uint256 _quantity) internal { uint256 _totalSupply = _currentIndex; uint256 _supplyCount = _totalSupply + _quantity; require(_supplyCount <= MAX_SUPPLY, "Exceeds supply"); unchecked { for (uint256 i = _totalSupply; i < _supplyCount; ++i) { uint256 _rand = random(i); if (_rand <= penthouseCount) { penthouseCount--; apartmentType[i] = ApartmentTypes.Penthouse; } else if (_rand <= studioCount) { studioCount--; apartmentType[i] = ApartmentTypes.Studio; } else if (_rand <= standardCount) { standardCount--; apartmentType[i] = ApartmentTypes.Standard; } } } _mint(msg.sender, _quantity); } function random(uint256 _salt) internal view returns (uint256) { uint256 _totalSupply = getLargestSupply(); return (uint256( keccak256( abi.encodePacked(msg.sender, block.difficulty, block.timestamp, _salt) ) ) % _totalSupply) + 1; } function getLargestSupply() internal view returns (uint16) { if (standardCount >= studioCount && standardCount >= penthouseCount) { return standardCount; } else if (studioCount >= standardCount && studioCount >= penthouseCount) { return studioCount; } else { return penthouseCount; } } function getApartmentType(uint256 _tokenId) public view returns (ApartmentTypes) { return apartmentType[_tokenId]; } function isApprovedForAll(address _owner, address _operator) public view override returns (bool) { if (projectProxy[_operator]) { return true; } return super.isApprovedForAll(_owner, _operator); } function collectReserves() external onlyOwner { require(totalSupply() == 0, "Reserves already taken"); _internalMint(50); } function flipSale() external onlyOwner { paused = !paused; } function flipProxyState(address _proxyAddress) public onlyOwner { projectProxy[_proxyAddress] = !projectProxy[_proxyAddress]; } function setBaseURI(string calldata _newBaseUri) public onlyOwner { tokenBaseURI = _newBaseUri; } function setApartmentsStakingContract(address _apartmentStakingContract) external onlyOwner { apartmentsStakingContract = IWealthyTowersApartmentsStaking( _apartmentStakingContract ); } function _baseURI() internal view override(ERC721A) returns (string memory) { return tokenBaseURI; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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 See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].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 { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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.isContract() && !_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 && !_ownerships[tokenId].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 (to == address(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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { 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 (to == address(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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '../ERC721A.sol'; error InvalidQueryRange(); /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_wealthContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getApartmentType","outputs":[{"internalType":"enum WealthyTowersApartments.ApartmentTypes","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAndStake","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_apartmentStakingContract","type":"address"}],"name":"setApartmentsStakingContract","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":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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
6008805466ffffffffffffff60a01b1916660309157c05dc0160a01b179055610100604052603860a0818152906200314660c0398051620000499160099160209091019062000167565b503480156200005757600080fd5b506040516200317e3803806200317e8339810160408190526200007a916200020d565b604080518082018252601981527f5765616c74687920546f776572732041706172746d656e7473000000000000006020808301918252835180850190945260048452630575441560e41b908401528151919291620000db9160029162000167565b508051620000f190600390602084019062000167565b50506000805550620001033362000115565b6001600160a01b03166080526200027b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000175906200023f565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b6000602082840312156200022057600080fd5b81516001600160a01b03811681146200023857600080fd5b9392505050565b600181811c908216806200025457607f821691505b6020821081036200027557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612ea86200029e600039600081816110b101526114b90152612ea86000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063a22cb46511610095578063d960b37a11610064578063d960b37a1461059c578063e985e9c5146105af578063f2fde38b146105cf578063f73c814b146105ef57600080fd5b8063a22cb4651461050f578063b88d4fde1461052f578063c23dc68f1461054f578063c87b56dd1461057c57600080fd5b80638da5cb5b116100d15780638da5cb5b146104a957806395d89b41146104c757806399a2557a146104dc578063a0712d68146104fc57600080fd5b8063715018a614610432578063771e3426146104475780637ba5e621146104675780638462151c1461047c57600080fd5b806323b872dd1161017a5780635bbb2177116101495780635bbb2177146103935780635c975abb146103c05780636352211e146103f257806370a082311461041257600080fd5b806323b872dd1461030357806342842e0e1461032357806355f804b3146103435780635bab26e21461036357600080fd5b8063081812fc116101b6578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806320bb4b87146102c657600080fd5b806301ffc9a7146101dd578063029877b61461021257806306fdde0314610229575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046126ee565b61060f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276106f4565b005b34801561023557600080fd5b5061023e6107b2565b6040516102099190612781565b34801561025757600080fd5b5061026b610266366004612794565b610844565b6040516001600160a01b039091168152602001610209565b34801561028f57600080fd5b5061022761029e3660046127c9565b6108a1565b3480156102af57600080fd5b50600154600054035b604051908152602001610209565b3480156102d257600080fd5b506102f66102e1366004612794565b6000908152600b602052604090205460ff1690565b60405161020991906127f3565b34801561030f57600080fd5b5061022761031e366004612834565b610960565b34801561032f57600080fd5b5061022761033e366004612834565b61096b565b34801561034f57600080fd5b5061022761035e366004612870565b610986565b34801561036f57600080fd5b506101fd61037e3660046128e2565b600a6020526000908152604090205460ff1681565b34801561039f57600080fd5b506103b36103ae36600461297b565b6109ec565b6040516102099190612a21565b3480156103cc57600080fd5b506008546101fd9074010000000000000000000000000000000000000000900460ff1681565b3480156103fe57600080fd5b5061026b61040d366004612794565b610ab3565b34801561041e57600080fd5b506102b861042d3660046128e2565b610ac5565b34801561043e57600080fd5b50610227610b2d565b34801561045357600080fd5b506102276104623660046128e2565b610b91565b34801561047357600080fd5b50610227610c25565b34801561048857600080fd5b5061049c6104973660046128e2565b610ccc565b6040516102099190612a8c565b3480156104b557600080fd5b506008546001600160a01b031661026b565b3480156104d357600080fd5b5061023e610e35565b3480156104e857600080fd5b5061049c6104f7366004612ac4565b610e44565b61022761050a366004612794565b61103c565b34801561051b57600080fd5b5061022761052a366004612af7565b61116d565b34801561053b57600080fd5b5061022761054a366004612b33565b61121b565b34801561055b57600080fd5b5061056f61056a366004612794565b611285565b6040516102099190612c11565b34801561058857600080fd5b5061023e610597366004612794565b61135e565b6102276105aa366004612794565b6113fa565b3480156105bb57600080fd5b506101fd6105ca366004612c47565b611635565b3480156105db57600080fd5b506102276105ea3660046128e2565b61168d565b3480156105fb57600080fd5b5061022761060a3660046128e2565b61176c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106a257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106ee57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6008546001600160a01b031633146107535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600154600054146107a65760405162461bcd60e51b815260206004820152601660248201527f526573657276657320616c72656164792074616b656e00000000000000000000604482015260640161074a565b6107b060326117ef565b565b6060600280546107c190612c7a565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90612c7a565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061084f82611a55565b610885576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ac82610ab3565b9050806001600160a01b0316836001600160a01b0316036108f9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161480159061091957506109178133611635565b155b15610950576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095b838383611a99565b505050565b61095b838383611b0d565b61095b8383836040518060200160405280600081525061121b565b6008546001600160a01b031633146109e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b61095b60098383612627565b805160609060008167ffffffffffffffff811115610a0c57610a0c6128fd565b604051908082528060200260200182016040528015610a5757816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610a2a5790505b50905060005b828114610aab57610a86858281518110610a7957610a79612ccd565b6020026020010151611285565b828281518110610a9857610a98612ccd565b6020908102919091010152600101610a5d565b509392505050565b6000610abe82611db1565b5192915050565b60006001600160a01b038216610b07576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b6107b06000611f3a565b6008546001600160a01b03163314610beb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610c7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b60606000806000610cdc85610ac5565b905060008167ffffffffffffffff811115610cf957610cf96128fd565b604051908082528060200260200182016040528015610d22578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b838614610e2957600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529250610e215781516001600160a01b031615610de257815194505b876001600160a01b0316856001600160a01b031603610e215780838780600101985081518110610e1457610e14612ccd565b6020026020010181815250505b600101610d43565b50909695505050505050565b6060600380546107c190612c7a565b6060818310610e7f576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805480841115610e8f578093505b6000610e9a87610ac5565b905084861015610eb95785850381811015610eb3578091505b50610ebd565b5060005b60008167ffffffffffffffff811115610ed857610ed86128fd565b604051908082528060200260200182016040528015610f01578160200160208202803683370190505b50905081600003610f1757935061103592505050565b6000610f2288611285565b905060008160400151610f33575080515b885b888114158015610f455750848714155b1561102957600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905293506110215782516001600160a01b031615610fe257825191505b8a6001600160a01b0316826001600160a01b031603611021578084888060010199508151811061101457611014612ccd565b6020026020010181815250505b600101610f35565b50505092835250909150505b9392505050565b60085474010000000000000000000000000000000000000000900460ff16156110a75760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e6720706175736564000000000000000000000000000000000000604482015260640161074a565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166379cc6790336110eb8469028a857425466f800000612d2b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561114957600080fd5b505af115801561115d573d6000803e3d6000fd5b5050505061116a816117ef565b50565b336001600160a01b038316036111af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611226848484611b0d565b6001600160a01b0383163b15158015611248575061124684848484611fa4565b155b1561127f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106112ca5792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615801592820192909252906113555792915050565b61103583611db1565b606061136982611a55565b61139f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113a9612111565b905080516000036113c95760405180602001604052806000815250611035565b806113d384612120565b6040516020016113e4929190612d4a565b6040516020818303038152906040529392505050565b60085474010000000000000000000000000000000000000000900460ff16156114655760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e6720706175736564000000000000000000000000000000000000604482015260640161074a565b60008054908267ffffffffffffffff811115611483576114836128fd565b6040519080825280602002602001820160405280156114ac578160200160208202803683370190505b5090506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166379cc6790336114f38669028a857425466f800000612d2b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561155157600080fd5b505af1158015611565573d6000803e3d6000fd5b50505050611572836117ef565b60005b838110156115b4576115878184612d79565b82828151811061159957611599612ccd565b60209081029190910101526115ad81612d91565b9050611575565b50600c546040517f0fbf0a930000000000000000000000000000000000000000000000000000000081526001600160a01b0390911690630fbf0a93906115fe908490600401612a8c565b600060405180830381600087803b15801561161857600080fd5b505af115801561162c573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381166000908152600a602052604081205460ff161561165e575060016106ee565b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146116e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b6001600160a01b0381166117635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161074a565b61116a81611f3a565b6008546001600160a01b031633146117c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b6001600160a01b03166000908152600a60205260409020805460ff19811660ff90911615179055565b60008054906117fe8383612d79565b9050611e618111156118525760405162461bcd60e51b815260206004820152600e60248201527f4578636565647320737570706c79000000000000000000000000000000000000604482015260640161074a565b815b81811015611a4a57600061186782612255565b600854909150790100000000000000000000000000000000000000000000000000900461ffff168111611911576008805460001961ffff79010000000000000000000000000000000000000000000000000080840482169290920116027fffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffff9091161790556000828152600b6020526040902080546003919060ff19166001835b0217905550611a41565b6008547501000000000000000000000000000000000000000000900461ffff1681116119aa576008805460001961ffff750100000000000000000000000000000000000000000080840482169290920116027fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff9091161790556000828152600b6020526040902080546002919060ff1916600183611907565b60085477010000000000000000000000000000000000000000000000900461ffff168111611a4157600880547fffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffff8116770100000000000000000000000000000000000000000000009182900461ffff90811660001901169091021790556000828152600b60205260409020805460ff191660011790555b50600101611854565b5061095b33846122dd565b60008054821080156106ee5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b1882611db1565b9050836001600160a01b031681600001516001600160a01b031614611b69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611b875750611b878533611635565b80611ba2575033611b9784610844565b6001600160a01b0316145b905080611bdb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611c1b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c2760008487611a99565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116611d66576000548214611d66578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611f0857600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290611f065780516001600160a01b031615611e72579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215611f01579392505050565b611e72565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611ff2903390899088908890600401612dab565b6020604051808303816000875af192505050801561204b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261204891810190612de7565b60015b6120c2573d808015612079576040519150601f19603f3d011682016040523d82523d6000602084013e61207e565b606091505b5080516000036120ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600980546107c190612c7a565b60608160000361216357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561218d578061217781612d91565b91506121869050600a83612e33565b9150612167565b60008167ffffffffffffffff8111156121a8576121a86128fd565b6040519080825280601f01601f1916602001820160405280156121d2576020820181803683370190505b5090505b8415612109576121e7600183612e47565b91506121f4600a86612e5e565b6121ff906030612d79565b60f81b81838151811061221457612214612ccd565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061224e600a86612e33565b94506121d6565b600080612260612492565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201524460348201524260548201526074810185905261ffff91909116915081906094016040516020818303038152906040528051906020012060001c6122d29190612e5e565b611035906001612d79565b6000546001600160a01b038316612320576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160000361235a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168a018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168a01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036124465750600055505050565b60085460009061ffff750100000000000000000000000000000000000000000082048116770100000000000000000000000000000000000000000000009092041610801590612521575060085461ffff79010000000000000000000000000000000000000000000000000082048116770100000000000000000000000000000000000000000000009092041610155b1561254c575060085477010000000000000000000000000000000000000000000000900461ffff1690565b60085461ffff7701000000000000000000000000000000000000000000000082048116750100000000000000000000000000000000000000000090920416108015906125d6575060085461ffff7901000000000000000000000000000000000000000000000000008204811675010000000000000000000000000000000000000000009092041610155b156125ff57506008547501000000000000000000000000000000000000000000900461ffff1690565b50600854790100000000000000000000000000000000000000000000000000900461ffff1690565b82805461263390612c7a565b90600052602060002090601f016020900481019282612655576000855561269b565b82601f1061266e5782800160ff1982351617855561269b565b8280016001018555821561269b579182015b8281111561269b578235825591602001919060010190612680565b506126a79291506126ab565b5090565b5b808211156126a757600081556001016126ac565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116a57600080fd5b60006020828403121561270057600080fd5b8135611035816126c0565b60005b8381101561272657818101518382015260200161270e565b8381111561127f5750506000910152565b6000815180845261274f81602086016020860161270b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006110356020830184612737565b6000602082840312156127a657600080fd5b5035919050565b80356001600160a01b03811681146127c457600080fd5b919050565b600080604083850312156127dc57600080fd5b6127e5836127ad565b946020939093013593505050565b602081016004831061282e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060006060848603121561284957600080fd5b612852846127ad565b9250612860602085016127ad565b9150604084013590509250925092565b6000806020838503121561288357600080fd5b823567ffffffffffffffff8082111561289b57600080fd5b818501915085601f8301126128af57600080fd5b8135818111156128be57600080fd5b8660208285010111156128d057600080fd5b60209290920196919550909350505050565b6000602082840312156128f457600080fd5b611035826127ad565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612973576129736128fd565b604052919050565b6000602080838503121561298e57600080fd5b823567ffffffffffffffff808211156129a657600080fd5b818501915085601f8301126129ba57600080fd5b8135818111156129cc576129cc6128fd565b8060051b91506129dd84830161292c565b81815291830184019184810190888411156129f757600080fd5b938501935b83851015612a15578435825293850193908501906129fc565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610e2957612a7983855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b9284019260609290920191600101612a3d565b6020808252825182820181905260009190848201906040850190845b81811015610e2957835183529284019291840191600101612aa8565b600080600060608486031215612ad957600080fd5b612ae2846127ad565b95602085013595506040909401359392505050565b60008060408385031215612b0a57600080fd5b612b13836127ad565b915060208301358015158114612b2857600080fd5b809150509250929050565b60008060008060808587031215612b4957600080fd5b612b52856127ad565b93506020612b618187016127ad565b935060408601359250606086013567ffffffffffffffff80821115612b8557600080fd5b818801915088601f830112612b9957600080fd5b813581811115612bab57612bab6128fd565b612bdb847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160161292c565b91508082528984828501011115612bf157600080fd5b808484018584013760008482840101525080935050505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff1690820152604080830151151590820152606081016106ee565b60008060408385031215612c5a57600080fd5b612c63836127ad565b9150612c71602084016127ad565b90509250929050565b600181811c90821680612c8e57607f821691505b602082108103612cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816000190483118215151615612d4557612d45612cfc565b500290565b60008351612d5c81846020880161270b565b835190830190612d7081836020880161270b565b01949350505050565b60008219821115612d8c57612d8c612cfc565b500190565b60006000198203612da457612da4612cfc565b5060010190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ddd6080830184612737565b9695505050505050565b600060208284031215612df957600080fd5b8151611035816126c0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612e4257612e42612e04565b500490565b600082821015612e5957612e59612cfc565b500390565b600082612e6d57612e6d612e04565b50069056fea26469706673582212206f508d77d096cedc4fa0cb32769c2ce83b7dfd3e15aa2bbb5168fdab404846ae64736f6c634300080d003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f776173632d61706172746d656e74732f6d657461646174612f0000000000000000000000009c9426fc8972f0eca475907196afea4d3c9a555a
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063a22cb46511610095578063d960b37a11610064578063d960b37a1461059c578063e985e9c5146105af578063f2fde38b146105cf578063f73c814b146105ef57600080fd5b8063a22cb4651461050f578063b88d4fde1461052f578063c23dc68f1461054f578063c87b56dd1461057c57600080fd5b80638da5cb5b116100d15780638da5cb5b146104a957806395d89b41146104c757806399a2557a146104dc578063a0712d68146104fc57600080fd5b8063715018a614610432578063771e3426146104475780637ba5e621146104675780638462151c1461047c57600080fd5b806323b872dd1161017a5780635bbb2177116101495780635bbb2177146103935780635c975abb146103c05780636352211e146103f257806370a082311461041257600080fd5b806323b872dd1461030357806342842e0e1461032357806355f804b3146103435780635bab26e21461036357600080fd5b8063081812fc116101b6578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806320bb4b87146102c657600080fd5b806301ffc9a7146101dd578063029877b61461021257806306fdde0314610229575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046126ee565b61060f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276106f4565b005b34801561023557600080fd5b5061023e6107b2565b6040516102099190612781565b34801561025757600080fd5b5061026b610266366004612794565b610844565b6040516001600160a01b039091168152602001610209565b34801561028f57600080fd5b5061022761029e3660046127c9565b6108a1565b3480156102af57600080fd5b50600154600054035b604051908152602001610209565b3480156102d257600080fd5b506102f66102e1366004612794565b6000908152600b602052604090205460ff1690565b60405161020991906127f3565b34801561030f57600080fd5b5061022761031e366004612834565b610960565b34801561032f57600080fd5b5061022761033e366004612834565b61096b565b34801561034f57600080fd5b5061022761035e366004612870565b610986565b34801561036f57600080fd5b506101fd61037e3660046128e2565b600a6020526000908152604090205460ff1681565b34801561039f57600080fd5b506103b36103ae36600461297b565b6109ec565b6040516102099190612a21565b3480156103cc57600080fd5b506008546101fd9074010000000000000000000000000000000000000000900460ff1681565b3480156103fe57600080fd5b5061026b61040d366004612794565b610ab3565b34801561041e57600080fd5b506102b861042d3660046128e2565b610ac5565b34801561043e57600080fd5b50610227610b2d565b34801561045357600080fd5b506102276104623660046128e2565b610b91565b34801561047357600080fd5b50610227610c25565b34801561048857600080fd5b5061049c6104973660046128e2565b610ccc565b6040516102099190612a8c565b3480156104b557600080fd5b506008546001600160a01b031661026b565b3480156104d357600080fd5b5061023e610e35565b3480156104e857600080fd5b5061049c6104f7366004612ac4565b610e44565b61022761050a366004612794565b61103c565b34801561051b57600080fd5b5061022761052a366004612af7565b61116d565b34801561053b57600080fd5b5061022761054a366004612b33565b61121b565b34801561055b57600080fd5b5061056f61056a366004612794565b611285565b6040516102099190612c11565b34801561058857600080fd5b5061023e610597366004612794565b61135e565b6102276105aa366004612794565b6113fa565b3480156105bb57600080fd5b506101fd6105ca366004612c47565b611635565b3480156105db57600080fd5b506102276105ea3660046128e2565b61168d565b3480156105fb57600080fd5b5061022761060a3660046128e2565b61176c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106a257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106ee57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6008546001600160a01b031633146107535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600154600054146107a65760405162461bcd60e51b815260206004820152601660248201527f526573657276657320616c72656164792074616b656e00000000000000000000604482015260640161074a565b6107b060326117ef565b565b6060600280546107c190612c7a565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90612c7a565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061084f82611a55565b610885576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ac82610ab3565b9050806001600160a01b0316836001600160a01b0316036108f9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161480159061091957506109178133611635565b155b15610950576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095b838383611a99565b505050565b61095b838383611b0d565b61095b8383836040518060200160405280600081525061121b565b6008546001600160a01b031633146109e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b61095b60098383612627565b805160609060008167ffffffffffffffff811115610a0c57610a0c6128fd565b604051908082528060200260200182016040528015610a5757816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610a2a5790505b50905060005b828114610aab57610a86858281518110610a7957610a79612ccd565b6020026020010151611285565b828281518110610a9857610a98612ccd565b6020908102919091010152600101610a5d565b509392505050565b6000610abe82611db1565b5192915050565b60006001600160a01b038216610b07576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b6107b06000611f3a565b6008546001600160a01b03163314610beb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610c7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b60606000806000610cdc85610ac5565b905060008167ffffffffffffffff811115610cf957610cf96128fd565b604051908082528060200260200182016040528015610d22578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b838614610e2957600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529250610e215781516001600160a01b031615610de257815194505b876001600160a01b0316856001600160a01b031603610e215780838780600101985081518110610e1457610e14612ccd565b6020026020010181815250505b600101610d43565b50909695505050505050565b6060600380546107c190612c7a565b6060818310610e7f576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805480841115610e8f578093505b6000610e9a87610ac5565b905084861015610eb95785850381811015610eb3578091505b50610ebd565b5060005b60008167ffffffffffffffff811115610ed857610ed86128fd565b604051908082528060200260200182016040528015610f01578160200160208202803683370190505b50905081600003610f1757935061103592505050565b6000610f2288611285565b905060008160400151610f33575080515b885b888114158015610f455750848714155b1561102957600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905293506110215782516001600160a01b031615610fe257825191505b8a6001600160a01b0316826001600160a01b031603611021578084888060010199508151811061101457611014612ccd565b6020026020010181815250505b600101610f35565b50505092835250909150505b9392505050565b60085474010000000000000000000000000000000000000000900460ff16156110a75760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e6720706175736564000000000000000000000000000000000000604482015260640161074a565b6001600160a01b037f0000000000000000000000009c9426fc8972f0eca475907196afea4d3c9a555a166379cc6790336110eb8469028a857425466f800000612d2b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561114957600080fd5b505af115801561115d573d6000803e3d6000fd5b5050505061116a816117ef565b50565b336001600160a01b038316036111af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611226848484611b0d565b6001600160a01b0383163b15158015611248575061124684848484611fa4565b155b1561127f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106112ca5792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615801592820192909252906113555792915050565b61103583611db1565b606061136982611a55565b61139f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113a9612111565b905080516000036113c95760405180602001604052806000815250611035565b806113d384612120565b6040516020016113e4929190612d4a565b6040516020818303038152906040529392505050565b60085474010000000000000000000000000000000000000000900460ff16156114655760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e6720706175736564000000000000000000000000000000000000604482015260640161074a565b60008054908267ffffffffffffffff811115611483576114836128fd565b6040519080825280602002602001820160405280156114ac578160200160208202803683370190505b5090506001600160a01b037f0000000000000000000000009c9426fc8972f0eca475907196afea4d3c9a555a166379cc6790336114f38669028a857425466f800000612d2b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561155157600080fd5b505af1158015611565573d6000803e3d6000fd5b50505050611572836117ef565b60005b838110156115b4576115878184612d79565b82828151811061159957611599612ccd565b60209081029190910101526115ad81612d91565b9050611575565b50600c546040517f0fbf0a930000000000000000000000000000000000000000000000000000000081526001600160a01b0390911690630fbf0a93906115fe908490600401612a8c565b600060405180830381600087803b15801561161857600080fd5b505af115801561162c573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381166000908152600a602052604081205460ff161561165e575060016106ee565b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146116e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b6001600160a01b0381166117635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161074a565b61116a81611f3a565b6008546001600160a01b031633146117c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074a565b6001600160a01b03166000908152600a60205260409020805460ff19811660ff90911615179055565b60008054906117fe8383612d79565b9050611e618111156118525760405162461bcd60e51b815260206004820152600e60248201527f4578636565647320737570706c79000000000000000000000000000000000000604482015260640161074a565b815b81811015611a4a57600061186782612255565b600854909150790100000000000000000000000000000000000000000000000000900461ffff168111611911576008805460001961ffff79010000000000000000000000000000000000000000000000000080840482169290920116027fffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffff9091161790556000828152600b6020526040902080546003919060ff19166001835b0217905550611a41565b6008547501000000000000000000000000000000000000000000900461ffff1681116119aa576008805460001961ffff750100000000000000000000000000000000000000000080840482169290920116027fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff9091161790556000828152600b6020526040902080546002919060ff1916600183611907565b60085477010000000000000000000000000000000000000000000000900461ffff168111611a4157600880547fffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffff8116770100000000000000000000000000000000000000000000009182900461ffff90811660001901169091021790556000828152600b60205260409020805460ff191660011790555b50600101611854565b5061095b33846122dd565b60008054821080156106ee5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b1882611db1565b9050836001600160a01b031681600001516001600160a01b031614611b69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611b875750611b878533611635565b80611ba2575033611b9784610844565b6001600160a01b0316145b905080611bdb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611c1b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c2760008487611a99565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116611d66576000548214611d66578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611f0857600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290611f065780516001600160a01b031615611e72579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215611f01579392505050565b611e72565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611ff2903390899088908890600401612dab565b6020604051808303816000875af192505050801561204b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261204891810190612de7565b60015b6120c2573d808015612079576040519150601f19603f3d011682016040523d82523d6000602084013e61207e565b606091505b5080516000036120ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600980546107c190612c7a565b60608160000361216357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561218d578061217781612d91565b91506121869050600a83612e33565b9150612167565b60008167ffffffffffffffff8111156121a8576121a86128fd565b6040519080825280601f01601f1916602001820160405280156121d2576020820181803683370190505b5090505b8415612109576121e7600183612e47565b91506121f4600a86612e5e565b6121ff906030612d79565b60f81b81838151811061221457612214612ccd565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061224e600a86612e33565b94506121d6565b600080612260612492565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201524460348201524260548201526074810185905261ffff91909116915081906094016040516020818303038152906040528051906020012060001c6122d29190612e5e565b611035906001612d79565b6000546001600160a01b038316612320576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160000361235a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168a018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168a01811690920217909155858452600490925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036124465750600055505050565b60085460009061ffff750100000000000000000000000000000000000000000082048116770100000000000000000000000000000000000000000000009092041610801590612521575060085461ffff79010000000000000000000000000000000000000000000000000082048116770100000000000000000000000000000000000000000000009092041610155b1561254c575060085477010000000000000000000000000000000000000000000000900461ffff1690565b60085461ffff7701000000000000000000000000000000000000000000000082048116750100000000000000000000000000000000000000000090920416108015906125d6575060085461ffff7901000000000000000000000000000000000000000000000000008204811675010000000000000000000000000000000000000000009092041610155b156125ff57506008547501000000000000000000000000000000000000000000900461ffff1690565b50600854790100000000000000000000000000000000000000000000000000900461ffff1690565b82805461263390612c7a565b90600052602060002090601f016020900481019282612655576000855561269b565b82601f1061266e5782800160ff1982351617855561269b565b8280016001018555821561269b579182015b8281111561269b578235825591602001919060010190612680565b506126a79291506126ab565b5090565b5b808211156126a757600081556001016126ac565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116a57600080fd5b60006020828403121561270057600080fd5b8135611035816126c0565b60005b8381101561272657818101518382015260200161270e565b8381111561127f5750506000910152565b6000815180845261274f81602086016020860161270b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006110356020830184612737565b6000602082840312156127a657600080fd5b5035919050565b80356001600160a01b03811681146127c457600080fd5b919050565b600080604083850312156127dc57600080fd5b6127e5836127ad565b946020939093013593505050565b602081016004831061282e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060006060848603121561284957600080fd5b612852846127ad565b9250612860602085016127ad565b9150604084013590509250925092565b6000806020838503121561288357600080fd5b823567ffffffffffffffff8082111561289b57600080fd5b818501915085601f8301126128af57600080fd5b8135818111156128be57600080fd5b8660208285010111156128d057600080fd5b60209290920196919550909350505050565b6000602082840312156128f457600080fd5b611035826127ad565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612973576129736128fd565b604052919050565b6000602080838503121561298e57600080fd5b823567ffffffffffffffff808211156129a657600080fd5b818501915085601f8301126129ba57600080fd5b8135818111156129cc576129cc6128fd565b8060051b91506129dd84830161292c565b81815291830184019184810190888411156129f757600080fd5b938501935b83851015612a15578435825293850193908501906129fc565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610e2957612a7983855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b9284019260609290920191600101612a3d565b6020808252825182820181905260009190848201906040850190845b81811015610e2957835183529284019291840191600101612aa8565b600080600060608486031215612ad957600080fd5b612ae2846127ad565b95602085013595506040909401359392505050565b60008060408385031215612b0a57600080fd5b612b13836127ad565b915060208301358015158114612b2857600080fd5b809150509250929050565b60008060008060808587031215612b4957600080fd5b612b52856127ad565b93506020612b618187016127ad565b935060408601359250606086013567ffffffffffffffff80821115612b8557600080fd5b818801915088601f830112612b9957600080fd5b813581811115612bab57612bab6128fd565b612bdb847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160161292c565b91508082528984828501011115612bf157600080fd5b808484018584013760008482840101525080935050505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff1690820152604080830151151590820152606081016106ee565b60008060408385031215612c5a57600080fd5b612c63836127ad565b9150612c71602084016127ad565b90509250929050565b600181811c90821680612c8e57607f821691505b602082108103612cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816000190483118215151615612d4557612d45612cfc565b500290565b60008351612d5c81846020880161270b565b835190830190612d7081836020880161270b565b01949350505050565b60008219821115612d8c57612d8c612cfc565b500190565b60006000198203612da457612da4612cfc565b5060010190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ddd6080830184612737565b9695505050505050565b600060208284031215612df957600080fd5b8151611035816126c0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612e4257612e42612e04565b500490565b600082821015612e5957612e59612cfc565b500390565b600082612e6d57612e6d612e04565b50069056fea26469706673582212206f508d77d096cedc4fa0cb32769c2ce83b7dfd3e15aa2bbb5168fdab404846ae64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009c9426fc8972f0eca475907196afea4d3c9a555a
-----Decoded View---------------
Arg [0] : _wealthContract (address): 0x9C9426FC8972f0eCA475907196afea4D3C9a555A
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c9426fc8972f0eca475907196afea4d3c9a555a
Loading...
Loading
Loading...
Loading
OVERVIEW
Wealthy Towers Apartments is the second collection of NFTs from the [Wealthy Ape Social Club](https://opensea.io/collection/wealthyapesocialclub) project. Exclusively minted with our utility token $WEALTH. There are 3 types of apartments that you can randomly mint: Studio, St...Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.