Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 14163110 | 1001 days ago | IN | 0 ETH | 0.30113496 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PielandUpgradeable
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ----------------------------------- _____ _ _ _ | __ (_) | | | | | |__) | ___| | __ _ _ __ __| | | ___/ |/ _ \ |/ _` | '_ \ / _` | | | | | __/ | (_| | | | | (_| | |_| |_|\___|_|\__,_|_| |_|\__,_| https://pieland.io @PielandNFT =================================== */ // Smart contract by Bonfire import "./ERC721BonfireWithPreSaleBasedOnWhitelistUpgradeable.sol"; contract PielandUpgradeable is ERC721BonfireWithPreSaleBasedOnWhitelistUpgradeable { // name, symbol, bURI, maxTotalSupply, maxPerTx, maxPerWallet, mintPrice, maxPreSaleSupply function initialize() initializer public { ERC721BonfireWithPreSaleBasedOnWhitelistUpgradeable.init("Pieland", "PIELAND", "https://metadata.livetoken.co/api/metadata/PIELAND/", 10314, 10, 30, 0.088 ether, 0); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ________________ _____ ___ __ ___ ____ / _ )___ ___ / _(_)______ / _ / _ \/ _ \/ _/ / __/ -_) /____/\___/_//_/_//_/_/ \__/ [email protected] ________________ _____ ___ __ */ import "./ERC721BonfireBaseUpgradeable.sol"; // Inherit from this instead of just ERC721BonfireBaseUpgradeable if you want to have your drop support a pre-sale in which // the pre-sale is gated by an on-chain whitelist (vs just a password-protected website and unverified contract). contract ERC721BonfireWithPreSaleBasedOnWhitelistUpgradeable is ERC721BonfireBaseUpgradeable { // constructor params uint256 public MAX_PRE_SALE; // drop status bool public preSaleOngoing; // mappings mapping(address => bool) public preSaleWhitelist; mapping(address => uint256) public preSaleMintedAmounts; // make transparent how many token were minted during the pre-sale. uint256 public numMintedInPreSale; function init(string memory name, string memory symbol, string memory bURI, uint256 maxTotalSupply, uint256 maxPerTx, uint256 maxPerWallet, uint256 mintPrice, uint256 maxPreSaleSupply ) initializer public { ERC721BonfireBaseUpgradeable.init(name, symbol, bURI, maxTotalSupply, maxPerTx, maxPerWallet, mintPrice); preSaleOngoing = false; numMintedInPreSale = 0; MAX_PRE_SALE = maxPreSaleSupply; contractType = 'WithPreSaleBasedOnWhitelist'; } /** MODIFIERS */ modifier whenPreSaleOngoing() { require(preSaleOngoing, "Pre-sale is not active"); _; } /** PUBLIC */ function mintPreSale(uint256 numberOfTokens) public payable whenPreSaleOngoing { require(preSaleWhitelist[msg.sender], "Address isn't whitelisted"); require(MAX_PER_TX == 0 || (numberOfTokens > 0 && numberOfTokens < (MAX_PER_TX + 1)), "Cannot mint that many at once"); require(MAX_TOTAL_SUPPLY == 0 || totalSupply() + numberOfTokens < (MAX_TOTAL_SUPPLY + 1), "Purchase would exceed max supply"); require(MAX_PRE_SALE == 0 || (numMintedInPreSale + numberOfTokens) < (MAX_PRE_SALE + 1), "Purchase would exceed max pre-sale supply"); require(MAX_TOTAL_PER_WALLET == 0 || preSaleMintedAmounts[msg.sender] + numberOfTokens < (MAX_TOTAL_PER_WALLET + 1), "Exceeds pre-sale max per wallet"); require(MINT_PRICE * numberOfTokens <= msg.value, "Insufficient ether sent"); require(tx.origin == msg.sender, "You cannot mint from another contract."); // do the mint _mint(msg.sender, numberOfTokens, msg.value); // increment preSaleMintedAmounts for this user preSaleMintedAmounts[msg.sender] = preSaleMintedAmounts[msg.sender] + numberOfTokens; // increment total that have been minted during the pre-sale numMintedInPreSale = numMintedInPreSale + numberOfTokens; } /** ADMIN **/ function flipPreSaleState() external onlyOwner { preSaleOngoing = !preSaleOngoing; } function addAddressesToWhitelist(address[] memory whitelisted) external onlyOwner { for (uint256 i = 0; i < whitelisted.length; i++) { preSaleWhitelist[whitelisted[i]] = true; } } function removeAddressesFromWhitelist(address[] memory whitelisted) external onlyOwner { for (uint256 i = 0; i < whitelisted.length; i++) { preSaleWhitelist[whitelisted[i]] = false; } } function setMaxPreSaleSupply(uint256 _supply) external onlyOwner { MAX_PRE_SALE = _supply; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // ERC721 gives us all the basics, including balance tracking, tokenURI() (though you need to override _baseURI() or else it always return "") // ERC721Enumerable give us totalSupply(), balanceOf() and automatic tracking of ownership, which getTokensOfOwner() takes advantage of. import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; /* ________________ _____ ___ __ ___ ____ / _ )___ ___ / _(_)______ / _ / _ \/ _ \/ _/ / __/ -_) /____/\___/_//_/_//_/_/ \__/ [email protected] ________________ _____ ___ __ */ // Base class for Bonfire-powered NFT smart contacts // * inherit directly from this contract if you're doing a standard drop without an on-chain whitelisted pre-sale // * uses require()/revert() and the 0xfd opcode to refund as much as possible the unused gas on failed transactions. // * disallows contract-to-contract scripted minting // * two ways for a token to be minted // * user calls mint() and sends eth in msg and pays gas // * contract owner (admin) calls mintPreOrder() and admin pays gas // * can set MAX_* to 0 to make infinite contract ERC721BonfireBaseUpgradeable is ERC721EnumerableUpgradeable, OwnableUpgradeable { using StringsUpgradeable for uint256; // type of contract string public contractType; // constructor params (you will override these defaults in your subclass's constructor) string internal baseURI; uint256 public MAX_TOTAL_SUPPLY; uint256 public MAX_PER_TX; uint256 public MAX_TOTAL_PER_WALLET; uint256 public MINT_PRICE; // drop status bool public mainSaleOngoing; // mappings mapping(address => uint256) public mainSaleMintedAmounts; // transparency to help users see mint events in real-time event Mint(address indexed to, uint256 numberOfTokens, uint256 value, uint256 totalSupply); bool internal constant EMIT_EVENTS = true; function init(string memory name, string memory symbol, string memory bURI, uint256 maxTotalSupply, uint256 maxPerTx, uint256 maxPerWallet, uint256 mintPrice ) initializer public { __ERC721_init(name, symbol); __ERC721Enumerable_init(); __Ownable_init(); contractType = 'Base'; mainSaleOngoing = false; baseURI = bURI; MAX_TOTAL_SUPPLY = maxTotalSupply; MAX_PER_TX = maxPerTx; MAX_TOTAL_PER_WALLET = maxPerWallet; MINT_PRICE = mintPrice; } /** MODIFIERS */ modifier whenMainSaleOngoing() { require(mainSaleOngoing, "Main sale is not active"); _; } /** PUBLIC */ function mint(uint256 numberOfTokens) public payable virtual whenMainSaleOngoing { require(MAX_PER_TX == 0 || numberOfTokens > 0 && numberOfTokens < (MAX_PER_TX + 1), "Cannot mint that many at once"); require(MAX_TOTAL_SUPPLY == 0 || totalSupply() + numberOfTokens < (MAX_TOTAL_SUPPLY + 1), "Purchase would exceed max supply"); require(MAX_TOTAL_PER_WALLET == 0 || mainSaleMintedAmounts[msg.sender] + numberOfTokens < (MAX_TOTAL_PER_WALLET + 1), "Exceeds max per wallet"); require(MINT_PRICE * numberOfTokens <= msg.value, "Insufficient ether sent"); require(tx.origin == msg.sender, "You cannot mint from another contract."); // tx.origin is original external account that started the tx, and msg. sender refers to the immediate account which can be a contract or external account // do the mint _mint(msg.sender, numberOfTokens, msg.value); // increment mainSaleMintedAmounts for this user mainSaleMintedAmounts[msg.sender] = mainSaleMintedAmounts[msg.sender] + numberOfTokens; } // copied from ERC721Burnable.sol // function burn(uint256 tokenId) public virtual { // //solhint-disable-next-line max-line-length // require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); // _burn(tokenId); // } /** INTERNAL */ function _mint(address to, uint256 numberOfTokens, uint256 value) internal virtual { for (uint256 i = 0; i < numberOfTokens; i++) { if (totalSupply() < MAX_TOTAL_SUPPLY || MAX_TOTAL_SUPPLY == 0) { _safeMint(to, totalSupply()); // start tokenIds at index 0 } } // Emit if (EMIT_EVENTS && value > 0) emit Mint(to, numberOfTokens, value, totalSupply()); } /** GETTERS **/ // we override ERC721's default or else baseURI would be ignored function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function getTokensOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } /** ADMIN MINTING */ function mintPreOrder(address _to, uint256 numberOfTokens) external onlyOwner { require(MAX_TOTAL_SUPPLY == 0 || totalSupply() + numberOfTokens < (MAX_TOTAL_SUPPLY + 1), "Exceeds max supply"); _mint(_to, numberOfTokens, 0); } /** ADMIN **/ function setBaseURI(string memory _u) external onlyOwner { baseURI = _u; } function flipMainSaleState() external onlyOwner { mainSaleOngoing = !mainSaleOngoing; } function setMaxSupply(uint256 _s) external onlyOwner { MAX_TOTAL_SUPPLY = _s; } // common to call to change per tx limitation when going from pre-sale to main sale function setMaxPerTx(uint256 _p) external onlyOwner { MAX_PER_TX = _p; } // common to call to change per wallet limitation when going from pre-sale to main sale function setMaxPerWallet(uint256 _p) external onlyOwner { MAX_TOTAL_PER_WALLET = _p; } function setMintPrice(uint256 _p) external onlyOwner { MINT_PRICE = _p; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "./IERC721EnumerableUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Enumerable_init_unchained(); } function __ERC721Enumerable_init_unchained() internal onlyInitializing { } // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721Upgradeable.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721EnumerableUpgradeable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721Upgradeable.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721Upgradeable.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } uint256[46] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _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); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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 IERC721ReceiverUpgradeable { /** * @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 "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev 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; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// 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 IERC165Upgradeable { /** * @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": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRE_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelisted","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"contractType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"bURI","type":"string"},{"internalType":"uint256","name":"maxTotalSupply","type":"uint256"},{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"bURI","type":"string"},{"internalType":"uint256","name":"maxTotalSupply","type":"uint256"},{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxPreSaleSupply","type":"uint256"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"mainSaleMintedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSaleOngoing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPreOrder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMintedInPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMintedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleOngoing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelisted","type":"address[]"}],"name":"removeAddressesFromWhitelist","outputs":[],"stateMutability":"nonpayable","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_u","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxPreSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"setMintPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506133ba806100206000396000f3fe6080604052600436106102ae5760003560e01c80638129fc1c11610175578063c1db0642116100dc578063e2ec6ec311610095578063f03255491161006f578063f032554914610853578063f2fde38b14610868578063f43a22dc14610888578063f4a0a5281461089e57600080fd5b8063e2ec6ec3146107d3578063e7839e84146107f3578063e985e9c51461080a57600080fd5b8063c1db064214610728578063c6f6f21614610748578063c87b56dd14610768578063cb2ef6f714610788578063d3b457441461079d578063e268e4d3146107b357600080fd5b8063a22cb4651161012e578063a22cb46514610670578063a4fb7af314610690578063ab859d52146106b0578063b88d4fde146106de578063b9884772146106fe578063c002d23d1461071157600080fd5b80638129fc1c146105da5780638da5cb5b146105ef5780638ebd35ad1461060d5780639065acd11461062d57806395d89b4114610648578063a0712d681461065d57600080fd5b806333039d3d116102195780635de6dc55116101d25780635de6dc55146105075780636352211e146105345780636f8b44b01461055457806370a0823114610574578063715018a61461059457806377fa9322146105a957600080fd5b806333039d3d146104655780633bf3a4551461047b5780633ccfd60b1461049257806342842e0e146104a75780634f6ccce7146104c757806355f804b3146104e757600080fd5b806318457cfd1161026b57806318457cfd146103b557806323b872dd146103d557806324953eaa146103f55780632aea3d23146104155780632e7486501461042a5780632f745c591461044557600080fd5b806301ffc9a7146102b357806305995824146102e857806306fdde0314610324578063081812fc14610346578063095ea7b31461037e57806318160ddd146103a0575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612a7c565b6108be565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610316610303366004612ab5565b6101026020526000908152604090205481565b6040519081526020016102df565b34801561033057600080fd5b506103396108e9565b6040516102df9190612b28565b34801561035257600080fd5b50610366610361366004612b3b565b61097b565b6040516001600160a01b0390911681526020016102df565b34801561038a57600080fd5b5061039e610399366004612b54565b610a15565b005b3480156103ac57600080fd5b50609954610316565b3480156103c157600080fd5b5061039e6103d0366004612c3d565b610b2b565b3480156103e157600080fd5b5061039e6103f0366004612cea565b610c1e565b34801561040157600080fd5b5061039e610410366004612d26565b610c4f565b34801561042157600080fd5b5061039e610ce6565b34801561043657600080fd5b50610104546102d39060ff1681565b34801561045157600080fd5b50610316610460366004612b54565b610d25565b34801561047157600080fd5b5061031660fd5481565b34801561048757600080fd5b506103166101035481565b34801561049e57600080fd5b5061039e610dbb565b3480156104b357600080fd5b5061039e6104c2366004612cea565b610e14565b3480156104d357600080fd5b506103166104e2366004612b3b565b610e2f565b3480156104f357600080fd5b5061039e610502366004612dd3565b610ec2565b34801561051357600080fd5b50610527610522366004612ab5565b610eff565b6040516102df9190612e08565b34801561054057600080fd5b5061036661054f366004612b3b565b610fa1565b34801561056057600080fd5b5061039e61056f366004612b3b565b611018565b34801561058057600080fd5b5061031661058f366004612ab5565b611047565b3480156105a057600080fd5b5061039e6110ce565b3480156105b557600080fd5b506102d36105c4366004612ab5565b6101056020526000908152604090205460ff1681565b3480156105e657600080fd5b5061039e611104565b3480156105fb57600080fd5b5060c9546001600160a01b0316610366565b34801561061957600080fd5b5061039e610628366004612e4c565b6111e8565b34801561063957600080fd5b50610101546102d39060ff1681565b34801561065457600080fd5b506103396112cd565b61039e61066b366004612b3b565b6112dc565b34801561067c57600080fd5b5061039e61068b366004612f02565b611548565b34801561069c57600080fd5b5061039e6106ab366004612b54565b611553565b3480156106bc57600080fd5b506103166106cb366004612ab5565b6101066020526000908152604090205481565b3480156106ea57600080fd5b5061039e6106f9366004612f3e565b6115f8565b61039e61070c366004612b3b565b611630565b34801561071d57600080fd5b506103166101005481565b34801561073457600080fd5b5061039e610743366004612b3b565b611998565b34801561075457600080fd5b5061039e610763366004612b3b565b6119c8565b34801561077457600080fd5b50610339610783366004612b3b565b6119f7565b34801561079457600080fd5b50610339611ad2565b3480156107a957600080fd5b5061031660ff5481565b3480156107bf57600080fd5b5061039e6107ce366004612b3b565b611b60565b3480156107df57600080fd5b5061039e6107ee366004612d26565b611b8f565b3480156107ff57600080fd5b506103166101075481565b34801561081657600080fd5b506102d3610825366004612fba565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b34801561085f57600080fd5b5061039e611c22565b34801561087457600080fd5b5061039e610883366004612ab5565b611c61565b34801561089457600080fd5b5061031660fe5481565b3480156108aa57600080fd5b5061039e6108b9366004612b3b565b611cf9565b60006001600160e01b0319821663780e9d6360e01b14806108e357506108e382611d29565b92915050565b6060606580546108f890612fed565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612fed565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166109f95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b6000610a2082610fa1565b9050806001600160a01b0316836001600160a01b03161415610a8e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109f0565b336001600160a01b0382161480610aaa5750610aaa8133610825565b610b1c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f0565b610b268383611d79565b505050565b600054610100900460ff16610b465760005460ff1615610b4a565b303b155b610b665760405162461bcd60e51b81526004016109f090613028565b600054610100900460ff16158015610b88576000805461ffff19166101011790555b610b928888611de7565b610b9a611e28565b610ba2611e67565b604080518082019091526004808252634261736560e01b6020909201918252610bcd9160fb916129cd565b50610101805460ff191690558551610bec9060fc9060208901906129cd565b5060fd85905560fe84905560ff8390556101008290558015610c14576000805461ff00191690555b5050505050505050565b610c283382611e9e565b610c445760405162461bcd60e51b81526004016109f090613076565b610b26838383611f95565b60c9546001600160a01b03163314610c795760405162461bcd60e51b81526004016109f0906130c7565b60005b8151811015610ce25760006101056000848481518110610c9e57610c9e6130fc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610cda81613128565b915050610c7c565b5050565b60c9546001600160a01b03163314610d105760405162461bcd60e51b81526004016109f0906130c7565b610101805460ff19811660ff90911615179055565b6000610d3083611047565b8210610d925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109f0565b506001600160a01b03919091166000908152609760209081526040808320938352929052205490565b60c9546001600160a01b03163314610de55760405162461bcd60e51b81526004016109f0906130c7565b60405133904780156108fc02916000818181858888f19350505050158015610e11573d6000803e3d6000fd5b50565b610b26838383604051806020016040528060008152506115f8565b6000610e3a60995490565b8210610e9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109f0565b60998281548110610eb057610eb06130fc565b90600052602060002001549050919050565b60c9546001600160a01b03163314610eec5760405162461bcd60e51b81526004016109f0906130c7565b8051610ce29060fc9060208401906129cd565b60606000610f0c83611047565b905060008167ffffffffffffffff811115610f2957610f29612b7e565b604051908082528060200260200182016040528015610f52578160200160208202803683370190505b50905060005b82811015610f9957610f6a8582610d25565b828281518110610f7c57610f7c6130fc565b602090810291909101015280610f9181613128565b915050610f58565b509392505050565b6000818152606760205260408120546001600160a01b0316806108e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109f0565b60c9546001600160a01b031633146110425760405162461bcd60e51b81526004016109f0906130c7565b60fd55565b60006001600160a01b0382166110b25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109f0565b506001600160a01b031660009081526068602052604090205490565b60c9546001600160a01b031633146110f85760405162461bcd60e51b81526004016109f0906130c7565b6111026000612140565b565b600054610100900460ff1661111f5760005460ff1615611123565b303b155b61113f5760405162461bcd60e51b81526004016109f090613028565b600054610100900460ff16158015611161576000805461ffff19166101011790555b6111d460405180604001604052806007815260200166141a595b185b9960ca1b815250604051806040016040528060078152602001661412515310539160ca1b8152506040518060600160405280603381526020016133526033913961284a600a601e670138a388a43c000060006111e8565b8015610e11576000805461ff001916905550565b600054610100900460ff166112035760005460ff1615611207565b303b155b6112235760405162461bcd60e51b81526004016109f090613028565b600054610100900460ff16158015611245576000805461ffff19166101011790555b61125489898989898989610b2b565b610104805460ff1916905560006101075561010382905560408051808201909152601b8082527f5769746850726553616c6542617365644f6e57686974656c697374000000000060209092019182526112af9160fb916129cd565b5080156112c2576000805461ff00191690555b505050505050505050565b6060606680546108f890612fed565b6101015460ff1661132f5760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f742061637469766500000000000000000060448201526064016109f0565b60fe5415806113555750600081118015611355575060fe54611352906001613143565b81105b6113a15760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e742074686174206d616e79206174206f6e636500000060448201526064016109f0565b60fd5415806113cf575060fd546113b9906001613143565b816113c360995490565b6113cd9190613143565b105b61141b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016109f0565b60ff541580611451575060ff54611433906001613143565b336000908152610102602052604090205461144f908390613143565b105b6114965760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b60448201526064016109f0565b3481610100546114a6919061315b565b11156114ee5760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d08195d1a195c881cd95b9d604a1b60448201526064016109f0565b32331461150d5760405162461bcd60e51b81526004016109f09061317a565b611518338234612192565b3360009081526101026020526040902054611534908290613143565b336000908152610102602052604090205550565b610ce2338383612238565b60c9546001600160a01b0316331461157d5760405162461bcd60e51b81526004016109f0906130c7565b60fd5415806115ab575060fd54611595906001613143565b8161159f60995490565b6115a99190613143565b105b6115ec5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109f0565b610ce282826000612192565b6116023383611e9e565b61161e5760405162461bcd60e51b81526004016109f090613076565b61162a84848484612307565b50505050565b6101045460ff1661167c5760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f742061637469766560501b60448201526064016109f0565b336000908152610105602052604090205460ff166116dc5760405162461bcd60e51b815260206004820152601960248201527f416464726573732069736e27742077686974656c69737465640000000000000060448201526064016109f0565b60fe5415806117025750600081118015611702575060fe546116ff906001613143565b81105b61174e5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e742074686174206d616e79206174206f6e636500000060448201526064016109f0565b60fd54158061177c575060fd54611766906001613143565b8161177060995490565b61177a9190613143565b105b6117c85760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016109f0565b6101035415806117f35750610103546117e2906001613143565b81610107546117f19190613143565b105b6118515760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d6178207072652d73616044820152686c6520737570706c7960b81b60648201526084016109f0565b60ff541580611887575060ff54611869906001613143565b3360009081526101066020526040902054611885908390613143565b105b6118d35760405162461bcd60e51b815260206004820152601f60248201527f45786365656473207072652d73616c65206d6178207065722077616c6c65740060448201526064016109f0565b3481610100546118e3919061315b565b111561192b5760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d08195d1a195c881cd95b9d604a1b60448201526064016109f0565b32331461194a5760405162461bcd60e51b81526004016109f09061317a565b611955338234612192565b3360009081526101066020526040902054611971908290613143565b336000908152610106602052604090205561010754611991908290613143565b6101075550565b60c9546001600160a01b031633146119c25760405162461bcd60e51b81526004016109f0906130c7565b61010355565b60c9546001600160a01b031633146119f25760405162461bcd60e51b81526004016109f0906130c7565b60fe55565b6000818152606760205260409020546060906001600160a01b0316611a765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f0565b6000611a8061233a565b90506000815111611aa05760405180602001604052806000815250611acb565b80611aaa84612349565b604051602001611abb9291906131c0565b6040516020818303038152906040525b9392505050565b60fb8054611adf90612fed565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0b90612fed565b8015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b505050505081565b60c9546001600160a01b03163314611b8a5760405162461bcd60e51b81526004016109f0906130c7565b60ff55565b60c9546001600160a01b03163314611bb95760405162461bcd60e51b81526004016109f0906130c7565b60005b8151811015610ce25760016101056000848481518110611bde57611bde6130fc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611c1a81613128565b915050611bbc565b60c9546001600160a01b03163314611c4c5760405162461bcd60e51b81526004016109f0906130c7565b610104805460ff19811660ff90911615179055565b60c9546001600160a01b03163314611c8b5760405162461bcd60e51b81526004016109f0906130c7565b6001600160a01b038116611cf05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f0565b610e1181612140565b60c9546001600160a01b03163314611d235760405162461bcd60e51b81526004016109f0906130c7565b61010055565b60006001600160e01b031982166380ac58cd60e01b1480611d5a57506001600160e01b03198216635b5e139f60e01b145b806108e357506301ffc9a760e01b6001600160e01b03198316146108e3565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611dae82610fa1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16611e0e5760405162461bcd60e51b81526004016109f0906131ef565b611e16612447565b611e1e612447565b610ce2828261246e565b600054610100900460ff16611e4f5760405162461bcd60e51b81526004016109f0906131ef565b611e57612447565b611e5f612447565b611102612447565b600054610100900460ff16611e8e5760405162461bcd60e51b81526004016109f0906131ef565b611e96612447565b6111026124bc565b6000818152606760205260408120546001600160a01b0316611f175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f0565b6000611f2283610fa1565b9050806001600160a01b0316846001600160a01b03161480611f5d5750836001600160a01b0316611f528461097b565b6001600160a01b0316145b80611f8d57506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fa882610fa1565b6001600160a01b0316146120105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109f0565b6001600160a01b0382166120725760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109f0565b61207d8383836124ec565b612088600082611d79565b6001600160a01b03831660009081526068602052604081208054600192906120b190849061323a565b90915550506001600160a01b03821660009081526068602052604081208054600192906120df908490613143565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b828110156121d85760fd5460995410806121af575060fd54155b156121c6576121c6846121c160995490565b6125a4565b806121d081613128565b915050612195565b508015610b2657826001600160a01b03167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb838361221560995490565b6040805193845260208401929092529082015260600160405180910390a2505050565b816001600160a01b0316836001600160a01b0316141561229a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f0565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612312848484611f95565b61231e848484846125be565b61162a5760405162461bcd60e51b81526004016109f090613251565b606060fc80546108f890612fed565b60608161236d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612397578061238181613128565b91506123909050600a836132b9565b9150612371565b60008167ffffffffffffffff8111156123b2576123b2612b7e565b6040519080825280601f01601f1916602001820160405280156123dc576020820181803683370190505b5090505b8415611f8d576123f160018361323a565b91506123fe600a866132cd565b612409906030613143565b60f81b81838151811061241e5761241e6130fc565b60200101906001600160f81b031916908160001a905350612440600a866132b9565b94506123e0565b600054610100900460ff166111025760405162461bcd60e51b81526004016109f0906131ef565b600054610100900460ff166124955760405162461bcd60e51b81526004016109f0906131ef565b81516124a89060659060208501906129cd565b508051610b269060669060208401906129cd565b600054610100900460ff166124e35760405162461bcd60e51b81526004016109f0906131ef565b61110233612140565b6001600160a01b0383166125475761254281609980546000838152609a60205260408120829055600182018355919091527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000155565b61256a565b816001600160a01b0316836001600160a01b03161461256a5761256a83826126bc565b6001600160a01b03821661258157610b2681612759565b826001600160a01b0316826001600160a01b031614610b2657610b268282612808565b610ce282826040518060200160405280600081525061284c565b60006001600160a01b0384163b156126b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126029033908990889088906004016132e1565b6020604051808303816000875af192505050801561263d575060408051601f3d908101601f1916820190925261263a9181019061331e565b60015b612697573d80801561266b576040519150601f19603f3d011682016040523d82523d6000602084013e612670565b606091505b50805161268f5760405162461bcd60e51b81526004016109f090613251565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f8d565b506001949350505050565b600060016126c984611047565b6126d3919061323a565b600083815260986020526040902054909150808214612726576001600160a01b03841660009081526097602090815260408083208584528252808320548484528184208190558352609890915290208190555b5060009182526098602090815260408084208490556001600160a01b039094168352609781528383209183525290812055565b60995460009061276b9060019061323a565b6000838152609a602052604081205460998054939450909284908110612793576127936130fc565b9060005260206000200154905080609983815481106127b4576127b46130fc565b6000918252602080832090910192909255828152609a909152604080822084905585825281205560998054806127ec576127ec61333b565b6001900381819060005260206000200160009055905550505050565b600061281383611047565b6001600160a01b039093166000908152609760209081526040808320868452825280832085905593825260989052919091209190915550565b612856838361287f565b61286360008484846125be565b610b265760405162461bcd60e51b81526004016109f090613251565b6001600160a01b0382166128d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f0565b6000818152606760205260409020546001600160a01b03161561293a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f0565b612946600083836124ec565b6001600160a01b038216600090815260686020526040812080546001929061296f908490613143565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546129d990612fed565b90600052602060002090601f0160209004810192826129fb5760008555612a41565b82601f10612a1457805160ff1916838001178555612a41565b82800160010185558215612a41579182015b82811115612a41578251825591602001919060010190612a26565b50612a4d929150612a51565b5090565b5b80821115612a4d5760008155600101612a52565b6001600160e01b031981168114610e1157600080fd5b600060208284031215612a8e57600080fd5b8135611acb81612a66565b80356001600160a01b0381168114612ab057600080fd5b919050565b600060208284031215612ac757600080fd5b611acb82612a99565b60005b83811015612aeb578181015183820152602001612ad3565b8381111561162a5750506000910152565b60008151808452612b14816020860160208601612ad0565b601f01601f19169290920160200192915050565b602081526000611acb6020830184612afc565b600060208284031215612b4d57600080fd5b5035919050565b60008060408385031215612b6757600080fd5b612b7083612a99565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612bbd57612bbd612b7e565b604052919050565b600067ffffffffffffffff831115612bdf57612bdf612b7e565b612bf2601f8401601f1916602001612b94565b9050828152838383011115612c0657600080fd5b828260208301376000602084830101529392505050565b600082601f830112612c2e57600080fd5b611acb83833560208501612bc5565b600080600080600080600060e0888a031215612c5857600080fd5b873567ffffffffffffffff80821115612c7057600080fd5b612c7c8b838c01612c1d565b985060208a0135915080821115612c9257600080fd5b612c9e8b838c01612c1d565b975060408a0135915080821115612cb457600080fd5b50612cc18a828b01612c1d565b979a96995096976060810135975060808101359660a0820135965060c090910135945092505050565b600080600060608486031215612cff57600080fd5b612d0884612a99565b9250612d1660208501612a99565b9150604084013590509250925092565b60006020808385031215612d3957600080fd5b823567ffffffffffffffff80821115612d5157600080fd5b818501915085601f830112612d6557600080fd5b813581811115612d7757612d77612b7e565b8060051b9150612d88848301612b94565b8181529183018401918481019088841115612da257600080fd5b938501935b83851015612dc757612db885612a99565b82529385019390850190612da7565b98975050505050505050565b600060208284031215612de557600080fd5b813567ffffffffffffffff811115612dfc57600080fd5b611f8d84828501612c1d565b6020808252825182820181905260009190848201906040850190845b81811015612e4057835183529284019291840191600101612e24565b50909695505050505050565b600080600080600080600080610100898b031215612e6957600080fd5b883567ffffffffffffffff80821115612e8157600080fd5b612e8d8c838d01612c1d565b995060208b0135915080821115612ea357600080fd5b612eaf8c838d01612c1d565b985060408b0135915080821115612ec557600080fd5b50612ed28b828c01612c1d565b989b979a5097986060810135985060808101359760a0820135975060c0820135965060e090910135945092505050565b60008060408385031215612f1557600080fd5b612f1e83612a99565b915060208301358015158114612f3357600080fd5b809150509250929050565b60008060008060808587031215612f5457600080fd5b612f5d85612a99565b9350612f6b60208601612a99565b925060408501359150606085013567ffffffffffffffff811115612f8e57600080fd5b8501601f81018713612f9f57600080fd5b612fae87823560208401612bc5565b91505092959194509250565b60008060408385031215612fcd57600080fd5b612fd683612a99565b9150612fe460208401612a99565b90509250929050565b600181811c9082168061300157607f821691505b6020821081141561302257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561313c5761313c613112565b5060010190565b6000821982111561315657613156613112565b500190565b600081600019048311821515161561317557613175613112565b500290565b60208082526026908201527f596f752063616e6e6f74206d696e742066726f6d20616e6f7468657220636f6e6040820152653a3930b1ba1760d11b606082015260800190565b600083516131d2818460208801612ad0565b8351908301906131e6818360208801612ad0565b01949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008282101561324c5761324c613112565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826132c8576132c86132a3565b500490565b6000826132dc576132dc6132a3565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061331490830184612afc565b9695505050505050565b60006020828403121561333057600080fd5b8151611acb81612a66565b634e487b7160e01b600052603160045260246000fdfe68747470733a2f2f6d657461646174612e6c697665746f6b656e2e636f2f6170692f6d657461646174612f5049454c414e442fa26469706673582212206563cf00705d8d1d93bed9358a48db2adf14f3fca875abfac8cf264346f761bd64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80638129fc1c11610175578063c1db0642116100dc578063e2ec6ec311610095578063f03255491161006f578063f032554914610853578063f2fde38b14610868578063f43a22dc14610888578063f4a0a5281461089e57600080fd5b8063e2ec6ec3146107d3578063e7839e84146107f3578063e985e9c51461080a57600080fd5b8063c1db064214610728578063c6f6f21614610748578063c87b56dd14610768578063cb2ef6f714610788578063d3b457441461079d578063e268e4d3146107b357600080fd5b8063a22cb4651161012e578063a22cb46514610670578063a4fb7af314610690578063ab859d52146106b0578063b88d4fde146106de578063b9884772146106fe578063c002d23d1461071157600080fd5b80638129fc1c146105da5780638da5cb5b146105ef5780638ebd35ad1461060d5780639065acd11461062d57806395d89b4114610648578063a0712d681461065d57600080fd5b806333039d3d116102195780635de6dc55116101d25780635de6dc55146105075780636352211e146105345780636f8b44b01461055457806370a0823114610574578063715018a61461059457806377fa9322146105a957600080fd5b806333039d3d146104655780633bf3a4551461047b5780633ccfd60b1461049257806342842e0e146104a75780634f6ccce7146104c757806355f804b3146104e757600080fd5b806318457cfd1161026b57806318457cfd146103b557806323b872dd146103d557806324953eaa146103f55780632aea3d23146104155780632e7486501461042a5780632f745c591461044557600080fd5b806301ffc9a7146102b357806305995824146102e857806306fdde0314610324578063081812fc14610346578063095ea7b31461037e57806318160ddd146103a0575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612a7c565b6108be565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610316610303366004612ab5565b6101026020526000908152604090205481565b6040519081526020016102df565b34801561033057600080fd5b506103396108e9565b6040516102df9190612b28565b34801561035257600080fd5b50610366610361366004612b3b565b61097b565b6040516001600160a01b0390911681526020016102df565b34801561038a57600080fd5b5061039e610399366004612b54565b610a15565b005b3480156103ac57600080fd5b50609954610316565b3480156103c157600080fd5b5061039e6103d0366004612c3d565b610b2b565b3480156103e157600080fd5b5061039e6103f0366004612cea565b610c1e565b34801561040157600080fd5b5061039e610410366004612d26565b610c4f565b34801561042157600080fd5b5061039e610ce6565b34801561043657600080fd5b50610104546102d39060ff1681565b34801561045157600080fd5b50610316610460366004612b54565b610d25565b34801561047157600080fd5b5061031660fd5481565b34801561048757600080fd5b506103166101035481565b34801561049e57600080fd5b5061039e610dbb565b3480156104b357600080fd5b5061039e6104c2366004612cea565b610e14565b3480156104d357600080fd5b506103166104e2366004612b3b565b610e2f565b3480156104f357600080fd5b5061039e610502366004612dd3565b610ec2565b34801561051357600080fd5b50610527610522366004612ab5565b610eff565b6040516102df9190612e08565b34801561054057600080fd5b5061036661054f366004612b3b565b610fa1565b34801561056057600080fd5b5061039e61056f366004612b3b565b611018565b34801561058057600080fd5b5061031661058f366004612ab5565b611047565b3480156105a057600080fd5b5061039e6110ce565b3480156105b557600080fd5b506102d36105c4366004612ab5565b6101056020526000908152604090205460ff1681565b3480156105e657600080fd5b5061039e611104565b3480156105fb57600080fd5b5060c9546001600160a01b0316610366565b34801561061957600080fd5b5061039e610628366004612e4c565b6111e8565b34801561063957600080fd5b50610101546102d39060ff1681565b34801561065457600080fd5b506103396112cd565b61039e61066b366004612b3b565b6112dc565b34801561067c57600080fd5b5061039e61068b366004612f02565b611548565b34801561069c57600080fd5b5061039e6106ab366004612b54565b611553565b3480156106bc57600080fd5b506103166106cb366004612ab5565b6101066020526000908152604090205481565b3480156106ea57600080fd5b5061039e6106f9366004612f3e565b6115f8565b61039e61070c366004612b3b565b611630565b34801561071d57600080fd5b506103166101005481565b34801561073457600080fd5b5061039e610743366004612b3b565b611998565b34801561075457600080fd5b5061039e610763366004612b3b565b6119c8565b34801561077457600080fd5b50610339610783366004612b3b565b6119f7565b34801561079457600080fd5b50610339611ad2565b3480156107a957600080fd5b5061031660ff5481565b3480156107bf57600080fd5b5061039e6107ce366004612b3b565b611b60565b3480156107df57600080fd5b5061039e6107ee366004612d26565b611b8f565b3480156107ff57600080fd5b506103166101075481565b34801561081657600080fd5b506102d3610825366004612fba565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b34801561085f57600080fd5b5061039e611c22565b34801561087457600080fd5b5061039e610883366004612ab5565b611c61565b34801561089457600080fd5b5061031660fe5481565b3480156108aa57600080fd5b5061039e6108b9366004612b3b565b611cf9565b60006001600160e01b0319821663780e9d6360e01b14806108e357506108e382611d29565b92915050565b6060606580546108f890612fed565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612fed565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166109f95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b6000610a2082610fa1565b9050806001600160a01b0316836001600160a01b03161415610a8e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109f0565b336001600160a01b0382161480610aaa5750610aaa8133610825565b610b1c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f0565b610b268383611d79565b505050565b600054610100900460ff16610b465760005460ff1615610b4a565b303b155b610b665760405162461bcd60e51b81526004016109f090613028565b600054610100900460ff16158015610b88576000805461ffff19166101011790555b610b928888611de7565b610b9a611e28565b610ba2611e67565b604080518082019091526004808252634261736560e01b6020909201918252610bcd9160fb916129cd565b50610101805460ff191690558551610bec9060fc9060208901906129cd565b5060fd85905560fe84905560ff8390556101008290558015610c14576000805461ff00191690555b5050505050505050565b610c283382611e9e565b610c445760405162461bcd60e51b81526004016109f090613076565b610b26838383611f95565b60c9546001600160a01b03163314610c795760405162461bcd60e51b81526004016109f0906130c7565b60005b8151811015610ce25760006101056000848481518110610c9e57610c9e6130fc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610cda81613128565b915050610c7c565b5050565b60c9546001600160a01b03163314610d105760405162461bcd60e51b81526004016109f0906130c7565b610101805460ff19811660ff90911615179055565b6000610d3083611047565b8210610d925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109f0565b506001600160a01b03919091166000908152609760209081526040808320938352929052205490565b60c9546001600160a01b03163314610de55760405162461bcd60e51b81526004016109f0906130c7565b60405133904780156108fc02916000818181858888f19350505050158015610e11573d6000803e3d6000fd5b50565b610b26838383604051806020016040528060008152506115f8565b6000610e3a60995490565b8210610e9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109f0565b60998281548110610eb057610eb06130fc565b90600052602060002001549050919050565b60c9546001600160a01b03163314610eec5760405162461bcd60e51b81526004016109f0906130c7565b8051610ce29060fc9060208401906129cd565b60606000610f0c83611047565b905060008167ffffffffffffffff811115610f2957610f29612b7e565b604051908082528060200260200182016040528015610f52578160200160208202803683370190505b50905060005b82811015610f9957610f6a8582610d25565b828281518110610f7c57610f7c6130fc565b602090810291909101015280610f9181613128565b915050610f58565b509392505050565b6000818152606760205260408120546001600160a01b0316806108e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109f0565b60c9546001600160a01b031633146110425760405162461bcd60e51b81526004016109f0906130c7565b60fd55565b60006001600160a01b0382166110b25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109f0565b506001600160a01b031660009081526068602052604090205490565b60c9546001600160a01b031633146110f85760405162461bcd60e51b81526004016109f0906130c7565b6111026000612140565b565b600054610100900460ff1661111f5760005460ff1615611123565b303b155b61113f5760405162461bcd60e51b81526004016109f090613028565b600054610100900460ff16158015611161576000805461ffff19166101011790555b6111d460405180604001604052806007815260200166141a595b185b9960ca1b815250604051806040016040528060078152602001661412515310539160ca1b8152506040518060600160405280603381526020016133526033913961284a600a601e670138a388a43c000060006111e8565b8015610e11576000805461ff001916905550565b600054610100900460ff166112035760005460ff1615611207565b303b155b6112235760405162461bcd60e51b81526004016109f090613028565b600054610100900460ff16158015611245576000805461ffff19166101011790555b61125489898989898989610b2b565b610104805460ff1916905560006101075561010382905560408051808201909152601b8082527f5769746850726553616c6542617365644f6e57686974656c697374000000000060209092019182526112af9160fb916129cd565b5080156112c2576000805461ff00191690555b505050505050505050565b6060606680546108f890612fed565b6101015460ff1661132f5760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f742061637469766500000000000000000060448201526064016109f0565b60fe5415806113555750600081118015611355575060fe54611352906001613143565b81105b6113a15760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e742074686174206d616e79206174206f6e636500000060448201526064016109f0565b60fd5415806113cf575060fd546113b9906001613143565b816113c360995490565b6113cd9190613143565b105b61141b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016109f0565b60ff541580611451575060ff54611433906001613143565b336000908152610102602052604090205461144f908390613143565b105b6114965760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b60448201526064016109f0565b3481610100546114a6919061315b565b11156114ee5760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d08195d1a195c881cd95b9d604a1b60448201526064016109f0565b32331461150d5760405162461bcd60e51b81526004016109f09061317a565b611518338234612192565b3360009081526101026020526040902054611534908290613143565b336000908152610102602052604090205550565b610ce2338383612238565b60c9546001600160a01b0316331461157d5760405162461bcd60e51b81526004016109f0906130c7565b60fd5415806115ab575060fd54611595906001613143565b8161159f60995490565b6115a99190613143565b105b6115ec5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109f0565b610ce282826000612192565b6116023383611e9e565b61161e5760405162461bcd60e51b81526004016109f090613076565b61162a84848484612307565b50505050565b6101045460ff1661167c5760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f742061637469766560501b60448201526064016109f0565b336000908152610105602052604090205460ff166116dc5760405162461bcd60e51b815260206004820152601960248201527f416464726573732069736e27742077686974656c69737465640000000000000060448201526064016109f0565b60fe5415806117025750600081118015611702575060fe546116ff906001613143565b81105b61174e5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e742074686174206d616e79206174206f6e636500000060448201526064016109f0565b60fd54158061177c575060fd54611766906001613143565b8161177060995490565b61177a9190613143565b105b6117c85760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016109f0565b6101035415806117f35750610103546117e2906001613143565b81610107546117f19190613143565b105b6118515760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d6178207072652d73616044820152686c6520737570706c7960b81b60648201526084016109f0565b60ff541580611887575060ff54611869906001613143565b3360009081526101066020526040902054611885908390613143565b105b6118d35760405162461bcd60e51b815260206004820152601f60248201527f45786365656473207072652d73616c65206d6178207065722077616c6c65740060448201526064016109f0565b3481610100546118e3919061315b565b111561192b5760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d08195d1a195c881cd95b9d604a1b60448201526064016109f0565b32331461194a5760405162461bcd60e51b81526004016109f09061317a565b611955338234612192565b3360009081526101066020526040902054611971908290613143565b336000908152610106602052604090205561010754611991908290613143565b6101075550565b60c9546001600160a01b031633146119c25760405162461bcd60e51b81526004016109f0906130c7565b61010355565b60c9546001600160a01b031633146119f25760405162461bcd60e51b81526004016109f0906130c7565b60fe55565b6000818152606760205260409020546060906001600160a01b0316611a765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f0565b6000611a8061233a565b90506000815111611aa05760405180602001604052806000815250611acb565b80611aaa84612349565b604051602001611abb9291906131c0565b6040516020818303038152906040525b9392505050565b60fb8054611adf90612fed565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0b90612fed565b8015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b505050505081565b60c9546001600160a01b03163314611b8a5760405162461bcd60e51b81526004016109f0906130c7565b60ff55565b60c9546001600160a01b03163314611bb95760405162461bcd60e51b81526004016109f0906130c7565b60005b8151811015610ce25760016101056000848481518110611bde57611bde6130fc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611c1a81613128565b915050611bbc565b60c9546001600160a01b03163314611c4c5760405162461bcd60e51b81526004016109f0906130c7565b610104805460ff19811660ff90911615179055565b60c9546001600160a01b03163314611c8b5760405162461bcd60e51b81526004016109f0906130c7565b6001600160a01b038116611cf05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f0565b610e1181612140565b60c9546001600160a01b03163314611d235760405162461bcd60e51b81526004016109f0906130c7565b61010055565b60006001600160e01b031982166380ac58cd60e01b1480611d5a57506001600160e01b03198216635b5e139f60e01b145b806108e357506301ffc9a760e01b6001600160e01b03198316146108e3565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611dae82610fa1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16611e0e5760405162461bcd60e51b81526004016109f0906131ef565b611e16612447565b611e1e612447565b610ce2828261246e565b600054610100900460ff16611e4f5760405162461bcd60e51b81526004016109f0906131ef565b611e57612447565b611e5f612447565b611102612447565b600054610100900460ff16611e8e5760405162461bcd60e51b81526004016109f0906131ef565b611e96612447565b6111026124bc565b6000818152606760205260408120546001600160a01b0316611f175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109f0565b6000611f2283610fa1565b9050806001600160a01b0316846001600160a01b03161480611f5d5750836001600160a01b0316611f528461097b565b6001600160a01b0316145b80611f8d57506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fa882610fa1565b6001600160a01b0316146120105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109f0565b6001600160a01b0382166120725760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109f0565b61207d8383836124ec565b612088600082611d79565b6001600160a01b03831660009081526068602052604081208054600192906120b190849061323a565b90915550506001600160a01b03821660009081526068602052604081208054600192906120df908490613143565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b828110156121d85760fd5460995410806121af575060fd54155b156121c6576121c6846121c160995490565b6125a4565b806121d081613128565b915050612195565b508015610b2657826001600160a01b03167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb838361221560995490565b6040805193845260208401929092529082015260600160405180910390a2505050565b816001600160a01b0316836001600160a01b0316141561229a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f0565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612312848484611f95565b61231e848484846125be565b61162a5760405162461bcd60e51b81526004016109f090613251565b606060fc80546108f890612fed565b60608161236d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612397578061238181613128565b91506123909050600a836132b9565b9150612371565b60008167ffffffffffffffff8111156123b2576123b2612b7e565b6040519080825280601f01601f1916602001820160405280156123dc576020820181803683370190505b5090505b8415611f8d576123f160018361323a565b91506123fe600a866132cd565b612409906030613143565b60f81b81838151811061241e5761241e6130fc565b60200101906001600160f81b031916908160001a905350612440600a866132b9565b94506123e0565b600054610100900460ff166111025760405162461bcd60e51b81526004016109f0906131ef565b600054610100900460ff166124955760405162461bcd60e51b81526004016109f0906131ef565b81516124a89060659060208501906129cd565b508051610b269060669060208401906129cd565b600054610100900460ff166124e35760405162461bcd60e51b81526004016109f0906131ef565b61110233612140565b6001600160a01b0383166125475761254281609980546000838152609a60205260408120829055600182018355919091527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000155565b61256a565b816001600160a01b0316836001600160a01b03161461256a5761256a83826126bc565b6001600160a01b03821661258157610b2681612759565b826001600160a01b0316826001600160a01b031614610b2657610b268282612808565b610ce282826040518060200160405280600081525061284c565b60006001600160a01b0384163b156126b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126029033908990889088906004016132e1565b6020604051808303816000875af192505050801561263d575060408051601f3d908101601f1916820190925261263a9181019061331e565b60015b612697573d80801561266b576040519150601f19603f3d011682016040523d82523d6000602084013e612670565b606091505b50805161268f5760405162461bcd60e51b81526004016109f090613251565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f8d565b506001949350505050565b600060016126c984611047565b6126d3919061323a565b600083815260986020526040902054909150808214612726576001600160a01b03841660009081526097602090815260408083208584528252808320548484528184208190558352609890915290208190555b5060009182526098602090815260408084208490556001600160a01b039094168352609781528383209183525290812055565b60995460009061276b9060019061323a565b6000838152609a602052604081205460998054939450909284908110612793576127936130fc565b9060005260206000200154905080609983815481106127b4576127b46130fc565b6000918252602080832090910192909255828152609a909152604080822084905585825281205560998054806127ec576127ec61333b565b6001900381819060005260206000200160009055905550505050565b600061281383611047565b6001600160a01b039093166000908152609760209081526040808320868452825280832085905593825260989052919091209190915550565b612856838361287f565b61286360008484846125be565b610b265760405162461bcd60e51b81526004016109f090613251565b6001600160a01b0382166128d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f0565b6000818152606760205260409020546001600160a01b03161561293a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f0565b612946600083836124ec565b6001600160a01b038216600090815260686020526040812080546001929061296f908490613143565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546129d990612fed565b90600052602060002090601f0160209004810192826129fb5760008555612a41565b82601f10612a1457805160ff1916838001178555612a41565b82800160010185558215612a41579182015b82811115612a41578251825591602001919060010190612a26565b50612a4d929150612a51565b5090565b5b80821115612a4d5760008155600101612a52565b6001600160e01b031981168114610e1157600080fd5b600060208284031215612a8e57600080fd5b8135611acb81612a66565b80356001600160a01b0381168114612ab057600080fd5b919050565b600060208284031215612ac757600080fd5b611acb82612a99565b60005b83811015612aeb578181015183820152602001612ad3565b8381111561162a5750506000910152565b60008151808452612b14816020860160208601612ad0565b601f01601f19169290920160200192915050565b602081526000611acb6020830184612afc565b600060208284031215612b4d57600080fd5b5035919050565b60008060408385031215612b6757600080fd5b612b7083612a99565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612bbd57612bbd612b7e565b604052919050565b600067ffffffffffffffff831115612bdf57612bdf612b7e565b612bf2601f8401601f1916602001612b94565b9050828152838383011115612c0657600080fd5b828260208301376000602084830101529392505050565b600082601f830112612c2e57600080fd5b611acb83833560208501612bc5565b600080600080600080600060e0888a031215612c5857600080fd5b873567ffffffffffffffff80821115612c7057600080fd5b612c7c8b838c01612c1d565b985060208a0135915080821115612c9257600080fd5b612c9e8b838c01612c1d565b975060408a0135915080821115612cb457600080fd5b50612cc18a828b01612c1d565b979a96995096976060810135975060808101359660a0820135965060c090910135945092505050565b600080600060608486031215612cff57600080fd5b612d0884612a99565b9250612d1660208501612a99565b9150604084013590509250925092565b60006020808385031215612d3957600080fd5b823567ffffffffffffffff80821115612d5157600080fd5b818501915085601f830112612d6557600080fd5b813581811115612d7757612d77612b7e565b8060051b9150612d88848301612b94565b8181529183018401918481019088841115612da257600080fd5b938501935b83851015612dc757612db885612a99565b82529385019390850190612da7565b98975050505050505050565b600060208284031215612de557600080fd5b813567ffffffffffffffff811115612dfc57600080fd5b611f8d84828501612c1d565b6020808252825182820181905260009190848201906040850190845b81811015612e4057835183529284019291840191600101612e24565b50909695505050505050565b600080600080600080600080610100898b031215612e6957600080fd5b883567ffffffffffffffff80821115612e8157600080fd5b612e8d8c838d01612c1d565b995060208b0135915080821115612ea357600080fd5b612eaf8c838d01612c1d565b985060408b0135915080821115612ec557600080fd5b50612ed28b828c01612c1d565b989b979a5097986060810135985060808101359760a0820135975060c0820135965060e090910135945092505050565b60008060408385031215612f1557600080fd5b612f1e83612a99565b915060208301358015158114612f3357600080fd5b809150509250929050565b60008060008060808587031215612f5457600080fd5b612f5d85612a99565b9350612f6b60208601612a99565b925060408501359150606085013567ffffffffffffffff811115612f8e57600080fd5b8501601f81018713612f9f57600080fd5b612fae87823560208401612bc5565b91505092959194509250565b60008060408385031215612fcd57600080fd5b612fd683612a99565b9150612fe460208401612a99565b90509250929050565b600181811c9082168061300157607f821691505b6020821081141561302257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561313c5761313c613112565b5060010190565b6000821982111561315657613156613112565b500190565b600081600019048311821515161561317557613175613112565b500290565b60208082526026908201527f596f752063616e6e6f74206d696e742066726f6d20616e6f7468657220636f6e6040820152653a3930b1ba1760d11b606082015260800190565b600083516131d2818460208801612ad0565b8351908301906131e6818360208801612ad0565b01949350505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008282101561324c5761324c613112565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826132c8576132c86132a3565b500490565b6000826132dc576132dc6132a3565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061331490830184612afc565b9695505050505050565b60006020828403121561333057600080fd5b8151611acb81612a66565b634e487b7160e01b600052603160045260246000fdfe68747470733a2f2f6d657461646174612e6c697665746f6b656e2e636f2f6170692f6d657461646174612f5049454c414e442fa26469706673582212206563cf00705d8d1d93bed9358a48db2adf14f3fca875abfac8cf264346f761bd64736f6c634300080a0033
Loading...
Loading
Loading...
Loading
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.