ERC-721
NFT
Overview
Max Total Supply
0 Rektguy
Holders
3,347
Market
Volume (24H)
2.7188 ETH
Min Price (24H)
$674.83 @ 0.241000 ETH
Max Price (24H)
$980.05 @ 0.350000 ETH
Other Info
Token Contract
Balance
0 RektguyLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Rektguy
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: NULLpragma solidity 0.8.9;import "@openzeppelin/contracts/token/ERC721/ERC721.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/utils/math/SafeMath.sol";import "@openzeppelin/contracts/utils/Strings.sol";import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "hardhat/console.sol";contract Rektguy is ERC721,Ownable,ReentrancyGuard{using SafeMath for uint256;uint256 public tokenCounter;uint256 public constant MAX_TOKENS = 11000;uint256 public constant MAX_PURCHASE_TOKENS = 10;uint256 public PRESALE_DURATION = 6 days;bool public preSaleIsActive = false;string private uri;string private _baseTokenURI;uint256 public preSaleStartTimestamp;bytes32 private merkleRootOne =
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.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 namestring private _name;// Token symbol
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)pragma solidity ^0.8.0;// CAUTION// This version of SafeMath should only be used with Solidity 0.8 or later,// because it relies on the compiler's built in overflow checks./*** @dev Wrappers over Solidity's arithmetic operations.** NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler* now has built in overflow checking.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);return (true, c);
1234567891011121314151617181920212223242526// 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.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (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.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.*/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.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >= 0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);function _sendLogPayload(bytes memory payload) private view {uint256 payloadLength = payload.length;address consoleAddress = CONSOLE_ADDRESS;assembly {let payloadStart := add(payload, 32)let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)}}function log() internal view {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(int)", p0));}function logUint(uint p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// 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* ====*
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// 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) {
12345678910111213141516171819202122232425// 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);}
12345678910111213141516171819202122{"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":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"initialURI","type":"string"}],"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_PURCHASE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getMerkleOneProofFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getMerkleTwoProofFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"checkAddress","type":"address"}],"name":"getValidNumberOfTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"}],"name":"getValidNumberOfTokensForBuyer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintNFTPreSale","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newBaseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"setDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootTwo","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":"address","name":"","type":"address"}],"name":"tokenBalancePerOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"validNumberOfTokensPerBuyerMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"validTokens","type":"uint256[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526207e900600955600a805460ff191690557fc891c5b4634598d1ed7cf4a3743ca20a33fc03bb10bcd7c45fe801e1434ba356600e557f68760e8751ab187e7ac9aa58505886ef38d71baed1fc1bcfb3ccb0d86bb8b543600f553480156200006a57600080fd5b50604051620024cf380380620024cf8339810160408190526200008d91620002cb565b825183908390620000a690600090602085019062000158565b508051620000bc90600190602084019062000158565b505050620000d9620000d36200010260201b60201c565b62000106565b600160075560006008558051620000f890600b90602084019062000158565b5050505062000399565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000166906200035c565b90600052602060002090601f0160209004810192826200018a5760008555620001d5565b82601f10620001a557805160ff1916838001178555620001d5565b82800160010185558215620001d5579182015b82811115620001d5578251825591602001919060010190620001b8565b50620001e3929150620001e7565b5090565b5b80821115620001e35760008155600101620001e8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022657600080fd5b81516001600160401b0380821115620002435762000243620001fe565b604051601f8301601f19908116603f011681019082821181831017156200026e576200026e620001fe565b816040528381526020925086838588010111156200028b57600080fd5b600091505b83821015620002af578582018301518183018401529082019062000290565b83821115620002c15760008385830101525b9695505050505050565b600080600060608486031215620002e157600080fd5b83516001600160401b0380821115620002f957600080fd5b620003078783880162000214565b945060208601519150808211156200031e57600080fd5b6200032c8783880162000214565b935060408601519150808211156200034357600080fd5b50620003528682870162000214565b9150509250925092565b600181811c908216806200037157607f821691505b602082108114156200039357634e487b7160e01b600052602260045260246000fd5b50919050565b61212680620003a96000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80638b62f53311610130578063c87b56dd116100b8578063e43aa9bb1161007c578063e43aa9bb146104a4578063e985e9c5146104c4578063f2fde38b14610500578063f47c84c514610513578063f6be71d11461051c57600080fd5b8063c87b56dd1461044a578063cbfc17e21461045d578063d082e38114610465578063db4bec441461046e578063e346d7b11461049157600080fd5b8063a22cb465116100ff578063a22cb465146103f5578063a96d3e5914610408578063b88d4fde14610411578063bc30976014610424578063be8b91a91461043757600080fd5b80638b62f533146103cb5780638da5cb5b146103d3578063945e4013146103e457806395d89b41146103ed57600080fd5b806355f804b3116101b35780636352211e116101825780636352211e1461037457806370a082311461038757806370f58c97146103b0578063715018a6146103c35780637adcbf0b1461029457600080fd5b806355f804b31461032657806357a2f4521461033957806358870c8f1461034c5780635f4ca50b1461036c57600080fd5b8063095ea7b3116101fa578063095ea7b3146102cb5780631f0234d8146102e057806323b872dd146102ed57806332ffeae81461030057806342842e0e1461031357600080fd5b806301ffc9a71461022c57806306fdde0314610254578063081812fc14610269578063095a196214610294575b600080fd5b61023f61023a3660046119c6565b61052f565b60405190151581526020015b60405180910390f35b61025c610581565b60405161024b9190611a3b565b61027c610277366004611a4e565b610613565b6040516001600160a01b03909116815260200161024b565b6102bd6102a2366004611a83565b6001600160a01b031660009081526010602052604090205490565b60405190815260200161024b565b6102de6102d9366004611a9e565b6106ad565b005b600a5461023f9060ff1681565b6102de6102fb366004611ac8565b6107c3565b6102de61030e366004611a4e565b6107f4565b6102de610321366004611ac8565b610823565b6102de610334366004611b04565b61083e565b61023f610347366004611bc2565b610874565b6102bd61035a366004611a83565b60116020526000908152604090205481565b6102bd6108f5565b61027c610382366004611a4e565b61090a565b6102bd610395366004611a83565b6001600160a01b031660009081526011602052604090205490565b6102de6103be366004611c15565b610981565b6102de610a2d565b6102de610a63565b6006546001600160a01b031661027c565b6102bd60095481565b61025c610aa5565b6102de610403366004611c81565b610ab4565b6102bd600d5481565b6102de61041f366004611cd3565b610ac3565b61023f610432366004611bc2565b610afb565b6102de610445366004611daf565b610b73565b61025c610458366004611a4e565b610f5e565b6102bd600a81565b6102bd60085481565b61023f61047c366004611a83565b60126020526000908152604090205460ff1681565b6102de61049f366004611a4e565b610f92565b6102bd6104b2366004611a83565b60106020526000908152604090205481565b61023f6104d2366004611de2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102de61050e366004611a83565b610fc1565b6102bd612af881565b6102de61052a366004611a4e565b61105c565b60006001600160e01b031982166380ac58cd60e01b148061056057506001600160e01b03198216635b5e139f60e01b145b8061057b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461059090611e15565b80601f01602080910402602001604051908101604052809291908181526020018280546105bc90611e15565b80156106095780601f106105de57610100808354040283529160200191610609565b820191906000526020600020905b8154815290600101906020018083116105ec57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b88261090a565b9050806001600160a01b0316836001600160a01b031614156107265760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610688565b336001600160a01b0382161480610742575061074281336104d2565b6107b45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610688565b6107be838361108b565b505050565b6107cd33826110f9565b6107e95760405162461bcd60e51b815260040161068890611e50565b6107be8383836111f0565b6006546001600160a01b0316331461081e5760405162461bcd60e51b815260040161068890611ea1565b600e55565b6107be83838360405180602001604052806000815250610ac3565b6006546001600160a01b031633146108685760405162461bcd60e51b815260040161068890611ea1565b6107be600b8383611917565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506108ec84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061138c565b95945050505050565b6000600d54426109059190611eec565b905090565b6000818152600260205260408120546001600160a01b03168061057b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610688565b6006546001600160a01b031633146109ab5760405162461bcd60e51b815260040161068890611ea1565b60005b83811015610a26578282828181106109c8576109c8611f03565b90506020020135601060008787858181106109e5576109e5611f03565b90506020020160208101906109fa9190611a83565b6001600160a01b0316815260208101919091526040016000205580610a1e81611f19565b9150506109ae565b5050505050565b6006546001600160a01b03163314610a575760405162461bcd60e51b815260040161068890611ea1565b610a6160006113a2565b565b6006546001600160a01b03163314610a8d5760405162461bcd60e51b815260040161068890611ea1565b42600d55600a805460ff19811660ff90911615179055565b60606001805461059090611e15565b610abf3383836113f4565b5050565b610acd33836110f9565b610ae95760405162461bcd60e51b815260040161068890611e50565b610af5848484846114c3565b50505050565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506108ec84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e54915084905061138c565b60026007541415610bc65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610688565b6002600755600a5460ff16610c1d5760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e67206973206e6f74206f70656e207965740000000000000000006044820152606401610688565b600854612af890610c2e90856114f6565b1115610c7c5760405162461bcd60e51b815260206004820152601860248201527f72656b7467757920686173206e6f7720736f6c64206f757400000000000000006044820152606401610688565b600954610c876108f5565b10610cc95760405162461bcd60e51b81526020600482015260126024820152711d1a19481b5a5b9d081a185cc8195b99195960721b6044820152606401610688565b33600090815260106020526040902054158015610cf657503360009081526012602052604090205460ff16155b15610e6a576040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d7083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e54915084905061138c565b15610dad57336000908152601260209081526040808320805460ff1916600190811790915560108352818420819055601190925290912055610e68565b610dee83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061138c565b15610e2057336000908152601260209081526040808320805460ff191660011790556010909152902060029055610e68565b60405162461bcd60e51b815260206004820152601f60248201527f796f75722061646472657373206973206e6f7420616c6c6f776c6973746564006044820152606401610688565b505b33600090815260106020908152604080832054601190925290912054610e9090856114f6565b1115610ef45760405162461bcd60e51b815260206004820152602d60248201527f796f752068617665207265616368656420796f7572206d6178696d756d206e7560448201526c6d626572206f66206d696e747360981b6064820152608401610688565b60005b83811015610f5357610f0b33600854611509565b60088054906000610f1b83611f19565b9091555050336000908152601160205260408120805491610f3b83611f19565b91905055508080610f4b90611f19565b915050610ef7565b505060016007555050565b6060600b610f6b83611523565b604051602001610f7c929190611f50565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610fbc5760405162461bcd60e51b815260040161068890611ea1565b600f55565b6006546001600160a01b03163314610feb5760405162461bcd60e51b815260040161068890611ea1565b6001600160a01b0381166110505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610688565b611059816113a2565b50565b6006546001600160a01b031633146110865760405162461bcd60e51b815260040161068890611ea1565b600955565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c08261090a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610688565b600061117d8361090a565b9050806001600160a01b0316846001600160a01b031614806111c457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111e85750836001600160a01b03166111dd84610613565b6001600160a01b0316145b949350505050565b826001600160a01b03166112038261090a565b6001600160a01b0316146112675760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610688565b6001600160a01b0382166112c95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610688565b6112d460008261108b565b6001600160a01b03831660009081526003602052604081208054600192906112fd908490611eec565b90915550506001600160a01b038216600090815260036020526040812080546001929061132b908490611fee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826113998584611621565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610688565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114ce8484846111f0565b6114da84848484611695565b610af55760405162461bcd60e51b815260040161068890612006565b60006115028284611fee565b9392505050565b610abf8282604051806020016040528060008152506117a2565b6060816115475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611571578061155b81611f19565b915061156a9050600a8361206e565b915061154b565b60008167ffffffffffffffff81111561158c5761158c611cbd565b6040519080825280601f01601f1916602001820160405280156115b6576020820181803683370190505b5090505b84156111e8576115cb600183611eec565b91506115d8600a86612082565b6115e3906030611fee565b60f81b8183815181106115f8576115f8611f03565b60200101906001600160f81b031916908160001a90535061161a600a8661206e565b94506115ba565b600081815b845181101561168d57600085828151811061164357611643611f03565b60200260200101519050808311611669576000838152602082905260409020925061167a565b600081815260208490526040902092505b508061168581611f19565b915050611626565b509392505050565b60006001600160a01b0384163b1561179757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116d9903390899088908890600401612096565b602060405180830381600087803b1580156116f357600080fd5b505af1925050508015611723575060408051601f3d908101601f19168201909252611720918101906120d3565b60015b61177d573d808015611751576040519150601f19603f3d011682016040523d82523d6000602084013e611756565b606091505b5080516117755760405162461bcd60e51b815260040161068890612006565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e8565b506001949350505050565b6117ac83836117d5565b6117b96000848484611695565b6107be5760405162461bcd60e51b815260040161068890612006565b6001600160a01b03821661182b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610688565b6000818152600260205260409020546001600160a01b0316156118905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610688565b6001600160a01b03821660009081526003602052604081208054600192906118b9908490611fee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461192390611e15565b90600052602060002090601f016020900481019282611945576000855561198b565b82601f1061195e5782800160ff1982351617855561198b565b8280016001018555821561198b579182015b8281111561198b578235825591602001919060010190611970565b5061199792915061199b565b5090565b5b80821115611997576000815560010161199c565b6001600160e01b03198116811461105957600080fd5b6000602082840312156119d857600080fd5b8135611502816119b0565b60005b838110156119fe5781810151838201526020016119e6565b83811115610af55750506000910152565b60008151808452611a278160208601602086016119e3565b601f01601f19169290920160200192915050565b6020815260006115026020830184611a0f565b600060208284031215611a6057600080fd5b5035919050565b80356001600160a01b0381168114611a7e57600080fd5b919050565b600060208284031215611a9557600080fd5b61150282611a67565b60008060408385031215611ab157600080fd5b611aba83611a67565b946020939093013593505050565b600080600060608486031215611add57600080fd5b611ae684611a67565b9250611af460208501611a67565b9150604084013590509250925092565b60008060208385031215611b1757600080fd5b823567ffffffffffffffff80821115611b2f57600080fd5b818501915085601f830112611b4357600080fd5b813581811115611b5257600080fd5b866020828501011115611b6457600080fd5b60209290920196919550909350505050565b60008083601f840112611b8857600080fd5b50813567ffffffffffffffff811115611ba057600080fd5b6020830191508360208260051b8501011115611bbb57600080fd5b9250929050565b600080600060408486031215611bd757600080fd5b611be084611a67565b9250602084013567ffffffffffffffff811115611bfc57600080fd5b611c0886828701611b76565b9497909650939450505050565b60008060008060408587031215611c2b57600080fd5b843567ffffffffffffffff80821115611c4357600080fd5b611c4f88838901611b76565b90965094506020870135915080821115611c6857600080fd5b50611c7587828801611b76565b95989497509550505050565b60008060408385031215611c9457600080fd5b611c9d83611a67565b915060208301358015158114611cb257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ce957600080fd5b611cf285611a67565b9350611d0060208601611a67565b925060408501359150606085013567ffffffffffffffff80821115611d2457600080fd5b818701915087601f830112611d3857600080fd5b813581811115611d4a57611d4a611cbd565b604051601f8201601f19908116603f01168101908382118183101715611d7257611d72611cbd565b816040528281528a6020848701011115611d8b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611dc457600080fd5b83359250602084013567ffffffffffffffff811115611bfc57600080fd5b60008060408385031215611df557600080fd5b611dfe83611a67565b9150611e0c60208401611a67565b90509250929050565b600181811c90821680611e2957607f821691505b60208210811415611e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611efe57611efe611ed6565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611f2d57611f2d611ed6565b5060010190565b60008151611f468185602086016119e3565b9290920192915050565b600080845481600182811c915080831680611f6c57607f831692505b6020808410821415611f8c57634e487b7160e01b86526022600452602486fd5b818015611fa05760018114611fb157611fde565b60ff19861689528489019650611fde565b60008b81526020902060005b86811015611fd65781548b820152908501908301611fbd565b505084890196505b5050505050506108ec8185611f34565b6000821982111561200157612001611ed6565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261207d5761207d612058565b500490565b60008261209157612091612058565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c990830184611a0f565b9695505050505050565b6000602082840312156120e557600080fd5b8151611502816119b056fea264697066735822122099d4a9bfe4a39f7fcf6315a69a2b278349c01ba98837a68044d5568da41473c164736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000752656b7467757900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000752656b7467757900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f72656b746775792e6d7970696e6174612e636c6f75642f697066732f516d506b6937346f626170477831443447664569754b3556486e33737939523671374d716b61686d68507654664c2f00000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c80638b62f53311610130578063c87b56dd116100b8578063e43aa9bb1161007c578063e43aa9bb146104a4578063e985e9c5146104c4578063f2fde38b14610500578063f47c84c514610513578063f6be71d11461051c57600080fd5b8063c87b56dd1461044a578063cbfc17e21461045d578063d082e38114610465578063db4bec441461046e578063e346d7b11461049157600080fd5b8063a22cb465116100ff578063a22cb465146103f5578063a96d3e5914610408578063b88d4fde14610411578063bc30976014610424578063be8b91a91461043757600080fd5b80638b62f533146103cb5780638da5cb5b146103d3578063945e4013146103e457806395d89b41146103ed57600080fd5b806355f804b3116101b35780636352211e116101825780636352211e1461037457806370a082311461038757806370f58c97146103b0578063715018a6146103c35780637adcbf0b1461029457600080fd5b806355f804b31461032657806357a2f4521461033957806358870c8f1461034c5780635f4ca50b1461036c57600080fd5b8063095ea7b3116101fa578063095ea7b3146102cb5780631f0234d8146102e057806323b872dd146102ed57806332ffeae81461030057806342842e0e1461031357600080fd5b806301ffc9a71461022c57806306fdde0314610254578063081812fc14610269578063095a196214610294575b600080fd5b61023f61023a3660046119c6565b61052f565b60405190151581526020015b60405180910390f35b61025c610581565b60405161024b9190611a3b565b61027c610277366004611a4e565b610613565b6040516001600160a01b03909116815260200161024b565b6102bd6102a2366004611a83565b6001600160a01b031660009081526010602052604090205490565b60405190815260200161024b565b6102de6102d9366004611a9e565b6106ad565b005b600a5461023f9060ff1681565b6102de6102fb366004611ac8565b6107c3565b6102de61030e366004611a4e565b6107f4565b6102de610321366004611ac8565b610823565b6102de610334366004611b04565b61083e565b61023f610347366004611bc2565b610874565b6102bd61035a366004611a83565b60116020526000908152604090205481565b6102bd6108f5565b61027c610382366004611a4e565b61090a565b6102bd610395366004611a83565b6001600160a01b031660009081526011602052604090205490565b6102de6103be366004611c15565b610981565b6102de610a2d565b6102de610a63565b6006546001600160a01b031661027c565b6102bd60095481565b61025c610aa5565b6102de610403366004611c81565b610ab4565b6102bd600d5481565b6102de61041f366004611cd3565b610ac3565b61023f610432366004611bc2565b610afb565b6102de610445366004611daf565b610b73565b61025c610458366004611a4e565b610f5e565b6102bd600a81565b6102bd60085481565b61023f61047c366004611a83565b60126020526000908152604090205460ff1681565b6102de61049f366004611a4e565b610f92565b6102bd6104b2366004611a83565b60106020526000908152604090205481565b61023f6104d2366004611de2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102de61050e366004611a83565b610fc1565b6102bd612af881565b6102de61052a366004611a4e565b61105c565b60006001600160e01b031982166380ac58cd60e01b148061056057506001600160e01b03198216635b5e139f60e01b145b8061057b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461059090611e15565b80601f01602080910402602001604051908101604052809291908181526020018280546105bc90611e15565b80156106095780601f106105de57610100808354040283529160200191610609565b820191906000526020600020905b8154815290600101906020018083116105ec57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b88261090a565b9050806001600160a01b0316836001600160a01b031614156107265760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610688565b336001600160a01b0382161480610742575061074281336104d2565b6107b45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610688565b6107be838361108b565b505050565b6107cd33826110f9565b6107e95760405162461bcd60e51b815260040161068890611e50565b6107be8383836111f0565b6006546001600160a01b0316331461081e5760405162461bcd60e51b815260040161068890611ea1565b600e55565b6107be83838360405180602001604052806000815250610ac3565b6006546001600160a01b031633146108685760405162461bcd60e51b815260040161068890611ea1565b6107be600b8383611917565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506108ec84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061138c565b95945050505050565b6000600d54426109059190611eec565b905090565b6000818152600260205260408120546001600160a01b03168061057b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610688565b6006546001600160a01b031633146109ab5760405162461bcd60e51b815260040161068890611ea1565b60005b83811015610a26578282828181106109c8576109c8611f03565b90506020020135601060008787858181106109e5576109e5611f03565b90506020020160208101906109fa9190611a83565b6001600160a01b0316815260208101919091526040016000205580610a1e81611f19565b9150506109ae565b5050505050565b6006546001600160a01b03163314610a575760405162461bcd60e51b815260040161068890611ea1565b610a6160006113a2565b565b6006546001600160a01b03163314610a8d5760405162461bcd60e51b815260040161068890611ea1565b42600d55600a805460ff19811660ff90911615179055565b60606001805461059090611e15565b610abf3383836113f4565b5050565b610acd33836110f9565b610ae95760405162461bcd60e51b815260040161068890611e50565b610af5848484846114c3565b50505050565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506108ec84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e54915084905061138c565b60026007541415610bc65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610688565b6002600755600a5460ff16610c1d5760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e67206973206e6f74206f70656e207965740000000000000000006044820152606401610688565b600854612af890610c2e90856114f6565b1115610c7c5760405162461bcd60e51b815260206004820152601860248201527f72656b7467757920686173206e6f7720736f6c64206f757400000000000000006044820152606401610688565b600954610c876108f5565b10610cc95760405162461bcd60e51b81526020600482015260126024820152711d1a19481b5a5b9d081a185cc8195b99195960721b6044820152606401610688565b33600090815260106020526040902054158015610cf657503360009081526012602052604090205460ff16155b15610e6a576040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d7083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e54915084905061138c565b15610dad57336000908152601260209081526040808320805460ff1916600190811790915560108352818420819055601190925290912055610e68565b610dee83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f54915084905061138c565b15610e2057336000908152601260209081526040808320805460ff191660011790556010909152902060029055610e68565b60405162461bcd60e51b815260206004820152601f60248201527f796f75722061646472657373206973206e6f7420616c6c6f776c6973746564006044820152606401610688565b505b33600090815260106020908152604080832054601190925290912054610e9090856114f6565b1115610ef45760405162461bcd60e51b815260206004820152602d60248201527f796f752068617665207265616368656420796f7572206d6178696d756d206e7560448201526c6d626572206f66206d696e747360981b6064820152608401610688565b60005b83811015610f5357610f0b33600854611509565b60088054906000610f1b83611f19565b9091555050336000908152601160205260408120805491610f3b83611f19565b91905055508080610f4b90611f19565b915050610ef7565b505060016007555050565b6060600b610f6b83611523565b604051602001610f7c929190611f50565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610fbc5760405162461bcd60e51b815260040161068890611ea1565b600f55565b6006546001600160a01b03163314610feb5760405162461bcd60e51b815260040161068890611ea1565b6001600160a01b0381166110505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610688565b611059816113a2565b50565b6006546001600160a01b031633146110865760405162461bcd60e51b815260040161068890611ea1565b600955565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c08261090a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610688565b600061117d8361090a565b9050806001600160a01b0316846001600160a01b031614806111c457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111e85750836001600160a01b03166111dd84610613565b6001600160a01b0316145b949350505050565b826001600160a01b03166112038261090a565b6001600160a01b0316146112675760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610688565b6001600160a01b0382166112c95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610688565b6112d460008261108b565b6001600160a01b03831660009081526003602052604081208054600192906112fd908490611eec565b90915550506001600160a01b038216600090815260036020526040812080546001929061132b908490611fee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826113998584611621565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610688565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114ce8484846111f0565b6114da84848484611695565b610af55760405162461bcd60e51b815260040161068890612006565b60006115028284611fee565b9392505050565b610abf8282604051806020016040528060008152506117a2565b6060816115475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611571578061155b81611f19565b915061156a9050600a8361206e565b915061154b565b60008167ffffffffffffffff81111561158c5761158c611cbd565b6040519080825280601f01601f1916602001820160405280156115b6576020820181803683370190505b5090505b84156111e8576115cb600183611eec565b91506115d8600a86612082565b6115e3906030611fee565b60f81b8183815181106115f8576115f8611f03565b60200101906001600160f81b031916908160001a90535061161a600a8661206e565b94506115ba565b600081815b845181101561168d57600085828151811061164357611643611f03565b60200260200101519050808311611669576000838152602082905260409020925061167a565b600081815260208490526040902092505b508061168581611f19565b915050611626565b509392505050565b60006001600160a01b0384163b1561179757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116d9903390899088908890600401612096565b602060405180830381600087803b1580156116f357600080fd5b505af1925050508015611723575060408051601f3d908101601f19168201909252611720918101906120d3565b60015b61177d573d808015611751576040519150601f19603f3d011682016040523d82523d6000602084013e611756565b606091505b5080516117755760405162461bcd60e51b815260040161068890612006565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e8565b506001949350505050565b6117ac83836117d5565b6117b96000848484611695565b6107be5760405162461bcd60e51b815260040161068890612006565b6001600160a01b03821661182b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610688565b6000818152600260205260409020546001600160a01b0316156118905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610688565b6001600160a01b03821660009081526003602052604081208054600192906118b9908490611fee565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461192390611e15565b90600052602060002090601f016020900481019282611945576000855561198b565b82601f1061195e5782800160ff1982351617855561198b565b8280016001018555821561198b579182015b8281111561198b578235825591602001919060010190611970565b5061199792915061199b565b5090565b5b80821115611997576000815560010161199c565b6001600160e01b03198116811461105957600080fd5b6000602082840312156119d857600080fd5b8135611502816119b0565b60005b838110156119fe5781810151838201526020016119e6565b83811115610af55750506000910152565b60008151808452611a278160208601602086016119e3565b601f01601f19169290920160200192915050565b6020815260006115026020830184611a0f565b600060208284031215611a6057600080fd5b5035919050565b80356001600160a01b0381168114611a7e57600080fd5b919050565b600060208284031215611a9557600080fd5b61150282611a67565b60008060408385031215611ab157600080fd5b611aba83611a67565b946020939093013593505050565b600080600060608486031215611add57600080fd5b611ae684611a67565b9250611af460208501611a67565b9150604084013590509250925092565b60008060208385031215611b1757600080fd5b823567ffffffffffffffff80821115611b2f57600080fd5b818501915085601f830112611b4357600080fd5b813581811115611b5257600080fd5b866020828501011115611b6457600080fd5b60209290920196919550909350505050565b60008083601f840112611b8857600080fd5b50813567ffffffffffffffff811115611ba057600080fd5b6020830191508360208260051b8501011115611bbb57600080fd5b9250929050565b600080600060408486031215611bd757600080fd5b611be084611a67565b9250602084013567ffffffffffffffff811115611bfc57600080fd5b611c0886828701611b76565b9497909650939450505050565b60008060008060408587031215611c2b57600080fd5b843567ffffffffffffffff80821115611c4357600080fd5b611c4f88838901611b76565b90965094506020870135915080821115611c6857600080fd5b50611c7587828801611b76565b95989497509550505050565b60008060408385031215611c9457600080fd5b611c9d83611a67565b915060208301358015158114611cb257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ce957600080fd5b611cf285611a67565b9350611d0060208601611a67565b925060408501359150606085013567ffffffffffffffff80821115611d2457600080fd5b818701915087601f830112611d3857600080fd5b813581811115611d4a57611d4a611cbd565b604051601f8201601f19908116603f01168101908382118183101715611d7257611d72611cbd565b816040528281528a6020848701011115611d8b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611dc457600080fd5b83359250602084013567ffffffffffffffff811115611bfc57600080fd5b60008060408385031215611df557600080fd5b611dfe83611a67565b9150611e0c60208401611a67565b90509250929050565b600181811c90821680611e2957607f821691505b60208210811415611e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611efe57611efe611ed6565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611f2d57611f2d611ed6565b5060010190565b60008151611f468185602086016119e3565b9290920192915050565b600080845481600182811c915080831680611f6c57607f831692505b6020808410821415611f8c57634e487b7160e01b86526022600452602486fd5b818015611fa05760018114611fb157611fde565b60ff19861689528489019650611fde565b60008b81526020902060005b86811015611fd65781548b820152908501908301611fbd565b505084890196505b5050505050506108ec8185611f34565b6000821982111561200157612001611ed6565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261207d5761207d612058565b500490565b60008261209157612091612058565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c990830184611a0f565b9695505050505050565b6000602082840312156120e557600080fd5b8151611502816119b056fea264697066735822122099d4a9bfe4a39f7fcf6315a69a2b278349c01ba98837a68044d5568da41473c164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000752656b7467757900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000752656b7467757900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f72656b746775792e6d7970696e6174612e636c6f75642f697066732f516d506b6937346f626170477831443447664569754b3556486e33737939523671374d716b61686d68507654664c2f00000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Rektguy
Arg [1] : symbol (string): Rektguy
Arg [2] : initialURI (string): https://rektguy.mypinata.cloud/ipfs/QmPki74obapGx1D4GfEiuK5VHn3sy9R6q7MqkahmhPvTfL/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 52656b7467757900000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 52656b7467757900000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 68747470733a2f2f72656b746775792e6d7970696e6174612e636c6f75642f69
Arg [9] : 7066732f516d506b6937346f626170477831443447664569754b3556486e3373
Arg [10] : 7939523671374d716b61686d68507654664c2f00000000000000000000000000
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.