Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,761 MKNFT
Holders
2,220
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MKNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC721FullBatchMint
Compiler Version
v0.5.2+commit.1df8f40c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-29 */ pragma solidity ^0.5.2; library Strings { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = byte(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } function fromAddress(address addr) internal pure returns(string memory) { bytes20 addrBytes = bytes20(addr); bytes16 hexAlphabet = "0123456789abcdef"; bytes memory result = new bytes(42); result[0] = '0'; result[1] = 'x'; for (uint i = 0; i < 20; i++) { result[i * 2 + 2] = hexAlphabet[uint8(addrBytes[i] >> 4)]; result[i * 2 + 3] = hexAlphabet[uint8(addrBytes[i] & 0x0f)]; } return string(result); } } /** * @title IERC165 * @dev https://eips.ethereum.org/EIPS/eip-165 */ interface IERC165 { /** * @notice Query if a contract implements an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @dev Interface identification is specified in ERC-165. This function * uses less than 30,000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @title ERC721 Non-Fungible Token Standard basic interface * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); function balanceOf(address owner) public view returns (uint256 balance); function ownerOf(uint256 tokenId) public view returns (address owner); function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address owner, address operator) public view returns (bool); function transferFrom(address from, address to, uint256 tokenId) public; function safeTransferFrom(address from, address to, uint256 tokenId) public; function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a `safeTransfer`. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param account address of the account to check * @return whether the target address is a contract */ function isContract(address account) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. 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;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the SafeMath * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; 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 { counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } /** * @title ERC165 * @author Matt Condon (@shrugs) * @dev Implements ERC165 using a lookup table. */ contract ERC165 is IERC165 { bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /* * 0x01ffc9a7 === * bytes4(keccak256('supportsInterface(bytes4)')) */ /** * @dev a mapping of interface id to whether or not it's supported */ mapping(bytes4 => bool) private _supportedInterfaces; /** * @dev A contract implementing SupportsInterfaceWithLookup * implement ERC165 itself */ constructor () internal { _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev implement supportsInterface(bytes4) using a lookup table */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev internal method for registering an interface */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff); _supportedInterfaces[interfaceId] = true; } } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => Counters.Counter) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * 0x80ac58cd === * bytes4(keccak256('balanceOf(address)')) ^ * bytes4(keccak256('ownerOf(uint256)')) ^ * bytes4(keccak256('approve(address,uint256)')) ^ * bytes4(keccak256('getApproved(uint256)')) ^ * bytes4(keccak256('setApprovalForAll(address,bool)')) ^ * bytes4(keccak256('isApprovedForAll(address,address)')) ^ * bytes4(keccak256('transferFrom(address,address,uint256)')) ^ * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) ^ * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) */ constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); } /** * @dev Gets the balance of the specified address * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address owner) public view returns (uint256) { require(owner != address(0)); return _ownedTokensCount[owner].current(); } /** * @dev Gets the owner of the specified token ID * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0)); return owner; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner); require(msg.sender == owner || isApprovedForAll(owner, msg.sender)); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId)); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public { require(to != msg.sender); _operatorApprovals[msg.sender][to] = approved; emit ApprovalForAll(msg.sender, to, approved); } /** * @dev Tells whether an operator is approved by a given owner * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address * Usage of this method is discouraged, use `safeTransferFrom` whenever possible * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public { require(_isApprovedOrOwner(msg.sender, tokenId)); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data)); } /** * @dev Returns whether the specified token exists * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to mint a new token * Reverts if the given token ID already exists * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { require(to != address(0)); require(!_exists(tokenId)); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); } /** * @dev Internal function to burn a specific token * Reverts if the token does not exist * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { require(ownerOf(tokenId) == owner); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Internal function to burn a specific token * Reverts if the token does not exist * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require(ownerOf(tokenId) == from); require(to != address(0)); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Internal function to invoke `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) internal returns (bool) { if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data); return (retval == _ERC721_RECEIVED); } /** * @dev Private function to clear current approval of a given token ID * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); } /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /* * 0x780e9d63 === * bytes4(keccak256('totalSupply()')) ^ * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) ^ * bytes4(keccak256('tokenByIndex(uint256)')) */ /** * @dev Constructor function */ constructor () public { // register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner)); return _ownedTokens[owner][index]; } /** * @dev Gets the total amount of tokens stored by the contract * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply()); return _allTokens[index]; } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } /** * @dev Internal function to mint a new token * Reverts if the given token ID already exists * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId); } /** * @dev Internal function to burn a specific token * Reverts if the token does not exist * Deprecated, use _burn(uint256) instead * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId); } /** * @dev Gets the list of token IDs of the requested owner * @param owner address owning the tokens * @return uint256[] List of token IDs owned by the requested address */ function _tokensOfOwner(address owner) internal view returns (uint256[] storage) { return _ownedTokens[owner]; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { _ownedTokensIndex[tokenId] = _ownedTokens[to].length; _ownedTokens[to].push(tokenId); } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the _ownedTokensIndex mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _ownedTokens[from].length.sub(1); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array _ownedTokens[from].length--; // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by // lastTokenId, or just over the end of the array if the token was the last one). } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length.sub(1); uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array _allTokens.length--; _allTokensIndex[tokenId] = 0; } } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); } contract ERC721Metadata is ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * 0x5b5e139f === * bytes4(keccak256('name()')) ^ * bytes4(keccak256('symbol()')) ^ * bytes4(keccak256('tokenURI(uint256)')) */ /** * @dev Constructor function */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); } /** * @dev Gets the token name * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns an URI for a given token ID * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query */ function tokenURI(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId)); return _tokenURIs[tokenId]; } /** * @dev Internal function to set the token URI for a given token * Reverts if the token ID does not exist * @param tokenId uint256 ID of the token to set its URI * @param uri string URI to assign */ function _setTokenURI(uint256 tokenId, string memory uri) internal { require(_exists(tokenId)); _tokenURIs[tokenId] = uri; } /** * @dev Internal function to burn a specific token * Reverts if the token does not exist * Deprecated, use _burn(uint256) instead * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } /** * @title Full ERC721 Token * This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata { constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) { // solhint-disable-previous-line no-empty-blocks } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract MultiOwned is Ownable { mapping (address => bool) public multiOwners; modifier onlyMultiOwners { require(multiOwners[msg.sender] == true, "must be one of owners"); _; } event OwnerAdded(address indexed _owner); event OwnerRemoved(address indexed _owner); constructor () internal { address owner = msg.sender; multiOwners[owner] = true; emit OwnerAdded(owner); } function addOwner(address _owner) external onlyOwner { require(_owner != address(0), "owner must not be 0x0"); if(multiOwners[_owner] == false) { multiOwners[_owner] = true; emit OwnerAdded(_owner); } } function removeOwner(address _owner) external onlyOwner { require(multiOwners[_owner] == true, "owner not exist"); delete multiOwners[_owner]; emit OwnerRemoved(_owner); } } /** * @title TradeableERC721Token * TradeableERC721Token - ERC721 contract that whitelists a trading address, and has minting functionality. */ contract TradeableERC721Token is ERC721Full, MultiOwned { using Strings for string; constructor(string memory _name, string memory _symbol) ERC721Full(_name, _symbol) public { } /** * @dev Mints a token to an address with a tokenURI. * @param _to address of the future owner of the token */ function mintTo(address _to, uint256 _tokenId) public onlyMultiOwners { _mint(_to, _tokenId); } function baseTokenURI() public view returns (string memory) { return ""; } function tokenURI(uint256 _tokenId) external view returns (string memory) { return Strings.strConcat( baseTokenURI(), Strings.uint2str(_tokenId) ); } } contract ERC721FullBatchMint is TradeableERC721Token { string private _baseTokenURI; constructor( string memory _name, string memory _symbol, string memory baseURI ) TradeableERC721Token(_name, _symbol) public { _baseTokenURI = Strings.strConcat(baseURI, Strings.fromAddress(address(this)), "/"); } function baseTokenURI() public view returns (string memory) { return _baseTokenURI; } function setBaseTokenURI(string memory uri) public onlyMultiOwners { _baseTokenURI = uri; } /* mint multiple tokens at a time */ function batchMint(address[] calldata receivers, uint256[] calldata tokenIds) external onlyMultiOwners { require(receivers.length == tokenIds.length, "length mismatch"); for (uint256 i = 0; i < receivers.length; i++) { address to = receivers[i]; uint256 newTokenId = tokenIds[i]; _mint(to, newTokenId); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"mintTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receivers","type":"address[]"},{"name":"tokenIds","type":"uint256[]"}],"name":"batchMint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"multiOwners","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"baseURI","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"}],"name":"OwnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"approved","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620027b9380380620027b9833981018060405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50509291906020018051640100000000811115620000e857600080fd5b82016020810184811115620000fc57600080fd5b81516401000000008111828201871017156200011757600080fd5b509093508592508491508290508181816200015b7f01ffc9a70000000000000000000000000000000000000000000000000000000064010000000062000343810204565b6200018f7f80ac58cd0000000000000000000000000000000000000000000000000000000064010000000062000343810204565b620001c37f780e9d630000000000000000000000000000000000000000000000000000000064010000000062000343810204565b8151620001d890600990602085019062000a24565b508051620001ee90600a90602084019062000a24565b50620002237f5b5e139f0000000000000000000000000000000000000000000000000000000064010000000062000343810204565b5050600c8054600160a060020a031916331790819055604051600160a060020a03919091169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3336000818152600d6020526040808220805460ff191660011790555182917f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c391a25050506200032381620002db30620003b06401000000000262001ab2176401000000009004565b60408051808201909152600181527f2f00000000000000000000000000000000000000000000000000000000000000602082015264010000000062001c856200065a82021704565b80516200033991600e9160209091019062000a24565b5050505062000ac9565b7fffffffff0000000000000000000000000000000000000000000000000000000080821614156200037357600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b60408051602a80825260608281019093526c010000000000000000000000008402917f3031323334353637383961626364656600000000000000000000000000000000918491906020820181803883390190505090507f30000000000000000000000000000000000000000000000000000000000000008160008151811015156200043757fe5b906020010190600160f860020a031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811015156200048057fe5b906020010190600160f860020a031916908160001a90535060005b60148110156200065157826004858360148110620004b557fe5b1a7f010000000000000000000000000000000000000000000000000000000000000002600160f860020a031916908060020a82049150507f0100000000000000000000000000000000000000000000000000000000000000900460ff166010811015156200051f57fe5b1a7f01000000000000000000000000000000000000000000000000000000000000000282826002026002018151811015156200055757fe5b906020010190600160f860020a031916908160001a905350828482601481106200057d57fe5b1a7f010000000000000000000000000000000000000000000000000000000000000002600f7f010000000000000000000000000000000000000000000000000000000000000002167f0100000000000000000000000000000000000000000000000000000000000000900460ff16601081101515620005f857fe5b1a7f01000000000000000000000000000000000000000000000000000000000000000282826002026003018151811015156200063057fe5b906020010190600160f860020a031916908160001a9053506001016200049b565b50949350505050565b60606200069a84848460206040519081016040528060008152506020604051908101604052806000815250620006a2640100000000026401000000009004565b949350505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015620006f7576020820181803883390190505b509050806000805b8851811015620007995788818151811015156200071857fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f01000000000000000000000000000000000000000000000000000000000000000283838060010194508151811015156200077857fe5b906020010190600160f860020a031916908160001a905350600101620006ff565b5060005b875181101562000837578781815181101515620007b657fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f01000000000000000000000000000000000000000000000000000000000000000283838060010194508151811015156200081657fe5b906020010190600160f860020a031916908160001a9053506001016200079d565b5060005b8651811015620008d55786818151811015156200085457fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f0100000000000000000000000000000000000000000000000000000000000000028383806001019450815181101515620008b457fe5b906020010190600160f860020a031916908160001a9053506001016200083b565b5060005b855181101562000973578581815181101515620008f257fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f01000000000000000000000000000000000000000000000000000000000000000283838060010194508151811015156200095257fe5b906020010190600160f860020a031916908160001a905350600101620008d9565b5060005b845181101562000a115784818151811015156200099057fe5b9060200101517f010000000000000000000000000000000000000000000000000000000000000090047f0100000000000000000000000000000000000000000000000000000000000000028383806001019450815181101515620009f057fe5b906020010190600160f860020a031916908160001a90535060010162000977565b50909d9c50505050505050505050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a6757805160ff191683800117855562000a97565b8280016001018555821562000a97579182015b8281111562000a9757825182559160200191906001019062000a7a565b5062000aa592915062000aa9565b5090565b62000ac691905b8082111562000aa5576000815560010162000ab0565b90565b611ce08062000ad96000396000f3fe608060405234801561001057600080fd5b50600436106101ab576000357c01000000000000000000000000000000000000000000000000000000009004806368573107116100fb578063a22cb465116100b4578063d547cfb71161008e578063d547cfb7146106ff578063e985e9c514610707578063e9bca32414610735578063f2fde38b1461075b576101ab565b8063a22cb465146105ee578063b88d4fde1461061c578063c87b56dd146106e2576101ab565b806368573107146104c85780637065cb481461058a57806370a08231146105b05780638da5cb5b146105d65780638f32d59b146105de57806395d89b41146105e6576101ab565b806323b872dd1161016857806342842e0e1161014257806342842e0e1461042c578063449a52f8146104625780634f6ccce71461048e5780636352211e146104ab576101ab565b806323b872dd146103245780632f745c591461035a57806330176e1314610386576101ab565b806301ffc9a7146101b057806306fdde0314610200578063081812fc1461027d578063095ea7b3146102b6578063173825d9146102e457806318160ddd1461030a575b600080fd5b6101ec600480360360208110156101c657600080fd5b50357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916610781565b604080519115158252519081900360200190f35b6102086107b9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024257818101518382015260200161022a565b50505050905090810190601f16801561026f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029a6004803603602081101561029357600080fd5b5035610850565b60408051600160a060020a039092168252519081900360200190f35b6102e2600480360360408110156102cc57600080fd5b50600160a060020a038135169060200135610882565b005b6102e2600480360360208110156102fa57600080fd5b5035600160a060020a0316610938565b610312610a09565b60408051918252519081900360200190f35b6102e26004803603606081101561033a57600080fd5b50600160a060020a03813581169160208101359091169060400135610a0f565b6103126004803603604081101561037057600080fd5b50600160a060020a038135169060200135610a34565b6102e26004803603602081101561039c57600080fd5b8101906020810181356401000000008111156103b757600080fd5b8201836020820111156103c957600080fd5b803590602001918460018302840111640100000000831117156103eb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a81945050505050565b6102e26004803603606081101561044257600080fd5b50600160a060020a03813581169160208101359091169060400135610b04565b6102e26004803603604081101561047857600080fd5b50600160a060020a038135169060200135610b20565b610312600480360360208110156104a457600080fd5b5035610b96565b61029a600480360360208110156104c157600080fd5b5035610bcb565b6102e2600480360360408110156104de57600080fd5b8101906020810181356401000000008111156104f957600080fd5b82018360208201111561050b57600080fd5b8035906020019184602083028401116401000000008311171561052d57600080fd5b91939092909160208101903564010000000081111561054b57600080fd5b82018360208201111561055d57600080fd5b8035906020019184602083028401116401000000008311171561057f57600080fd5b509092509050610bf5565b6102e2600480360360208110156105a057600080fd5b5035600160a060020a0316610d17565b610312600480360360208110156105c657600080fd5b5035600160a060020a0316610df9565b61029a610e31565b6101ec610e40565b610208610e51565b6102e26004803603604081101561060457600080fd5b50600160a060020a0381351690602001351515610eb2565b6102e26004803603608081101561063257600080fd5b600160a060020a0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561066d57600080fd5b82018360208201111561067f57600080fd5b803590602001918460018302840111640100000000831117156106a157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f36945050505050565b610208600480360360208110156106f857600080fd5b5035610f5e565b610208610f79565b6101ec6004803603604081101561071d57600080fd5b50600160a060020a0381358116916020013516610fda565b6101ec6004803603602081101561074b57600080fd5b5035600160a060020a0316611008565b6102e26004803603602081101561077157600080fd5b5035600160a060020a031661101d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19811660009081526020819052604090205460ff165b919050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b505050505090505b90565b600061085b82611039565b151561086657600080fd5b50600090815260026020526040902054600160a060020a031690565b600061088d82610bcb565b9050600160a060020a0383811690821614156108a857600080fd5b33600160a060020a03821614806108c457506108c48133610fda565b15156108cf57600080fd5b600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610940610e40565b151561094b57600080fd5b600160a060020a0381166000908152600d602052604090205460ff1615156001146109c0576040805160e560020a62461bcd02815260206004820152600f60248201527f6f776e6572206e6f742065786973740000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000818152600d6020526040808220805460ff19169055517f58619076adf5bb0943d100ef88d52d7c3fd691b19d3a9071b555b651fbf418da9190a250565b60075490565b610a193382611056565b1515610a2457600080fd5b610a2f8383836110b5565b505050565b6000610a3f83610df9565b8210610a4a57600080fd5b600160a060020a0383166000908152600560205260409020805483908110610a6e57fe5b9060005260206000200154905092915050565b336000908152600d602052604090205460ff161515600114610aed576040805160e560020a62461bcd02815260206004820152601560248201527f6d757374206265206f6e65206f66206f776e6572730000000000000000000000604482015290519081900360640190fd5b8051610b0090600e9060208401906119fa565b5050565b610a2f8383836020604051908101604052806000815250610f36565b336000908152600d602052604090205460ff161515600114610b8c576040805160e560020a62461bcd02815260206004820152601560248201527f6d757374206265206f6e65206f66206f776e6572730000000000000000000000604482015290519081900360640190fd5b610b0082826110d4565b6000610ba0610a09565b8210610bab57600080fd5b6007805483908110610bb957fe5b90600052602060002001549050919050565b600081815260016020526040812054600160a060020a0316801515610bef57600080fd5b92915050565b336000908152600d602052604090205460ff161515600114610c61576040805160e560020a62461bcd02815260206004820152601560248201527f6d757374206265206f6e65206f66206f776e6572730000000000000000000000604482015290519081900360640190fd5b828114610cb8576040805160e560020a62461bcd02815260206004820152600f60248201527f6c656e677468206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b60005b83811015610d10576000858583818110610cd157fe5b90506020020135600160a060020a0316905060008484848181101515610cf357fe5b905060200201359050610d0682826110d4565b5050600101610cbb565b5050505050565b610d1f610e40565b1515610d2a57600080fd5b600160a060020a0381161515610d8a576040805160e560020a62461bcd02815260206004820152601560248201527f6f776e6572206d757374206e6f74206265203078300000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600d602052604090205460ff161515610df657600160a060020a0381166000818152600d6020526040808220805460ff19166001179055517f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c39190a25b50565b6000600160a060020a0382161515610e1057600080fd5b600160a060020a0382166000908152600360205260409020610bef906110f1565b600c54600160a060020a031690565b600c54600160a060020a0316331490565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b600160a060020a038216331415610ec857600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b610f41848484610a0f565b610f4d848484846110f5565b1515610f5857600080fd5b50505050565b6060610bef610f6b610f79565b610f7484611271565b611355565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600d6020526000908152604090205460ff1681565b611025610e40565b151561103057600080fd5b610df681611391565b600090815260016020526040902054600160a060020a0316151590565b60008061106283610bcb565b905080600160a060020a031684600160a060020a0316148061109d575083600160a060020a031661109284610850565b600160a060020a0316145b806110ad57506110ad8185610fda565b949350505050565b6110c083838361140f565b6110ca83826114fe565b610a2f82826115ee565b6110de828261162c565b6110e882826115ee565b610b00816116dc565b5490565b600061110984600160a060020a0316611720565b1515611117575060016110ad565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b838110156111aa578181015183820152602001611192565b50505050905090810190601f1680156111d75780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156111f957600080fd5b505af115801561120d573d6000803e3d6000fd5b505050506040513d602081101561122357600080fd5b50517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167f150b7a020000000000000000000000000000000000000000000000000000000014915050949350505050565b60608115156112b4575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526107b4565b8160005b81156112cc57600101600a820491506112b8565b6060816040519080825280601f01601f1916602001820160405280156112f9576020820181803883390190505b50905060001982015b851561134c57815160001982019160f860020a6030600a8a06010291849190811061132957fe5b906020010190600160f860020a031916908160001a905350600a86049550611302565b50949350505050565b60408051602081810183526000808352835180830185528181528451928301909452815260609261138a928692869290611728565b9392505050565b600160a060020a03811615156113a657600080fd5b600c54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b82600160a060020a031661142282610bcb565b600160a060020a03161461143557600080fd5b600160a060020a038216151561144a57600080fd5b6114538161197d565b600160a060020a0383166000908152600360205260409020611474906119c5565b600160a060020a0382166000908152600360205260409020611495906119dc565b600081815260016020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600160a060020a03821660009081526005602052604081205461152890600163ffffffff6119e516565b6000838152600660205260409020549091508082146115c557600160a060020a038416600090815260056020526040812080548490811061156557fe5b90600052602060002001549050806005600087600160a060020a0316600160a060020a03168152602001908152602001600020838154811015156115a557fe5b600091825260208083209091019290925591825260069052604090208190555b600160a060020a0384166000908152600560205260409020805490610d10906000198301611a78565b600160a060020a0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b600160a060020a038216151561164157600080fd5b61164a81611039565b1561165457600080fd5b6000818152600160209081526040808320805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387169081179091558352600390915290206116a0906119dc565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6000903b1190565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f19166020018201604052801561177c576020820181803883390190505b509050806000805b88518110156117e257888181518110151561179b57fe5b90602001015160f860020a900460f860020a0283838060010194508151811015156117c257fe5b906020010190600160f860020a031916908160001a905350600101611784565b5060005b87518110156118445787818151811015156117fd57fe5b90602001015160f860020a900460f860020a02838380600101945081518110151561182457fe5b906020010190600160f860020a031916908160001a9053506001016117e6565b5060005b86518110156118a657868181518110151561185f57fe5b90602001015160f860020a900460f860020a02838380600101945081518110151561188657fe5b906020010190600160f860020a031916908160001a905350600101611848565b5060005b85518110156119085785818151811015156118c157fe5b90602001015160f860020a900460f860020a0283838060010194508151811015156118e857fe5b906020010190600160f860020a031916908160001a9053506001016118aa565b5060005b845181101561196a57848181518110151561192357fe5b90602001015160f860020a900460f860020a02838380600101945081518110151561194a57fe5b906020010190600160f860020a031916908160001a90535060010161190c565b50909d9c50505050505050505050505050565b600081815260026020526040902054600160a060020a031615610df6576000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff19169055565b80546119d890600163ffffffff6119e516565b9055565b80546001019055565b6000828211156119f457600080fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611a3b57805160ff1916838001178555611a68565b82800160010185558215611a68579182015b82811115611a68578251825591602001919060010190611a4d565b50611a74929150611a98565b5090565b815481835581811115610a2f57600083815260209020610a2f9181019083015b61084d91905b80821115611a745760008155600101611a9e565b60408051602a80825260608281019093526c010000000000000000000000008402917f3031323334353637383961626364656600000000000000000000000000000000918491906020820181803883390190505090507f3000000000000000000000000000000000000000000000000000000000000000816000815181101515611b3857fe5b906020010190600160f860020a031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181101515611b8057fe5b906020010190600160f860020a031916908160001a90535060005b601481101561134c57826004858360148110611bb357fe5b1a60f860020a02600160f860020a031916908060020a820491505060f860020a900460ff16601081101515611be457fe5b1a60f860020a028282600202600201815181101515611bff57fe5b906020010190600160f860020a031916908160001a90535082848260148110611c2457fe5b1a60f860020a02600f60f860020a021660f860020a900460ff16601081101515611c4a57fe5b1a60f860020a028282600202600301815181101515611c6557fe5b906020010190600160f860020a031916908160001a905350600101611b9b565b60606110ad8484846020604051908101604052806000815250602060405190810160405280600081525061172856fea165627a7a72305820897f499b155f911a383701e05b417d01db9ef0916ccf58c7162dae73bf2ebeac0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000184d594b4559204e6f6e2d46756e6769626c6520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000054d4b4e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6e66742e6b657973746f72652e7669702f6e66742f6d657461646174612f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ab576000357c01000000000000000000000000000000000000000000000000000000009004806368573107116100fb578063a22cb465116100b4578063d547cfb71161008e578063d547cfb7146106ff578063e985e9c514610707578063e9bca32414610735578063f2fde38b1461075b576101ab565b8063a22cb465146105ee578063b88d4fde1461061c578063c87b56dd146106e2576101ab565b806368573107146104c85780637065cb481461058a57806370a08231146105b05780638da5cb5b146105d65780638f32d59b146105de57806395d89b41146105e6576101ab565b806323b872dd1161016857806342842e0e1161014257806342842e0e1461042c578063449a52f8146104625780634f6ccce71461048e5780636352211e146104ab576101ab565b806323b872dd146103245780632f745c591461035a57806330176e1314610386576101ab565b806301ffc9a7146101b057806306fdde0314610200578063081812fc1461027d578063095ea7b3146102b6578063173825d9146102e457806318160ddd1461030a575b600080fd5b6101ec600480360360208110156101c657600080fd5b50357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916610781565b604080519115158252519081900360200190f35b6102086107b9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024257818101518382015260200161022a565b50505050905090810190601f16801561026f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029a6004803603602081101561029357600080fd5b5035610850565b60408051600160a060020a039092168252519081900360200190f35b6102e2600480360360408110156102cc57600080fd5b50600160a060020a038135169060200135610882565b005b6102e2600480360360208110156102fa57600080fd5b5035600160a060020a0316610938565b610312610a09565b60408051918252519081900360200190f35b6102e26004803603606081101561033a57600080fd5b50600160a060020a03813581169160208101359091169060400135610a0f565b6103126004803603604081101561037057600080fd5b50600160a060020a038135169060200135610a34565b6102e26004803603602081101561039c57600080fd5b8101906020810181356401000000008111156103b757600080fd5b8201836020820111156103c957600080fd5b803590602001918460018302840111640100000000831117156103eb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a81945050505050565b6102e26004803603606081101561044257600080fd5b50600160a060020a03813581169160208101359091169060400135610b04565b6102e26004803603604081101561047857600080fd5b50600160a060020a038135169060200135610b20565b610312600480360360208110156104a457600080fd5b5035610b96565b61029a600480360360208110156104c157600080fd5b5035610bcb565b6102e2600480360360408110156104de57600080fd5b8101906020810181356401000000008111156104f957600080fd5b82018360208201111561050b57600080fd5b8035906020019184602083028401116401000000008311171561052d57600080fd5b91939092909160208101903564010000000081111561054b57600080fd5b82018360208201111561055d57600080fd5b8035906020019184602083028401116401000000008311171561057f57600080fd5b509092509050610bf5565b6102e2600480360360208110156105a057600080fd5b5035600160a060020a0316610d17565b610312600480360360208110156105c657600080fd5b5035600160a060020a0316610df9565b61029a610e31565b6101ec610e40565b610208610e51565b6102e26004803603604081101561060457600080fd5b50600160a060020a0381351690602001351515610eb2565b6102e26004803603608081101561063257600080fd5b600160a060020a0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561066d57600080fd5b82018360208201111561067f57600080fd5b803590602001918460018302840111640100000000831117156106a157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f36945050505050565b610208600480360360208110156106f857600080fd5b5035610f5e565b610208610f79565b6101ec6004803603604081101561071d57600080fd5b50600160a060020a0381358116916020013516610fda565b6101ec6004803603602081101561074b57600080fd5b5035600160a060020a0316611008565b6102e26004803603602081101561077157600080fd5b5035600160a060020a031661101d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19811660009081526020819052604090205460ff165b919050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b505050505090505b90565b600061085b82611039565b151561086657600080fd5b50600090815260026020526040902054600160a060020a031690565b600061088d82610bcb565b9050600160a060020a0383811690821614156108a857600080fd5b33600160a060020a03821614806108c457506108c48133610fda565b15156108cf57600080fd5b600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610940610e40565b151561094b57600080fd5b600160a060020a0381166000908152600d602052604090205460ff1615156001146109c0576040805160e560020a62461bcd02815260206004820152600f60248201527f6f776e6572206e6f742065786973740000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000818152600d6020526040808220805460ff19169055517f58619076adf5bb0943d100ef88d52d7c3fd691b19d3a9071b555b651fbf418da9190a250565b60075490565b610a193382611056565b1515610a2457600080fd5b610a2f8383836110b5565b505050565b6000610a3f83610df9565b8210610a4a57600080fd5b600160a060020a0383166000908152600560205260409020805483908110610a6e57fe5b9060005260206000200154905092915050565b336000908152600d602052604090205460ff161515600114610aed576040805160e560020a62461bcd02815260206004820152601560248201527f6d757374206265206f6e65206f66206f776e6572730000000000000000000000604482015290519081900360640190fd5b8051610b0090600e9060208401906119fa565b5050565b610a2f8383836020604051908101604052806000815250610f36565b336000908152600d602052604090205460ff161515600114610b8c576040805160e560020a62461bcd02815260206004820152601560248201527f6d757374206265206f6e65206f66206f776e6572730000000000000000000000604482015290519081900360640190fd5b610b0082826110d4565b6000610ba0610a09565b8210610bab57600080fd5b6007805483908110610bb957fe5b90600052602060002001549050919050565b600081815260016020526040812054600160a060020a0316801515610bef57600080fd5b92915050565b336000908152600d602052604090205460ff161515600114610c61576040805160e560020a62461bcd02815260206004820152601560248201527f6d757374206265206f6e65206f66206f776e6572730000000000000000000000604482015290519081900360640190fd5b828114610cb8576040805160e560020a62461bcd02815260206004820152600f60248201527f6c656e677468206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b60005b83811015610d10576000858583818110610cd157fe5b90506020020135600160a060020a0316905060008484848181101515610cf357fe5b905060200201359050610d0682826110d4565b5050600101610cbb565b5050505050565b610d1f610e40565b1515610d2a57600080fd5b600160a060020a0381161515610d8a576040805160e560020a62461bcd02815260206004820152601560248201527f6f776e6572206d757374206e6f74206265203078300000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600d602052604090205460ff161515610df657600160a060020a0381166000818152600d6020526040808220805460ff19166001179055517f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c39190a25b50565b6000600160a060020a0382161515610e1057600080fd5b600160a060020a0382166000908152600360205260409020610bef906110f1565b600c54600160a060020a031690565b600c54600160a060020a0316331490565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b600160a060020a038216331415610ec857600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b610f41848484610a0f565b610f4d848484846110f5565b1515610f5857600080fd5b50505050565b6060610bef610f6b610f79565b610f7484611271565b611355565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600d6020526000908152604090205460ff1681565b611025610e40565b151561103057600080fd5b610df681611391565b600090815260016020526040902054600160a060020a0316151590565b60008061106283610bcb565b905080600160a060020a031684600160a060020a0316148061109d575083600160a060020a031661109284610850565b600160a060020a0316145b806110ad57506110ad8185610fda565b949350505050565b6110c083838361140f565b6110ca83826114fe565b610a2f82826115ee565b6110de828261162c565b6110e882826115ee565b610b00816116dc565b5490565b600061110984600160a060020a0316611720565b1515611117575060016110ad565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b838110156111aa578181015183820152602001611192565b50505050905090810190601f1680156111d75780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b1580156111f957600080fd5b505af115801561120d573d6000803e3d6000fd5b505050506040513d602081101561122357600080fd5b50517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167f150b7a020000000000000000000000000000000000000000000000000000000014915050949350505050565b60608115156112b4575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526107b4565b8160005b81156112cc57600101600a820491506112b8565b6060816040519080825280601f01601f1916602001820160405280156112f9576020820181803883390190505b50905060001982015b851561134c57815160001982019160f860020a6030600a8a06010291849190811061132957fe5b906020010190600160f860020a031916908160001a905350600a86049550611302565b50949350505050565b60408051602081810183526000808352835180830185528181528451928301909452815260609261138a928692869290611728565b9392505050565b600160a060020a03811615156113a657600080fd5b600c54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b82600160a060020a031661142282610bcb565b600160a060020a03161461143557600080fd5b600160a060020a038216151561144a57600080fd5b6114538161197d565b600160a060020a0383166000908152600360205260409020611474906119c5565b600160a060020a0382166000908152600360205260409020611495906119dc565b600081815260016020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600160a060020a03821660009081526005602052604081205461152890600163ffffffff6119e516565b6000838152600660205260409020549091508082146115c557600160a060020a038416600090815260056020526040812080548490811061156557fe5b90600052602060002001549050806005600087600160a060020a0316600160a060020a03168152602001908152602001600020838154811015156115a557fe5b600091825260208083209091019290925591825260069052604090208190555b600160a060020a0384166000908152600560205260409020805490610d10906000198301611a78565b600160a060020a0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b600160a060020a038216151561164157600080fd5b61164a81611039565b1561165457600080fd5b6000818152600160209081526040808320805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387169081179091558352600390915290206116a0906119dc565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6000903b1190565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f19166020018201604052801561177c576020820181803883390190505b509050806000805b88518110156117e257888181518110151561179b57fe5b90602001015160f860020a900460f860020a0283838060010194508151811015156117c257fe5b906020010190600160f860020a031916908160001a905350600101611784565b5060005b87518110156118445787818151811015156117fd57fe5b90602001015160f860020a900460f860020a02838380600101945081518110151561182457fe5b906020010190600160f860020a031916908160001a9053506001016117e6565b5060005b86518110156118a657868181518110151561185f57fe5b90602001015160f860020a900460f860020a02838380600101945081518110151561188657fe5b906020010190600160f860020a031916908160001a905350600101611848565b5060005b85518110156119085785818151811015156118c157fe5b90602001015160f860020a900460f860020a0283838060010194508151811015156118e857fe5b906020010190600160f860020a031916908160001a9053506001016118aa565b5060005b845181101561196a57848181518110151561192357fe5b90602001015160f860020a900460f860020a02838380600101945081518110151561194a57fe5b906020010190600160f860020a031916908160001a90535060010161190c565b50909d9c50505050505050505050505050565b600081815260026020526040902054600160a060020a031615610df6576000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff19169055565b80546119d890600163ffffffff6119e516565b9055565b80546001019055565b6000828211156119f457600080fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611a3b57805160ff1916838001178555611a68565b82800160010185558215611a68579182015b82811115611a68578251825591602001919060010190611a4d565b50611a74929150611a98565b5090565b815481835581811115610a2f57600083815260209020610a2f9181019083015b61084d91905b80821115611a745760008155600101611a9e565b60408051602a80825260608281019093526c010000000000000000000000008402917f3031323334353637383961626364656600000000000000000000000000000000918491906020820181803883390190505090507f3000000000000000000000000000000000000000000000000000000000000000816000815181101515611b3857fe5b906020010190600160f860020a031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181101515611b8057fe5b906020010190600160f860020a031916908160001a90535060005b601481101561134c57826004858360148110611bb357fe5b1a60f860020a02600160f860020a031916908060020a820491505060f860020a900460ff16601081101515611be457fe5b1a60f860020a028282600202600201815181101515611bff57fe5b906020010190600160f860020a031916908160001a90535082848260148110611c2457fe5b1a60f860020a02600f60f860020a021660f860020a900460ff16601081101515611c4a57fe5b1a60f860020a028282600202600301815181101515611c6557fe5b906020010190600160f860020a031916908160001a905350600101611b9b565b60606110ad8484846020604051908101604052806000815250602060405190810160405280600081525061172856fea165627a7a72305820897f499b155f911a383701e05b417d01db9ef0916ccf58c7162dae73bf2ebeac0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000184d594b4559204e6f6e2d46756e6769626c6520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000054d4b4e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6e66742e6b657973746f72652e7669702f6e66742f6d657461646174612f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MYKEY Non-Fungible Token
Arg [1] : _symbol (string): MKNFT
Arg [2] : baseURI (string): https://nft.keystore.vip/nft/metadata/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 4d594b4559204e6f6e2d46756e6769626c6520546f6b656e0000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4d4b4e4654000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [8] : 68747470733a2f2f6e66742e6b657973746f72652e7669702f6e66742f6d6574
Arg [9] : 61646174612f0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
38096:936:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38096:936:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10275:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10275:135:0;-1:-1:-1;;10275:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;32478:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32478:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14298:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14298:154:0;;:::i;:::-;;;;-1:-1:-1;;;;;14298:154:0;;;;;;;;;;;;;;13706:299;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13706:299:0;;;;;;;;:::i;:::-;;37026:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37026:203:0;-1:-1:-1;;;;;37026:203:0;;:::i;24474:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;15889:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15889:184:0;;;;;;;;;;;;;;;;;:::i;24131:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24131:185:0;;;;;;;;:::i;38533:99::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38533:99:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;38533:99:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38533:99:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;38533:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;38533:99:0;;-1:-1:-1;38533:99:0;;-1:-1:-1;;;;;38533:99:0:i;16719:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16719:134:0;;;;;;;;;;;;;;;;;:::i;37712:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37712:103:0;;;;;;;;:::i;24915:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24915:151:0;;:::i;13094:181::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13094:181:0;;:::i;38678:351::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38678:351:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;38678:351:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38678:351:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;38678:351:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;38678:351:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38678:351:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;38678:351:0;;-1:-1:-1;38678:351:0;-1:-1:-1;38678:351:0;:::i;36758:260::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36758:260:0;-1:-1:-1;;;;;36758:260:0;;:::i;12706:163::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12706:163:0;-1:-1:-1;;;;;12706:163:0;;:::i;35237:79::-;;;:::i;35572:92::-;;;:::i;32677:89::-;;;:::i;14752:217::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14752:217:0;;;;;;;;;;:::i;17572:214::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;17572:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;17572:214:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17572:214:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17572:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;17572:214:0;;-1:-1:-1;17572:214:0;;-1:-1:-1;;;;;17572:214:0:i;37909:180::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37909:180:0;;:::i;38434:93::-;;;:::i;15298:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15298:147:0;;;;;;;;;;:::i;36332:44::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36332:44:0;-1:-1:-1;;;;;36332:44:0;;:::i;35841:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35841:109:0;-1:-1:-1;;;;;35841:109:0;;:::i;10275:135::-;-1:-1:-1;;10369:33:0;;10345:4;10369:33;;;;;;;;;;;;;10275:135;;;;:::o;32478:85::-;32550:5;32543:12;;;;;;;;-1:-1:-1;;32543:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32517:13;;32543:12;;32550:5;;32543:12;;32550:5;32543:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32478:85;;:::o;14298:154::-;14357:7;14385:16;14393:7;14385;:16::i;:::-;14377:25;;;;;;;;-1:-1:-1;14420:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;14420:24:0;;14298:154::o;13706:299::-;13770:13;13786:16;13794:7;13786;:16::i;:::-;13770:32;-1:-1:-1;;;;;;13821:11:0;;;;;;;;13813:20;;;;;;13852:10;-1:-1:-1;;;;;13852:19:0;;;;:58;;;13875:35;13892:5;13899:10;13875:16;:35::i;:::-;13844:67;;;;;;;;13924:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;13924:29:0;-1:-1:-1;;;;;13924:29:0;;;;;;;;;13969:28;;13924:24;;13969:28;;;;;;;13706:299;;;:::o;37026:203::-;35449:9;:7;:9::i;:::-;35441:18;;;;;;;;-1:-1:-1;;;;;37101:19:0;;;;;;:11;:19;;;;;;;;:27;;:19;:27;37093:55;;;;;-1:-1:-1;;;;;37093:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37166:19:0;;;;;;:11;:19;;;;;;37159:26;;-1:-1:-1;;37159:26:0;;;37201:20;;;37166:19;37201:20;37026:203;:::o;24474:96::-;24545:10;:17;24474:96;:::o;15889:184::-;15980:39;15999:10;16011:7;15980:18;:39::i;:::-;15972:48;;;;;;;;16033:32;16047:4;16053:2;16057:7;16033:13;:32::i;:::-;15889:184;;;:::o;24131:185::-;24211:7;24247:16;24257:5;24247:9;:16::i;:::-;24239:24;;24231:33;;;;;;-1:-1:-1;;;;;24282:19:0;;;;;;:12;:19;;;;;:26;;24302:5;;24282:26;;;;;;;;;;;;;;24275:33;;24131:185;;;;:::o;38533:99::-;36441:10;36429:23;;;;:11;:23;;;;;;;;:31;;:23;:31;36421:65;;;;;-1:-1:-1;;;;;36421:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38607:19;;;;:13;;:19;;;;;:::i;:::-;;38533:99;:::o;16719:134::-;16806:39;16823:4;16829:2;16833:7;16806:39;;;;;;;;;;;;;:16;:39::i;37712:103::-;36441:10;36429:23;;;;:11;:23;;;;;;;;:31;;:23;:31;36421:65;;;;;-1:-1:-1;;;;;36421:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37789:20;37795:3;37800:8;37789:5;:20::i;24915:151::-;24973:7;25009:13;:11;:13::i;:::-;25001:21;;24993:30;;;;;;25041:10;:17;;25052:5;;25041:17;;;;;;;;;;;;;;25034:24;;24915:151;;;:::o;13094:181::-;13149:7;13185:20;;;:11;:20;;;;;;-1:-1:-1;;;;;13185:20:0;13224:19;;;13216:28;;;;;;13262:5;13094:181;-1:-1:-1;;13094:181:0:o;38678:351::-;36441:10;36429:23;;;;:11;:23;;;;;;;;:31;;:23;:31;36421:65;;;;;-1:-1:-1;;;;;36421:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38796:35;;;38788:63;;;;;-1:-1:-1;;;;;38788:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38863:9;38858:166;38878:20;;;38858:166;;;38916:10;38929:9;;38939:1;38929:12;;;;;;;;;;;;;-1:-1:-1;;;;;38929:12:0;38916:25;;38952:18;38973:8;;38982:1;38973:11;;;;;;;;;;;;;;;38952:32;;38995:21;39001:2;39005:10;38995:5;:21::i;:::-;-1:-1:-1;;38900:3:0;;38858:166;;;;38678:351;;;;:::o;36758:260::-;35449:9;:7;:9::i;:::-;35441:18;;;;;;;;-1:-1:-1;;;;;36830:20:0;;;;36822:54;;;;;-1:-1:-1;;;;;36822:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36890:19:0;;;;;;:11;:19;;;;;;;;:28;;36887:124;;-1:-1:-1;;;;;36935:19:0;;;;;;:11;:19;;;;;;:26;;-1:-1:-1;;36935:26:0;36957:4;36935:26;;;36981:18;;;36935:19;36981:18;36887:124;36758:260;:::o;12706:163::-;12761:7;-1:-1:-1;;;;;12789:19:0;;;;12781:28;;;;;;-1:-1:-1;;;;;12827:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;35237:79::-;35302:6;;-1:-1:-1;;;;;35302:6:0;35237:79;:::o;35572:92::-;35650:6;;-1:-1:-1;;;;;35650:6:0;35636:10;:20;;35572:92::o;32677:89::-;32751:7;32744:14;;;;;;;;-1:-1:-1;;32744:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32718:13;;32744:14;;32751:7;;32744:14;;32751:7;32744:14;;;;;;;;;;;;;;;;;;;;;;;;14752:217;-1:-1:-1;;;;;14832:16:0;;14838:10;14832:16;;14824:25;;;;;;14879:10;14860:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;14860:34:0;;;;;;;;;;;;:45;;-1:-1:-1;;14860:45:0;;;;;;;;;;14921:40;;;;;;;14860:34;;14879:10;14921:40;;;;;;;;;;;14752:217;;:::o;17572:214::-;17679:31;17692:4;17698:2;17702:7;17679:12;:31::i;:::-;17729:48;17752:4;17758:2;17762:7;17771:5;17729:22;:48::i;:::-;17721:57;;;;;;;;17572:214;;;;:::o;37909:180::-;37968:13;37997:86;38025:14;:12;:14::i;:::-;38050:26;38067:8;38050:16;:26::i;:::-;37997:17;:86::i;38434:93::-;38508:13;38501:20;;;;;;;;-1:-1:-1;;38501:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38479:13;;38501:20;;38508:13;;38501:20;;38508:13;38501:20;;;;;;;;;;;;;;;;;;;;;;;;15298:147;-1:-1:-1;;;;;15402:25:0;;;15378:4;15402:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;15298:147::o;36332:44::-;;;;;;;;;;;;;;;:::o;35841:109::-;35449:9;:7;:9::i;:::-;35441:18;;;;;;;;35914:28;35933:8;35914:18;:28::i;17987:155::-;18044:4;18077:20;;;:11;:20;;;;;;-1:-1:-1;;;;;18077:20:0;18115:19;;;17987:155::o;18511:249::-;18596:4;18613:13;18629:16;18637:7;18629;:16::i;:::-;18613:32;;18675:5;-1:-1:-1;;;;;18664:16:0;:7;-1:-1:-1;;;;;18664:16:0;;:51;;;;18708:7;-1:-1:-1;;;;;18684:31:0;:20;18696:7;18684:11;:20::i;:::-;-1:-1:-1;;;;;18684:31:0;;18664:51;:87;;;;18719:32;18736:5;18743:7;18719:16;:32::i;:::-;18656:96;18511:249;-1:-1:-1;;;;18511:249:0:o;25450:245::-;25536:38;25556:4;25562:2;25566:7;25536:19;:38::i;:::-;25587:47;25620:4;25626:7;25587:32;:47::i;:::-;25647:40;25675:2;25679:7;25647:27;:40::i;25958:202::-;26022:24;26034:2;26038:7;26022:11;:24::i;:::-;26059:40;26087:2;26091:7;26059:27;:40::i;:::-;26112;26144:7;26112:31;:40::i;9180:114::-;9272:14;;9180:114::o;21427:356::-;21549:4;21576:15;:2;-1:-1:-1;;;;;21576:13:0;;:15::i;:::-;21575:16;21571:60;;;-1:-1:-1;21615:4:0;21608:11;;21571:60;21659:70;;;;;21696:10;21659:70;;;;;;-1:-1:-1;;;;;21659:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21643:13;;21659:36;;;;;;21696:10;;21708:4;;21714:7;;21723:5;;21659:70;;;;;;;;;;;21643:13;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21659:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21659:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21659:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21659:70:0;-1:-1:-1;;21748:26:0;21758:16;21748:26;;-1:-1:-1;;21427:356:0;;;;;;:::o;1477:406::-;1527:27;1567:7;;1563:40;;;-1:-1:-1;1585:10:0;;;;;;;;;;;;;;;;;;;1563:40;1618:2;1609:6;1642:53;1649:6;;1642:53;;1666:5;;1685:2;1680:7;;;;1642:53;;;1701:17;1731:3;1721:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;1721:14:0;87:34:-1;135:17;;-1:-1;1721:14:0;-1:-1:-1;1701:34:0;-1:-1:-1;;;1751:7:0;;1765:87;1772:7;;1765:87;;1790:9;;-1:-1:-1;;1795:3:0;;;-1:-1:-1;;;1813:2:0;1823;1818:7;;1813:12;1802:25;;1790:4;;1795:3;1790:9;;;;;;;;;;:37;-1:-1:-1;;;;;1790:37:0;;;;;;;;-1:-1:-1;1842:2:0;1836:8;;;;1765:87;;;-1:-1:-1;1872:4:0;1477:406;-1:-1:-1;;;;1477:406:0:o;1329:142::-;1436:29;;;;;;;;;-1:-1:-1;1436:29:0;;;;;;;;;;;;;;;;;;;;;;;1407:13;;1436:29;;1446:2;;1450;;1436:29;:9;:29::i;:::-;1429:36;1329:142;-1:-1:-1;;;1329:142:0:o;36100:187::-;-1:-1:-1;;;;;36174:22:0;;;;36166:31;;;;;;36234:6;;36213:38;;-1:-1:-1;;;;;36213:38:0;;;;36234:6;;36213:38;;36234:6;;36213:38;36262:6;:17;;-1:-1:-1;;36262:17:0;-1:-1:-1;;;;;36262:17:0;;;;;;;;;;36100:187::o;20514:374::-;20628:4;-1:-1:-1;;;;;20608:24:0;:16;20616:7;20608;:16::i;:::-;-1:-1:-1;;;;;20608:24:0;;20600:33;;;;;;-1:-1:-1;;;;;20652:16:0;;;;20644:25;;;;;;20682:23;20697:7;20682:14;:23::i;:::-;-1:-1:-1;;;;;20718:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;20764:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;20810:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;20810:25:0;-1:-1:-1;;;;;20810:25:0;;;;;;;;;20853:27;;20810:20;;20853:27;;;;;;;20514:374;;;:::o;28627:1148::-;-1:-1:-1;;;;;28918:18:0;;28893:22;28918:18;;;:12;:18;;;;;:25;:32;;28948:1;28918:32;:29;:32;:::i;:::-;28961:18;28982:26;;;:17;:26;;;;;;28893:57;;-1:-1:-1;29115:28:0;;;29111:328;;-1:-1:-1;;;;;29182:18:0;;29160:19;29182:18;;;:12;:18;;;;;:34;;29201:14;;29182:34;;;;;;;;;;;;;;29160:56;;29266:11;29233:12;:18;29246:4;-1:-1:-1;;;;;29233:18:0;-1:-1:-1;;;;;29233:18:0;;;;;;;;;;;;29252:10;29233:30;;;;;;;;;;;;;;;;;;;;;:44;;;;29350:30;;;:17;:30;;;;;:43;;;29111:328;-1:-1:-1;;;;;29528:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;29528:27:0;;;:::i;27451:186::-;-1:-1:-1;;;;;27565:16:0;;;;;;;:12;:16;;;;;;;;:23;;27536:26;;;:17;:26;;;;;:52;;;27599:16;;;39:1:-1;23:18;;45:23;;27599:30:0;;;;;;;;27451:186::o;19011:267::-;-1:-1:-1;;;;;19083:16:0;;;;19075:25;;;;;;19120:16;19128:7;19120;:16::i;:::-;19119:17;19111:26;;;;;;19150:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;19150:25:0;-1:-1:-1;;;;;19150:25:0;;;;;;;;19186:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;19237;;19262:7;;-1:-1:-1;;;;;19237:33:0;;;19254:1;;19237:33;;19254:1;;19237:33;19011:267;;:::o;27838:164::-;27942:10;:17;;27915:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;27970:24:0;;;;;;;27838:164::o;7518:627::-;7578:4;8090:20;;8129:8;;7518:627::o;131:842::-;263:13;285:16;310:2;285:28;;320:16;345:2;320:28;;355:16;380:2;355:28;;390:16;415:2;390:28;;425:16;450:2;425:28;;460:19;545:3;:10;532:3;:10;519:3;:10;506:3;:10;493:3;:10;:23;:36;:49;:62;482:74;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;482:74:0;87:34:-1;135:17;;-1:-1;482:74:0;-1:-1:-1;460:96:0;-1:-1:-1;460:96:0;604:6;;621:58;642:3;:10;638:1;:14;621:58;;;673:3;677:1;673:6;;;;;;;;;;;;;;;-1:-1:-1;;;673:6:0;;-1:-1:-1;;;673:6:0;659;666:3;;;;;;659:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;659:20:0;;;;;;;;-1:-1:-1;654:3:0;;621:58;;;-1:-1:-1;691:6:0;686:58;707:3;:10;703:1;:14;686:58;;;738:3;742:1;738:6;;;;;;;;;;;;;;;-1:-1:-1;;;738:6:0;;-1:-1:-1;;;738:6:0;724;731:3;;;;;;724:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;724:20:0;;;;;;;;-1:-1:-1;719:3:0;;686:58;;;-1:-1:-1;756:6:0;751:58;772:3;:10;768:1;:14;751:58;;;803:3;807:1;803:6;;;;;;;;;;;;;;;-1:-1:-1;;;803:6:0;;-1:-1:-1;;;803:6:0;789;796:3;;;;;;789:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;789:20:0;;;;;;;;-1:-1:-1;784:3:0;;751:58;;;-1:-1:-1;821:6:0;816:58;837:3;:10;833:1;:14;816:58;;;868:3;872:1;868:6;;;;;;;;;;;;;;;-1:-1:-1;;;868:6:0;;-1:-1:-1;;;868:6:0;854;861:3;;;;;;854:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;854:20:0;;;;;;;;-1:-1:-1;849:3:0;;816:58;;;-1:-1:-1;886:6:0;881:58;902:3;:10;898:1;:14;881:58;;;933:3;937:1;933:6;;;;;;;;;;;;;;;-1:-1:-1;;;933:6:0;;-1:-1:-1;;;933:6:0;919;926:3;;;;;;919:11;;;;;;;;;;;;;;:20;-1:-1:-1;;;;;919:20:0;;;;;;;;-1:-1:-1;914:3:0;;881:58;;;-1:-1:-1;960:6:0;;131:842;-1:-1:-1;;;;;;;;;;;;;131:842:0:o;21950:175::-;22050:1;22014:24;;;:15;:24;;;;;;-1:-1:-1;;;;;22014:24:0;:38;22010:108;;22104:1;22069:24;;;:15;:24;;;;;:37;;-1:-1:-1;;22069:37:0;;;21950:175::o;9401:110::-;9482:14;;:21;;9501:1;9482:21;:18;:21;:::i;:::-;9465:38;;9401:110::o;9302:91::-;9366:19;;9384:1;9366:19;;;9302:91::o;6389:150::-;6447:7;6475:6;;;;6467:15;;;;;;-1:-1:-1;6505:5:0;;;6389:150::o;38096:936::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38096:936:0;;;-1:-1:-1;38096:936:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1889:457;2077:13;;;2087:2;2077:13;;;1946;2077;;;;;;1988;;;;2008:40;;1946:13;;2077;;;;21:6:-1;;104:10;2077:13:0;87:34:-1;135:17;;-1:-1;2077:13:0;2055:35;;2097:15;:6;2104:1;2097:9;;;;;;;;;;;;;;:15;-1:-1:-1;;;;;2097:15:0;;;;;;;;;2119;:6;2126:1;2119:9;;;;;;;;;;;;;;:15;-1:-1:-1;;;;;2119:15:0;;;;;;;;-1:-1:-1;2146:6:0;2141:172;2162:2;2158:1;:6;2141:172;;;2200:11;2234:1;2218:9;2228:1;2218:12;;;;;;;;-1:-1:-1;;;2218:12:0;-1:-1:-1;;;;;2218:17:0;;;52:12:-1;49:1;45:20;29:14;25:41;7:59;;2218:17:0;-1:-1:-1;;;2212:24:0;;2200:37;;;;;;;;;;;;-1:-1:-1;;;2200:37:0;2180:6;2187:1;2191;2187:5;2195:1;2187:9;2180:17;;;;;;;;;;;;;;:57;-1:-1:-1;;;;;2180:57:0;;;;;;;;-1:-1:-1;2266:11:0;2284:9;2294:1;2284:12;;;;;;;;-1:-1:-1;;;2284:12:0;2299:4;-1:-1:-1;;;2284:19:0;;-1:-1:-1;;;2278:26:0;;2266:39;;;;;;;;;;;;-1:-1:-1;;;2266:39:0;2246:6;2253:1;2257;2253:5;2261:1;2253:9;2246:17;;;;;;;;;;;;;;:59;-1:-1:-1;;;;;2246:59:0;;;;;;;;-1:-1:-1;2166:3:0;;2141:172;;1163:160;1259:13;1288:29;1298:2;1302;1306;1288:29;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i
Swarm Source
bzzr://897f499b155f911a383701e05b417d01db9ef0916ccf58c7162dae73bf2ebeac
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.