Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
987 apemfer
Holders
182
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 apemferLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
apemfers
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721Enumerable.sol"; contract apemfers is ERC721Enumerable, Ownable { string public baseURI; address public sartoshi = 0xF7DcF798971452737f1E6196D36Dd215b43b428D; address public kingBlackBored = 0x6Cd2D84298F731fa443061255a9a84a09dbCA769; address public tropoFarmer = 0xA442dDf27063320789B59A8fdcA5b849Cd2CDeAC; address public franklin = 0x72FAe93d08A060A7f0A8919708c0Db74Ca46cbB6; address public deezeFi = 0xC46Db2d89327D4C41Eb81c43ED5e3dfF111f9A8f; address public seraStarGirl = 0xCb96594AbA4627e6064731b0098Dc97547b397BE; address public storm = 0x4385FF4B76d8A7fa8075Ed1ee27c82fFE0951456; address public joshOng = 0xaf469C4a0914938e6149CF621c54FB4b1EC0c202; address public danielgothits = 0xe9F1E4dC4D1F3F62d54d70Ea73A8c9B4Cd2BDE2D; address public keyboardmonkey = 0xe1D29d0a39962a9a8d2A297ebe82e166F8b8EC18; address public beanieMaxie = 0xaBF107de3E01c7c257e64E0a18d60A733Aad395d; address public j1mmy = 0x442DCCEe68425828C106A3662014B4F131e3BD9b; address public pranksy = 0xD387A6E4e84a6C86bd90C158C6028A58CC8Ac459; address public dfarmer = 0x7500935C3C34D0d48e9c388b3dFFa0AbBda52633; address public shamdoo = 0x11360F0c5552443b33720a44408aba01a809905e; address public farokh = 0xc5F59709974262c4AFacc5386287820bDBC7eB3A; address public withdrawAddress; bool public publicSaleState = false; bool public preSaleState = false; bytes32 public allowListMerkleRoot = 0x0; uint256 public MAX_SUPPLY = 8888; uint256 public constant MAX_PER_TX = 8; uint256 public constant RESERVES = 25; uint256 private price = 0.03333 ether; mapping(address => bool) public projectProxy; mapping(address => uint) public addressToMinted; constructor( string memory _baseURI, address _withdrawAddress ) ERC721("ape mfer", "apemfer") { baseURI = _baseURI; withdrawAddress = _withdrawAddress; // reserves _mint( sartoshi, 0); _mint( deezeFi, 1); _mint( dfarmer, 2); _mint( farokh, 3); _mint( franklin, 4); _mint( j1mmy, 5); _mint( joshOng, 6); _mint( keyboardmonkey, 7); _mint( kingBlackBored, 8); _mint( pranksy, 9); _mint( seraStarGirl, 10); _mint( shamdoo, 11); _mint( storm, 12); _mint( tropoFarmer, 13); _mint( beanieMaxie, 14); _mint( danielgothits, 15); for (uint256 i = 16; i <= 16+RESERVES; i++) { _mint( withdrawAddress, i); } } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function flipProxyState(address proxyAddress) public onlyOwner { projectProxy[proxyAddress] = !projectProxy[proxyAddress]; } function togglePublicSale() external onlyOwner { publicSaleState = true; preSaleState = false; delete allowListMerkleRoot; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return string(abi.encodePacked(baseURI, Strings.toString(_tokenId))); } // This also starts the presale function setAllowlistMerkleRoot(bytes32 _allowListMerkleRoot) external onlyOwner { preSaleState = true; allowListMerkleRoot = _allowListMerkleRoot; } function allowListMint(uint256 count, bytes32[] calldata proof) public payable { uint256 totalSupply = _owners.length; require(totalSupply + count < MAX_SUPPLY, "Exceeds max supply."); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify( proof, allowListMerkleRoot, leaf), "wrong proof"); require(count <= MAX_PER_TX, "exceeds tx max"); require(count * price == msg.value, "invalid funds"); addressToMinted[_msgSender()] += count; for(uint i = 0; i < count; i++) { _mint(_msgSender(), totalSupply); } } function publicMint(uint256 count) public payable { uint256 totalSupply = _owners.length; require(publicSaleState == true, "public sale not started"); require(totalSupply + count < MAX_SUPPLY, "Excedes max supply."); require(count <= MAX_PER_TX, "Exceeds max per transaction."); require(count * price == msg.value, "Invalid funds provided."); for(uint i = 0; i < count; i++) { _mint(_msgSender(), totalSupply ); } } function burn(uint256 tokenId) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn."); _burn(tokenId); } function withdraw() external onlyOwner { (bool success, ) = withdrawAddress.call{value: address(this).balance}(""); require(success, "Failed to send to apetoshi."); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) return new uint256[](0); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public { for (uint256 i = 0; i < _tokenIds.length; i++) { transferFrom(_from, _to, _tokenIds[i]); } } function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public { for (uint256 i = 0; i < _tokenIds.length; i++) { safeTransferFrom(_from, _to, _tokenIds[i], data_); } } function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){ for(uint256 i; i < _tokenIds.length; ++i ){ if(_owners[_tokenIds[i]] != account) return false; } return true; } function _mint(address to, uint256 tokenId) internal virtual override { _owners.push(to); emit Transfer(address(0), to, tokenId); } function setMintPrice(uint256 newPrice) external onlyOwner { price = newPrice; } } contract OwnableDelegateProxy { } contract OpenSeaProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
// 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 MerkleProof { /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "./Address.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; // Mapping from token ID to owner address address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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 tokenId < _owners.length && _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 = ERC721.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); _owners.push(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 = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); 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( ERC721.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); _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(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; library Address { function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_withdrawAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beanieMaxie","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"danielgothits","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deezeFi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dfarmer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"farokh","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"franklin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"j1mmy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"joshOng","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keyboardmonkey","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kingBlackBored","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pranksy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sartoshi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seraStarGirl","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_allowListMerkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shamdoo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"storm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"togglePublicSale","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tropoFarmer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600780546001600160a01b031990811673f7dcf798971452737f1e6196d36dd215b43b428d17909155600880548216736cd2d84298f731fa443061255a9a84a09dbca76917905560098054821673a442ddf27063320789b59a8fdca5b849cd2cdeac179055600a805482167372fae93d08a060a7f0a8919708c0db74ca46cbb6179055600b8054821673c46db2d89327d4c41eb81c43ed5e3dff111f9a8f179055600c8054821673cb96594aba4627e6064731b0098dc97547b397be179055600d80548216734385ff4b76d8a7fa8075ed1ee27c82ffe0951456179055600e8054821673af469c4a0914938e6149cf621c54fb4b1ec0c202179055600f8054821673e9f1e4dc4d1f3f62d54d70ea73a8c9b4cd2bde2d17905560108054821673e1d29d0a39962a9a8d2a297ebe82e166f8b8ec1817905560118054821673abf107de3e01c7c257e64e0a18d60a733aad395d17905560128054821673442dccee68425828c106a3662014b4f131e3bd9b17905560138054821673d387a6e4e84a6c86bd90c158c6028a58cc8ac459179055601480548216737500935c3c34d0d48e9c388b3dffa0abbda526331790556015805482167311360f0c5552443b33720a44408aba01a809905e1790556016805490911673c5f59709974262c4afacc5386287820bdbc7eb3a1790556017805461ffff60a01b1916905560006018556122b8601955667669755a5d2000601a553480156200022157600080fd5b50604051620033ca380380620033ca833981016040819052620002449162000681565b604080518082018252600881526730b8329036b332b960c11b60208083019182528351808501909452600784526630b832b6b332b960c91b9084015281519192916200029391600091620005a8565b508051620002a9906001906020840190620005a8565b505050620002c6620002c0620004d660201b60201c565b620004da565b8151620002db906006906020850190620005a8565b50601780546001600160a01b0319166001600160a01b03838116919091179091556007546200030d911660006200052c565b600b5462000326906001600160a01b031660016200052c565b6014546200033f906001600160a01b031660026200052c565b60165462000358906001600160a01b031660036200052c565b600a5462000371906001600160a01b031660046200052c565b6012546200038a906001600160a01b031660056200052c565b600e54620003a3906001600160a01b031660066200052c565b601054620003bc906001600160a01b031660076200052c565b60088054620003d7916001600160a01b03909116906200052c565b601354620003f0906001600160a01b031660096200052c565b600c5462000409906001600160a01b0316600a6200052c565b60155462000422906001600160a01b0316600b6200052c565b600d546200043b906001600160a01b0316600c6200052c565b60095462000454906001600160a01b0316600d6200052c565b6011546200046d906001600160a01b0316600e6200052c565b600f805462000488916001600160a01b03909116906200052c565b60105b620004996019601062000788565b8111620004cd57601754620004b8906001600160a01b0316826200052c565b80620004c481620007a3565b9150506200048b565b505050620007fe565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620005b690620007c1565b90600052602060002090601f016020900481019282620005da576000855562000625565b82601f10620005f557805160ff191683800117855562000625565b8280016001018555821562000625579182015b828111156200062557825182559160200191906001019062000608565b506200063392915062000637565b5090565b5b8082111562000633576000815560010162000638565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200067c57600080fd5b919050565b600080604083850312156200069557600080fd5b82516001600160401b0380821115620006ad57600080fd5b818501915085601f830112620006c257600080fd5b815181811115620006d757620006d76200064e565b604051601f8201601f19908116603f011681019083821181831017156200070257620007026200064e565b816040528281526020935088848487010111156200071f57600080fd5b600091505b8282101562000743578482018401518183018501529083019062000724565b82821115620007555760008484830101525b95506200076791505085820162000664565b925050509250929050565b634e487b7160e01b600052601160045260246000fd5b600082198211156200079e576200079e62000772565b500190565b6000600019821415620007ba57620007ba62000772565b5060010190565b600181811c90821680620007d657607f821691505b60208210811415620007f857634e487b7160e01b600052602260045260246000fd5b50919050565b612bbc806200080e6000396000f3fe6080604052600436106103815760003560e01c80636c0360eb116101d1578063c46fd00611610102578063ec8bda8e116100a0578063f4a0a5281161006f578063f4a0a52814610a52578063f550eef014610a72578063f73c814b14610a92578063f95df41414610ab257600080fd5b8063ec8bda8e146109ea578063f2fde38b146109fd578063f3993d1114610a1d578063f43a22dc14610a3d57600080fd5b8063e222c7f9116100dc578063e222c7f91461094b578063e294ba5914610960578063e932444414610980578063e985e9c5146109a157600080fd5b8063c46fd006146108eb578063c87b56dd1461090b578063d14859cb1461092b57600080fd5b80639bb906e01161016f578063a398278911610149578063a39827891461086b578063ab75dcfd1461088b578063b2e621d4146108ab578063b88d4fde146108cb57600080fd5b80639bb906e0146108085780639ec00c951461081e578063a22cb4651461084b57600080fd5b806371adc02a116101ab57806371adc02a146107945780638913df2d146107b55780638da5cb5b146107d557806395d89b41146107f357600080fd5b80636c0360eb1461074a57806370a082311461075f578063715018a61461077f57600080fd5b806331a3c773116102b65780634dda9f681161025457806355f804b31161022357806355f804b3146106ba5780635a4fee30146106da5780635bab26e2146106fa5780636352211e1461072a57600080fd5b80634dda9f681461063a5780634e80412a1461065a5780634f6ccce71461067a57806352dce2e91461069a57600080fd5b806342842e0e1161029057806342842e0e146105ad57806342966c68146105cd578063438b6300146105ed5780634d44660c1461061a57600080fd5b806331a3c7731461056257806332cb6b0c146105825780633ccfd60b1461059857600080fd5b806316346a82116103235780631fc16082116102fd5780631fc16082146104ef57806323b872dd1461050f5780632db115441461052f5780632f745c591461054257600080fd5b806316346a821461049a5780631681383c146104ba57806318160ddd146104da57600080fd5b80630922f9c51161035f5780630922f9c514610415578063095ea7b3146104385780630f3f77f01461045a5780631581b6001461047a57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122ae565b610ad2565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610afd565b6040516103b29190612323565b3480156103e957600080fd5b506103fd6103f8366004612336565b610b8f565b6040516001600160a01b0390911681526020016103b2565b34801561042157600080fd5b5061042a601981565b6040519081526020016103b2565b34801561044457600080fd5b5061045861045336600461236b565b610c1c565b005b34801561046657600080fd5b50600e546103fd906001600160a01b031681565b34801561048657600080fd5b506017546103fd906001600160a01b031681565b3480156104a657600080fd5b506008546103fd906001600160a01b031681565b3480156104c657600080fd5b506012546103fd906001600160a01b031681565b3480156104e657600080fd5b5060025461042a565b3480156104fb57600080fd5b506007546103fd906001600160a01b031681565b34801561051b57600080fd5b5061045861052a366004612395565b610d32565b61045861053d366004612336565b610d64565b34801561054e57600080fd5b5061042a61055d36600461236b565b610ee9565b34801561056e57600080fd5b506016546103fd906001600160a01b031681565b34801561058e57600080fd5b5061042a60195481565b3480156105a457600080fd5b50610458610f9c565b3480156105b957600080fd5b506104586105c8366004612395565b61106c565b3480156105d957600080fd5b506104586105e8366004612336565b611087565b3480156105f957600080fd5b5061060d6106083660046123d1565b6110dd565b6040516103b291906123ec565b34801561062657600080fd5b506103a661063536600461247c565b611196565b34801561064657600080fd5b50600a546103fd906001600160a01b031681565b34801561066657600080fd5b506010546103fd906001600160a01b031681565b34801561068657600080fd5b5061042a610695366004612336565b611218565b3480156106a657600080fd5b506011546103fd906001600160a01b031681565b3480156106c657600080fd5b506104586106d536600461256e565b611285565b3480156106e657600080fd5b506104586106f5366004612657565b6112c6565b34801561070657600080fd5b506103a66107153660046123d1565b601b6020526000908152604090205460ff1681565b34801561073657600080fd5b506103fd610745366004612336565b611310565b34801561075657600080fd5b506103d061139c565b34801561076b57600080fd5b5061042a61077a3660046123d1565b61142a565b34801561078b57600080fd5b506104586114f8565b3480156107a057600080fd5b506017546103a690600160a01b900460ff1681565b3480156107c157600080fd5b506013546103fd906001600160a01b031681565b3480156107e157600080fd5b506005546001600160a01b03166103fd565b3480156107ff57600080fd5b506103d061152e565b34801561081457600080fd5b5061042a60185481565b34801561082a57600080fd5b5061042a6108393660046123d1565b601c6020526000908152604090205481565b34801561085757600080fd5b506104586108663660046126dc565b61153d565b34801561087757600080fd5b50600d546103fd906001600160a01b031681565b34801561089757600080fd5b506009546103fd906001600160a01b031681565b3480156108b757600080fd5b506014546103fd906001600160a01b031681565b3480156108d757600080fd5b506104586108e6366004612718565b611602565b3480156108f757600080fd5b50600f546103fd906001600160a01b031681565b34801561091757600080fd5b506103d0610926366004612336565b61163a565b34801561093757600080fd5b50600c546103fd906001600160a01b031681565b34801561095757600080fd5b506104586116bb565b34801561096c57600080fd5b50600b546103fd906001600160a01b031681565b34801561098c57600080fd5b506017546103a690600160a81b900460ff1681565b3480156109ad57600080fd5b506103a66109bc366004612774565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6104586109f83660046127a7565b611700565b348015610a0957600080fd5b50610458610a183660046123d1565b6118e9565b348015610a2957600080fd5b50610458610a383660046127da565b611981565b348015610a4957600080fd5b5061042a600881565b348015610a5e57600080fd5b50610458610a6d366004612336565b6119c3565b348015610a7e57600080fd5b506015546103fd906001600160a01b031681565b348015610a9e57600080fd5b50610458610aad3660046123d1565b6119f2565b348015610abe57600080fd5b50610458610acd366004612336565b611a45565b60006001600160e01b0319821663780e9d6360e01b1480610af75750610af782611a87565b92915050565b606060008054610b0c90612838565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890612838565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82611ad7565b610c005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610c2782611310565b9050806001600160a01b0316836001600160a01b03161415610c955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bf7565b336001600160a01b0382161480610cb15750610cb181336109bc565b610d235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bf7565b610d2d8383611b21565b505050565b610d3d335b82611b8f565b610d595760405162461bcd60e51b8152600401610bf790612873565b610d2d838383611c79565b600254601754600160a01b900460ff161515600114610dc55760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206e6f7420737461727465640000000000000000006044820152606401610bf7565b601954610dd283836128da565b10610e155760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bf7565b6008821115610e665760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610bf7565b34601a5483610e7591906128f2565b14610ec25760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610bf7565b60005b82811015610d2d57610ed73383611dcf565b80610ee181612911565b915050610ec5565b6000610ef48361142a565b8210610f125760405162461bcd60e51b8152600401610bf79061292c565b6000805b600254811015610f835760028181548110610f3357610f33612977565b6000918252602090912001546001600160a01b0386811691161415610f715783821415610f63579150610af79050565b81610f6d81612911565b9250505b80610f7b81612911565b915050610f16565b5060405162461bcd60e51b8152600401610bf79061292c565b6005546001600160a01b03163314610fc65760405162461bcd60e51b8152600401610bf79061298d565b6017546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611013576040519150601f19603f3d011682016040523d82523d6000602084013e611018565b606091505b50509050806110695760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2073656e6420746f20617065746f7368692e00000000006044820152606401610bf7565b50565b610d2d83838360405180602001604052806000815250611602565b61109033610d37565b6110d45760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610bf7565b61106981611e4b565b606060006110ea8361142a565b90508061110b5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611126576111266124cf565b60405190808252806020026020018201604052801561114f578160200160208202803683370190505b50905060005b82811015611103576111678582610ee9565b82828151811061117957611179612977565b60209081029190910101528061118e81612911565b915050611155565b6000805b8281101561120b57846001600160a01b031660028585848181106111c0576111c0612977565b90506020020135815481106111d7576111d7612977565b6000918252602090912001546001600160a01b0316146111fb576000915050611211565b61120481612911565b905061119a565b50600190505b9392505050565b60025460009082106112815760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bf7565b5090565b6005546001600160a01b031633146112af5760405162461bcd60e51b8152600401610bf79061298d565b80516112c2906006906020840190612208565b5050565b60005b8251811015611309576112f785858584815181106112e9576112e9612977565b602002602001015185611602565b8061130181612911565b9150506112c9565b5050505050565b6000806002838154811061132657611326612977565b6000918252602090912001546001600160a01b0316905080610af75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bf7565b600680546113a990612838565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590612838565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b505050505081565b60006001600160a01b0382166114955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bf7565b6000805b6002548110156114f157600281815481106114b6576114b6612977565b6000918252602090912001546001600160a01b03858116911614156114e1576114de82612911565b91505b6114ea81612911565b9050611499565b5092915050565b6005546001600160a01b031633146115225760405162461bcd60e51b8152600401610bf79061298d565b61152c6000611ecd565b565b606060018054610b0c90612838565b6001600160a01b0382163314156115965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bf7565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61160c3383611b8f565b6116285760405162461bcd60e51b8152600401610bf790612873565b61163484848484611f1f565b50505050565b606061164582611ad7565b6116895760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610bf7565b600661169483611f52565b6040516020016116a59291906129de565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146116e55760405162461bcd60e51b8152600401610bf79061298d565b6017805461ffff60a01b1916600160a01b1790556000601855565b60025460195461171085836128da565b106117535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610bf7565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117cd848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018549150849050612050565b6118075760405162461bcd60e51b815260206004820152600b60248201526a3bb937b73390383937b7b360a91b6044820152606401610bf7565b60088511156118495760405162461bcd60e51b815260206004820152600e60248201526d0caf0c6cacac8e640e8f040dac2f60931b6044820152606401610bf7565b34601a548661185891906128f2565b146118955760405162461bcd60e51b815260206004820152600d60248201526c696e76616c69642066756e647360981b6044820152606401610bf7565b336000908152601c6020526040812080548792906118b49084906128da565b90915550600090505b858110156118e1576118cf3384611dcf565b806118d981612911565b9150506118bd565b505050505050565b6005546001600160a01b031633146119135760405162461bcd60e51b8152600401610bf79061298d565b6001600160a01b0381166119785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf7565b61106981611ecd565b60005b8151811015611634576119b184848484815181106119a4576119a4612977565b6020026020010151610d32565b806119bb81612911565b915050611984565b6005546001600160a01b031633146119ed5760405162461bcd60e51b8152600401610bf79061298d565b601a55565b6005546001600160a01b03163314611a1c5760405162461bcd60e51b8152600401610bf79061298d565b6001600160a01b03166000908152601b60205260409020805460ff19811660ff90911615179055565b6005546001600160a01b03163314611a6f5760405162461bcd60e51b8152600401610bf79061298d565b6017805460ff60a81b1916600160a81b179055601855565b60006001600160e01b031982166380ac58cd60e01b1480611ab857506001600160e01b03198216635b5e139f60e01b145b80610af757506301ffc9a760e01b6001600160e01b0319831614610af7565b60025460009082108015610af7575060006001600160a01b031660028381548110611b0457611b04612977565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b5682611310565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9a82611ad7565b611bfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bf7565b6000611c0683611310565b9050806001600160a01b0316846001600160a01b03161480611c415750836001600160a01b0316611c3684610b8f565b6001600160a01b0316145b80611c7157506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c8c82611310565b6001600160a01b031614611cf45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bf7565b6001600160a01b038216611d565760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf7565b611d61600082611b21565b8160028281548110611d7557611d75612977565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611e5682611310565b9050611e63600083611b21565b600060028381548110611e7857611e78612977565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f2a848484611c79565b611f3684848484612066565b6116345760405162461bcd60e51b8152600401610bf790612a85565b606081611f765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fa05780611f8a81612911565b9150611f999050600a83612aed565b9150611f7a565b60008167ffffffffffffffff811115611fbb57611fbb6124cf565b6040519080825280601f01601f191660200182016040528015611fe5576020820181803683370190505b5090505b8415611c7157611ffa600183612b01565b9150612007600a86612b18565b6120129060306128da565b60f81b81838151811061202757612027612977565b60200101906001600160f81b031916908160001a905350612049600a86612aed565b9450611fe9565b60008261205d8584612164565b14949350505050565b60006001600160a01b0384163b1561215957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120aa903390899088908890600401612b2c565b6020604051808303816000875af19250505080156120e5575060408051601f3d908101601f191682019092526120e291810190612b69565b60015b61213f573d808015612113576040519150601f19603f3d011682016040523d82523d6000602084013e612118565b606091505b5080516121375760405162461bcd60e51b8152600401610bf790612a85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c71565b506001949350505050565b600081815b845181101561110357600085828151811061218657612186612977565b602002602001015190508083116121c85760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506121f5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061220081612911565b915050612169565b82805461221490612838565b90600052602060002090601f016020900481019282612236576000855561227c565b82601f1061224f57805160ff191683800117855561227c565b8280016001018555821561227c579182015b8281111561227c578251825591602001919060010190612261565b506112819291505b808211156112815760008155600101612284565b6001600160e01b03198116811461106957600080fd5b6000602082840312156122c057600080fd5b813561121181612298565b60005b838110156122e65781810151838201526020016122ce565b838111156116345750506000910152565b6000815180845261230f8160208601602086016122cb565b601f01601f19169290920160200192915050565b60208152600061121160208301846122f7565b60006020828403121561234857600080fd5b5035919050565b80356001600160a01b038116811461236657600080fd5b919050565b6000806040838503121561237e57600080fd5b6123878361234f565b946020939093013593505050565b6000806000606084860312156123aa57600080fd5b6123b38461234f565b92506123c16020850161234f565b9150604084013590509250925092565b6000602082840312156123e357600080fd5b6112118261234f565b6020808252825182820181905260009190848201906040850190845b8181101561242457835183529284019291840191600101612408565b50909695505050505050565b60008083601f84011261244257600080fd5b50813567ffffffffffffffff81111561245a57600080fd5b6020830191508360208260051b850101111561247557600080fd5b9250929050565b60008060006040848603121561249157600080fd5b61249a8461234f565b9250602084013567ffffffffffffffff8111156124b657600080fd5b6124c286828701612430565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561250e5761250e6124cf565b604052919050565b600067ffffffffffffffff831115612530576125306124cf565b612543601f8401601f19166020016124e5565b905082815283838301111561255757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561258057600080fd5b813567ffffffffffffffff81111561259757600080fd5b8201601f810184136125a857600080fd5b611c7184823560208401612516565b600082601f8301126125c857600080fd5b8135602067ffffffffffffffff8211156125e4576125e46124cf565b8160051b6125f38282016124e5565b928352848101820192828101908785111561260d57600080fd5b83870192505b8483101561262c57823582529183019190830190612613565b979650505050505050565b600082601f83011261264857600080fd5b61121183833560208501612516565b6000806000806080858703121561266d57600080fd5b6126768561234f565b93506126846020860161234f565b9250604085013567ffffffffffffffff808211156126a157600080fd5b6126ad888389016125b7565b935060608701359150808211156126c357600080fd5b506126d087828801612637565b91505092959194509250565b600080604083850312156126ef57600080fd5b6126f88361234f565b91506020830135801515811461270d57600080fd5b809150509250929050565b6000806000806080858703121561272e57600080fd5b6127378561234f565b93506127456020860161234f565b925060408501359150606085013567ffffffffffffffff81111561276857600080fd5b6126d087828801612637565b6000806040838503121561278757600080fd5b6127908361234f565b915061279e6020840161234f565b90509250929050565b6000806000604084860312156127bc57600080fd5b83359250602084013567ffffffffffffffff8111156124b657600080fd5b6000806000606084860312156127ef57600080fd5b6127f88461234f565b92506128066020850161234f565b9150604084013567ffffffffffffffff81111561282257600080fd5b61282e868287016125b7565b9150509250925092565b600181811c9082168061284c57607f821691505b6020821081141561286d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128ed576128ed6128c4565b500190565b600081600019048311821515161561290c5761290c6128c4565b500290565b6000600019821415612925576129256128c4565b5060010190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081516129d48185602086016122cb565b9290920192915050565b600080845481600182811c9150808316806129fa57607f831692505b6020808410821415612a1a57634e487b7160e01b86526022600452602486fd5b818015612a2e5760018114612a3f57612a6c565b60ff19861689528489019650612a6c565b60008b81526020902060005b86811015612a645781548b820152908501908301612a4b565b505084890196505b505050505050612a7c81856129c2565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612afc57612afc612ad7565b500490565b600082821015612b1357612b136128c4565b500390565b600082612b2757612b27612ad7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b5f908301846122f7565b9695505050505050565b600060208284031215612b7b57600080fd5b81516112118161229856fea26469706673582212202cf3b7064f3e6f3f64f19d43452279dc159de230b70c263769ec13859cb07f9664736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a05123b49c1094a83f7a3032eb43c3bd1d61d21d000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63504835686e5176544641614a6e7569464c4b7939456377475a4271535362645a316f5a4156337961484b562f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103815760003560e01c80636c0360eb116101d1578063c46fd00611610102578063ec8bda8e116100a0578063f4a0a5281161006f578063f4a0a52814610a52578063f550eef014610a72578063f73c814b14610a92578063f95df41414610ab257600080fd5b8063ec8bda8e146109ea578063f2fde38b146109fd578063f3993d1114610a1d578063f43a22dc14610a3d57600080fd5b8063e222c7f9116100dc578063e222c7f91461094b578063e294ba5914610960578063e932444414610980578063e985e9c5146109a157600080fd5b8063c46fd006146108eb578063c87b56dd1461090b578063d14859cb1461092b57600080fd5b80639bb906e01161016f578063a398278911610149578063a39827891461086b578063ab75dcfd1461088b578063b2e621d4146108ab578063b88d4fde146108cb57600080fd5b80639bb906e0146108085780639ec00c951461081e578063a22cb4651461084b57600080fd5b806371adc02a116101ab57806371adc02a146107945780638913df2d146107b55780638da5cb5b146107d557806395d89b41146107f357600080fd5b80636c0360eb1461074a57806370a082311461075f578063715018a61461077f57600080fd5b806331a3c773116102b65780634dda9f681161025457806355f804b31161022357806355f804b3146106ba5780635a4fee30146106da5780635bab26e2146106fa5780636352211e1461072a57600080fd5b80634dda9f681461063a5780634e80412a1461065a5780634f6ccce71461067a57806352dce2e91461069a57600080fd5b806342842e0e1161029057806342842e0e146105ad57806342966c68146105cd578063438b6300146105ed5780634d44660c1461061a57600080fd5b806331a3c7731461056257806332cb6b0c146105825780633ccfd60b1461059857600080fd5b806316346a82116103235780631fc16082116102fd5780631fc16082146104ef57806323b872dd1461050f5780632db115441461052f5780632f745c591461054257600080fd5b806316346a821461049a5780631681383c146104ba57806318160ddd146104da57600080fd5b80630922f9c51161035f5780630922f9c514610415578063095ea7b3146104385780630f3f77f01461045a5780631581b6001461047a57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122ae565b610ad2565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610afd565b6040516103b29190612323565b3480156103e957600080fd5b506103fd6103f8366004612336565b610b8f565b6040516001600160a01b0390911681526020016103b2565b34801561042157600080fd5b5061042a601981565b6040519081526020016103b2565b34801561044457600080fd5b5061045861045336600461236b565b610c1c565b005b34801561046657600080fd5b50600e546103fd906001600160a01b031681565b34801561048657600080fd5b506017546103fd906001600160a01b031681565b3480156104a657600080fd5b506008546103fd906001600160a01b031681565b3480156104c657600080fd5b506012546103fd906001600160a01b031681565b3480156104e657600080fd5b5060025461042a565b3480156104fb57600080fd5b506007546103fd906001600160a01b031681565b34801561051b57600080fd5b5061045861052a366004612395565b610d32565b61045861053d366004612336565b610d64565b34801561054e57600080fd5b5061042a61055d36600461236b565b610ee9565b34801561056e57600080fd5b506016546103fd906001600160a01b031681565b34801561058e57600080fd5b5061042a60195481565b3480156105a457600080fd5b50610458610f9c565b3480156105b957600080fd5b506104586105c8366004612395565b61106c565b3480156105d957600080fd5b506104586105e8366004612336565b611087565b3480156105f957600080fd5b5061060d6106083660046123d1565b6110dd565b6040516103b291906123ec565b34801561062657600080fd5b506103a661063536600461247c565b611196565b34801561064657600080fd5b50600a546103fd906001600160a01b031681565b34801561066657600080fd5b506010546103fd906001600160a01b031681565b34801561068657600080fd5b5061042a610695366004612336565b611218565b3480156106a657600080fd5b506011546103fd906001600160a01b031681565b3480156106c657600080fd5b506104586106d536600461256e565b611285565b3480156106e657600080fd5b506104586106f5366004612657565b6112c6565b34801561070657600080fd5b506103a66107153660046123d1565b601b6020526000908152604090205460ff1681565b34801561073657600080fd5b506103fd610745366004612336565b611310565b34801561075657600080fd5b506103d061139c565b34801561076b57600080fd5b5061042a61077a3660046123d1565b61142a565b34801561078b57600080fd5b506104586114f8565b3480156107a057600080fd5b506017546103a690600160a01b900460ff1681565b3480156107c157600080fd5b506013546103fd906001600160a01b031681565b3480156107e157600080fd5b506005546001600160a01b03166103fd565b3480156107ff57600080fd5b506103d061152e565b34801561081457600080fd5b5061042a60185481565b34801561082a57600080fd5b5061042a6108393660046123d1565b601c6020526000908152604090205481565b34801561085757600080fd5b506104586108663660046126dc565b61153d565b34801561087757600080fd5b50600d546103fd906001600160a01b031681565b34801561089757600080fd5b506009546103fd906001600160a01b031681565b3480156108b757600080fd5b506014546103fd906001600160a01b031681565b3480156108d757600080fd5b506104586108e6366004612718565b611602565b3480156108f757600080fd5b50600f546103fd906001600160a01b031681565b34801561091757600080fd5b506103d0610926366004612336565b61163a565b34801561093757600080fd5b50600c546103fd906001600160a01b031681565b34801561095757600080fd5b506104586116bb565b34801561096c57600080fd5b50600b546103fd906001600160a01b031681565b34801561098c57600080fd5b506017546103a690600160a81b900460ff1681565b3480156109ad57600080fd5b506103a66109bc366004612774565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6104586109f83660046127a7565b611700565b348015610a0957600080fd5b50610458610a183660046123d1565b6118e9565b348015610a2957600080fd5b50610458610a383660046127da565b611981565b348015610a4957600080fd5b5061042a600881565b348015610a5e57600080fd5b50610458610a6d366004612336565b6119c3565b348015610a7e57600080fd5b506015546103fd906001600160a01b031681565b348015610a9e57600080fd5b50610458610aad3660046123d1565b6119f2565b348015610abe57600080fd5b50610458610acd366004612336565b611a45565b60006001600160e01b0319821663780e9d6360e01b1480610af75750610af782611a87565b92915050565b606060008054610b0c90612838565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890612838565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82611ad7565b610c005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610c2782611310565b9050806001600160a01b0316836001600160a01b03161415610c955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bf7565b336001600160a01b0382161480610cb15750610cb181336109bc565b610d235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bf7565b610d2d8383611b21565b505050565b610d3d335b82611b8f565b610d595760405162461bcd60e51b8152600401610bf790612873565b610d2d838383611c79565b600254601754600160a01b900460ff161515600114610dc55760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206e6f7420737461727465640000000000000000006044820152606401610bf7565b601954610dd283836128da565b10610e155760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bf7565b6008821115610e665760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610bf7565b34601a5483610e7591906128f2565b14610ec25760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610bf7565b60005b82811015610d2d57610ed73383611dcf565b80610ee181612911565b915050610ec5565b6000610ef48361142a565b8210610f125760405162461bcd60e51b8152600401610bf79061292c565b6000805b600254811015610f835760028181548110610f3357610f33612977565b6000918252602090912001546001600160a01b0386811691161415610f715783821415610f63579150610af79050565b81610f6d81612911565b9250505b80610f7b81612911565b915050610f16565b5060405162461bcd60e51b8152600401610bf79061292c565b6005546001600160a01b03163314610fc65760405162461bcd60e51b8152600401610bf79061298d565b6017546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611013576040519150601f19603f3d011682016040523d82523d6000602084013e611018565b606091505b50509050806110695760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2073656e6420746f20617065746f7368692e00000000006044820152606401610bf7565b50565b610d2d83838360405180602001604052806000815250611602565b61109033610d37565b6110d45760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610bf7565b61106981611e4b565b606060006110ea8361142a565b90508061110b5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611126576111266124cf565b60405190808252806020026020018201604052801561114f578160200160208202803683370190505b50905060005b82811015611103576111678582610ee9565b82828151811061117957611179612977565b60209081029190910101528061118e81612911565b915050611155565b6000805b8281101561120b57846001600160a01b031660028585848181106111c0576111c0612977565b90506020020135815481106111d7576111d7612977565b6000918252602090912001546001600160a01b0316146111fb576000915050611211565b61120481612911565b905061119a565b50600190505b9392505050565b60025460009082106112815760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bf7565b5090565b6005546001600160a01b031633146112af5760405162461bcd60e51b8152600401610bf79061298d565b80516112c2906006906020840190612208565b5050565b60005b8251811015611309576112f785858584815181106112e9576112e9612977565b602002602001015185611602565b8061130181612911565b9150506112c9565b5050505050565b6000806002838154811061132657611326612977565b6000918252602090912001546001600160a01b0316905080610af75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bf7565b600680546113a990612838565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590612838565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b505050505081565b60006001600160a01b0382166114955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bf7565b6000805b6002548110156114f157600281815481106114b6576114b6612977565b6000918252602090912001546001600160a01b03858116911614156114e1576114de82612911565b91505b6114ea81612911565b9050611499565b5092915050565b6005546001600160a01b031633146115225760405162461bcd60e51b8152600401610bf79061298d565b61152c6000611ecd565b565b606060018054610b0c90612838565b6001600160a01b0382163314156115965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bf7565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61160c3383611b8f565b6116285760405162461bcd60e51b8152600401610bf790612873565b61163484848484611f1f565b50505050565b606061164582611ad7565b6116895760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610bf7565b600661169483611f52565b6040516020016116a59291906129de565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146116e55760405162461bcd60e51b8152600401610bf79061298d565b6017805461ffff60a01b1916600160a01b1790556000601855565b60025460195461171085836128da565b106117535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610bf7565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117cd848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018549150849050612050565b6118075760405162461bcd60e51b815260206004820152600b60248201526a3bb937b73390383937b7b360a91b6044820152606401610bf7565b60088511156118495760405162461bcd60e51b815260206004820152600e60248201526d0caf0c6cacac8e640e8f040dac2f60931b6044820152606401610bf7565b34601a548661185891906128f2565b146118955760405162461bcd60e51b815260206004820152600d60248201526c696e76616c69642066756e647360981b6044820152606401610bf7565b336000908152601c6020526040812080548792906118b49084906128da565b90915550600090505b858110156118e1576118cf3384611dcf565b806118d981612911565b9150506118bd565b505050505050565b6005546001600160a01b031633146119135760405162461bcd60e51b8152600401610bf79061298d565b6001600160a01b0381166119785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf7565b61106981611ecd565b60005b8151811015611634576119b184848484815181106119a4576119a4612977565b6020026020010151610d32565b806119bb81612911565b915050611984565b6005546001600160a01b031633146119ed5760405162461bcd60e51b8152600401610bf79061298d565b601a55565b6005546001600160a01b03163314611a1c5760405162461bcd60e51b8152600401610bf79061298d565b6001600160a01b03166000908152601b60205260409020805460ff19811660ff90911615179055565b6005546001600160a01b03163314611a6f5760405162461bcd60e51b8152600401610bf79061298d565b6017805460ff60a81b1916600160a81b179055601855565b60006001600160e01b031982166380ac58cd60e01b1480611ab857506001600160e01b03198216635b5e139f60e01b145b80610af757506301ffc9a760e01b6001600160e01b0319831614610af7565b60025460009082108015610af7575060006001600160a01b031660028381548110611b0457611b04612977565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b5682611310565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9a82611ad7565b611bfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bf7565b6000611c0683611310565b9050806001600160a01b0316846001600160a01b03161480611c415750836001600160a01b0316611c3684610b8f565b6001600160a01b0316145b80611c7157506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c8c82611310565b6001600160a01b031614611cf45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bf7565b6001600160a01b038216611d565760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf7565b611d61600082611b21565b8160028281548110611d7557611d75612977565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611e5682611310565b9050611e63600083611b21565b600060028381548110611e7857611e78612977565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f2a848484611c79565b611f3684848484612066565b6116345760405162461bcd60e51b8152600401610bf790612a85565b606081611f765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fa05780611f8a81612911565b9150611f999050600a83612aed565b9150611f7a565b60008167ffffffffffffffff811115611fbb57611fbb6124cf565b6040519080825280601f01601f191660200182016040528015611fe5576020820181803683370190505b5090505b8415611c7157611ffa600183612b01565b9150612007600a86612b18565b6120129060306128da565b60f81b81838151811061202757612027612977565b60200101906001600160f81b031916908160001a905350612049600a86612aed565b9450611fe9565b60008261205d8584612164565b14949350505050565b60006001600160a01b0384163b1561215957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120aa903390899088908890600401612b2c565b6020604051808303816000875af19250505080156120e5575060408051601f3d908101601f191682019092526120e291810190612b69565b60015b61213f573d808015612113576040519150601f19603f3d011682016040523d82523d6000602084013e612118565b606091505b5080516121375760405162461bcd60e51b8152600401610bf790612a85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c71565b506001949350505050565b600081815b845181101561110357600085828151811061218657612186612977565b602002602001015190508083116121c85760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506121f5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061220081612911565b915050612169565b82805461221490612838565b90600052602060002090601f016020900481019282612236576000855561227c565b82601f1061224f57805160ff191683800117855561227c565b8280016001018555821561227c579182015b8281111561227c578251825591602001919060010190612261565b506112819291505b808211156112815760008155600101612284565b6001600160e01b03198116811461106957600080fd5b6000602082840312156122c057600080fd5b813561121181612298565b60005b838110156122e65781810151838201526020016122ce565b838111156116345750506000910152565b6000815180845261230f8160208601602086016122cb565b601f01601f19169290920160200192915050565b60208152600061121160208301846122f7565b60006020828403121561234857600080fd5b5035919050565b80356001600160a01b038116811461236657600080fd5b919050565b6000806040838503121561237e57600080fd5b6123878361234f565b946020939093013593505050565b6000806000606084860312156123aa57600080fd5b6123b38461234f565b92506123c16020850161234f565b9150604084013590509250925092565b6000602082840312156123e357600080fd5b6112118261234f565b6020808252825182820181905260009190848201906040850190845b8181101561242457835183529284019291840191600101612408565b50909695505050505050565b60008083601f84011261244257600080fd5b50813567ffffffffffffffff81111561245a57600080fd5b6020830191508360208260051b850101111561247557600080fd5b9250929050565b60008060006040848603121561249157600080fd5b61249a8461234f565b9250602084013567ffffffffffffffff8111156124b657600080fd5b6124c286828701612430565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561250e5761250e6124cf565b604052919050565b600067ffffffffffffffff831115612530576125306124cf565b612543601f8401601f19166020016124e5565b905082815283838301111561255757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561258057600080fd5b813567ffffffffffffffff81111561259757600080fd5b8201601f810184136125a857600080fd5b611c7184823560208401612516565b600082601f8301126125c857600080fd5b8135602067ffffffffffffffff8211156125e4576125e46124cf565b8160051b6125f38282016124e5565b928352848101820192828101908785111561260d57600080fd5b83870192505b8483101561262c57823582529183019190830190612613565b979650505050505050565b600082601f83011261264857600080fd5b61121183833560208501612516565b6000806000806080858703121561266d57600080fd5b6126768561234f565b93506126846020860161234f565b9250604085013567ffffffffffffffff808211156126a157600080fd5b6126ad888389016125b7565b935060608701359150808211156126c357600080fd5b506126d087828801612637565b91505092959194509250565b600080604083850312156126ef57600080fd5b6126f88361234f565b91506020830135801515811461270d57600080fd5b809150509250929050565b6000806000806080858703121561272e57600080fd5b6127378561234f565b93506127456020860161234f565b925060408501359150606085013567ffffffffffffffff81111561276857600080fd5b6126d087828801612637565b6000806040838503121561278757600080fd5b6127908361234f565b915061279e6020840161234f565b90509250929050565b6000806000604084860312156127bc57600080fd5b83359250602084013567ffffffffffffffff8111156124b657600080fd5b6000806000606084860312156127ef57600080fd5b6127f88461234f565b92506128066020850161234f565b9150604084013567ffffffffffffffff81111561282257600080fd5b61282e868287016125b7565b9150509250925092565b600181811c9082168061284c57607f821691505b6020821081141561286d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128ed576128ed6128c4565b500190565b600081600019048311821515161561290c5761290c6128c4565b500290565b6000600019821415612925576129256128c4565b5060010190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081516129d48185602086016122cb565b9290920192915050565b600080845481600182811c9150808316806129fa57607f831692505b6020808410821415612a1a57634e487b7160e01b86526022600452602486fd5b818015612a2e5760018114612a3f57612a6c565b60ff19861689528489019650612a6c565b60008b81526020902060005b86811015612a645781548b820152908501908301612a4b565b505084890196505b505050505050612a7c81856129c2565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612afc57612afc612ad7565b500490565b600082821015612b1357612b136128c4565b500390565b600082612b2757612b27612ad7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b5f908301846122f7565b9695505050505050565b600060208284031215612b7b57600080fd5b81516112118161229856fea26469706673582212202cf3b7064f3e6f3f64f19d43452279dc159de230b70c263769ec13859cb07f9664736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a05123b49c1094a83f7a3032eb43c3bd1d61d21d000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63504835686e5176544641614a6e7569464c4b7939456377475a4271535362645a316f5a4156337961484b562f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmcPH5hnQvTFAaJnuiFLKy9EcwGZBqSSbdZ1oZAV3yaHKV/
Arg [1] : _withdrawAddress (address): 0xa05123B49c1094a83F7A3032EB43C3bd1D61D21d
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a05123b49c1094a83f7a3032eb43c3bd1d61d21d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d63504835686e5176544641614a6e7569464c4b7939456377475a4271
Arg [5] : 535362645a316f5a4156337961484b562f000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.