Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 GTFP
Holders
182
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GTFPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FoundersTokensV2
Compiler Version
v0.8.1+commit.df193b15
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/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; //import "./FoundersTokens.sol"; contract FoundersTokensV2 is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; address private _owner; uint32 private MAX_TOKENS = 3999; //uint256 SEED_NONCE = 0; uint256 private SALE_PRICE = 0.08 ether; uint256 private balance = 0; bool private isActive = false; //bool private REVEAL = false; string private baseURI = "https://gtsdfp.s3.amazonaws.com/preview/"; mapping(uint256 => Trait) private tokenIdTrait; //uint arrays //uint16[][2] TIERS; uint16[][4] RARITIES; // = [[695, 695, 695, 695], [150, 150, 150, 150], [100, 100, 100, 100], [50, 50, 50, 50], [5, 5, 5, 5]]; struct Trait { uint16 artType; uint16 materialType; } string[] private artTypeValues = [ 'Mean Cat', 'Mouse', 'Marshal', 'Hero' ]; string[] private materialTypeValues = [ 'Paper', 'Bronze', 'Silver', 'Gold', 'Ghostly' ]; mapping(string=>uint16) artMap; //= {'Mean Cat': 0, 'Mouse': 1, 'Marshal': 2, 'Hero': 3]; mapping(string=>uint16) materialMap; address v1Contract; constructor() ERC721("Ghost Town Founders Pass V2", "GTFP") public { _owner = msg.sender; //v1Contract = _v1Contract; _tokenIds.increment(); artMap['MeanCat'] = 0; artMap['Mouse'] = 1; artMap['Marshal'] = 2; artMap['Hero'] = 3; materialMap['Paper'] = 0; materialMap['Bronze'] = 1; materialMap['Silver'] = 2; materialMap['Gold'] = 3; materialMap['Ghostly'] = 4; //Declare all the rarity tiers //Art //TIERS[0] = [5, 5, 5, 5];//TIERS[0] = [1000, 1000, 1000, 1000]; // Mean Cat, MM, FM, Landscape //material //TIERS[1] = [10, 4, 3, 2, 1]; // paper, bronze, silver, gold, ghostly //RARITIES[0] = [695, 695, 695, 695]; //, [150, 150, 150, 150], [100, 100, 100, 100], [50, 50, 50, 50], [5, 5, 5, 5]]; //RARITIES[1] = [150, 150, 150, 150]; //RARITIES[2] = [100, 100, 100, 100]; //RARITIES[3] = [50, 50, 50, 50]; //RARITIES[4] = [5, 5, 5, 5]; RARITIES[0] = [695, 150, 100, 50, 5]; // rotating creates a better overall random distribution RARITIES[1] = [695, 150, 100, 50, 5]; RARITIES[2] = [695, 150, 100, 50, 5]; RARITIES[3] = [695, 150, 100, 50, 5]; //RARITIES = _RARITIES; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); //string memory _tokenURI = _tokenURIs[tokenId]; //string(abi.encodePacked("ipfs://")); return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")); } function activate(bool active) external onlyOwner { isActive = active; } function setBaseURI(string memory _uri) external onlyOwner { baseURI = _uri; } /*function setReveal(bool _reveal) external onlyOwner { REVEAL = _reveal; }*/ function changePrice(uint256 _salePrice) external onlyOwner { SALE_PRICE = _salePrice; } function mintV1(uint256 numberOfMints, string[] calldata artList, string[] calldata matList, address[] calldata addrList) public { require(msg.sender == _owner, "not owner"); uint256 newItemId = _tokenIds.current(); require((newItemId - 1 + numberOfMints <= 247), "v1 limit exceeded"); //FoundersTokens fpV1 = FoundersTokens(v1Contract); for (uint256 i=0; i < numberOfMints; i++) { //(string memory artType, string memory materialType) = fpV1.getTraits(newItemId); //require(RARITIES[artMap[artType]][materialMap[materialType]], "no rare"); RARITIES[artMap[artList[i]]][materialMap[matList[i]]] -= 1; //tokenIdTrait[newItemId] = createTraits(newItemId, addresses[i]); tokenIdTrait[newItemId] = Trait({artType: artMap[artList[i]], materialType: materialMap[matList[i]]}); _safeMint(addrList[i], newItemId); _tokenIds.increment(); newItemId = _tokenIds.current(); } } function createItem(uint256 numberOfTokens) public payable returns (uint256) { //require(((block.timestamp >= _startDateTime && block.timestamp < _endDateTime && !isWhiteListSale) || msg.sender == _owner), "sale not active"); require(isActive || msg.sender == _owner, "sale not active"); require(msg.value >= SALE_PRICE || msg.sender == _owner, "not enough money"); //require(((mintTracker[msg.sender] + numberOfTokens) <= MAXQ || msg.sender == _owner), "ALready minted during sale"); uint256 newItemId = _tokenIds.current(); //_setTokenURI(newItemId, string(abi.encodePacked("ipfs://", _hash))); require(newItemId > 247, "need to transfer v1"); require((newItemId - 1 + numberOfTokens) <= MAX_TOKENS, "collection fully minted"); //mintTracker[msg.sender] = mintTracker[msg.sender] + numberOfTokens; for (uint256 i=0; i < numberOfTokens; i++) { tokenIdTrait[newItemId] = createTraits(newItemId, msg.sender); _safeMint(msg.sender, newItemId); _tokenIds.increment(); newItemId = _tokenIds.current(); } //payable(address(this)).transfer(SALE_PRICE); return newItemId; } function weightedRarityGenerator(uint16 pseudoRandomNumber) private returns (uint8, uint8) { uint16 lowerBound = 0; for (uint8 i = 0; i < RARITIES.length; i++) { for (uint8 j = 0; j < RARITIES[i].length; j++) { uint16 weight = RARITIES[i][j]; if (pseudoRandomNumber >= lowerBound && pseudoRandomNumber < lowerBound + weight) { RARITIES[i][j] -= 1; return (i, j); } lowerBound = lowerBound + weight; } } revert(); } function createTraits(uint256 tokenId, address _msgSender) private returns (Trait memory) { uint256 pseudoRandomBase = uint256(keccak256(abi.encodePacked(blockhash(block.number - 1), _msgSender, tokenId))); uint256 tokensMinted = itemsMinted(); (uint8 a, uint8 m) = weightedRarityGenerator(uint16(uint16(pseudoRandomBase >> 1) % (1 + MAX_TOKENS - tokensMinted))); return Trait({ artType: a, materialType: m }); } function withdraw() onlyOwner public { require(address(this).balance > 0, "0 balance"); payable(_owner).transfer(address(this).balance); } function getTraits(uint256 tokenId) public view returns (string memory artType, string memory materialType) { //require(REVEAL, "reveal not set yet"); Trait memory trait = tokenIdTrait[tokenId]; artType = artTypeValues[trait.artType]; materialType = materialTypeValues[trait.materialType]; } function itemsMinted() public view returns(uint) { return _tokenIds.current() - 1; } function ownerBalance() public view returns(uint256) { return address(this).balance; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ 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 (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(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); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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 // 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 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"internalType":"bool","name":"active","type":"bool"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"createItem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraits","outputs":[{"internalType":"string","name":"artType","type":"string"},{"internalType":"string","name":"materialType","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"},{"internalType":"string[]","name":"artList","type":"string[]"},{"internalType":"string[]","name":"matList","type":"string[]"},{"internalType":"address[]","name":"addrList","type":"address[]"}],"name":"mintV1","outputs":[],"stateMutability":"nonpayable","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":[],"name":"ownerBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805463ffffffff60a01b1916610f9f60a01b17905567011c37937e0800006009556000600a55600b805460ff1916905560e060405260286080818152906200315660a03980516200005b91600c91602090910190620005ee565b506040518060800160405280604051806040016040528060088152602001671359585b8810d85d60c21b8152508152602001604051806040016040528060058152602001644d6f75736560d81b81525081526020016040518060400160405280600781526020016613585c9cda185b60ca1b8152508152602001604051806040016040528060048152602001634865726f60e01b8152508152506012906004620001079291906200067d565b506040805160e081018252600560a08201818152642830b832b960d91b60c084015282528251808401845260068082526542726f6e7a6560d01b60208381019190915280850192909252845180860186529081526529b4b63b32b960d11b818301528385015283518085018552600481526311dbdb1960e21b8183015260608401528351808501909452600784526647686f73746c7960c81b908401526080820192909252620001bb9160139190620006dd565b50348015620001c957600080fd5b50604080518082018252601b81527f47686f737420546f776e20466f756e64657273205061737320563200000000006020808301918252835180850190945260048452630475446560e41b9084015281519192916200022b91600091620005ee565b50805162000241906001906020840190620005ee565b5050506200025e620002586200058f60201b60201c565b62000593565b60088054336001600160a01b03199091161790556200028a6007620005e5602090811b620010a117901c565b600060146040516200029c9062000875565b908152602001604051809103902060006101000a81548161ffff021916908361ffff16021790555060016014604051620002d690620008cd565b908152602001604051809103902060006101000a81548161ffff021916908361ffff160217905550600260146040516200031090620008de565b908152602001604051809103902060006101000a81548161ffff021916908361ffff160217905550600360146040516200034a90620008bd565b908152602001604051809103902060006101000a81548161ffff021916908361ffff16021790555060006015604051620003849062000864565b908152602001604051809103902060006101000a81548161ffff021916908361ffff16021790555060016015604051620003be9062000852565b908152602001604051809103902060006101000a81548161ffff021916908361ffff16021790555060026015604051620003f89062000888565b908152602001604051809103902060006101000a81548161ffff021916908361ffff1602179055506003601560405162000432906200089a565b908152602001604051809103902060006101000a81548161ffff021916908361ffff160217905550600460156040516200046c90620008aa565b9081526040805160209281900383018120805461ffff191661ffff959095169490941790935560a0830181526102b783526096918301919091526064908201526032606082015260056080820152600e6000620004ce9291019060056200072f565b506040805160a0810182526102b7815260966020820152606491810191909152603260608201526005608082018190526200050c91600f916200072f565b506040805160a0810182526102b7815260966020820152606491810191909152603260608201526005608082018190526200054a916010916200072f565b506040805160a0810182526102b78152609660208201526064918101919091526032606082015260056080820181905262000588916011916200072f565b506200092e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b828054620005fc90620008f1565b90600052602060002090601f0160209004810192826200062057600085556200066b565b82601f106200063b57805160ff19168380011785556200066b565b828001600101855582156200066b579182015b828111156200066b5782518255916020019190600101906200064e565b5062000679929150620007d5565b5090565b828054828255906000526020600020908101928215620006cf579160200282015b82811115620006cf5782518051620006be918491602090910190620005ee565b50916020019190600101906200069e565b5062000679929150620007ec565b828054828255906000526020600020908101928215620006cf579160200282015b82811115620006cf57825180516200071e918491602090910190620005ee565b5091602001919060010190620006fe565b82805482825590600052602060002090600f016010900481019282156200066b5791602002820160005b838211156200079b57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000759565b8015620007cb5782816101000a81549061ffff02191690556002016020816001010492830192600103026200079b565b5050620006799291505b5b80821115620006795760008155600101620007d6565b80821115620006795760006200080382826200080d565b50600101620007ec565b5080546200081b90620008f1565b6000825580601f106200082f57506200084f565b601f0160209004906000526020600020908101906200084f9190620007d5565b50565b6542726f6e7a6560d01b815260060190565b642830b832b960d91b815260050190565b661359585b90d85d60ca1b815260070190565b6529b4b63b32b960d11b815260060190565b6311dbdb1960e21b815260040190565b6647686f73746c7960c81b815260070190565b634865726f60e01b815260040190565b644d6f75736560d81b815260050190565b6613585c9cda185b60ca1b815260070190565b6002810460018216806200090657607f821691505b602082108114156200092857634e487b7160e01b600052602260045260246000fd5b50919050565b612818806200093e6000396000f3fe6080604052600436106101665760003560e01c80638da5cb5b116100d1578063bedcf0031161008a578063d7a5d5d311610064578063d7a5d5d3146103fd578063e1dc076114610410578063e985e9c51461043e578063f2fde38b1461045e57610166565b8063bedcf003146103a8578063c87b56dd146103bd578063ce5e84a3146103dd57610166565b80638da5cb5b146102fe5780639586f7d11461031357806395d89b4114610333578063a22cb46514610348578063a2b40d1914610368578063b88d4fde1461038857610166565b806342842e0e1161012357806342842e0e1461024757806355f804b3146102675780635c78a393146102875780636352211e146102a957806370a08231146102c9578063715018a6146102e957610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806323b872dd146102125780633ccfd60b14610232575b600080fd5b34801561017757600080fd5b5061018b610186366004611d3c565b61047e565b6040516101989190612002565b60405180910390f35b3480156101ad57600080fd5b506101b66104c6565b604051610198919061200d565b3480156101cf57600080fd5b506101e36101de366004611dba565b610558565b6040516101989190611fb1565b3480156101fc57600080fd5b5061021061020b366004611cf9565b6105a4565b005b34801561021e57600080fd5b5061021061022d366004611c1c565b61063c565b34801561023e57600080fd5b50610210610674565b34801561025357600080fd5b50610210610262366004611c1c565b61070f565b34801561027357600080fd5b50610210610282366004611d74565b61072a565b34801561029357600080fd5b5061029c610780565b60405161019891906125cf565b3480156102b557600080fd5b506101e36102c4366004611dba565b61079d565b3480156102d557600080fd5b5061029c6102e4366004611bc9565b6107d2565b3480156102f557600080fd5b50610210610816565b34801561030a57600080fd5b506101e3610861565b34801561031f57600080fd5b5061021061032e366004611dd2565b610870565b34801561033f57600080fd5b506101b6610b8c565b34801561035457600080fd5b50610210610363366004611cd0565b610b9b565b34801561037457600080fd5b50610210610383366004611dba565b610bad565b34801561039457600080fd5b506102106103a3366004611c57565b610bf1565b3480156103b457600080fd5b5061029c610c30565b3480156103c957600080fd5b506101b66103d8366004611dba565b610c34565b3480156103e957600080fd5b506102106103f8366004611d22565b610c8d565b61029c61040b366004611dba565b610cdf565b34801561041c57600080fd5b5061043061042b366004611dba565b610e51565b604051610198929190612020565b34801561044a57600080fd5b5061018b610459366004611bea565b611005565b34801561046a57600080fd5b50610210610479366004611bc9565b611033565b60006001600160e01b031982166380ac58cd60e01b14806104af57506001600160e01b03198216635b5e139f60e01b145b806104be57506104be826110aa565b90505b919050565b6060600080546104d590612700565b80601f016020809104026020016040519081016040528092919081815260200182805461050190612700565b801561054e5780601f106105235761010080835404028352916020019161054e565b820191906000526020600020905b81548152906001019060200180831161053157829003601f168201915b5050505050905090565b6000610563826110c3565b6105885760405162461bcd60e51b815260040161057f906123c6565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105af8261079d565b9050806001600160a01b0316836001600160a01b031614156105e35760405162461bcd60e51b815260040161057f906124c0565b806001600160a01b03166105f56110e0565b6001600160a01b031614806106115750610611816104596110e0565b61062d5760405162461bcd60e51b815260040161057f906122a1565b61063783836110e4565b505050565b61064d6106476110e0565b82611152565b6106695760405162461bcd60e51b815260040161057f90612501565b6106378383836111d7565b61067c6110e0565b6001600160a01b031661068d610861565b6001600160a01b0316146106b35760405162461bcd60e51b815260040161057f90612412565b600047116106d35760405162461bcd60e51b815260040161057f90612552565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561070c573d6000803e3d6000fd5b50565b61063783838360405180602001604052806000815250610bf1565b6107326110e0565b6001600160a01b0316610743610861565b6001600160a01b0316146107695760405162461bcd60e51b815260040161057f90612412565b805161077c90600c906020840190611a33565b5050565b6000600161078e600761130a565b61079891906126bd565b905090565b6000818152600260205260408120546001600160a01b0316806104be5760405162461bcd60e51b815260040161057f90612348565b60006001600160a01b0382166107fa5760405162461bcd60e51b815260040161057f906122fe565b506001600160a01b031660009081526003602052604090205490565b61081e6110e0565b6001600160a01b031661082f610861565b6001600160a01b0316146108555760405162461bcd60e51b815260040161057f90612412565b61085f600061130e565b565b6006546001600160a01b031690565b6008546001600160a01b0316331461089a5760405162461bcd60e51b815260040161057f906125ac565b60006108a6600761130a565b905060f7886108b66001846126bd565b6108c0919061264f565b11156108de5760405162461bcd60e51b815260040161057f90612186565b60005b88811015610b81576001600e60148a8a8581811061090f57634e487b7160e01b600052603260045260246000fd5b905060200281019061092191906125d8565b60405161092f929190611ef3565b9081526040519081900360200190205461ffff166004811061096157634e487b7160e01b600052603260045260246000fd5b01601588888581811061098457634e487b7160e01b600052603260045260246000fd5b905060200281019061099691906125d8565b6040516109a4929190611ef3565b90815260405190819003602001902054815461ffff9091169081106109d957634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002028282829054906101000a900461ffff16610a0a919061269a565b92506101000a81548161ffff021916908361ffff160217905550604051806040016040528060148a8a85818110610a5157634e487b7160e01b600052603260045260246000fd5b9050602002810190610a6391906125d8565b604051610a71929190611ef3565b908152604051602091819003820190205461ffff168252016015888885818110610aab57634e487b7160e01b600052603260045260246000fd5b9050602002810190610abd91906125d8565b604051610acb929190611ef3565b908152604080519182900360209081019092205461ffff9081169093526000868152600d8352208351815494909201518316620100000263ffff0000199290931661ffff199094169390931716179055610b59848483818110610b3e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b539190611bc9565b83611360565b610b6360076110a1565b610b6d600761130a565b915080610b798161273b565b9150506108e1565b505050505050505050565b6060600180546104d590612700565b61077c610ba66110e0565b838361137a565b610bb56110e0565b6001600160a01b0316610bc6610861565b6001600160a01b031614610bec5760405162461bcd60e51b815260040161057f90612412565b600955565b610c02610bfc6110e0565b83611152565b610c1e5760405162461bcd60e51b815260040161057f90612501565b610c2a8484848461141d565b50505050565b4790565b6060610c3f826110c3565b610c5b5760405162461bcd60e51b815260040161057f90612447565b600c610c6683611450565b604051602001610c77929190611f03565b6040516020818303038152906040529050919050565b610c956110e0565b6001600160a01b0316610ca6610861565b6001600160a01b031614610ccc5760405162461bcd60e51b815260040161057f90612412565b600b805460ff1916911515919091179055565b600b5460009060ff1680610cfd57506008546001600160a01b031633145b610d195760405162461bcd60e51b815260040161057f906121b1565b60095434101580610d3457506008546001600160a01b031633145b610d505760405162461bcd60e51b815260040161057f90612496565b6000610d5c600761130a565b905060f78111610d7e5760405162461bcd60e51b815260040161057f90612159565b600854600160a01b900463ffffffff1683610d9a6001846126bd565b610da4919061264f565b1115610dc25760405162461bcd60e51b815260040161057f90612575565b60005b83811015610e4a57610dd7823361156b565b6000838152600d6020908152604090912082518154939092015161ffff908116620100000263ffff0000199190931661ffff199094169390931792909216179055610e223383611360565b610e2c60076110a1565b610e36600761130a565b915080610e428161273b565b915050610dc5565b5092915050565b6000818152600d602090815260409182902082518084019093525461ffff8082168085526201000090920416918301919091526012805460609384939092918110610eac57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610ec190612700565b80601f0160208091040260200160405190810160405280929190818152602001828054610eed90612700565b8015610f3a5780601f10610f0f57610100808354040283529160200191610f3a565b820191906000526020600020905b815481529060010190602001808311610f1d57829003601f168201915b505050505092506013816020015161ffff1681548110610f6a57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610f7f90612700565b80601f0160208091040260200160405190810160405280929190818152602001828054610fab90612700565b8015610ff85780601f10610fcd57610100808354040283529160200191610ff8565b820191906000526020600020905b815481529060010190602001808311610fdb57829003601f168201915b5050505050915050915091565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61103b6110e0565b6001600160a01b031661104c610861565b6001600160a01b0316146110725760405162461bcd60e51b815260040161057f90612412565b6001600160a01b0381166110985760405162461bcd60e51b815260040161057f90612097565b61070c8161130e565b80546001019055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111198261079d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061115d826110c3565b6111795760405162461bcd60e51b815260040161057f90612255565b60006111848361079d565b9050806001600160a01b0316846001600160a01b031614806111bf5750836001600160a01b03166111b484610558565b6001600160a01b0316145b806111cf57506111cf8185611005565b949350505050565b826001600160a01b03166111ea8261079d565b6001600160a01b0316146112105760405162461bcd60e51b815260040161057f906120dd565b6001600160a01b0382166112365760405162461bcd60e51b815260040161057f906121da565b611241838383610637565b61124c6000826110e4565b6001600160a01b03831660009081526003602052604081208054600192906112759084906126bd565b90915550506001600160a01b03821660009081526003602052604081208054600192906112a390849061264f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610637838383610637565b5490565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61077c82826040518060200160405280600081525061162c565b816001600160a01b0316836001600160a01b031614156113ac5760405162461bcd60e51b815260040161057f9061221e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611410908590612002565b60405180910390a3505050565b6114288484846111d7565b6114348484848461165f565b610c2a5760405162461bcd60e51b815260040161057f90612045565b60608161147557506040805180820190915260018152600360fc1b60208201526104c1565b8160005b811561149f57806114898161273b565b91506114989050600a83612686565b9150611479565b60008167ffffffffffffffff8111156114c857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114f2576020820181803683370190505b5090505b84156111cf576115076001836126bd565b9150611514600a86612776565b61151f90603061264f565b60f81b81838151811061154257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611564600a86612686565b94506114f6565b611573611ab7565b60006115806001436126bd565b40838560405160200161159593929190611ecb565b6040516020818303038152906040528051906020012060001c905060006115ba610780565b905060008061160983600860149054906101000a900463ffffffff1660016115e29190612667565b63ffffffff166115f291906126bd565b6116049061ffff600188901c16612776565b61177a565b6040805180820190915260ff928316815291166020820152979650505050505050565b611636838361193d565b611643600084848461165f565b6106375760405162461bcd60e51b815260040161057f90612045565b6000611673846001600160a01b0316611a24565b1561176f57836001600160a01b031663150b7a0261168f6110e0565b8786866040518563ffffffff1660e01b81526004016116b19493929190611fc5565b602060405180830381600087803b1580156116cb57600080fd5b505af19250505080156116fb575060408051601f3d908101601f191682019092526116f891810190611d58565b60015b611755573d808015611729576040519150601f19603f3d011682016040523d82523d6000602084013e61172e565b606091505b50805161174d5760405162461bcd60e51b815260040161057f90612045565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111cf565b506001949350505050565b6000806000805b60048160ff1610156119325760005b600e8260ff16600481106117b457634e487b7160e01b600052603260045260246000fd5b015460ff8216101561191f576000600e8360ff16600481106117e657634e487b7160e01b600052603260045260246000fd5b018260ff168154811061180957634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508361ffff168761ffff1610158015611857575061184c8185612629565b61ffff168761ffff16105b156118ff576001600e8460ff166004811061188257634e487b7160e01b600052603260045260246000fd5b018360ff16815481106118a557634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002028282829054906101000a900461ffff166118d6919061269a565b92506101000a81548161ffff021916908361ffff16021790555082829550955050505050611938565b6119098185612629565b935050808061191790612756565b915050611790565b508061192a81612756565b915050611781565b50600080fd5b915091565b6001600160a01b0382166119635760405162461bcd60e51b815260040161057f90612391565b61196c816110c3565b156119895760405162461bcd60e51b815260040161057f90612122565b61199560008383610637565b6001600160a01b03821660009081526003602052604081208054600192906119be90849061264f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461077c60008383610637565b6001600160a01b03163b151590565b828054611a3f90612700565b90600052602060002090601f016020900481019282611a615760008555611aa7565b82601f10611a7a57805160ff1916838001178555611aa7565b82800160010185558215611aa7579182015b82811115611aa7578251825591602001919060010190611a8c565b50611ab3929150611ace565b5090565b604080518082019091526000808252602082015290565b5b80821115611ab35760008155600101611acf565b600067ffffffffffffffff80841115611afe57611afe6127b6565b604051601f8501601f19908116603f01168101908282118183101715611b2657611b266127b6565b81604052809350858152868686011115611b3f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146104c157600080fd5b60008083601f840112611b81578081fd5b50813567ffffffffffffffff811115611b98578182fd5b6020830191508360208083028501011115611bb257600080fd5b9250929050565b803580151581146104c157600080fd5b600060208284031215611bda578081fd5b611be382611b59565b9392505050565b60008060408385031215611bfc578081fd5b611c0583611b59565b9150611c1360208401611b59565b90509250929050565b600080600060608486031215611c30578081fd5b611c3984611b59565b9250611c4760208501611b59565b9150604084013590509250925092565b60008060008060808587031215611c6c578081fd5b611c7585611b59565b9350611c8360208601611b59565b925060408501359150606085013567ffffffffffffffff811115611ca5578182fd5b8501601f81018713611cb5578182fd5b611cc487823560208401611ae3565b91505092959194509250565b60008060408385031215611ce2578182fd5b611ceb83611b59565b9150611c1360208401611bb9565b60008060408385031215611d0b578182fd5b611d1483611b59565b946020939093013593505050565b600060208284031215611d33578081fd5b611be382611bb9565b600060208284031215611d4d578081fd5b8135611be3816127cc565b600060208284031215611d69578081fd5b8151611be3816127cc565b600060208284031215611d85578081fd5b813567ffffffffffffffff811115611d9b578182fd5b8201601f81018413611dab578182fd5b6111cf84823560208401611ae3565b600060208284031215611dcb578081fd5b5035919050565b60008060008060008060006080888a031215611dec578283fd5b87359650602088013567ffffffffffffffff80821115611e0a578485fd5b611e168b838c01611b70565b909850965060408a0135915080821115611e2e578485fd5b611e3a8b838c01611b70565b909650945060608a0135915080821115611e52578384fd5b50611e5f8a828b01611b70565b989b979a50959850939692959293505050565b60008151808452611e8a8160208601602086016126d4565b601f01601f19169290920160200192915050565b60008151611eb08185602086016126d4565b9290920192915050565b64173539b7b760d91b815260050190565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6000828483379101908152919050565b8254600090819060028104600180831680611f1f57607f831692505b6020808410821415611f3f57634e487b7160e01b87526022600452602487fd5b818015611f535760018114611f6457611f90565b60ff19861689528489019650611f90565b611f6d8b61261d565b885b86811015611f885781548b820152908501908301611f6f565b505084890196505b505050505050611fa8611fa38286611e9e565b611eba565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff890830184611e72565b9695505050505050565b901515815260200190565b600060208252611be36020830184611e72565b6000604082526120336040830185611e72565b8281036020840152611fa88185611e72565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601390820152726e65656420746f207472616e7366657220763160681b604082015260600190565b6020808252601190820152701d8c481b1a5b5a5d08195e18d959591959607a1b604082015260600190565b6020808252600f908201526e73616c65206e6f742061637469766560881b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526010908201526f6e6f7420656e6f756768206d6f6e657960801b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260099082015268302062616c616e636560b81b604082015260600190565b60208082526017908201527f636f6c6c656374696f6e2066756c6c79206d696e746564000000000000000000604082015260600190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b90815260200190565b6000808335601e198436030181126125ee578283fd5b83018035915067ffffffffffffffff821115612608578283fd5b602001915036819003821315611bb257600080fd5b60009081526020902090565b600061ffff8083168185168083038211156126465761264661278a565b01949350505050565b600082198211156126625761266261278a565b500190565b600063ffffffff8083168185168083038211156126465761264661278a565b600082612695576126956127a0565b500490565b600061ffff838116908316818110156126b5576126b561278a565b039392505050565b6000828210156126cf576126cf61278a565b500390565b60005b838110156126ef5781810151838201526020016126d7565b83811115610c2a5750506000910152565b60028104600182168061271457607f821691505b6020821081141561273557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561274f5761274f61278a565b5060010190565b600060ff821660ff81141561276d5761276d61278a565b60010192915050565b600082612785576127856127a0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461070c57600080fdfea2646970667358221220b3d2f216eb5bfc69ef01e83f439660ec2657da32ea7538f051c2b5711c7e6c1764736f6c6343000801003368747470733a2f2f6774736466702e73332e616d617a6f6e6177732e636f6d2f707265766965772f
Deployed Bytecode
0x6080604052600436106101665760003560e01c80638da5cb5b116100d1578063bedcf0031161008a578063d7a5d5d311610064578063d7a5d5d3146103fd578063e1dc076114610410578063e985e9c51461043e578063f2fde38b1461045e57610166565b8063bedcf003146103a8578063c87b56dd146103bd578063ce5e84a3146103dd57610166565b80638da5cb5b146102fe5780639586f7d11461031357806395d89b4114610333578063a22cb46514610348578063a2b40d1914610368578063b88d4fde1461038857610166565b806342842e0e1161012357806342842e0e1461024757806355f804b3146102675780635c78a393146102875780636352211e146102a957806370a08231146102c9578063715018a6146102e957610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806323b872dd146102125780633ccfd60b14610232575b600080fd5b34801561017757600080fd5b5061018b610186366004611d3c565b61047e565b6040516101989190612002565b60405180910390f35b3480156101ad57600080fd5b506101b66104c6565b604051610198919061200d565b3480156101cf57600080fd5b506101e36101de366004611dba565b610558565b6040516101989190611fb1565b3480156101fc57600080fd5b5061021061020b366004611cf9565b6105a4565b005b34801561021e57600080fd5b5061021061022d366004611c1c565b61063c565b34801561023e57600080fd5b50610210610674565b34801561025357600080fd5b50610210610262366004611c1c565b61070f565b34801561027357600080fd5b50610210610282366004611d74565b61072a565b34801561029357600080fd5b5061029c610780565b60405161019891906125cf565b3480156102b557600080fd5b506101e36102c4366004611dba565b61079d565b3480156102d557600080fd5b5061029c6102e4366004611bc9565b6107d2565b3480156102f557600080fd5b50610210610816565b34801561030a57600080fd5b506101e3610861565b34801561031f57600080fd5b5061021061032e366004611dd2565b610870565b34801561033f57600080fd5b506101b6610b8c565b34801561035457600080fd5b50610210610363366004611cd0565b610b9b565b34801561037457600080fd5b50610210610383366004611dba565b610bad565b34801561039457600080fd5b506102106103a3366004611c57565b610bf1565b3480156103b457600080fd5b5061029c610c30565b3480156103c957600080fd5b506101b66103d8366004611dba565b610c34565b3480156103e957600080fd5b506102106103f8366004611d22565b610c8d565b61029c61040b366004611dba565b610cdf565b34801561041c57600080fd5b5061043061042b366004611dba565b610e51565b604051610198929190612020565b34801561044a57600080fd5b5061018b610459366004611bea565b611005565b34801561046a57600080fd5b50610210610479366004611bc9565b611033565b60006001600160e01b031982166380ac58cd60e01b14806104af57506001600160e01b03198216635b5e139f60e01b145b806104be57506104be826110aa565b90505b919050565b6060600080546104d590612700565b80601f016020809104026020016040519081016040528092919081815260200182805461050190612700565b801561054e5780601f106105235761010080835404028352916020019161054e565b820191906000526020600020905b81548152906001019060200180831161053157829003601f168201915b5050505050905090565b6000610563826110c3565b6105885760405162461bcd60e51b815260040161057f906123c6565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105af8261079d565b9050806001600160a01b0316836001600160a01b031614156105e35760405162461bcd60e51b815260040161057f906124c0565b806001600160a01b03166105f56110e0565b6001600160a01b031614806106115750610611816104596110e0565b61062d5760405162461bcd60e51b815260040161057f906122a1565b61063783836110e4565b505050565b61064d6106476110e0565b82611152565b6106695760405162461bcd60e51b815260040161057f90612501565b6106378383836111d7565b61067c6110e0565b6001600160a01b031661068d610861565b6001600160a01b0316146106b35760405162461bcd60e51b815260040161057f90612412565b600047116106d35760405162461bcd60e51b815260040161057f90612552565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561070c573d6000803e3d6000fd5b50565b61063783838360405180602001604052806000815250610bf1565b6107326110e0565b6001600160a01b0316610743610861565b6001600160a01b0316146107695760405162461bcd60e51b815260040161057f90612412565b805161077c90600c906020840190611a33565b5050565b6000600161078e600761130a565b61079891906126bd565b905090565b6000818152600260205260408120546001600160a01b0316806104be5760405162461bcd60e51b815260040161057f90612348565b60006001600160a01b0382166107fa5760405162461bcd60e51b815260040161057f906122fe565b506001600160a01b031660009081526003602052604090205490565b61081e6110e0565b6001600160a01b031661082f610861565b6001600160a01b0316146108555760405162461bcd60e51b815260040161057f90612412565b61085f600061130e565b565b6006546001600160a01b031690565b6008546001600160a01b0316331461089a5760405162461bcd60e51b815260040161057f906125ac565b60006108a6600761130a565b905060f7886108b66001846126bd565b6108c0919061264f565b11156108de5760405162461bcd60e51b815260040161057f90612186565b60005b88811015610b81576001600e60148a8a8581811061090f57634e487b7160e01b600052603260045260246000fd5b905060200281019061092191906125d8565b60405161092f929190611ef3565b9081526040519081900360200190205461ffff166004811061096157634e487b7160e01b600052603260045260246000fd5b01601588888581811061098457634e487b7160e01b600052603260045260246000fd5b905060200281019061099691906125d8565b6040516109a4929190611ef3565b90815260405190819003602001902054815461ffff9091169081106109d957634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002028282829054906101000a900461ffff16610a0a919061269a565b92506101000a81548161ffff021916908361ffff160217905550604051806040016040528060148a8a85818110610a5157634e487b7160e01b600052603260045260246000fd5b9050602002810190610a6391906125d8565b604051610a71929190611ef3565b908152604051602091819003820190205461ffff168252016015888885818110610aab57634e487b7160e01b600052603260045260246000fd5b9050602002810190610abd91906125d8565b604051610acb929190611ef3565b908152604080519182900360209081019092205461ffff9081169093526000868152600d8352208351815494909201518316620100000263ffff0000199290931661ffff199094169390931716179055610b59848483818110610b3e57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b539190611bc9565b83611360565b610b6360076110a1565b610b6d600761130a565b915080610b798161273b565b9150506108e1565b505050505050505050565b6060600180546104d590612700565b61077c610ba66110e0565b838361137a565b610bb56110e0565b6001600160a01b0316610bc6610861565b6001600160a01b031614610bec5760405162461bcd60e51b815260040161057f90612412565b600955565b610c02610bfc6110e0565b83611152565b610c1e5760405162461bcd60e51b815260040161057f90612501565b610c2a8484848461141d565b50505050565b4790565b6060610c3f826110c3565b610c5b5760405162461bcd60e51b815260040161057f90612447565b600c610c6683611450565b604051602001610c77929190611f03565b6040516020818303038152906040529050919050565b610c956110e0565b6001600160a01b0316610ca6610861565b6001600160a01b031614610ccc5760405162461bcd60e51b815260040161057f90612412565b600b805460ff1916911515919091179055565b600b5460009060ff1680610cfd57506008546001600160a01b031633145b610d195760405162461bcd60e51b815260040161057f906121b1565b60095434101580610d3457506008546001600160a01b031633145b610d505760405162461bcd60e51b815260040161057f90612496565b6000610d5c600761130a565b905060f78111610d7e5760405162461bcd60e51b815260040161057f90612159565b600854600160a01b900463ffffffff1683610d9a6001846126bd565b610da4919061264f565b1115610dc25760405162461bcd60e51b815260040161057f90612575565b60005b83811015610e4a57610dd7823361156b565b6000838152600d6020908152604090912082518154939092015161ffff908116620100000263ffff0000199190931661ffff199094169390931792909216179055610e223383611360565b610e2c60076110a1565b610e36600761130a565b915080610e428161273b565b915050610dc5565b5092915050565b6000818152600d602090815260409182902082518084019093525461ffff8082168085526201000090920416918301919091526012805460609384939092918110610eac57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610ec190612700565b80601f0160208091040260200160405190810160405280929190818152602001828054610eed90612700565b8015610f3a5780601f10610f0f57610100808354040283529160200191610f3a565b820191906000526020600020905b815481529060010190602001808311610f1d57829003601f168201915b505050505092506013816020015161ffff1681548110610f6a57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610f7f90612700565b80601f0160208091040260200160405190810160405280929190818152602001828054610fab90612700565b8015610ff85780601f10610fcd57610100808354040283529160200191610ff8565b820191906000526020600020905b815481529060010190602001808311610fdb57829003601f168201915b5050505050915050915091565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61103b6110e0565b6001600160a01b031661104c610861565b6001600160a01b0316146110725760405162461bcd60e51b815260040161057f90612412565b6001600160a01b0381166110985760405162461bcd60e51b815260040161057f90612097565b61070c8161130e565b80546001019055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111198261079d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061115d826110c3565b6111795760405162461bcd60e51b815260040161057f90612255565b60006111848361079d565b9050806001600160a01b0316846001600160a01b031614806111bf5750836001600160a01b03166111b484610558565b6001600160a01b0316145b806111cf57506111cf8185611005565b949350505050565b826001600160a01b03166111ea8261079d565b6001600160a01b0316146112105760405162461bcd60e51b815260040161057f906120dd565b6001600160a01b0382166112365760405162461bcd60e51b815260040161057f906121da565b611241838383610637565b61124c6000826110e4565b6001600160a01b03831660009081526003602052604081208054600192906112759084906126bd565b90915550506001600160a01b03821660009081526003602052604081208054600192906112a390849061264f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610637838383610637565b5490565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61077c82826040518060200160405280600081525061162c565b816001600160a01b0316836001600160a01b031614156113ac5760405162461bcd60e51b815260040161057f9061221e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611410908590612002565b60405180910390a3505050565b6114288484846111d7565b6114348484848461165f565b610c2a5760405162461bcd60e51b815260040161057f90612045565b60608161147557506040805180820190915260018152600360fc1b60208201526104c1565b8160005b811561149f57806114898161273b565b91506114989050600a83612686565b9150611479565b60008167ffffffffffffffff8111156114c857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114f2576020820181803683370190505b5090505b84156111cf576115076001836126bd565b9150611514600a86612776565b61151f90603061264f565b60f81b81838151811061154257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611564600a86612686565b94506114f6565b611573611ab7565b60006115806001436126bd565b40838560405160200161159593929190611ecb565b6040516020818303038152906040528051906020012060001c905060006115ba610780565b905060008061160983600860149054906101000a900463ffffffff1660016115e29190612667565b63ffffffff166115f291906126bd565b6116049061ffff600188901c16612776565b61177a565b6040805180820190915260ff928316815291166020820152979650505050505050565b611636838361193d565b611643600084848461165f565b6106375760405162461bcd60e51b815260040161057f90612045565b6000611673846001600160a01b0316611a24565b1561176f57836001600160a01b031663150b7a0261168f6110e0565b8786866040518563ffffffff1660e01b81526004016116b19493929190611fc5565b602060405180830381600087803b1580156116cb57600080fd5b505af19250505080156116fb575060408051601f3d908101601f191682019092526116f891810190611d58565b60015b611755573d808015611729576040519150601f19603f3d011682016040523d82523d6000602084013e61172e565b606091505b50805161174d5760405162461bcd60e51b815260040161057f90612045565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111cf565b506001949350505050565b6000806000805b60048160ff1610156119325760005b600e8260ff16600481106117b457634e487b7160e01b600052603260045260246000fd5b015460ff8216101561191f576000600e8360ff16600481106117e657634e487b7160e01b600052603260045260246000fd5b018260ff168154811061180957634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508361ffff168761ffff1610158015611857575061184c8185612629565b61ffff168761ffff16105b156118ff576001600e8460ff166004811061188257634e487b7160e01b600052603260045260246000fd5b018360ff16815481106118a557634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002028282829054906101000a900461ffff166118d6919061269a565b92506101000a81548161ffff021916908361ffff16021790555082829550955050505050611938565b6119098185612629565b935050808061191790612756565b915050611790565b508061192a81612756565b915050611781565b50600080fd5b915091565b6001600160a01b0382166119635760405162461bcd60e51b815260040161057f90612391565b61196c816110c3565b156119895760405162461bcd60e51b815260040161057f90612122565b61199560008383610637565b6001600160a01b03821660009081526003602052604081208054600192906119be90849061264f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461077c60008383610637565b6001600160a01b03163b151590565b828054611a3f90612700565b90600052602060002090601f016020900481019282611a615760008555611aa7565b82601f10611a7a57805160ff1916838001178555611aa7565b82800160010185558215611aa7579182015b82811115611aa7578251825591602001919060010190611a8c565b50611ab3929150611ace565b5090565b604080518082019091526000808252602082015290565b5b80821115611ab35760008155600101611acf565b600067ffffffffffffffff80841115611afe57611afe6127b6565b604051601f8501601f19908116603f01168101908282118183101715611b2657611b266127b6565b81604052809350858152868686011115611b3f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146104c157600080fd5b60008083601f840112611b81578081fd5b50813567ffffffffffffffff811115611b98578182fd5b6020830191508360208083028501011115611bb257600080fd5b9250929050565b803580151581146104c157600080fd5b600060208284031215611bda578081fd5b611be382611b59565b9392505050565b60008060408385031215611bfc578081fd5b611c0583611b59565b9150611c1360208401611b59565b90509250929050565b600080600060608486031215611c30578081fd5b611c3984611b59565b9250611c4760208501611b59565b9150604084013590509250925092565b60008060008060808587031215611c6c578081fd5b611c7585611b59565b9350611c8360208601611b59565b925060408501359150606085013567ffffffffffffffff811115611ca5578182fd5b8501601f81018713611cb5578182fd5b611cc487823560208401611ae3565b91505092959194509250565b60008060408385031215611ce2578182fd5b611ceb83611b59565b9150611c1360208401611bb9565b60008060408385031215611d0b578182fd5b611d1483611b59565b946020939093013593505050565b600060208284031215611d33578081fd5b611be382611bb9565b600060208284031215611d4d578081fd5b8135611be3816127cc565b600060208284031215611d69578081fd5b8151611be3816127cc565b600060208284031215611d85578081fd5b813567ffffffffffffffff811115611d9b578182fd5b8201601f81018413611dab578182fd5b6111cf84823560208401611ae3565b600060208284031215611dcb578081fd5b5035919050565b60008060008060008060006080888a031215611dec578283fd5b87359650602088013567ffffffffffffffff80821115611e0a578485fd5b611e168b838c01611b70565b909850965060408a0135915080821115611e2e578485fd5b611e3a8b838c01611b70565b909650945060608a0135915080821115611e52578384fd5b50611e5f8a828b01611b70565b989b979a50959850939692959293505050565b60008151808452611e8a8160208601602086016126d4565b601f01601f19169290920160200192915050565b60008151611eb08185602086016126d4565b9290920192915050565b64173539b7b760d91b815260050190565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6000828483379101908152919050565b8254600090819060028104600180831680611f1f57607f831692505b6020808410821415611f3f57634e487b7160e01b87526022600452602487fd5b818015611f535760018114611f6457611f90565b60ff19861689528489019650611f90565b611f6d8b61261d565b885b86811015611f885781548b820152908501908301611f6f565b505084890196505b505050505050611fa8611fa38286611e9e565b611eba565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff890830184611e72565b9695505050505050565b901515815260200190565b600060208252611be36020830184611e72565b6000604082526120336040830185611e72565b8281036020840152611fa88185611e72565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601390820152726e65656420746f207472616e7366657220763160681b604082015260600190565b6020808252601190820152701d8c481b1a5b5a5d08195e18d959591959607a1b604082015260600190565b6020808252600f908201526e73616c65206e6f742061637469766560881b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526010908201526f6e6f7420656e6f756768206d6f6e657960801b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260099082015268302062616c616e636560b81b604082015260600190565b60208082526017908201527f636f6c6c656374696f6e2066756c6c79206d696e746564000000000000000000604082015260600190565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b90815260200190565b6000808335601e198436030181126125ee578283fd5b83018035915067ffffffffffffffff821115612608578283fd5b602001915036819003821315611bb257600080fd5b60009081526020902090565b600061ffff8083168185168083038211156126465761264661278a565b01949350505050565b600082198211156126625761266261278a565b500190565b600063ffffffff8083168185168083038211156126465761264661278a565b600082612695576126956127a0565b500490565b600061ffff838116908316818110156126b5576126b561278a565b039392505050565b6000828210156126cf576126cf61278a565b500390565b60005b838110156126ef5781810151838201526020016126d7565b83811115610c2a5750506000910152565b60028104600182168061271457607f821691505b6020821081141561273557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561274f5761274f61278a565b5060010190565b600060ff821660ff81141561276d5761276d61278a565b60010192915050565b600082612785576127856127a0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461070c57600080fdfea2646970667358221220b3d2f216eb5bfc69ef01e83f439660ec2657da32ea7538f051c2b5711c7e6c1764736f6c63430008010033
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.