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
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
NFZv3
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.4; //import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/MerkleProofUpgradeable.sol"; //import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol"; import "./erc721enum.sol"; //import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; //import '@openzeppelin/contracts-ethereum-package/contracts/Initializable.sol'; // import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/ERC721Full.sol"; // import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/ERC721Mintable.sol"; interface ContractInterface { function balanceOf(address owner) external view returns (uint256 number); } contract NFZv3 is OwnableUpgradeable, ERC721EnumerableUpgradeable { uint256 constant MAX_INIT_SUPPLY = 4444; uint256 constant MAXSUPPLY = 6666; bool public isPresale; bool public isLaunched; bytes32 private Whitelist_Root; bytes32 private HalfMintRoot; bytes32 private uniCandyRoot; uint256 private value; string baseURI; mapping(address => bool) public preSaleMapping; //Where your zombie goes will be stored on the blockchain //coming in phase 2.0 mapping(uint256 => Locations[]) public passport; struct Locations { string locationName; uint256 locationId; } mapping(address => bool) public claimMapping; uint256 public MINT_PRICE; bytes32 private freeClaimRoot; //init function called on deploy function init( bytes32 wlroot, bytes32 hmroot, string memory _base ) public initializer { isPresale = false; isLaunched = false; Whitelist_Root = wlroot; HalfMintRoot = hmroot; __ERC721_init("Nice Fun Zombies", "NFZ"); __ERC721Enumerable_init(); __Ownable_init(); baseURI = _base; } function giveways(address[] memory freeNFZ) external onlyOwner { uint256 counter = totalSupply(); for (uint256 i = 1; i <= freeNFZ.length; i++) { address winner = freeNFZ[i - 1]; _safeMint(winner, counter + i); } } //owner can mint after deploy function teamMint(uint256 amount) external onlyOwner { uint256 counter = totalSupply(); for (uint256 i = 1; i < amount + 1; i++) { _safeMint(msg.sender, counter + i); } } //to toggle general sale function launchToggle() public onlyOwner { isLaunched = !isLaunched; } //to toggle presale function presaleToggle() public onlyOwner { isPresale = !isPresale; } function setMintPrice(uint256 _price) public onlyOwner { MINT_PRICE = _price; } function freeClaim( address account, bytes32[] calldata proof, uint256 tokenId ) external { //require(isLaunched, "Minting is off"); require( MerkleProofUpgradeable.verify( proof, freeClaimRoot, _leaf(tokenId, account) ), "account not part of claim list" ); //gas return if (claimMapping[account]) { claimMapping[account] = false; } if (preSaleMapping[account]) { preSaleMapping[account] = false; } _safeMint(account, tokenId); } //general mint function - checks to make sure launch = true; function mint(address account, uint256 _mintAmount) external payable { uint256 counter = totalSupply(); require(isLaunched, "general mint has not started"); require( counter + _mintAmount < MAX_INIT_SUPPLY, "exceeds contract limit" ); require( msg.value >= MINT_PRICE * _mintAmount, "Not enough eth sent: check price" ); require(_mintAmount < 11, "Only mint 10. Leave some for the rest!"); for (uint256 i = 1; i < _mintAmount + 1; i++) { _safeMint(account, counter + i); } } function _leaf(uint256 tokenId, address account) internal pure returns (bytes32) { return keccak256(abi.encodePacked(tokenId, account)); } function withdraw() public payable onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function contractURI() public pure returns (string memory) { return "https://api.nicefunzombies.io/contract"; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function updateMerkleRoot(string memory rootType, bytes32 root) external onlyOwner { if ( keccak256(abi.encodePacked(rootType)) == keccak256(abi.encodePacked("freeClaimRoot")) ) { freeClaimRoot = root; } else { revert("Incorrect rootType"); } } }
// 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 (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/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProofUpgradeable { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC721EnumerableUpgradeable.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 initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Enumerable_init_unchained(); } function __ERC721Enumerable_init_unchained() internal initializer {} // 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 uint16[] 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(uint16(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] = uint16(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 (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/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 (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 (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 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../token/ERC721/extensions/IERC721EnumerableUpgradeable.sol";
// 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); }
{ "optimizer": { "enabled": true, "runs": 2000 }, "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":"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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"claimMapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"freeClaim","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":"freeNFZ","type":"address[]"}],"name":"giveways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"wlroot","type":"bytes32"},{"internalType":"bytes32","name":"hmroot","type":"bytes32"},{"internalType":"string","name":"_base","type":"string"}],"name":"init","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":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchToggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"passport","outputs":[{"internalType":"string","name":"locationName","type":"string"},{"internalType":"uint256","name":"locationId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleToggle","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"rootType","type":"string"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061358e806100206000396000f3fe60806040526004361061026a5760003560e01c8063598407531161015357806395d89b41116100cb578063e17fd6a01161007f578063e985e9c511610064578063e985e9c5146106a1578063f2fde38b146106ea578063f4a0a5281461070a57600080fd5b8063e17fd6a014610677578063e8a3d4851461068c57600080fd5b8063b88d4fde116100b0578063b88d4fde14610620578063c002d23d14610640578063c87b56dd1461065757600080fd5b806395d89b41146105eb578063a22cb4651461060057600080fd5b8063715018a611610122578063886135d011610107578063886135d0146105935780638da5cb5b146105b357806395364a84146105d157600080fd5b8063715018a61461054d578063719f797f1461056257600080fd5b806359840753146104bf5780636352211e146104df5780636622a45c146104ff57806370a082311461052d57600080fd5b80632f745c59116101e657806340c10f19116101b55780634f6ccce71161019a5780634f6ccce71461045f57806355f804b31461047f578063587a80301461049f57600080fd5b806340c10f191461042c57806342842e0e1461043f57600080fd5b80632f745c59146103c55780632fbba115146103e5578063307aebc9146104055780633ccfd60b1461042457600080fd5b80630c52549b1161023d57806319d35cc11161022257806319d35cc11461037057806323b872dd14610390578063261291fb146103b057600080fd5b80630c52549b1461032057806318160ddd1461035157600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a3660046131ca565b61072a565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b9610786565b60405161029b9190613364565b3480156102d257600080fd5b506102e66102e1366004613278565b610818565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e6103193660046130a4565b6108c3565b005b34801561032c57600080fd5b5061028f61033b366004612ee3565b6101016020526000908152604090205460ff1681565b34801561035d57600080fd5b5060cb545b60405190815260200161029b565b34801561037c57600080fd5b5061031e61038b36600461317c565b6109f5565b34801561039c57600080fd5b5061031e6103ab366004612f2f565b610b6b565b3480156103bc57600080fd5b5061031e610bf2565b3480156103d157600080fd5b506103626103e03660046130a4565b610c60565b3480156103f157600080fd5b5061031e610400366004613278565b610d08565b34801561041157600080fd5b5060fb5461028f90610100900460ff1681565b61031e610da9565b61031e61043a3660046130a4565b610e9e565b34801561044b57600080fd5b5061031e61045a366004612f2f565b611066565b34801561046b57600080fd5b5061036261047a366004613278565b611081565b34801561048b57600080fd5b5061031e61049a366004613202565b611149565b3480156104ab57600080fd5b5061031e6104ba366004613235565b6111bb565b3480156104cb57600080fd5b5061031e6104da366004612fe3565b6112d3565b3480156104eb57600080fd5b506102e66104fa366004613278565b6113fc565b34801561050b57600080fd5b5061051f61051a366004613290565b611487565b60405161029b929190613377565b34801561053957600080fd5b50610362610548366004612ee3565b611551565b34801561055957600080fd5b5061031e6115eb565b34801561056e57600080fd5b5061028f61057d366004612ee3565b6101036020526000908152604090205460ff1681565b34801561059f57600080fd5b5061031e6105ae3660046130cd565b611651565b3480156105bf57600080fd5b506033546001600160a01b03166102e6565b3480156105dd57600080fd5b5060fb5461028f9060ff1681565b3480156105f757600080fd5b506102b961171c565b34801561060c57600080fd5b5061031e61061b36600461306a565b61172b565b34801561062c57600080fd5b5061031e61063b366004612f6a565b611736565b34801561064c57600080fd5b506103626101045481565b34801561066357600080fd5b506102b9610672366004613278565b6117be565b34801561068357600080fd5b5061031e6118a7565b34801561069857600080fd5b506102b961191e565b3480156106ad57600080fd5b5061028f6106bc366004612efd565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b5061031e610705366004612ee3565b61193e565b34801561071657600080fd5b5061031e610725366004613278565b611a1d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610780575061078082611a7d565b92915050565b60606097805461079590613458565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190613458565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b6000818152609960205260408120546001600160a01b03166108a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152609b60205260409020546001600160a01b031690565b60006108ce826113fc565b9050806001600160a01b0316836001600160a01b031614156109585760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161089e565b336001600160a01b0382161480610974575061097481336106bc565b6109e65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161089e565b6109f08383611b60565b505050565b600054610100900460ff16610a105760005460ff1615610a14565b303b155b610a865760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161089e565b600054610100900460ff16158015610aa8576000805461ffff19166101011790555b60fb805461ffff1916905560fc84905560fd839055604080518082018252601081527f4e6963652046756e205a6f6d62696573000000000000000000000000000000006020808301919091528251808401909352600383527f4e465a000000000000000000000000000000000000000000000000000000000090830152610b2e91611bdb565b610b36611c60565b610b3e611d3f565b8151610b5290610100906020850190612db7565b508015610b65576000805461ff00191690555b50505050565b610b753382611dba565b610be75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161089e565b6109f0838383611ec2565b6033546001600160a01b03163314610c4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b60fb805460ff19811660ff90911615179055565b6000610c6b83611551565b8210610cdf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161089e565b506001600160a01b0391909116600090815260c960209081526040808320938352929052205490565b6033546001600160a01b03163314610d625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b6000610d6d60cb5490565b905060015b610d7d8360016133ca565b8110156109f057610d9733610d9283856133ca565b6120a7565b80610da181613493565b915050610d72565b6033546001600160a01b03163314610e035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b604051600090339047908381818185875af1925050503d8060008114610e45576040519150601f19603f3d011682016040523d82523d6000602084013e610e4a565b606091505b5050905080610e9b5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161089e565b50565b6000610ea960cb5490565b60fb54909150610100900460ff16610f035760405162461bcd60e51b815260206004820152601c60248201527f67656e6572616c206d696e7420686173206e6f74207374617274656400000000604482015260640161089e565b61115c610f1083836133ca565b10610f5d5760405162461bcd60e51b815260206004820152601660248201527f6578636565647320636f6e7472616374206c696d697400000000000000000000604482015260640161089e565b8161010454610f6c91906133f6565b341015610fbb5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768206574682073656e743a20636865636b207072696365604482015260640161089e565b600b82106110315760405162461bcd60e51b815260206004820152602660248201527f4f6e6c79206d696e742031302e204c6561766520736f6d6520666f722074686560448201527f2072657374210000000000000000000000000000000000000000000000000000606482015260840161089e565b60015b61103f8360016133ca565b811015610b655761105484610d9283856133ca565b8061105e81613493565b915050611034565b6109f083838360405180602001604052806000815250611736565b600061108c60cb5490565b82106111005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161089e565b60cb828154811061112157634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1692915050565b6033546001600160a01b031633146111a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b80516111b790610100906020840190612db7565b5050565b6033546001600160a01b031633146112155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b6040517f66726565436c61696d526f6f74000000000000000000000000000000000000006020820152602d01604051602081830303815290604052805190602001208260405160200161126891906132dd565b60405160208183030381529060405280519060200120141561128b576101055550565b60405162461bcd60e51b815260206004820152601260248201527f496e636f727265637420726f6f74547970650000000000000000000000000000604482015260640161089e565b61131e83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610105549150611319905084886120c1565b612122565b61136a5760405162461bcd60e51b815260206004820152601e60248201527f6163636f756e74206e6f742070617274206f6620636c61696d206c6973740000604482015260640161089e565b6001600160a01b0384166000908152610103602052604090205460ff16156113ae576001600160a01b038416600090815261010360205260409020805460ff191690555b6001600160a01b0384166000908152610101602052604090205460ff16156113f2576001600160a01b038416600090815261010160205260409020805460ff191690555b610b6584826120a7565b6000818152609960205260408120546001600160a01b0316806107805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161089e565b61010260205281600052604060002081815481106114a457600080fd5b9060005260206000209060020201600091509150508060000180546114c890613458565b80601f01602080910402602001604051908101604052809291908181526020018280546114f490613458565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050908060010154905082565b60006001600160a01b0382166115cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161089e565b506001600160a01b03166000908152609a602052604090205490565b6033546001600160a01b031633146116455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b61164f6000612138565b565b6033546001600160a01b031633146116ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b60006116b660cb5490565b905060015b825181116109f0576000836116d1600184613415565b815181106116ef57634e487b7160e01b600052603260045260246000fd5b60200260200101519050611709818385610d9291906133ca565b508061171481613493565b9150506116bb565b60606098805461079590613458565b6111b7338383612197565b6117403383611dba565b6117b25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161089e565b610b6584848484612266565b6000818152609960205260409020546060906001600160a01b031661184b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161089e565b60006118556122ef565b9050600081511161187557604051806020016040528060008152506118a0565b8061187f846122ff565b6040516020016118909291906132f9565b6040516020818303038152906040525b9392505050565b6033546001600160a01b031633146119015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b60fb805461ff001981166101009182900460ff1615909102179055565b606060405180606001604052806026815260200161353360269139905090565b6033546001600160a01b031633146119985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b6001600160a01b038116611a145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161089e565b610e9b81612138565b6033546001600160a01b03163314611a775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b61010455565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b1057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061078057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610780565b6000818152609b60205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611ba2826113fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16611c465760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b611c4e61244d565b611c5661244d565b6111b782826124b8565b600054610100900460ff16611c7b5760005460ff1615611c7f565b303b155b611cf15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161089e565b600054610100900460ff16158015611d13576000805461ffff19166101011790555b611d1b61244d565b611d2361244d565b611d2b61254a565b8015610e9b576000805461ff001916905550565b600054610100900460ff16611daa5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b611db261244d565b61164f612610565b6000818152609960205260408120546001600160a01b0316611e445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161089e565b6000611e4f836113fc565b9050806001600160a01b0316846001600160a01b03161480611e8a5750836001600160a01b0316611e7f84610818565b6001600160a01b0316145b80611eba57506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ed5826113fc565b6001600160a01b031614611f515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161089e565b6001600160a01b038216611fcc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161089e565b611fd7838383612684565b611fe2600082611b60565b6001600160a01b0383166000908152609a6020526040812080546001929061200b908490613415565b90915550506001600160a01b0382166000908152609a602052604081208054600192906120399084906133ca565b9091555050600081815260996020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111b782826040518060200160405280600081525061275b565b6000828260405160200161210492919091825260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602082015260340190565b60405160208183030381529060405280519060200120905092915050565b60008261212f85846127e4565b14949350505050565b603380546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121f95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161089e565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612271848484611ec2565b61227d8484848461289e565b610b655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161089e565b6060610100805461079590613458565b60608161233f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612369578061235381613493565b91506123629050600a836133e2565b9150612343565b60008167ffffffffffffffff81111561239257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123bc576020820181803683370190505b5090505b8415611eba576123d1600183613415565b91506123de600a866134ae565b6123e99060306133ca565b60f81b81838151811061240c57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612446600a866133e2565b94506123c0565b600054610100900460ff1661164f5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b600054610100900460ff166125235760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b8151612536906097906020850190612db7565b5080516109f0906098906020840190612db7565b600054610100900460ff166125655760005460ff1615612569565b303b155b6125db5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161089e565b600054610100900460ff16158015611d2b576000805461ffff19166101011790558015610e9b576000805461ff001916905550565b600054610100900460ff1661267b5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b61164f33612138565b6001600160a01b0383166126fe5760cb8054600083815260cc60205260408120829055600182018355919091527fa7ce836d032b2bf62b7e2097a8e0a6d8aeb35405ad15271e96d3b0188a1d06fb60108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055612721565b816001600160a01b0316836001600160a01b031614612721576127218382612a4b565b6001600160a01b038216612738576109f081612ae8565b826001600160a01b0316826001600160a01b0316146109f0576109f08282612c18565b6127658383612c5c565b612772600084848461289e565b6109f05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161089e565b600081815b845181101561289657600085828151811061281457634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612856576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612883565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061288e81613493565b9150506127e9565b509392505050565b60006001600160a01b0384163b15612a40576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906128fb903390899088908890600401613328565b602060405180830381600087803b15801561291557600080fd5b505af1925050508015612945575060408051601f3d908101601f19168201909252612942918101906131e6565b60015b6129f5573d808015612973576040519150601f19603f3d011682016040523d82523d6000602084013e612978565b606091505b5080516129ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161089e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611eba565b506001949350505050565b60006001612a5884611551565b612a629190613415565b600083815260ca6020526040902054909150808214612ab5576001600160a01b038416600090815260c960209081526040808320858452825280832054848452818420819055835260ca90915290208190555b50600091825260ca602090815260408084208490556001600160a01b03909416835260c981528383209183525290812055565b60cb54600090612afa90600190613415565b600083815260cc602052604081205460cb8054939450909284908110612b3057634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1690508060cb8381548110612b7c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832060108304018054600f9093166002026101000a61ffff81810219909416959093169290920293909317905582815260cc909152604080822084905585825281205560cb805480612be657634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905550505050565b6000612c2383611551565b6001600160a01b03909316600090815260c960209081526040808320868452825280832085905593825260ca9052919091209190915550565b6001600160a01b038216612cb25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161089e565b6000818152609960205260409020546001600160a01b031615612d175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161089e565b612d2360008383612684565b6001600160a01b0382166000908152609a60205260408120805460019290612d4c9084906133ca565b9091555050600081815260996020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612dc390613458565b90600052602060002090601f016020900481019282612de55760008555612e2b565b82601f10612dfe57805160ff1916838001178555612e2b565b82800160010185558215612e2b579182015b82811115612e2b578251825591602001919060010190612e10565b50612e37929150612e3b565b5090565b5b80821115612e375760008155600101612e3c565b600067ffffffffffffffff831115612e6a57612e6a6134ee565b612e7d6020601f19601f86011601613399565b9050828152838383011115612e9157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612ebf57600080fd5b919050565b600082601f830112612ed4578081fd5b6118a083833560208501612e50565b600060208284031215612ef4578081fd5b6118a082612ea8565b60008060408385031215612f0f578081fd5b612f1883612ea8565b9150612f2660208401612ea8565b90509250929050565b600080600060608486031215612f43578081fd5b612f4c84612ea8565b9250612f5a60208501612ea8565b9150604084013590509250925092565b60008060008060808587031215612f7f578081fd5b612f8885612ea8565b9350612f9660208601612ea8565b925060408501359150606085013567ffffffffffffffff811115612fb8578182fd5b8501601f81018713612fc8578182fd5b612fd787823560208401612e50565b91505092959194509250565b60008060008060608587031215612ff8578384fd5b61300185612ea8565b9350602085013567ffffffffffffffff8082111561301d578485fd5b818701915087601f830112613030578485fd5b81358181111561303e578586fd5b8860208260051b8501011115613052578586fd5b95986020929092019750949560400135945092505050565b6000806040838503121561307c578182fd5b61308583612ea8565b915060208301358015158114613099578182fd5b809150509250929050565b600080604083850312156130b6578182fd5b6130bf83612ea8565b946020939093013593505050565b600060208083850312156130df578182fd5b823567ffffffffffffffff808211156130f6578384fd5b818501915085601f830112613109578384fd5b81358181111561311b5761311b6134ee565b8060051b915061312c848301613399565b8181528481019084860184860187018a1015613146578788fd5b8795505b8386101561316f5761315b81612ea8565b83526001959095019491860191860161314a565b5098975050505050505050565b600080600060608486031215613190578283fd5b8335925060208401359150604084013567ffffffffffffffff8111156131b4578182fd5b6131c086828701612ec4565b9150509250925092565b6000602082840312156131db578081fd5b81356118a081613504565b6000602082840312156131f7578081fd5b81516118a081613504565b600060208284031215613213578081fd5b813567ffffffffffffffff811115613229578182fd5b611eba84828501612ec4565b60008060408385031215613247578182fd5b823567ffffffffffffffff81111561325d578283fd5b61326985828601612ec4565b95602094909401359450505050565b600060208284031215613289578081fd5b5035919050565b600080604083850312156132a2578182fd5b50508035926020909101359150565b600081518084526132c981602086016020860161342c565b601f01601f19169290920160200192915050565b600082516132ef81846020870161342c565b9190910192915050565b6000835161330b81846020880161342c565b83519083019061331f81836020880161342c565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261335a60808301846132b1565b9695505050505050565b6020815260006118a060208301846132b1565b60408152600061338a60408301856132b1565b90508260208301529392505050565b604051601f8201601f1916810167ffffffffffffffff811182821017156133c2576133c26134ee565b604052919050565b600082198211156133dd576133dd6134c2565b500190565b6000826133f1576133f16134d8565b500490565b6000816000190483118215151615613410576134106134c2565b500290565b600082821015613427576134276134c2565b500390565b60005b8381101561344757818101518382015260200161342f565b83811115610b655750506000910152565b600181811c9082168061346c57607f821691505b6020821081141561348d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134a7576134a76134c2565b5060010190565b6000826134bd576134bd6134d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e9b57600080fdfe68747470733a2f2f6170692e6e69636566756e7a6f6d626965732e696f2f636f6e7472616374a26469706673582212203e412ddaa1fd3c4d3c9de7eb4e0aeb30b5a4543bb4d090ddcd6c522b732040a964736f6c63430008040033
Deployed Bytecode
0x60806040526004361061026a5760003560e01c8063598407531161015357806395d89b41116100cb578063e17fd6a01161007f578063e985e9c511610064578063e985e9c5146106a1578063f2fde38b146106ea578063f4a0a5281461070a57600080fd5b8063e17fd6a014610677578063e8a3d4851461068c57600080fd5b8063b88d4fde116100b0578063b88d4fde14610620578063c002d23d14610640578063c87b56dd1461065757600080fd5b806395d89b41146105eb578063a22cb4651461060057600080fd5b8063715018a611610122578063886135d011610107578063886135d0146105935780638da5cb5b146105b357806395364a84146105d157600080fd5b8063715018a61461054d578063719f797f1461056257600080fd5b806359840753146104bf5780636352211e146104df5780636622a45c146104ff57806370a082311461052d57600080fd5b80632f745c59116101e657806340c10f19116101b55780634f6ccce71161019a5780634f6ccce71461045f57806355f804b31461047f578063587a80301461049f57600080fd5b806340c10f191461042c57806342842e0e1461043f57600080fd5b80632f745c59146103c55780632fbba115146103e5578063307aebc9146104055780633ccfd60b1461042457600080fd5b80630c52549b1161023d57806319d35cc11161022257806319d35cc11461037057806323b872dd14610390578063261291fb146103b057600080fd5b80630c52549b1461032057806318160ddd1461035157600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a3660046131ca565b61072a565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b9610786565b60405161029b9190613364565b3480156102d257600080fd5b506102e66102e1366004613278565b610818565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e6103193660046130a4565b6108c3565b005b34801561032c57600080fd5b5061028f61033b366004612ee3565b6101016020526000908152604090205460ff1681565b34801561035d57600080fd5b5060cb545b60405190815260200161029b565b34801561037c57600080fd5b5061031e61038b36600461317c565b6109f5565b34801561039c57600080fd5b5061031e6103ab366004612f2f565b610b6b565b3480156103bc57600080fd5b5061031e610bf2565b3480156103d157600080fd5b506103626103e03660046130a4565b610c60565b3480156103f157600080fd5b5061031e610400366004613278565b610d08565b34801561041157600080fd5b5060fb5461028f90610100900460ff1681565b61031e610da9565b61031e61043a3660046130a4565b610e9e565b34801561044b57600080fd5b5061031e61045a366004612f2f565b611066565b34801561046b57600080fd5b5061036261047a366004613278565b611081565b34801561048b57600080fd5b5061031e61049a366004613202565b611149565b3480156104ab57600080fd5b5061031e6104ba366004613235565b6111bb565b3480156104cb57600080fd5b5061031e6104da366004612fe3565b6112d3565b3480156104eb57600080fd5b506102e66104fa366004613278565b6113fc565b34801561050b57600080fd5b5061051f61051a366004613290565b611487565b60405161029b929190613377565b34801561053957600080fd5b50610362610548366004612ee3565b611551565b34801561055957600080fd5b5061031e6115eb565b34801561056e57600080fd5b5061028f61057d366004612ee3565b6101036020526000908152604090205460ff1681565b34801561059f57600080fd5b5061031e6105ae3660046130cd565b611651565b3480156105bf57600080fd5b506033546001600160a01b03166102e6565b3480156105dd57600080fd5b5060fb5461028f9060ff1681565b3480156105f757600080fd5b506102b961171c565b34801561060c57600080fd5b5061031e61061b36600461306a565b61172b565b34801561062c57600080fd5b5061031e61063b366004612f6a565b611736565b34801561064c57600080fd5b506103626101045481565b34801561066357600080fd5b506102b9610672366004613278565b6117be565b34801561068357600080fd5b5061031e6118a7565b34801561069857600080fd5b506102b961191e565b3480156106ad57600080fd5b5061028f6106bc366004612efd565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b5061031e610705366004612ee3565b61193e565b34801561071657600080fd5b5061031e610725366004613278565b611a1d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610780575061078082611a7d565b92915050565b60606097805461079590613458565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190613458565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b6000818152609960205260408120546001600160a01b03166108a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152609b60205260409020546001600160a01b031690565b60006108ce826113fc565b9050806001600160a01b0316836001600160a01b031614156109585760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161089e565b336001600160a01b0382161480610974575061097481336106bc565b6109e65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161089e565b6109f08383611b60565b505050565b600054610100900460ff16610a105760005460ff1615610a14565b303b155b610a865760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161089e565b600054610100900460ff16158015610aa8576000805461ffff19166101011790555b60fb805461ffff1916905560fc84905560fd839055604080518082018252601081527f4e6963652046756e205a6f6d62696573000000000000000000000000000000006020808301919091528251808401909352600383527f4e465a000000000000000000000000000000000000000000000000000000000090830152610b2e91611bdb565b610b36611c60565b610b3e611d3f565b8151610b5290610100906020850190612db7565b508015610b65576000805461ff00191690555b50505050565b610b753382611dba565b610be75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161089e565b6109f0838383611ec2565b6033546001600160a01b03163314610c4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b60fb805460ff19811660ff90911615179055565b6000610c6b83611551565b8210610cdf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161089e565b506001600160a01b0391909116600090815260c960209081526040808320938352929052205490565b6033546001600160a01b03163314610d625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b6000610d6d60cb5490565b905060015b610d7d8360016133ca565b8110156109f057610d9733610d9283856133ca565b6120a7565b80610da181613493565b915050610d72565b6033546001600160a01b03163314610e035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b604051600090339047908381818185875af1925050503d8060008114610e45576040519150601f19603f3d011682016040523d82523d6000602084013e610e4a565b606091505b5050905080610e9b5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161089e565b50565b6000610ea960cb5490565b60fb54909150610100900460ff16610f035760405162461bcd60e51b815260206004820152601c60248201527f67656e6572616c206d696e7420686173206e6f74207374617274656400000000604482015260640161089e565b61115c610f1083836133ca565b10610f5d5760405162461bcd60e51b815260206004820152601660248201527f6578636565647320636f6e7472616374206c696d697400000000000000000000604482015260640161089e565b8161010454610f6c91906133f6565b341015610fbb5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768206574682073656e743a20636865636b207072696365604482015260640161089e565b600b82106110315760405162461bcd60e51b815260206004820152602660248201527f4f6e6c79206d696e742031302e204c6561766520736f6d6520666f722074686560448201527f2072657374210000000000000000000000000000000000000000000000000000606482015260840161089e565b60015b61103f8360016133ca565b811015610b655761105484610d9283856133ca565b8061105e81613493565b915050611034565b6109f083838360405180602001604052806000815250611736565b600061108c60cb5490565b82106111005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161089e565b60cb828154811061112157634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1692915050565b6033546001600160a01b031633146111a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b80516111b790610100906020840190612db7565b5050565b6033546001600160a01b031633146112155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b6040517f66726565436c61696d526f6f74000000000000000000000000000000000000006020820152602d01604051602081830303815290604052805190602001208260405160200161126891906132dd565b60405160208183030381529060405280519060200120141561128b576101055550565b60405162461bcd60e51b815260206004820152601260248201527f496e636f727265637420726f6f74547970650000000000000000000000000000604482015260640161089e565b61131e83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610105549150611319905084886120c1565b612122565b61136a5760405162461bcd60e51b815260206004820152601e60248201527f6163636f756e74206e6f742070617274206f6620636c61696d206c6973740000604482015260640161089e565b6001600160a01b0384166000908152610103602052604090205460ff16156113ae576001600160a01b038416600090815261010360205260409020805460ff191690555b6001600160a01b0384166000908152610101602052604090205460ff16156113f2576001600160a01b038416600090815261010160205260409020805460ff191690555b610b6584826120a7565b6000818152609960205260408120546001600160a01b0316806107805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161089e565b61010260205281600052604060002081815481106114a457600080fd5b9060005260206000209060020201600091509150508060000180546114c890613458565b80601f01602080910402602001604051908101604052809291908181526020018280546114f490613458565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b5050505050908060010154905082565b60006001600160a01b0382166115cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161089e565b506001600160a01b03166000908152609a602052604090205490565b6033546001600160a01b031633146116455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b61164f6000612138565b565b6033546001600160a01b031633146116ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b60006116b660cb5490565b905060015b825181116109f0576000836116d1600184613415565b815181106116ef57634e487b7160e01b600052603260045260246000fd5b60200260200101519050611709818385610d9291906133ca565b508061171481613493565b9150506116bb565b60606098805461079590613458565b6111b7338383612197565b6117403383611dba565b6117b25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161089e565b610b6584848484612266565b6000818152609960205260409020546060906001600160a01b031661184b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161089e565b60006118556122ef565b9050600081511161187557604051806020016040528060008152506118a0565b8061187f846122ff565b6040516020016118909291906132f9565b6040516020818303038152906040525b9392505050565b6033546001600160a01b031633146119015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b60fb805461ff001981166101009182900460ff1615909102179055565b606060405180606001604052806026815260200161353360269139905090565b6033546001600160a01b031633146119985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b6001600160a01b038116611a145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161089e565b610e9b81612138565b6033546001600160a01b03163314611a775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161089e565b61010455565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b1057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061078057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610780565b6000818152609b60205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611ba2826113fc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16611c465760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b611c4e61244d565b611c5661244d565b6111b782826124b8565b600054610100900460ff16611c7b5760005460ff1615611c7f565b303b155b611cf15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161089e565b600054610100900460ff16158015611d13576000805461ffff19166101011790555b611d1b61244d565b611d2361244d565b611d2b61254a565b8015610e9b576000805461ff001916905550565b600054610100900460ff16611daa5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b611db261244d565b61164f612610565b6000818152609960205260408120546001600160a01b0316611e445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161089e565b6000611e4f836113fc565b9050806001600160a01b0316846001600160a01b03161480611e8a5750836001600160a01b0316611e7f84610818565b6001600160a01b0316145b80611eba57506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ed5826113fc565b6001600160a01b031614611f515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161089e565b6001600160a01b038216611fcc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161089e565b611fd7838383612684565b611fe2600082611b60565b6001600160a01b0383166000908152609a6020526040812080546001929061200b908490613415565b90915550506001600160a01b0382166000908152609a602052604081208054600192906120399084906133ca565b9091555050600081815260996020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111b782826040518060200160405280600081525061275b565b6000828260405160200161210492919091825260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602082015260340190565b60405160208183030381529060405280519060200120905092915050565b60008261212f85846127e4565b14949350505050565b603380546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121f95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161089e565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612271848484611ec2565b61227d8484848461289e565b610b655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161089e565b6060610100805461079590613458565b60608161233f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612369578061235381613493565b91506123629050600a836133e2565b9150612343565b60008167ffffffffffffffff81111561239257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123bc576020820181803683370190505b5090505b8415611eba576123d1600183613415565b91506123de600a866134ae565b6123e99060306133ca565b60f81b81838151811061240c57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612446600a866133e2565b94506123c0565b600054610100900460ff1661164f5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b600054610100900460ff166125235760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b8151612536906097906020850190612db7565b5080516109f0906098906020840190612db7565b600054610100900460ff166125655760005460ff1615612569565b303b155b6125db5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161089e565b600054610100900460ff16158015611d2b576000805461ffff19166101011790558015610e9b576000805461ff001916905550565b600054610100900460ff1661267b5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161089e565b61164f33612138565b6001600160a01b0383166126fe5760cb8054600083815260cc60205260408120829055600182018355919091527fa7ce836d032b2bf62b7e2097a8e0a6d8aeb35405ad15271e96d3b0188a1d06fb60108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055612721565b816001600160a01b0316836001600160a01b031614612721576127218382612a4b565b6001600160a01b038216612738576109f081612ae8565b826001600160a01b0316826001600160a01b0316146109f0576109f08282612c18565b6127658383612c5c565b612772600084848461289e565b6109f05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161089e565b600081815b845181101561289657600085828151811061281457634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612856576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612883565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061288e81613493565b9150506127e9565b509392505050565b60006001600160a01b0384163b15612a40576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906128fb903390899088908890600401613328565b602060405180830381600087803b15801561291557600080fd5b505af1925050508015612945575060408051601f3d908101601f19168201909252612942918101906131e6565b60015b6129f5573d808015612973576040519150601f19603f3d011682016040523d82523d6000602084013e612978565b606091505b5080516129ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161089e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611eba565b506001949350505050565b60006001612a5884611551565b612a629190613415565b600083815260ca6020526040902054909150808214612ab5576001600160a01b038416600090815260c960209081526040808320858452825280832054848452818420819055835260ca90915290208190555b50600091825260ca602090815260408084208490556001600160a01b03909416835260c981528383209183525290812055565b60cb54600090612afa90600190613415565b600083815260cc602052604081205460cb8054939450909284908110612b3057634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1690508060cb8381548110612b7c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832060108304018054600f9093166002026101000a61ffff81810219909416959093169290920293909317905582815260cc909152604080822084905585825281205560cb805480612be657634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905550505050565b6000612c2383611551565b6001600160a01b03909316600090815260c960209081526040808320868452825280832085905593825260ca9052919091209190915550565b6001600160a01b038216612cb25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161089e565b6000818152609960205260409020546001600160a01b031615612d175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161089e565b612d2360008383612684565b6001600160a01b0382166000908152609a60205260408120805460019290612d4c9084906133ca565b9091555050600081815260996020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612dc390613458565b90600052602060002090601f016020900481019282612de55760008555612e2b565b82601f10612dfe57805160ff1916838001178555612e2b565b82800160010185558215612e2b579182015b82811115612e2b578251825591602001919060010190612e10565b50612e37929150612e3b565b5090565b5b80821115612e375760008155600101612e3c565b600067ffffffffffffffff831115612e6a57612e6a6134ee565b612e7d6020601f19601f86011601613399565b9050828152838383011115612e9157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612ebf57600080fd5b919050565b600082601f830112612ed4578081fd5b6118a083833560208501612e50565b600060208284031215612ef4578081fd5b6118a082612ea8565b60008060408385031215612f0f578081fd5b612f1883612ea8565b9150612f2660208401612ea8565b90509250929050565b600080600060608486031215612f43578081fd5b612f4c84612ea8565b9250612f5a60208501612ea8565b9150604084013590509250925092565b60008060008060808587031215612f7f578081fd5b612f8885612ea8565b9350612f9660208601612ea8565b925060408501359150606085013567ffffffffffffffff811115612fb8578182fd5b8501601f81018713612fc8578182fd5b612fd787823560208401612e50565b91505092959194509250565b60008060008060608587031215612ff8578384fd5b61300185612ea8565b9350602085013567ffffffffffffffff8082111561301d578485fd5b818701915087601f830112613030578485fd5b81358181111561303e578586fd5b8860208260051b8501011115613052578586fd5b95986020929092019750949560400135945092505050565b6000806040838503121561307c578182fd5b61308583612ea8565b915060208301358015158114613099578182fd5b809150509250929050565b600080604083850312156130b6578182fd5b6130bf83612ea8565b946020939093013593505050565b600060208083850312156130df578182fd5b823567ffffffffffffffff808211156130f6578384fd5b818501915085601f830112613109578384fd5b81358181111561311b5761311b6134ee565b8060051b915061312c848301613399565b8181528481019084860184860187018a1015613146578788fd5b8795505b8386101561316f5761315b81612ea8565b83526001959095019491860191860161314a565b5098975050505050505050565b600080600060608486031215613190578283fd5b8335925060208401359150604084013567ffffffffffffffff8111156131b4578182fd5b6131c086828701612ec4565b9150509250925092565b6000602082840312156131db578081fd5b81356118a081613504565b6000602082840312156131f7578081fd5b81516118a081613504565b600060208284031215613213578081fd5b813567ffffffffffffffff811115613229578182fd5b611eba84828501612ec4565b60008060408385031215613247578182fd5b823567ffffffffffffffff81111561325d578283fd5b61326985828601612ec4565b95602094909401359450505050565b600060208284031215613289578081fd5b5035919050565b600080604083850312156132a2578182fd5b50508035926020909101359150565b600081518084526132c981602086016020860161342c565b601f01601f19169290920160200192915050565b600082516132ef81846020870161342c565b9190910192915050565b6000835161330b81846020880161342c565b83519083019061331f81836020880161342c565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261335a60808301846132b1565b9695505050505050565b6020815260006118a060208301846132b1565b60408152600061338a60408301856132b1565b90508260208301529392505050565b604051601f8201601f1916810167ffffffffffffffff811182821017156133c2576133c26134ee565b604052919050565b600082198211156133dd576133dd6134c2565b500190565b6000826133f1576133f16134d8565b500490565b6000816000190483118215151615613410576134106134c2565b500290565b600082821015613427576134276134c2565b500390565b60005b8381101561344757818101518382015260200161342f565b83811115610b655750506000910152565b600181811c9082168061346c57607f821691505b6020821081141561348d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134a7576134a76134c2565b5060010190565b6000826134bd576134bd6134d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e9b57600080fdfe68747470733a2f2f6170692e6e69636566756e7a6f6d626965732e696f2f636f6e7472616374a26469706673582212203e412ddaa1fd3c4d3c9de7eb4e0aeb30b5a4543bb4d090ddcd6c522b732040a964736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.